提交 4b04f7bc03a9cdea30304caf98bcb9c039f4086f

作者 HT 黄涛
1 个父辈 b96871d7

add leaflet 1.x and echart 4.0.4 support

要显示太多修改。

为保证性能只显示 28 of 35 个文件。

... ... @@ -4,7 +4,7 @@
4 4 "dependencies": {
5 5 "bootstrap": "3.3.6",
6 6 "jquery": "2.2.3",
7   - "leaflet": "0.7.7",
8   - "echarts": "3.2.2"
  7 + "leaflet": "1.3.4",
  8 + "echarts": "4.0.4"
9 9 }
10 10 }
\ No newline at end of file
... ...
不能预览此文件类型
  1 +
  2 +bou2_4px
\ No newline at end of file
... ...
不能预览此文件类型
  1 +//LeafletEcharts Created by HuangTao.
  2 +(function(root, factory) {
  3 + if (typeof define === 'function' && define.amd) {
  4 + // AMD. Register as an anonymous module.
  5 + define(['leaflet'], factory);
  6 + } else if (typeof module === 'object' && module.exports) {
  7 + // Node. Does not work with strict CommonJS, but
  8 + // only CommonJS-like environments that support module.exports,
  9 + // like Node.
  10 + module.exports = factory(require('leaflet'), require('echarts'));
  11 + } else if (typeof root !== 'undefined' && root.L && root.echarts) {
  12 + // Browser globals (root is window)
  13 + LeafletEcharts = factory(L, echarts);
  14 + }
  15 + }(this, function(L, echarts) {
  16 + var LeafletMap; //Leaflet Map
  17 + var EchartInstance; //Echart Instance
  18 + var maps = {};
  19 + var MAP_ATTRIBUTE_KEY = '_lmap_';
  20 + var mapidBase = new Date() - 0;
  21 +
  22 + //define LMapModel
  23 + var LMapModel = echarts.extendComponentModel({
  24 + type: 'lmap',
  25 +
  26 + getLMap : function() {
  27 + return this.__lmap;
  28 + },
  29 +
  30 +
  31 + defaultOption: {
  32 + mapOptions : {
  33 + center: [37.550339,104.114129],
  34 + zoom: 5
  35 + }
  36 + }
  37 + });
  38 +
  39 + //define LMapView
  40 + var LMapView = echarts.extendComponentView({
  41 + type: 'lmap',
  42 +
  43 + render: function (lMapModel, ecModel, api) {
  44 + }
  45 + });
  46 +
  47 + //define EchartLayer
  48 + L.EchartLayer = L.Class.extend({
  49 + includes: [L.Evented.prototype],
  50 + _echartsContainer:null,
  51 + _map:null,
  52 + _api:null,
  53 + _ecModel:null,
  54 + _resizing:false,
  55 +
  56 + initialize:function(api, root) {
  57 + this._api = api;
  58 + this._echartsContainer= root ? root: api.getDom();
  59 + },
  60 +
  61 + getMap: function() {
  62 + return this._map;
  63 + },
  64 +
  65 + getOverLayer : function() {
  66 + return this.__overlayer;
  67 + },
  68 + _layerAdd: function (t) {
  69 + var i = t.target;
  70 + if (i.hasLayer(this)) {
  71 + if (this._map = i,
  72 + this._zoomAnimated = i._zoomAnimated,
  73 + this.getEvents) {
  74 + var e = this.getEvents();
  75 + i.on(e, this),
  76 + this.once("remove", function () {
  77 + i.off(e, this)
  78 + }, this)
  79 + }
  80 + this.onAdd(i),
  81 + this.getAttribution && i.attributionControl && i.attributionControl.addAttribution(this.getAttribution()),
  82 + this.fire("add"),
  83 + i.fire("layeradd", {
  84 + layer: this
  85 + })
  86 + }
  87 + },
  88 + setModel: function(ecModel) {
  89 + this._ecModel = ecModel;
  90 + },
  91 + addTo: function (map) {
  92 + this.onAdd(map);
  93 + },
  94 + onAdd: function (map) {
  95 + this._map = map;
  96 + var size = map.getSize();
  97 +
  98 + map.getPanes().overlayPane.appendChild(this._echartsContainer);
  99 +
  100 + map.on('moveend', this._moveend, this);
  101 + map.on('resize', this._resize, this);
  102 + },
  103 +
  104 + _resize:function() {
  105 + var domPosition = this._map._getMapPanePos();
  106 + this._mapOffset = [-parseInt(domPosition.x) || 0, -parseInt(domPosition.y) || 0];
  107 + this._echartsContainer.style.left = this._mapOffset[0] + 'px';
  108 + this._echartsContainer.style.top = this._mapOffset[1] + 'px';
  109 + var size = this._map.getSize();
  110 + this._echartsContainer.style.height = size.y + 'px';
  111 + this._echartsContainer.style.width = size.x + 'px';
  112 + //resize over will moveend;
  113 + this._resizing=true;
  114 + },
  115 +
  116 +
  117 + _moveend : function() {
  118 + var domPosition = this._map._getMapPanePos();
  119 + this._mapOffset = [-parseInt(domPosition.x) || 0, -parseInt(domPosition.y) || 0];
  120 + this._echartsContainer.style.left = this._mapOffset[0] + 'px';
  121 + this._echartsContainer.style.top = this._mapOffset[1] + 'px';
  122 + if (this._resizing == true)
  123 + {
  124 + this._resizing = false;
  125 + var ec = echarts.getInstanceByDom(this._api.getDom());
  126 + ec.resize();
  127 + } else {
  128 + this._api.dispatchAction({
  129 + type: 'mapMoveEnd'
  130 + });
  131 + }
  132 + },
  133 +
  134 + onRemove: function (map) {
  135 + // remove layer's DOM elements and listeners
  136 + map.getPanes().overlayPane.removeChild(this._root);
  137 + map.off('viewreset', this._viewreset, this);
  138 + map.off('resize', this._resize, this);
  139 + }
  140 +
  141 + });
  142 +
  143 +
  144 + function LMapCoordSys(lmap, api) {
  145 + this._lmap = lmap;
  146 + this.dimensions = ['lng', 'lat'];
  147 + this._mapOffset = [0, 0];
  148 +
  149 + this._api = api;
  150 + }
  151 +
  152 + LMapCoordSys.prototype.dimensions = ['lng', 'lat'];
  153 +
  154 + LMapCoordSys.prototype.setMapOffset = function (mapOffset) {
  155 + this._mapOffset = mapOffset;
  156 + };
  157 +
  158 + LMapCoordSys.prototype.getLMap = function () {
  159 + return this._lmap;
  160 + };
  161 +
  162 + LMapCoordSys.prototype.dataToPoint = function (data) {
  163 + var point = new L.latLng(data[1], data[0]);
  164 + // TODO pointToOverlayPixel is toooooooo slow, cache the transform
  165 + var px = this._lmap.latLngToContainerPoint(point);
  166 + var mapOffset = this._mapOffset;
  167 + return [px.x - mapOffset[0], px.y - mapOffset[1]];
  168 + };
  169 +
  170 + LMapCoordSys.prototype.pointToData = function (pt) {
  171 + var mapOffset = this._mapOffset;
  172 + var pt = this._lmap.containerPointToLatLng({
  173 + x: pt[0] + mapOffset[0],
  174 + y: pt[1] + mapOffset[1]
  175 + });
  176 + return [pt.lat, pt.lng];
  177 + };
  178 +
  179 + LMapCoordSys.prototype.getViewRect = function () {
  180 + var api = this._api;
  181 + return new echarts.graphic.BoundingRect(0, 0, api.getWidth(), api.getHeight());
  182 + };
  183 +
  184 + LMapCoordSys.prototype.getRoamTransform = function () {
  185 + return echarts.matrix.create();
  186 + };
  187 +
  188 + // For deciding which dimensions to use when creating list data
  189 + LMapCoordSys.dimensions = LMapCoordSys.prototype.dimensions;
  190 +
  191 + LMapCoordSys.create = function (ecModel, api) {
  192 + var lmapCoordSys;
  193 +
  194 + ecModel.eachComponent('lmap', function (lmapModel) {
  195 + if (lmapCoordSys) {
  196 + throw new Error('Only one lmap component can exist');
  197 + }
  198 +
  199 + var root = api.getDom();
  200 + var key = root.getAttribute(MAP_ATTRIBUTE_KEY);
  201 + var viewportRoot;
  202 +
  203 + if (!key) {
  204 +
  205 + viewportRoot = api.getZr().painter.getViewportRoot();
  206 + if (typeof L === 'undefined') {
  207 + throw new Error('LMap api is not loaded');
  208 + }
  209 +
  210 + // Not support IE8
  211 + var lmapRoot = root.querySelector('.ec-extension-lmap');
  212 + if (lmapRoot) {
  213 + // Reset viewport left and top, which will be changed
  214 + // in moving handler in BMapView
  215 + viewportRoot.style.left = '0px';
  216 + viewportRoot.style.top = '0px';
  217 + root.removeChild(lmapRoot);
  218 + }
  219 + lmapRoot = document.createElement('div');
  220 + lmapRoot.style.cssText = 'width:100%;height:100%';
  221 + // Not support IE8
  222 + lmapRoot.classList.add('ec-extension-lmap');
  223 + root.appendChild(lmapRoot);
  224 + var opts = lmapModel.get('mapOptions');
  225 + if (typeof opts == "function")
  226 + opts = opts();
  227 + var lmap = lmapModel.__lmap = new L.map(lmapRoot, opts);
  228 +
  229 + var mapid = 'map_' + mapidBase++;
  230 + maps[mapid] = lmap;
  231 + root.setAttribute && root.setAttribute(MAP_ATTRIBUTE_KEY, mapid);
  232 + } else {
  233 + lmapModel.__lmap = maps[key];
  234 + }
  235 +
  236 +
  237 + if (!lmapModel.__overlayer)
  238 + {
  239 + var overlayer = lmapModel.__overlayer = new L.EchartLayer(api, viewportRoot);
  240 + lmapModel.__lmap.addLayer(overlayer);
  241 + lmapModel.__overlayer.setModel(lmapModel);
  242 + }
  243 +
  244 + lmapCoordSys = new LMapCoordSys(lmapModel.__lmap, api);
  245 + lmapCoordSys.setMapOffset(lmapModel.__mapOffset || [0, 0]);
  246 + lmapModel.coordinateSystem = lmapCoordSys;
  247 + });
  248 +
  249 + ecModel.eachComponent('geo', function (geoModel) {
  250 + var root = api.getDom();
  251 + var key = root.getAttribute(MAP_ATTRIBUTE_KEY);
  252 + if (!key)
  253 + throw new Error('Must Init LeafletMap First!');
  254 +
  255 + var leafletMap = geoModel.__lmap = maps[key];
  256 + if (!lmapCoordSys) {
  257 + lmapCoordSys = new LMapCoordSys(leafletMap, api);
  258 + lmapCoordSys.setMapOffset(geoModel.__mapOffset || [0, 0]);
  259 + }
  260 +
  261 + if (!geoModel.__overlayer)
  262 + {
  263 + var overlayer = geoModel.__overlayer = new L.EchartLayer(api);
  264 + leafletMap.addLayer(overlayer);
  265 + overlayer.setModel(geoModel);
  266 + }
  267 + });
  268 +
  269 + ecModel.eachSeries(function (seriesModel) {
  270 + var coordSys = seriesModel.get('coordinateSystem');
  271 + //series Lines only support geo coordSys;
  272 + if (coordSys === 'geo' || coordSys === 'lmap') {
  273 + seriesModel.coordinateSystem = lmapCoordSys;
  274 + }
  275 + });
  276 +
  277 + };
  278 +
  279 + //register lmap coordinateSystem
  280 + echarts.registerCoordinateSystem(
  281 + 'lmap', LMapCoordSys
  282 + );
  283 +
  284 + //register map moveend Action to UpdateLayout
  285 + echarts.registerAction({
  286 + type: 'mapMoveEnd',
  287 + event: 'mapMoveEnd',
  288 + update: 'updateLayout'
  289 + }, function (payload, ecModel) {
  290 + ecModel.eachComponent('lmap', function (lmapModel) {
  291 + });
  292 + });
  293 +
  294 + function LEResult(ec, dom, map)
  295 + {
  296 + this._ec = ec;
  297 + this._dom = dom;
  298 + this._map = map;
  299 + }
  300 +
  301 + LEResult.prototype.getMap = function() {
  302 + if (this._map)
  303 + return this._map;
  304 + var mapid = this._dom.getAttribute(MAP_ATTRIBUTE_KEY);
  305 + return maps[mapid];
  306 + }
  307 +
  308 + LEResult.prototype.getEcharts = function() {
  309 + return this._ec;
  310 + }
  311 +
  312 + LEResult.prototype.getEchartLayer = function() {
  313 + var ec = this.getEcharts();
  314 + var mapModel = ec.getModel().getComponent('lmap');
  315 + if (!mapModel)
  316 + mapModel = ec.getModel().getComponent('geo');
  317 + return mapModel.__overlayer;
  318 + }
  319 +
  320 + LEResult.prototype.setOption = function(option, notMerge, lazyUpdate) {
  321 + this._ec.setOption(option,notMerge, lazyUpdate);
  322 + }
  323 +
  324 + /*
  325 + L.LeafletEcharts = L.Class.extend({
  326 + //init leaflet map, return map
  327 + initMap : function(id, options) {
  328 + this.map = LeafletMap = L.map(id, options);
  329 + var mapid = 'map_' + mapidBase++;
  330 + maps[mapid] = this.map;
  331 + var div = this.echartDom = document.createElement('div');
  332 + var size = this.map.getSize();
  333 + div.style.position = "absolute";
  334 + div.style.height = size.y + 'px';
  335 + div.style.width = size.x + 'px';
  336 + div.style.top = 0;
  337 + div.style.left = 0;
  338 + var ec = EchartInstance = echarts.init(div);
  339 + div.setAttribute && div.setAttribute(MAP_ATTRIBUTE_KEY, mapid);
  340 + return this.map;
  341 + },
  342 + //get echart instance
  343 + getEcharts:function() {
  344 + if (this.echartDom)
  345 + return echarts.getInstanceByDom(this.echartDom); //EchartInstance;
  346 + else
  347 + return null;
  348 + },
  349 + //get leaflet Layer for echart
  350 + getEchartLayer:function() {
  351 + var ec = this.getEcharts();
  352 + var mapModel = ec.getModel().getComponent('lmap');
  353 + if (!mapModel)
  354 + mapModel = ec.getModel().getComponent('geo');
  355 + return mapModel.__overlayer;
  356 + },
  357 + getLMap:function() {
  358 + if (this.map)
  359 + return this.map;
  360 + var mapid = this.echartDom.getAttribute(MAP_ATTRIBUTE_KEY);
  361 + return maps[mapid];
  362 + },
  363 + initEcharts:function(dom) {
  364 + this.echartDom = dom;
  365 + var ec = EchartInstance = echarts.init(dom);
  366 + return ec;
  367 + }
  368 + }); */
  369 + return {
  370 + initMap : function(id, options) {
  371 + var map = L.map(id, options);
  372 + var mapid = 'map_' + mapidBase++;
  373 + maps[mapid] = map;
  374 + var div = document.createElement('div');
  375 + var size = map.getSize();
  376 + div.style.position = "absolute";
  377 + div.style.height = size.y + 'px';
  378 + div.style.width = size.x + 'px';
  379 + div.style.top = 0;
  380 + div.style.left = 0;
  381 + var ec = echarts.init(div);
  382 + div.setAttribute && div.setAttribute(MAP_ATTRIBUTE_KEY, mapid);
  383 + return new LEResult(ec, div, map);
  384 + },
  385 + initEcharts:function(dom) {
  386 + var ec = echarts.init(dom);
  387 + return new LEResult(ec, dom);
  388 + },
  389 + version: "2.0.0"
  390 + };
  391 +
  392 +}));
\ No newline at end of file
... ...
  1 +!function(t,e){"function"==typeof define&&define.amd?define(["leaflet"],e):"object"==typeof module&&module.exports?module.exports=e(require("leaflet"),require("echarts")):"undefined"!=typeof t&&t.L&&t.echarts&&(LeafletEcharts=e(L,echarts))}(this,function(t,e){function i(t,e){this._lmap=t,this.dimensions=["lng","lat"],this._mapOffset=[0,0],this._api=e}function n(t,e,i){this._ec=t,this._dom=e,this._map=i}var o={},a="_lmap_",r=new Date-0;e.extendComponentModel({type:"lmap",getLMap:function(){return this.__lmap},defaultOption:{mapOptions:{center:[37.550339,104.114129],zoom:5}}}),e.extendComponentView({type:"lmap",render:function(t,e,i){}});return t.EchartLayer=t.Class.extend({includes:[t.Evented.prototype],_echartsContainer:null,_map:null,_api:null,_ecModel:null,_resizing:!1,initialize:function(t,e){this._api=t,this._echartsContainer=e?e:t.getDom()},getMap:function(){return this._map},getOverLayer:function(){return this.__overlayer},_layerAdd:function(t){var e=t.target;if(e.hasLayer(this)){if(this._map=e,this._zoomAnimated=e._zoomAnimated,this.getEvents){var i=this.getEvents();e.on(i,this),this.once("remove",function(){e.off(i,this)},this)}this.onAdd(e),this.getAttribution&&e.attributionControl&&e.attributionControl.addAttribution(this.getAttribution()),this.fire("add"),e.fire("layeradd",{layer:this})}},setModel:function(t){this._ecModel=t},addTo:function(t){this.onAdd(t)},onAdd:function(t){this._map=t;t.getSize();t.getPanes().overlayPane.appendChild(this._echartsContainer),t.on("moveend",this._moveend,this),t.on("resize",this._resize,this)},_resize:function(){var t=this._map._getMapPanePos();this._mapOffset=[-parseInt(t.x)||0,-parseInt(t.y)||0],this._echartsContainer.style.left=this._mapOffset[0]+"px",this._echartsContainer.style.top=this._mapOffset[1]+"px";var e=this._map.getSize();this._echartsContainer.style.height=e.y+"px",this._echartsContainer.style.width=e.x+"px",this._resizing=!0},_moveend:function(){var t=this._map._getMapPanePos();if(this._mapOffset=[-parseInt(t.x)||0,-parseInt(t.y)||0],this._echartsContainer.style.left=this._mapOffset[0]+"px",this._echartsContainer.style.top=this._mapOffset[1]+"px",1==this._resizing){this._resizing=!1;var i=e.getInstanceByDom(this._api.getDom());i.resize()}else this._api.dispatchAction({type:"mapMoveEnd"})},onRemove:function(t){t.getPanes().overlayPane.removeChild(this._root),t.off("viewreset",this._viewreset,this),t.off("resize",this._resize,this)}}),i.prototype.dimensions=["lng","lat"],i.prototype.setMapOffset=function(t){this._mapOffset=t},i.prototype.getLMap=function(){return this._lmap},i.prototype.dataToPoint=function(e){var i=new t.latLng(e[1],e[0]),n=this._lmap.latLngToContainerPoint(i),o=this._mapOffset;return[n.x-o[0],n.y-o[1]]},i.prototype.pointToData=function(t){var e=this._mapOffset,t=this._lmap.containerPointToLatLng({x:t[0]+e[0],y:t[1]+e[1]});return[t.lat,t.lng]},i.prototype.getViewRect=function(){var t=this._api;return new e.graphic.BoundingRect(0,0,t.getWidth(),t.getHeight())},i.prototype.getRoamTransform=function(){return e.matrix.create()},i.dimensions=i.prototype.dimensions,i.create=function(e,n){var s;e.eachComponent("lmap",function(e){if(s)throw new Error("Only one lmap component can exist");var p,h=n.getDom(),f=h.getAttribute(a);if(f)e.__lmap=o[f];else{if(p=n.getZr().painter.getViewportRoot(),"undefined"==typeof t)throw new Error("LMap api is not loaded");var l=h.querySelector(".ec-extension-lmap");l&&(p.style.left="0px",p.style.top="0px",h.removeChild(l)),l=document.createElement("div"),l.style.cssText="width:100%;height:100%",l.classList.add("ec-extension-lmap"),h.appendChild(l);var m=e.get("mapOptions");"function"==typeof m&&(m=m());var _=e.__lmap=new t.map(l,m),c="map_"+r++;o[c]=_,h.setAttribute&&h.setAttribute(a,c)}if(!e.__overlayer){var d=e.__overlayer=new t.EchartLayer(n,p);e.__lmap.addLayer(d),e.__overlayer.setModel(e)}s=new i(e.__lmap,n),s.setMapOffset(e.__mapOffset||[0,0]),e.coordinateSystem=s}),e.eachComponent("geo",function(e){var r=n.getDom(),p=r.getAttribute(a);if(!p)throw new Error("Must Init LeafletMap First!");var h=e.__lmap=o[p];if(s||(s=new i(h,n),s.setMapOffset(e.__mapOffset||[0,0])),!e.__overlayer){var f=e.__overlayer=new t.EchartLayer(n);h.addLayer(f),f.setModel(e)}}),e.eachSeries(function(t){var e=t.get("coordinateSystem");"geo"!==e&&"lmap"!==e||(t.coordinateSystem=s)})},e.registerCoordinateSystem("lmap",i),e.registerAction({type:"mapMoveEnd",event:"mapMoveEnd",update:"updateLayout"},function(t,e){e.eachComponent("lmap",function(t){})}),n.prototype.getMap=function(){if(this._map)return this._map;var t=this._dom.getAttribute(a);return o[t]},n.prototype.getEcharts=function(){return this._ec},n.prototype.getEchartLayer=function(){var t=this.getEcharts(),e=t.getModel().getComponent("lmap");return e||(e=t.getModel().getComponent("geo")),e.__overlayer},n.prototype.setOption=function(t,e,i){this._ec.setOption(t,e,i)},{initMap:function(i,s){var p=t.map(i,s),h="map_"+r++;o[h]=p;var f=document.createElement("div"),l=p.getSize();f.style.position="absolute",f.style.height=l.y+"px",f.style.width=l.x+"px",f.style.top=0,f.style.left=0;var m=e.init(f);return f.setAttribute&&f.setAttribute(a,h),new n(m,f,p)},initEcharts:function(t){var i=e.init(t);return new n(i,t)},version:"2.0.0"}});
\ No newline at end of file
... ...
  1 +<html>
  2 +<head>
  3 + <title>Basic</title>
  4 + <meta charset="utf-8">
  5 + <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6 + <link rel="stylesheet" href="../libs/leaflet/dist/leaflet.css"/>
  7 + <style>
  8 + #map {
  9 + position: absolute;
  10 + top: 0;
  11 + bottom: 0;
  12 + width: 100%;
  13 + }
  14 + </style>
  15 +</head>
  16 +<body>
  17 +<div id="map"></div>
  18 +<script src="../libs/jquery/dist/jquery.min.js"></script>
  19 +<script src="../libs/leaflet/dist/leaflet.js"></script>
  20 +
  21 +<script src="../node_modules/pbf/dist/pbf.js"></script>
  22 +<script src="../src/point-geometry.js"></script>
  23 +
  24 +<script src="../src/vectorTileFeature.js"></script>
  25 +<script src="../src/vectorTileLayer.js"></script>
  26 +<script src="../src/vector-tile.js"></script>
  27 +
  28 +<script src="../src/MVTUtil.js"></script>
  29 +<script src="../src/StaticLabel.js"></script>
  30 +<script src="../src/MVTFeature.js"></script>
  31 +<script src="../src/MVTLayer.js"></script>
  32 +<script src="../src/MVTSource.js"></script>
  33 +<script>
  34 + var debug = {};
  35 +
  36 +var map = L.map('map').setView([0, 0], 1); // africa
  37 +
  38 +L.tileLayer('http://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}', {
  39 + maxZoom: 18,
  40 + id: 'examples.map-i86knfo3'
  41 +}).addTo(map);
  42 +
  43 +
  44 +var mvtSource = new L.TileLayer.MVTSource({
  45 + //url: "http://spatialserver.spatialdev.com/services/vector-tiles/GAUL_FSP/{z}/{x}/{y}.pbf",
  46 + url: "http://172.26.60.12/osm08/{z}/{x}/{y}.pbf",
  47 + debug: false,
  48 + clickableLayers: ["GAUL0"],
  49 + getIDForLayerFeature: function(feature) {
  50 + return feature.properties.id;
  51 + },
  52 +
  53 + /**
  54 + * The filter function gets called when iterating though each vector tile feature (vtf). You have access
  55 + * to every property associated with a given feature (the feature, and the layer). You can also filter
  56 + * based of the context (each tile that the feature is drawn onto).
  57 + *
  58 + * Returning false skips over the feature and it is not drawn.
  59 + *
  60 + * @param feature
  61 + * @returns {boolean}
  62 + */
  63 + filter: function(feature, context) {
  64 + if (feature.layer.name === 'water') {
  65 + return true;
  66 + }
  67 + return true;
  68 + },
  69 +
  70 + style: function (feature) {
  71 + var style = {};
  72 +
  73 + var type = feature.type;
  74 + switch (type) {
  75 + case 1: //'Point'
  76 + style.color = 'rgba(49,79,79,1)';
  77 + style.radius = 5;
  78 + style.selected = {
  79 + color: 'rgba(255,255,0,0.5)',
  80 + radius: 6
  81 + };
  82 + break;
  83 + case 2: //'LineString'
  84 + style.color = 'rgba(161,217,155,0.8)';
  85 + style.size = 3;
  86 + style.selected = {
  87 + color: 'rgba(255,25,0,0.5)',
  88 + size: 4
  89 + };
  90 + break;
  91 + case 3: //'Polygon'
  92 + style.color = fillColor;
  93 + style.outline = {
  94 + color: strokeColor,
  95 + size: 1
  96 + };
  97 + style.selected = {
  98 + color: 'rgba(255,140,0,0.3)',
  99 + outline: {
  100 + color: 'rgba(255,140,0,1)',
  101 + size: 2
  102 + }
  103 + };
  104 + break;
  105 + }
  106 + return style;
  107 + }
  108 +
  109 +});
  110 +debug.mvtSource = mvtSource;
  111 +
  112 +//Globals that we can change later.
  113 +var fillColor = 'rgba(149,139,255,0.4)';
  114 +var strokeColor = 'rgb(20,20,20)';
  115 +
  116 +//Add layer
  117 +map.addLayer(mvtSource);
  118 +</script>
  119 +</body>
  120 +</html>
\ No newline at end of file
... ...
  1 +{"type":"FeatureCollection",
  2 +"features":[
  3 +{"type":"Feature",
  4 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.4884415,53.3326492],[121.4995422,53.3360062],[121.5184097,53.3391914],[121.5390701,53.3417206],[121.5737534,53.348175],[121.5840378,53.3496437],[121.5936737,53.3532372],[121.6038132,53.357811],[121.6132736,53.3633652],[121.6229172,53.3667984],[121.6350021,53.3710442],[121.6464386,53.373333],[121.6606522,53.3779068],[121.6673508,53.3828049],[121.6748734,53.385582],[121.6840134,53.3891754],[121.6972427,53.3899956],[121.7039413,53.3901558],[121.7109604,53.3883591],[121.718483,53.3863983],[121.7258301,53.385582],[121.7325287,53.385746],[121.7372665,53.3867264],[121.7424927,53.3878708],[121.7536011,53.3913002],[121.7651978,53.3948936],[121.7764664,53.3976707],[121.7847977,53.3997955],[121.7918167,53.4025726],[121.8035889,53.4074745],[121.8099594,53.4100876],[121.8182907,53.413353],[121.8230286,53.4143333],[121.828743,53.4143333],[121.8377304,53.4153137],[121.8454132,53.4162941],[121.8525925,53.4200516],[121.8597794,53.4229927],[121.8663177,53.4249535],[121.8731766,53.4254417],[121.8784027,53.4247894],[121.889679,53.4228287],[121.8986588,53.421032],[121.9050293,53.4202156],[121.9097672,53.4208679],[121.9138565,53.4218483],[121.9192429,53.4229927],[121.9238205,53.4238091],[121.9297028,53.4246254],[121.9425964,53.4262581],[121.9535522,53.4280548],[121.9648209,53.4287109],[121.9729919,53.4293633],[121.9816437,53.4291992],[121.9930801,53.4287109],[122.0053329,53.4280548],[122.0179062,53.4264221],[122.0295105,53.4249535],[122.0396271,53.4229927],[122.050087,53.4208679],[122.0620193,53.4190712],[122.0731277,53.4185829],[122.0894623,53.4203796],[122.1030197,53.423481],[122.1152725,53.4295273],[122.1245804,53.438839],[122.1350403,53.4484749],[122.1423874,53.4568062],[122.1472931,53.4620361],[122.1520309,53.4657898],[122.1579132,53.4684067],[122.1618271,53.4698753],[122.1665573,53.4703674],[122.1758804,53.4706917],[122.1845322,53.4693871],[122.2118073,53.4626884],[122.2212906,53.4600754],[122.2261887,53.4595833],[122.22995,53.4600754],[122.2382812,53.4607277],[122.2459564,53.4626884],[122.2647476,53.4705276],[122.2914505,53.4795151],[122.3019104,53.4876823],[122.3087692,53.4935608],[122.3182373,53.4978104],[122.3296814,53.5000954],[122.3394775,53.5007515],[122.3476486,53.499115],[122.3512421,53.4955215],[122.3545074,53.4912758],[122.3571167,53.4863739],[122.3610535,53.4831085],[122.3666,53.4762459],[122.3701935,53.4729805],[122.3884888,53.461544],[122.4054794,53.451416],[122.4165878,53.4461899],[122.4312897,53.4429207],[122.4459915,53.4429207],[122.4564438,53.4452095],[122.4708176,53.4530487],[122.4825821,53.4546852],[122.4936905,53.4546852],[122.5067596,53.4523964],[122.5204773,53.451088],[122.5364914,53.451088],[122.5459595,53.4533768],[122.5580521,53.4559898],[122.573082,53.4576225],[122.5864716,53.461216],[122.6001968,53.4625244],[122.6237183,53.461544],[122.6393967,53.4608917],[122.650177,53.4602394],[122.6583633,53.459259],[122.6727295,53.4579506],[122.6949463,53.4582787],[122.7188034,53.4582787],[122.7384033,53.4602394],[122.7534332,53.4608917],[122.7687836,53.4595833],[122.781517,53.4582787],[122.7985229,53.4559898],[122.8115768,53.4550095],[122.8341217,53.4556618],[122.8514404,53.4553375],[122.8667984,53.4579506],[122.8860703,53.4608917],[122.8952179,53.4631767],[122.9050217,53.4644852],[122.9122086,53.4677505],[122.9216766,53.4739609],[122.9370422,53.4814758],[122.9533768,53.4860497],[122.9720001,53.4880066],[122.9814835,53.4899673],[122.9991074,53.4935608],[123.0164337,53.49683],[123.0291672,53.4984627],[123.0383224,53.499115],[123.0432205,53.4994431],[123.0491028,53.5017319],[123.0572662,53.5046692],[123.0664215,53.5053253],[123.0752411,53.5049973],[123.1007233,53.5030365],[123.1186905,53.4994431],[123.1333923,53.4958496],[123.1405792,53.4965019],[123.1647568,53.5040169],[123.1784821,53.5121841],[123.190239,53.5223122],[123.2078934,53.5373421],[123.2242203,53.547142],[123.2412109,53.5533524],[123.2582016,53.5566177],[123.2722473,53.5579262],[123.286293,53.5566177],[123.3009872,53.554657],[123.3114471,53.5536766],[123.3212509,53.5513916],[123.3287735,53.5494308],[123.3375931,53.5468178],[123.348053,53.5425682],[123.3611069,53.5399551],[123.3800735,53.5353813],[123.3986893,53.5340767],[123.4140396,53.5344009],[123.4284134,53.5340767],[123.4388733,53.5330963],[123.4470367,53.5298271],[123.4506302,53.524601],[123.4542236,53.5206795],[123.4597778,53.5121841],[123.4656601,53.5076103],[123.4708862,53.5017319],[123.477417,53.4978104],[123.4823227,53.4961777],[123.4869003,53.4955215],[123.4944229,53.4971581],[123.4957199,53.5010757],[123.4963837,53.5036888],[123.496048,53.5072861],[123.4940872,53.5112038],[123.4904938,53.5157776],[123.4826508,53.5229683],[123.4790573,53.5311356],[123.4797134,53.5379944],[123.488533,53.5461617],[123.4980087,53.5507355],[123.5094528,53.5543327],[123.5179367,53.554657],[123.5267563,53.5520439],[123.5349274,53.5484505],[123.5444031,53.5435486],[123.5489731,53.5386505],[123.5496292,53.5327682],[123.5470123,53.5278664],[123.5381927,53.5200272],[123.5297012,53.514473],[123.5270767,53.5089188],[123.528389,53.5023842],[123.5323105,53.4961777],[123.5368881,53.4945412],[123.5444031,53.4958496],[123.5571365,53.5017319],[123.564003,53.5082626],[123.5675964,53.5164337],[123.5711899,53.5291748],[123.5744629,53.5376701],[123.5774002,53.5425682],[123.5819702,53.5464897],[123.5904694,53.5474701],[123.6048431,53.5468178],[123.6126938,53.544857],[123.6231384,53.5428963],[123.6326065,53.5402832],[123.6417618,53.5350533],[123.6548309,53.5272141],[123.667572,53.5164337],[123.6724701,53.5108795],[123.6776962,53.5049973],[123.6845627,53.4994431],[123.6875,53.4958496],[123.6904373,53.4935608],[123.6950073,53.4919281],[123.7018738,53.4909477],[123.7113495,53.4909477],[123.7237625,53.4925804],[123.730629,53.4935608],[123.7391205,53.4945412],[123.7538223,53.4935608],[123.7639465,53.4929085],[123.7737503,53.4906235],[123.7953186,53.4876823],[123.8106689,53.4863739],[123.8250504,53.4873543],[123.8436737,53.48703],[123.8583832,53.4850693],[123.8655624,53.4837608],[123.8727493,53.4808197],[123.8868027,53.4749413],[123.9028015,53.4670982],[123.9184875,53.458931],[123.9302521,53.4546852],[123.942009,53.4488029],[123.9524689,53.4439011],[123.9602966,53.4386749],[123.9707565,53.4327927],[123.9782791,53.4275665],[123.9835129,53.421032],[123.9910202,53.4125366],[124.0018005,53.4040413],[124.0122528,53.3981628],[124.0240173,53.3945694],[124.0318604,53.3929329],[124.0390472,53.3922806],[124.0468826,53.3906479],[124.0553818,53.3880348],[124.0628967,53.3854218],[124.068779,53.3792114],[124.0723724,53.3694115],[124.0775986,53.363205],[124.0834808,53.3605881],[124.088707,53.3583031],[124.093277,53.3543816],[124.0985031,53.3514404],[124.104393,53.3488274],[124.1151733,53.3458862],[124.1236572,53.3449059],[124.1344528,53.3458862],[124.1524124,53.3537292],[124.1645126,53.3583031],[124.1749573,53.3638573],[124.1837769,53.3684311],[124.1922836,53.3710442],[124.204689,53.3746376],[124.2141571,53.3749657],[124.2226562,53.3739853],[124.233757,53.3720245],[124.2435684,53.3687592],[124.2556534,53.3615685],[124.2664337,53.3553619],[124.2828979,53.3501511],[124.292717,53.3426628],[124.3058319,53.3309631],[124.3185806,53.3204346],[124.3254929,53.3122444],[124.3318634,53.3018341],[124.3360672,53.2915382],[124.344017,53.2863922],[124.3524475,53.2793732],[124.3561935,53.2732887],[124.3566589,53.2662697],[124.3580627,53.2606544],[124.3603973,53.256443],[124.3655472,53.2536354],[124.3763123,53.2527008],[124.3866119,53.2531662],[124.3973694,53.2550392],[124.403923,53.2517624],[124.4067307,53.2400665],[124.4132767,53.2297707],[124.4217072,53.2236862],[124.432457,53.2176018],[124.4427567,53.2138596],[124.4516525,53.2101173],[124.4577332,53.2091789],[124.4680328,53.2087135],[124.4773865,53.2087135],[124.4867477,53.2045021],[124.5120163,53.2002907],[124.5513229,53.2012253],[124.5864334,53.2054367],[124.6009293,53.2077751],[124.614502,53.2068405],[124.6392975,53.2082443],[124.6556778,53.2068405],[124.6683121,53.2040329],[124.6795425,53.1998215],[124.687027,53.19561],[124.6959229,53.1913986],[124.7025909,53.1867714],[124.7072067,53.1795769],[124.7082367,53.1718712],[124.7085037,53.1649361],[124.7110672,53.1587677],[124.7154312,53.1546593],[124.7187729,53.1500359],[124.7298203,53.1474648],[124.7472763,53.1423302],[124.7675781,53.140274],[124.7811966,53.1413002],[124.7958374,53.1423302],[124.8148499,53.1448975],[124.8243484,53.1446419],[124.8307724,53.1389885],[124.8354034,53.1325684],[124.8382263,53.1266594],[124.8420792,53.1204948],[124.8443909,53.1127892],[124.8464432,53.1079063],[124.850563,53.1030273],[124.8559494,53.0999451],[124.8651962,53.0989151],[124.8747025,53.0978889],[124.8824081,53.0981445],[124.8883133,53.1009712],[124.8932037,53.1066208],[124.8955078,53.1143303],[124.8962784,53.121006],[124.8896027,53.1328239],[124.8844604,53.1413002],[124.8783035,53.1495209],[124.8770065,53.1541443],[124.8783035,53.1595383],[124.8836899,53.1649361],[124.8937073,53.1718712],[124.9052734,53.1759796],[124.9160614,53.1798325],[124.9299316,53.1821442],[124.9396896,53.1844559],[124.950737,53.1895943],[124.9602432,53.1908798],[124.9723129,53.1916504],[124.9882431,53.1926765],[125.011879,53.192421],[125.0275421,53.1944771],[125.0378189,53.1947327],[125.0475769,53.1960182],[125.0596466,53.1978149],[125.0704422,53.2019272],[125.0809784,53.2029533],[125.0943375,53.2037239],[125.1207962,53.2024384],[125.1421127,53.2034683],[125.1572723,53.1998711],[125.1788483,53.1960182],[125.1952896,53.1929359],[125.2125015,53.1877975],[125.2304764,53.1821442],[125.245903,53.1764946],[125.2638779,53.1672478],[125.274147,53.1600533],[125.2836609,53.1536331],[125.2939301,53.1466942],[125.3029327,53.1443825],[125.3227005,53.1420708],[125.3394012,53.1382179],[125.3545609,53.1317978],[125.3650894,53.1302567],[125.3764038,53.1305122],[125.3920593,53.126915],[125.4126129,53.1184387],[125.4275131,53.1117592],[125.4413834,53.1061096],[125.4532013,53.1040535],[125.4691162,53.1017418],[125.48069,53.0996857],[125.4907074,53.0950623],[125.4937897,53.0883827],[125.4937897,53.0783653],[125.4930191,53.0698891],[125.4922485,53.0601273],[125.4917297,53.0547333],[125.4930191,53.0503654],[125.4971237,53.0472832],[125.5038071,53.0459976],[125.5107422,53.0467682],[125.5184479,53.0493355],[125.5330887,53.056015],[125.5456772,53.061924],[125.5551834,53.0680885],[125.5646896,53.0727119],[125.5721436,53.0763092],[125.5780487,53.0781097],[125.5862732,53.0786209],[125.596283,53.0781097],[125.604248,53.0760536],[125.6140137,53.0704002],[125.62043,53.067318],[125.6250534,53.0626945],[125.6284027,53.0552444],[125.6291733,53.0477943],[125.6314774,53.0393181],[125.6399536,53.0316124],[125.6520309,53.026474],[125.6599884,53.0187683],[125.6664124,53.0095215],[125.6764297,53.0038681],[125.6856766,53.0005302],[125.6980133,52.9984741],[125.7136765,52.996933],[125.7229309,52.9948769],[125.7308884,52.9917946],[125.7362823,52.9869156],[125.7380829,52.9830627],[125.7368011,52.9768982],[125.7347412,52.9717598],[125.7329483,52.9671364],[125.7311478,52.960968],[125.7275467,52.9527512],[125.7252426,52.9453011],[125.7221603,52.9393921],[125.7159882,52.9357948],[125.7059708,52.9329681],[125.6951828,52.9291153],[125.6766891,52.9244919],[125.669487,52.9237213],[125.6623001,52.9216652],[125.6576767,52.9175568],[125.6525421,52.9103622],[125.6497192,52.9041977],[125.6489487,52.8928947],[125.6486893,52.8841629],[125.6494598,52.8769684],[125.6540833,52.87286],[125.6625595,52.867466],[125.6733475,52.8659248],[125.680542,52.8646393],[125.6849136,52.8630981],[125.6918411,52.8633537],[125.7013474,52.8628387],[125.7121429,52.8641243],[125.7234421,52.8687477],[125.7254868,52.8720894],[125.738533,52.8768234],[125.7545166,52.8821716],[125.7718887,52.8906021],[125.7925568,52.8945923],[125.8085098,52.8978539],[125.8244629,52.900753],[125.8353271,52.8993034],[125.8396912,52.8938675],[125.8411407,52.8869781],[125.8407669,52.8782768],[125.8414993,52.8699341],[125.8433228,52.8626823],[125.850563,52.8554306],[125.8628922,52.8445549],[125.8748627,52.8387527],[125.8842773,52.8322258],[125.8915405,52.8257027],[125.8980637,52.8184509],[125.9020462,52.8104744],[125.9067688,52.8028603],[125.9122009,52.7963333],[125.9161911,52.7883568],[125.9209137,52.781105],[125.925621,52.7763901],[125.9288864,52.7716751],[125.93396,52.7673264],[125.9459229,52.760437],[125.9589767,52.7560844],[125.9694901,52.7549973],[125.9774704,52.7571716],[125.9836273,52.7626114],[125.9861679,52.7695007],[125.9926987,52.7749405],[125.9999466,52.7796516],[126.0072021,52.7832794],[126.0155411,52.7872658],[126.0235138,52.789444],[126.0325775,52.7908936],[126.0423737,52.7927055],[126.0525208,52.7930679],[126.0626831,52.7905312],[126.0706482,52.786541],[126.0779037,52.7818298],[126.092041,52.7753029],[126.1043701,52.7695007],[126.1090927,52.7673264],[126.1109009,52.7636986],[126.1083603,52.758625],[126.1010971,52.7560844],[126.0924072,52.7549973],[126.0829773,52.7546349],[126.0767288,52.7540207],[126.0706482,52.7520981],[126.0608902,52.7497749],[126.0514374,52.7470207],[126.0441895,52.7455292],[126.0391083,52.7430344],[126.0383835,52.7357826],[126.0412827,52.7274437],[126.0463562,52.7194672],[126.0525208,52.7111244],[126.0586929,52.7067757],[126.0619507,52.7038727],[126.0659409,52.7002487],[126.0673904,52.6962585],[126.0666733,52.6900978],[126.0648499,52.6853828],[126.0630264,52.6795807],[126.0568771,52.6723289],[126.049263,52.6701546],[126.0398331,52.6697922],[126.0329437,52.6712418],[126.027153,52.6723289],[126.0169907,52.6734161],[126.0086517,52.6745071],[126.0010376,52.6755943],[125.9887085,52.6763191],[125.9814606,52.6748695],[125.9749298,52.6719666],[125.9705811,52.665802],[125.9669571,52.6585503],[125.9626007,52.6512985],[125.9575272,52.6418724],[125.9571609,52.6360703],[125.958252,52.6259193],[125.9626007,52.6168556],[125.9680405,52.6074295],[125.9731064,52.6001778],[125.977829,52.5925636],[125.9847183,52.5878487],[125.9934235,52.5831337],[126.003212,52.5802345],[126.0158997,52.5784225],[126.027153,52.5784225],[126.0351181,52.5795097],[126.0387421,52.5813217],[126.0427322,52.5831337],[126.0449066,52.5849495],[126.047081,52.5867615],[126.0496216,52.5885735],[126.0506897,52.5925636],[126.0520935,52.5944748],[126.0534897,52.5968971],[126.0552673,52.5999565],[126.0590973,52.6012306],[126.0638199,52.6021233],[126.0684128,52.6021233],[126.0740128,52.6012306],[126.0791168,52.6002121],[126.0839615,52.5990639],[126.0882874,52.5974083],[126.0928802,52.5952377],[126.0974731,52.5925636],[126.1010437,52.5897598],[126.1051178,52.5873375],[126.1100922,52.5847855],[126.1181183,52.5808372],[126.1257706,52.5770111],[126.1340637,52.5738258],[126.1397934,52.571785],[126.1450119,52.5692368],[126.1501236,52.5669403],[126.154068,52.5638809],[126.1590271,52.5603142],[126.1660538,52.5553398],[126.1720428,52.5516434],[126.1745911,52.5497322],[126.1780319,52.5473099],[126.180069,52.5455246],[126.184021,52.5429764],[126.1875916,52.5408096],[126.1920471,52.5377502],[126.1947327,52.5353279],[126.1981735,52.5329056],[126.2009735,52.53125],[126.20327,52.5289536],[126.2033997,52.5262794],[126.2035217,52.5238571],[126.2035217,52.5213089],[126.2030106,52.5185013],[126.2007217,52.5155716],[126.1984329,52.5126381],[126.1965103,52.5098343],[126.1944733,52.506649],[126.1915436,52.5032082],[126.1894989,52.5004005],[126.1878433,52.4965782],[126.1856766,52.4933929],[126.184021,52.4904594],[126.1821136,52.4884186],[126.1807098,52.4861259],[126.1803207,52.4839592],[126.180069,52.4825554],[126.1799393,52.4808998],[126.1798172,52.4784775],[126.1799393,52.4761848],[126.1807098,52.4742699],[126.1816025,52.4724884],[126.1825027,52.4709587],[126.1832581,52.4692993],[126.1846619,52.4673882],[126.1874619,52.4657288],[126.1901398,52.4647102],[126.1939621,52.4636917],[126.1980362,52.4639473],[126.2018738,52.4644547],[126.2046738,52.4650917],[126.2078629,52.4663696],[126.2110367,52.467514],[126.2153778,52.4685364],[126.2217484,52.470192],[126.2286377,52.4715958],[126.2366562,52.4722328],[126.2440567,52.4724884],[126.2504272,52.4722328],[126.2559128,52.4726143],[126.2605133,52.4721031],[126.2635727,52.4714661],[126.2659836,52.4700661],[126.26828,52.4673882],[126.2705765,52.4647102],[126.2740173,52.4607582],[126.2786026,52.4551506],[126.2817917,52.4517097],[126.2851028,52.4480133],[126.2899475,52.4431686],[126.295433,52.438961],[126.2996368,52.4348831],[126.3047333,52.4316978],[126.3088226,52.4282532],[126.31353,52.4250679],[126.3177338,52.42099],[126.3215637,52.4178009],[126.3253937,52.4141045],[126.3294601,52.4105377],[126.3331604,52.4077339],[126.3366013,52.405056],[126.3396606,52.4022522],[126.3415833,52.3988075],[126.3441162,52.3947296],[126.3455276,52.3898849],[126.3469162,52.3864441],[126.3471832,52.384407],[126.3471832,52.3819847],[126.3478165,52.3789253],[126.3476868,52.3754807],[126.3474274,52.3716583],[126.3474274,52.3680878],[126.3475571,52.3637543],[126.3466721,52.3587837],[126.3451385,52.3561058],[126.3432312,52.3536835],[126.3423386,52.3513908],[126.3388977,52.3488426],[126.3366013,52.3465462],[126.3342972,52.3441238],[126.3322678,52.3429794],[126.3298492,52.3417015],[126.3269119,52.3403015],[126.3255081,52.3397903],[126.3243637,52.3385162],[126.3232193,52.3368607],[126.322197,52.3352013],[126.3219528,52.3331642],[126.3219528,52.3302307],[126.3219528,52.328064],[126.3218231,52.3265343],[126.3218231,52.3252602],[126.3216934,52.3239861],[126.3216934,52.3225822],[126.3218231,52.3211823],[126.3216934,52.3195229],[126.3219528,52.3181229],[126.3224564,52.3165932],[126.3233414,52.3144264],[126.3247528,52.3120041],[126.3258972,52.3097076],[126.3281937,52.3075409],[126.3304825,52.3055],[126.3322678,52.3030815],[126.3345566,52.3016777],[126.3380127,52.3002739],[126.3420792,52.2997665],[126.3494797,52.2996368],[126.3585281,52.3002739],[126.3670731,52.3018036],[126.3742065,52.3025703],[126.3840179,52.3023148],[126.3906479,52.3021889],[126.3984222,52.3015518],[126.4033432,52.300148],[126.4085617,52.300148],[126.415062,52.300148],[126.4192734,52.2991295],[126.4228363,52.2978554],[126.4261475,52.2955589],[126.4274216,52.2932663],[126.4279327,52.2900772],[126.4279327,52.2839584],[126.4281921,52.2796249],[126.4275513,52.2780952],[126.4261475,52.276947],[126.4230881,52.2760582],[126.4185028,52.2764397],[126.4141693,52.2780952],[126.4083023,52.2791176],[126.4048615,52.2792435],[126.4021835,52.2793694],[126.3997726,52.2789879],[126.3968277,52.2780952],[126.3935165,52.2766953],[126.3879089,52.2738876],[126.3831863,52.2713394],[126.3765564,52.2685356],[126.3701935,52.2658577],[126.3644638,52.2645836],[126.357193,52.2625465],[126.3496704,52.2612686],[126.3432922,52.2591019],[126.3394699,52.2569351],[126.3371735,52.255661],[126.3347473,52.254261],[126.33284,52.2531128],[126.3309326,52.2513275],[126.3286972,52.248394],[126.3239822,52.2435532],[126.3184967,52.2408752],[126.3117371,52.2381973],[126.3062668,52.2355194],[126.3026962,52.2325897],[126.3002701,52.2290192],[126.2987366,52.2254524],[126.2977219,52.2211189],[126.2967072,52.2164001],[126.2965775,52.2116852],[126.2977219,52.2076073],[126.3012924,52.2030182],[126.3066483,52.1979179],[126.3144226,52.1939659],[126.3224564,52.1926918],[126.3312531,52.191288],[126.337883,52.1902695],[126.3465424,52.1892509],[126.3536224,52.1883583],[126.3604965,52.1868286],[126.3681488,52.1855545],[126.3770828,52.1827507],[126.3854828,52.1819839],[126.3923721,52.181221],[126.3987427,52.1801987],[126.4048615,52.1791801],[126.4099579,52.1776505],[126.4160767,52.1763763],[126.4209213,52.1748466],[126.4267883,52.1730614],[126.4352036,52.1712761],[126.4420929,52.1689835],[126.4515228,52.166687],[126.4611969,52.1638832],[126.4698715,52.1623535],[126.4772568,52.161335],[126.4856796,52.1592941],[126.4953613,52.1577644],[126.5030136,52.1541977],[126.50811,52.1521568],[126.5119324,52.1490974],[126.5144882,52.1475677],[126.5172882,52.1460381],[126.520607,52.1447639],[126.5241699,52.1432343],[126.5276871,52.1415329],[126.5307999,52.1401749],[126.5328369,52.1389008],[126.5358963,52.1376266],[126.5394669,52.1366043],[126.5444489,52.1353416],[126.5466003,52.1342239],[126.548317,52.1327629],[126.5515823,52.1306992],[126.5526962,52.1289825],[126.5527878,52.1264],[126.5517578,52.1236496],[126.5503769,52.1210709],[126.5491791,52.1188354],[126.5478897,52.1160851],[126.5463409,52.1130753],[126.5440598,52.1103249],[126.5421829,52.106884],[126.5409698,52.1044769],[126.5402832,52.1013832],[126.540451,52.0991478],[126.5407867,52.0965691],[126.5411377,52.094162],[126.5409698,52.0917549],[126.5406265,52.0898628],[126.5397568,52.0871124],[126.5389023,52.085392],[126.5376968,52.0828133],[126.5366669,52.0805779],[126.5347672,52.077137],[126.5308228,52.0747299],[126.5291138,52.0737],[126.5268707,52.0726662],[126.5235977,52.0714645],[126.521019,52.0706024],[126.5184402,52.0694008],[126.5161972,52.067852],[126.5144882,52.0664787],[126.5122528,52.0640678],[126.5108795,52.0614891],[126.5100174,52.0580521],[126.5094986,52.055645],[126.5079498,52.0523758],[126.5055466,52.0501404],[126.503479,52.0489388],[126.4988403,52.0467033],[126.4953995,52.0453262],[126.4910965,52.0446396],[126.4859467,52.0434341],[126.4811325,52.0424042],[126.4768295,52.0417175],[126.473053,52.0413704],[126.466507,52.0398254],[126.4611816,52.0384483],[126.4577408,52.0372467],[126.4546509,52.0356979],[126.4508667,52.0332909],[126.4474335,52.0307121],[126.4453735,52.0291634],[126.4429626,52.0274429],[126.4407196,52.0253792],[126.4398117,52.0238876],[126.4391632,52.0219383],[126.4392929,52.0203094],[126.4397964,52.0169983],[126.4397964,52.0139427],[126.4403076,52.0108833],[126.44133,52.0075722],[126.442337,52.0040054],[126.4446411,51.9994164],[126.445137,51.9978905],[126.4466782,51.9950867],[126.4481964,51.9910088],[126.4494781,51.985405],[126.4499893,51.9810715],[126.4505005,51.9782715],[126.4512634,51.9729195],[126.4520264,51.967823],[126.4520264,51.9645119],[126.4522934,51.9606895],[126.4527893,51.9568672],[126.4535599,51.9527931],[126.454567,51.9497337],[126.4578934,51.9456558],[126.4589081,51.9446373],[126.4634933,51.9415817],[126.4660416,51.9397964],[126.4703827,51.9367409],[126.4744492,51.9339371],[126.4781876,51.9309845],[126.4836884,51.9282341],[126.4891891,51.9248581],[126.4933014,51.9224701],[126.4968719,51.920433],[126.5012131,51.9173737],[126.5055313,51.9135551],[126.5113907,51.9084587],[126.5159836,51.9043808],[126.5200577,51.8992844],[126.5241318,51.8952065],[126.5261688,51.8938522],[126.5302505,51.8911324],[126.534317,51.8865471],[126.5373764,51.8822136],[126.5424805,51.8753357],[126.5465469,51.8697281],[126.5493469,51.8643799],[126.5525436,51.8608322],[126.555687,51.85392],[126.556633,51.8470039],[126.558403,51.8407249],[126.5622864,51.8365631],[126.5661926,51.8318062],[126.5709534,51.8257484],[126.5770035,51.8175278],[126.5817566,51.812336],[126.5860901,51.807579],[126.5899811,51.8032532],[126.5956116,51.7971954],[126.5990677,51.7937355],[126.6033936,51.7889748],[126.6059875,51.7863808],[126.6120529,51.78162],[126.6168137,51.777729],[126.6228638,51.7729683],[126.6302185,51.7669144],[126.6358414,51.7625885],[126.6427612,51.7565308],[126.6462173,51.75177],[126.6479568,51.749176],[126.6509933,51.7439842],[126.654007,51.7396584],[126.6570435,51.7366295],[126.6622314,51.7331696],[126.6665573,51.7314377],[126.6743469,51.7288437],[126.6851578,51.7284088],[126.6933823,51.7288437],[126.700737,51.7288437],[126.7059174,51.7271118],[126.7098236,51.7245178],[126.7119827,51.7223549],[126.7145767,51.720192],[126.7189026,51.7154312],[126.7227936,51.7111053],[126.7245331,51.7072105],[126.7245331,51.7041855],[126.7236633,51.6985588],[126.7227936,51.6959648],[126.7201996,51.6916389],[126.7184677,51.6890411],[126.7109222,51.6867447],[126.7080917,51.6848602],[126.7058868,51.6820335],[126.7052612,51.6788902],[126.7065201,51.6757469],[126.710289,51.6741753],[126.7143784,51.6735497],[126.7184601,51.6735497],[126.7209778,51.6726074],[126.7236633,51.6691437],[126.7271194,51.6652489],[126.7301483,51.6604881],[126.7314529,51.6565971],[126.7323227,51.6531334],[126.7323227,51.6475105],[126.7310181,51.6431847],[126.7284164,51.6353989],[126.7254028,51.6302071],[126.7232285,51.6276093],[126.7184677,51.6241493],[126.7158737,51.6228523],[126.711113,51.6206894],[126.7059174,51.6189575],[126.6985703,51.6159286],[126.6946793,51.6150665],[126.6886215,51.6133347],[126.6851578,51.6124687],[126.680397,51.6116028],[126.6782379,51.6103058],[126.6756363,51.6090088],[126.673912,51.6068459],[126.6726227,51.603817],[126.6717529,51.601223],[126.6721802,51.5986252],[126.6730423,51.5947304],[126.6734772,51.5921364],[126.675209,51.5886765],[126.6786728,51.5843506],[126.6843033,51.5795898],[126.6907806,51.5769958],[126.6994324,51.5722351],[126.7093887,51.5692062],[126.7176132,51.5666122],[126.7266922,51.5644493],[126.7366409,51.5622864],[126.7449265,51.5605087],[126.7537079,51.5588112],[126.7651901,51.5566635],[126.7764435,51.5540657],[126.7872467,51.5514717],[126.7946091,51.5497398],[126.8026581,51.5477753],[126.8114319,51.5449448],[126.8171082,51.5423851],[126.8209991,51.5397911],[126.826622,51.5358963],[126.8296509,51.5320015],[126.8309479,51.5285416],[126.8309479,51.5237846],[126.8300934,51.5203209],[126.8295288,51.5182953],[126.8287582,51.5167465],[126.826561,51.5142326],[126.8227768,51.5104599],[126.8199615,51.5060616],[126.8165131,51.5016632],[126.8124237,51.4972649],[126.80896,51.4941216],[126.8061295,51.4903488],[126.8029938,51.4872093],[126.7982788,51.4834366],[126.7945023,51.479351],[126.7919922,51.4765244],[126.7891617,51.4724388],[126.7857132,51.4686661],[126.7832031,51.46521],[126.7794266,51.4598694],[126.7781677,51.4570427],[126.7753372,51.4507561],[126.7750168,51.4485588],[126.7750168,51.4454155],[126.7743988,51.44133],[126.7750168,51.4369316],[126.7759628,51.4347305],[126.7781677,51.4319038],[126.7803574,51.4300156],[126.7853928,51.4265594],[126.7901077,51.4243622],[126.7951431,51.4221611],[126.8017273,51.4196472],[126.8058167,51.418705],[126.8124237,51.4171333],[126.8183899,51.4155617],[126.8253021,51.4143066],[126.8363037,51.4133644],[126.8432236,51.4124184],[126.8472977,51.4117928],[126.8535767,51.4114761],[126.8579788,51.4117928],[126.8639526,51.4121056],[126.8711777,51.4117928],[126.8774567,51.4111633],[126.8815536,51.4105339],[126.8843765,51.4095917],[126.8906631,51.4073906],[126.8944321,51.4055061],[126.8978882,51.4036217],[126.9019775,51.400795],[126.9051132,51.3979645],[126.9079437,51.3954506],[126.911087,51.3913651],[126.9135971,51.3882256],[126.915802,51.3844528],[126.9176865,51.379425],[126.9183121,51.3743973],[126.9183121,51.3696823],[126.9177399,51.3688545],[126.9179993,51.3665428],[126.9170609,51.3633995],[126.9164276,51.3605728],[126.9154892,51.3561707],[126.9145432,51.353344],[126.9120331,51.3502007],[126.9088898,51.3476868],[126.9057465,51.3461151],[126.9007187,51.3445473],[126.897583,51.3436012],[126.8925476,51.3423462],[126.8884583,51.341404],[126.8840637,51.3407745],[126.8799667,51.3407745],[126.8733826,51.341404],[126.8689804,51.3417168],[126.8630066,51.3420334],[126.8598633,51.3423462],[126.8560867,51.3429756],[126.8532715,51.3432884],[126.8485565,51.3439178],[126.8441467,51.3439178],[126.8419571,51.3442307],[126.838501,51.3439178],[126.8353577,51.3436012],[126.8296967,51.342659],[126.8262405,51.3420334],[126.8234177,51.3410873],[126.8209,51.3395195],[126.8190231,51.3373184],[126.8174362,51.3351173],[126.8152466,51.3329201],[126.8139877,51.3310318],[126.8121033,51.326004],[126.8114777,51.3234901],[126.8099136,51.3203506],[126.80896,51.3178368],[126.8080215,51.3150063],[126.8067627,51.3112373],[126.8064499,51.3084068],[126.8070831,51.3033791],[126.8080215,51.2992973],[126.8095932,51.2936401],[126.8111572,51.2895546],[126.8124237,51.2854691],[126.8158722,51.2794991],[126.8183899,51.2754135],[126.8209,51.2722702],[126.8246689,51.2685013],[126.8293762,51.2644157],[126.8353577,51.2606468],[126.8397522,51.2578163],[126.8466721,51.2540474],[126.850441,51.2518463],[126.8557816,51.2502747],[126.8639526,51.248703],[126.8692932,51.247448],[126.8784103,51.2461891],[126.8850021,51.2461891],[126.8938065,51.2465057],[126.8994598,51.247448],[126.9032288,51.2490196],[126.9057465,51.2505913],[126.9076309,51.2527885],[126.9082565,51.2549896],[126.9088898,51.2584457],[126.9085693,51.2641029],[126.9079437,51.2681885],[126.9073181,51.2719574],[126.9054337,51.2763557],[126.9019775,51.2801285],[126.897583,51.2829552],[126.8909836,51.2867279],[126.8868866,51.2895546],[126.8818665,51.2926979],[126.8768387,51.2964668],[126.8727493,51.2999229],[126.8692932,51.3033791],[126.8661499,51.3084068],[126.8645782,51.312809],[126.8648911,51.3168945],[126.8661499,51.318779],[126.8692932,51.320034],[126.874321,51.3197212],[126.8812332,51.3206635],[126.8850021,51.3212929],[126.8938065,51.3228645],[126.8988266,51.3234901],[126.9070129,51.324749],[126.9113998,51.326004],[126.9183121,51.3275757],[126.9236526,51.3288345],[126.9283676,51.3300896],[126.934967,51.3319778],[126.9403076,51.3329201],[126.9434509,51.3335457],[126.9481735,51.3335457],[126.9525681,51.3326035],[126.9585266,51.3300896],[126.9623108,51.3285179],[126.9660797,51.326004],[126.9689026,51.3231773],[126.9717331,51.318779],[126.9732971,51.3156357],[126.9739304,51.3121796],[126.9739304,51.3090363],[126.9720535,51.3055801],[126.9701614,51.3008652],[126.9676514,51.296154],[126.9657669,51.2930107],[126.9623108,51.2882957],[126.9560165,51.2798119],[126.9525681,51.2754135],[126.9487915,51.2710152],[126.9431381,51.2647285],[126.939682,51.2597008],[126.9356003,51.2565613],[126.9302521,51.2524757],[126.9249115,51.248703],[126.9217682,51.2461891],[126.9186172,51.2417908],[126.9154892,51.2380219],[126.9098282,51.2323647],[126.9070129,51.2273369],[126.9035416,51.2232513],[126.9010315,51.220108],[126.899147,51.2160225],[126.8972626,51.2122536],[126.8950577,51.2075386],[126.8947372,51.2037697],[126.8944321,51.1984253],[126.8944321,51.1930847],[126.8941193,51.1868019],[126.8944321,51.1823997],[126.8947372,51.1754875],[126.8956909,51.1717186],[126.8978882,51.1648026],[126.8997726,51.1600914],[126.9007797,51.1587791],[126.9013367,51.1569481],[126.9019775,51.1506615],[126.9032288,51.1450081],[126.9032288,51.1406059],[126.9032288,51.1374664],[126.903862,51.1324387],[126.9057465,51.1280365],[126.9082565,51.1242676],[126.910141,51.1186104],[126.9120331,51.114212],[126.9132767,51.1079292],[126.9145432,51.0997581],[126.9145432,51.0934715],[126.9126587,51.0865593],[126.9107666,51.0802765],[126.909523,51.0771332],[126.910141,51.0733604],[126.9120331,51.0670776],[126.9139175,51.0639343],[126.9189529,51.0582771],[126.9233398,51.0563927],[126.9271164,51.0545082],[126.933403,51.0507355],[126.9371719,51.0482216],[126.9434509,51.0444527],[126.9465866,51.0419388],[126.9509964,51.0394249],[126.957283,51.0356522],[126.9642029,51.0312538],[126.9698486,51.0281105],[126.9761429,51.0237122],[126.9805298,51.0205688],[126.9861908,51.014286],[126.9912186,51.0105133],[126.9968719,51.0054855],[127.0031586,50.9966888],[127.005043,50.9922905],[127.0100708,50.9841194],[127.0150986,50.9765778],[127.0158234,50.9757042],[127.0213928,50.9690361],[127.0320663,50.9602356],[127.0389786,50.9558372],[127.0515518,50.9520683],[127.0628586,50.9482956],[127.0729065,50.9445267],[127.0829697,50.9413834],[127.0898895,50.9388695],[127.0986862,50.9344711],[127.1055984,50.9306984],[127.1125107,50.9275551],[127.1200638,50.9225311],[127.1275864,50.9156151],[127.1320038,50.9112167],[127.1376495,50.9049339],[127.1426773,50.8986473],[127.1477127,50.8923645],[127.1546173,50.8829346],[127.1608963,50.8722534],[127.1697006,50.8590546],[127.1747284,50.8527679],[127.1828995,50.8446007],[127.1929626,50.8314018],[127.2011337,50.8213463],[127.2086563,50.8112907],[127.2136917,50.8012352],[127.2180862,50.7930641],[127.2294083,50.7773514],[127.2381973,50.7710686],[127.2476273,50.7672958],[127.2551727,50.7635269],[127.2602005,50.761013],[127.2675629,50.7588921],[127.2759094,50.7559853],[127.2811432,50.7540817],[127.2842484,50.7515335],[127.2859573,50.7484436],[127.2865982,50.7434158],[127.2872162,50.7383881],[127.2853394,50.7327309],[127.2815704,50.7270775],[127.2796936,50.7207909],[127.2790527,50.7157631],[127.2790527,50.7107353],[127.2790527,50.7082214],[127.2790527,50.707592],[127.2793121,50.7070198],[127.2788773,50.7031212],[127.2793121,50.6992264],[127.2793121,50.6944656],[127.2788773,50.688839],[127.2788773,50.6832085],[127.2814789,50.6762848],[127.2840729,50.6693573],[127.2871017,50.6632957],[127.2897034,50.659832],[127.2944565,50.6537743],[127.29879,50.6490097],[127.3074493,50.6412201],[127.3109131,50.6381874],[127.3199997,50.6299629],[127.3247681,50.6252022],[127.3316879,50.6195755],[127.338623,50.6122169],[127.3442535,50.6048584],[127.3507385,50.5944672],[127.3529129,50.5858078],[127.3546371,50.5784492],[127.3559265,50.5620003],[127.3533325,50.5533409],[127.3481979,50.5461082],[127.3425064,50.5399246],[127.3355865,50.5355949],[127.3295288,50.5312653],[127.3217316,50.5243378],[127.3161087,50.519577],[127.311348,50.5152473],[127.3074493,50.5109177],[127.3026886,50.5061569],[127.2992172,50.5022621],[127.294899,50.4979324],[127.2901306,50.4940376],[127.2853699,50.4879761],[127.2827835,50.4849472],[127.2801666,50.4801826],[127.2793732,50.4769478],[127.2780228,50.4749908],[127.2784424,50.472393],[127.2801666,50.4706612],[127.2827835,50.4684944],[127.2849426,50.4667664],[127.2883987,50.4641685],[127.2918625,50.4607048],[127.2944565,50.4585381],[127.300087,50.4555092],[127.304863,50.4542122],[127.3109131,50.4529114],[127.3187027,50.4511795],[127.3230362,50.4503136],[127.3290863,50.4494476],[127.3351517,50.4472847],[127.3394928,50.4455528],[127.3425064,50.4442558],[127.3459778,50.442524],[127.3503036,50.4390602],[127.3529129,50.4373283],[127.3546371,50.4347305],[127.356369,50.4308357],[127.3581009,50.4269371],[127.3593979,50.4234772],[127.36026,50.4187126],[127.36026,50.4139519],[127.3598328,50.4087563],[127.35952,50.4046288],[127.3586731,50.3998184],[127.3572464,50.3958588],[127.3554993,50.3927422],[127.3533325,50.3888435],[127.3511734,50.3871117],[127.3485718,50.3845139],[127.3464127,50.3819199],[127.3429489,50.3775902],[127.3403473,50.3754234],[127.3368835,50.3715286],[127.3334198,50.3676338],[127.3308334,50.3633041],[127.3299637,50.3607063],[127.3295288,50.3568115],[127.3290863,50.3524818],[127.3295288,50.3481522],[127.3316879,50.3377647],[127.3329926,50.3317032],[127.3355865,50.3282394],[127.338623,50.3217468],[127.3420792,50.3148193],[127.345108,50.3109245],[127.3537674,50.3018341],[127.358963,50.2970734],[127.3645935,50.2931747],[127.3706512,50.2905769],[127.3797531,50.2866821],[127.3923035,50.2819214],[127.4000931,50.2797546],[127.4074478,50.2775917],[127.4199982,50.2745628],[127.4334183,50.2715302],[127.448143,50.2697983],[127.4602585,50.2680664],[127.468483,50.2663383],[127.4770966,50.264328],[127.4817581,50.2631493],[127.4875336,50.2615738],[127.4944611,50.258976],[127.5005188,50.2563782],[127.5061493,50.2550812],[127.5113373,50.2533493],[127.5191269,50.2511864],[127.5251923,50.2503204],[127.53125,50.2485886],[127.5390472,50.2464218],[127.5481262,50.2442589],[127.5541992,50.2429619],[127.5645828,50.2403641],[127.5736771,50.2403641],[127.5801697,50.2394981],[127.5862274,50.2360344],[127.588829,50.2321396],[127.5910034,50.228241],[127.591423,50.2247772],[127.594017,50.2182846],[127.5979233,50.2126579],[127.5992203,50.2100601],[127.598793,50.2035675],[127.5970535,50.1970749],[127.594017,50.1914482],[127.5883865,50.1832199],[127.5866623,50.180191],[127.5831985,50.1702347],[127.5805969,50.1633072],[127.5780029,50.1546516],[127.5758438,50.1477242],[127.5741119,50.1433945],[127.5706482,50.1373367],[127.5658875,50.1321411],[127.5611267,50.1265144],[127.5554962,50.1182899],[127.5472717,50.1087646],[127.542511,50.103569],[127.537323,50.0983734],[127.5338516,50.0953445],[127.5290909,50.0918808],[127.5232086,50.0851707],[127.5186996,50.0797615],[127.514801,50.0754318],[127.51091,50.0706711],[127.5044174,50.0641785],[127.4957581,50.0537872],[127.4935913,50.0481606],[127.4918594,50.0395012],[127.4920807,50.0370445],[127.4923172,50.0345535],[127.4925537,50.0298805],[127.4930267,50.0258217],[127.4937363,50.0186577],[127.4949112,50.009903],[127.4943466,50.0042458],[127.4954834,49.9968872],[127.4971771,49.9883995],[127.5039673,49.9770813],[127.5079269,49.9714203],[127.5118866,49.9651947],[127.5147171,49.961235],[127.5186768,49.9555779],[127.5220795,49.9510498],[127.5266037,49.9414291],[127.5277328,49.9363365],[127.5299988,49.928978],[127.5305634,49.9227524],[127.5305634,49.9159622],[127.5288696,49.9103012],[127.5266037,49.9029465],[127.5249023,49.8995514],[127.5215073,49.8882332],[127.5203781,49.8825722],[127.5198135,49.8763466],[127.5198135,49.8672943],[127.5209427,49.8627663],[127.5215073,49.8565407],[127.5215073,49.84692],[127.5226364,49.8384323],[127.5243378,49.8333397],[127.5305634,49.823719],[127.5407486,49.8152313],[127.5486832,49.8090057],[127.5565872,49.8033447],[127.5656509,49.7965546],[127.5752716,49.7886314],[127.5848923,49.7863693],[127.597908,49.7846718],[127.6086578,49.7829742],[127.621109,49.7824059],[127.6318665,49.7818413],[127.6392212,49.7812729],[127.6516724,49.7773132],[127.6595917,49.7705231],[127.6635513,49.7654305],[127.6663818,49.7597694],[127.6663818,49.7546768],[127.6646881,49.7484512],[127.6635513,49.7416611],[127.6624222,49.7348709],[127.6607285,49.7280769],[127.6607285,49.7212868],[127.6595917,49.7161942],[127.6607285,49.7099686],[127.6629868,49.7043114],[127.6640472,49.7013283],[127.6656189,49.695755],[127.667923,49.6934586],[127.6733932,49.6879845],[127.6797409,49.6802177],[127.6868134,49.6752739],[127.693161,49.6710358],[127.6988068,49.6646767],[127.7072906,49.6576157],[127.7171783,49.654789],[127.7263565,49.6519661],[127.7320099,49.6491394],[127.7369537,49.6463165],[127.7418976,49.6449013],[127.7468414,49.6434898],[127.7531967,49.6406631],[127.7602615,49.6371346],[127.7680283,49.6307755],[127.7694397,49.6286583],[127.7757874,49.6208878],[127.7772064,49.6180649],[127.7793274,49.6117058],[127.7821579,49.6046448],[127.7878036,49.5961685],[127.7906265,49.5926361],[127.7976913,49.5898132],[127.8019333,49.588398],[127.8153534,49.5869865],[127.825943,49.5862808],[127.8372421,49.5876923],[127.8429031,49.5876923],[127.8527832,49.5869865],[127.8633804,49.5855751],[127.8711472,49.5834541],[127.8845673,49.5806313],[127.8923264,49.5806313],[127.9001007,49.5806313],[127.9106979,49.5806313],[127.9163513,49.5834541],[127.9248276,49.588398],[127.9283524,49.5919304],[127.9375381,49.5982857],[127.9467163,49.6018181],[127.9573135,49.6011124],[127.9664917,49.59758],[127.972847,49.5933418],[127.9776306,49.5876999],[127.9806213,49.5841637],[127.9855728,49.579216],[127.9919205,49.5742722],[127.9975662,49.5700378],[128.0025177,49.5657997],[128.0102844,49.5615616],[128.0180511,49.555912],[128.028656,49.5502586],[128.0385437,49.5474358],[128.0526581,49.5446091],[128.0632629,49.5417862],[128.0731506,49.5403709],[128.0844421,49.5403709],[128.0971527,49.5417862],[128.1098785,49.5431976],[128.1169281,49.5439034],[128.1296539,49.5424919],[128.1402435,49.5410767],[128.1522522,49.5382538],[128.1621399,49.5354271],[128.1804962,49.5340157],[128.1911011,49.5354271],[128.2038116,49.5389595],[128.2144012,49.5410767],[128.227829,49.5439034],[128.2405396,49.5453148],[128.2525482,49.5439034],[128.2652588,49.5410767],[128.2793732,49.5403709],[128.288559,49.5410767],[128.3012695,49.5410767],[128.3111572,49.5410767],[128.3259888,49.5431976],[128.3316498,49.5446091],[128.3372955,49.54673],[128.3429413,49.5495529],[128.3500061,49.5594406],[128.35495,49.5672112],[128.35849,49.572155],[128.360611,49.5756874],[128.3641357,49.579216],[128.3683777,49.5827484],[128.3747253,49.5862808],[128.3796692,49.5876923],[128.3860321,49.5891075],[128.3945007,49.5891075],[128.4128723,49.5891075],[128.4291077,49.5891075],[128.4354706,49.5891075],[128.4503021,49.588398],[128.4594879,49.5891075],[128.4671478,49.5898056],[128.4744263,49.591362],[128.4842224,49.5921974],[128.4966125,49.5948067],[128.5118561,49.5968208],[128.5272827,49.5967636],[128.5462036,49.5948067],[128.5572968,49.5948067],[128.570343,49.5941544],[128.5866547,49.5921974],[128.6043701,49.5905838],[128.6238403,49.5921974],[128.6355896,49.593502],[128.6494598,49.5903244],[128.6660919,49.5877266],[128.6832428,49.587204],[128.6931305,49.5835648],[128.7003937,49.5814857],[128.7061157,49.5820084],[128.7108002,49.5866852],[128.7102814,49.5918846],[128.711319,49.5960426],[128.7243195,49.5974197],[128.7373657,49.5967636],[128.7497711,49.5961113],[128.7575989,49.5948067],[128.7660828,49.593502],[128.777832,49.5889359],[128.7804413,49.5876312],[128.7856598,49.5843697],[128.789566,49.5811081],[128.7928314,49.5765381],[128.7954407,49.570015],[128.7960968,49.5647964],[128.7960968,49.5582695],[128.7960968,49.5497894],[128.7954407,49.5452232],[128.7934875,49.5413055],[128.7876129,49.5347824],[128.7836914,49.5334778],[128.7739105,49.5295639],[128.7673798,49.5269547],[128.7621613,49.523037],[128.7523804,49.5152092],[128.7497711,49.5125999],[128.7471619,49.5093384],[128.7445526,49.5067291],[128.7425995,49.5008545],[128.7438965,49.495636],[128.7458496,49.4878082],[128.747818,49.4851952],[128.7504272,49.4838905],[128.7549896,49.480629],[128.7621613,49.4773674],[128.7693481,49.4754105],[128.7771759,49.4754105],[128.7863007,49.4754105],[128.7947845,49.4754105],[128.7980499,49.4760628],[128.8065338,49.4767151],[128.817627,49.4793243],[128.8247986,49.4812813],[128.8352356,49.4819336],[128.8463287,49.4832382],[128.858078,49.4845428],[128.8685455,49.4848099],[128.877655,49.4825859],[128.8919983,49.4793243],[128.9004822,49.4760628],[128.9083099,49.4734535],[128.9161377,49.468235],[128.9246216,49.4656219],[128.9335175,49.4634972],[128.9396362,49.4630127],[128.9494171,49.4617081],[128.9559479,49.4610558],[128.9631195,49.4604034],[128.9735565,49.4597511],[128.9794312,49.4590988],[128.9937897,49.4577942],[128.999649,49.4558372],[129.0068359,49.4512711],[129.0140076,49.4460487],[129.0172729,49.4395256],[129.0205383,49.4343071],[129.0224915,49.4297371],[129.0249939,49.4229546],[129.0283661,49.4166908],[129.0309753,49.4088593],[129.0348816,49.3997269],[129.03685,49.3951607],[129.0414124,49.3886337],[129.0446777,49.3847198],[129.0492401,49.378849],[129.0544586,49.3736267],[129.0583801,49.3690605],[129.0642548,49.365799],[129.0722961,49.3605843],[129.0818634,49.3560104],[129.089035,49.3547058],[129.0962219,49.3540535],[129.1066589,49.3540535],[129.1138306,49.3540535],[129.1236267,49.3553581],[129.1334076,49.3579712],[129.1392822,49.3612328],[129.1451569,49.365799],[129.1523285,49.3703651],[129.1588593,49.3755875],[129.1610718,49.3778],[129.162735,49.3787766],[129.1674194,49.3813744],[129.1736603,49.3855324],[129.1824951,49.3907318],[129.1882019,49.3933296],[129.1959991,49.3964462],[129.2069244,49.3974876],[129.2167969,49.3985252],[129.2230377,49.3985252],[129.2303162,49.3969688],[129.2381134,49.3954086],[129.244339,49.3928108],[129.2510986,49.3907318],[129.2588959,49.3865738],[129.2646179,49.3829346],[129.2718964,49.3792953],[129.2776031,49.3761749],[129.2843628,49.3730583],[129.2906036,49.3704605],[129.2978821,49.3668213],[129.3020325,49.3647423],[129.3087921,49.3605843],[129.312439,49.3579865],[129.3126373,49.3578529],[129.3155518,49.3559074],[129.3217926,49.3553848],[129.3295898,49.3543472],[129.3358307,49.3543472],[129.3467407,49.3559074],[129.3529816,49.3564262],[129.3592072,49.3585052],[129.3638916,49.3611031],[129.365448,49.3642235],[129.3675232,49.3689003],[129.3670044,49.3756561],[129.365448,49.3876114],[129.3644104,49.3933296],[129.3644104,49.4016457],[129.3664856,49.4089241],[129.3680573,49.4141197],[129.37117,49.4208755],[129.3748016,49.4255562],[129.3810425,49.430233],[129.3893585,49.4338722],[129.3971558,49.43647],[129.4070282,49.4380302],[129.4184723,49.4380302],[129.4309387,49.4375114],[129.4376984,49.4375114],[129.4460144,49.4369888],[129.4532928,49.4354324],[129.4709625,49.432312],[129.4881134,49.4312744],[129.5016327,49.4297142],[129.5120239,49.4286728],[129.5172272,49.4271164],[129.5218964,49.423996],[129.5255432,49.419838],[129.5281372,49.4146385],[129.5296936,49.4073639],[129.5307465,49.3974876],[129.5312653,49.3917694],[129.5317841,49.3834534],[129.5328217,49.3756561],[129.5338593,49.3668213],[129.5343781,49.3605843],[129.5348969,49.354866],[129.536972,49.348629],[129.5380096,49.3418732],[129.5395813,49.3345947],[129.5411377,49.3278389],[129.5442505,49.3216019],[129.5478973,49.3138046],[129.5525665,49.3075676],[129.5556946,49.3044472],[129.5650482,49.2982101],[129.5744019,49.2919731],[129.5868683,49.2878151],[129.5977936,49.2862549],[129.6081848,49.2867775],[129.6222229,49.2883339],[129.636261,49.2909355],[129.6502838,49.2924919],[129.6585999,49.2930145],[129.6721191,49.2924919],[129.6799164,49.2919731],[129.6887512,49.2909355],[129.7012329,49.2872963],[129.7084961,49.2841759],[129.7152557,49.2789803],[129.717865,49.2769012],[129.7272186,49.2685852],[129.7298126,49.2654648],[129.7318878,49.2602654],[129.7344971,49.2540283],[129.7365723,49.2451935],[129.7381287,49.2373962],[129.7379608,49.2366676],[129.7381287,49.2363586],[129.7391663,49.2311592],[129.7396851,49.225441],[129.7402039,49.2192039],[129.7412415,49.2140083],[129.7433319,49.2088089],[129.7480011,49.2036133],[129.7552795,49.1984138],[129.7620392,49.1942558],[129.7724304,49.1911354],[129.7823181,49.1880188],[129.7932281,49.1869774],[129.8036194,49.1864586],[129.8171387,49.1848984],[129.8306427,49.179184],[129.8342896,49.1755447],[129.8368835,49.1693077],[129.8368835,49.1641083],[129.8368835,49.156311],[129.8368835,49.1485138],[129.8394928,49.1381187],[129.8420868,49.1318817],[129.8478088,49.1240845],[129.8618317,49.1116104],[129.8680725,49.1084938],[129.8805542,49.1027756],[129.8977051,49.0960197],[129.9122467,49.0913391],[129.9299316,49.0819855],[129.9418793,49.0752258],[129.9538422,49.0658722],[129.9637146,49.0549545],[129.9715118,49.0461197],[129.9766998,49.0398827],[129.9860687,49.0294876],[129.9954224,49.0201302],[130.0006104,49.0138931],[130.00737,49.0066185],[130.0167236,48.9983025],[130.0260773,48.991024],[130.0307617,48.9873848],[130.0401154,48.980629],[130.0489502,48.9754295],[130.0583038,48.9697151],[130.0661011,48.9655533],[130.0733795,48.9624367],[130.0796204,48.9587975],[130.08638,48.9551582],[130.0910492,48.9530792],[130.09729,48.9494438],[130.1061249,48.9473648],[130.1139221,48.9458046],[130.1232758,48.943203],[130.1352386,48.9380074],[130.1425171,48.9343681],[130.1539459,48.9296913],[130.1669464,48.9239731],[130.1773376,48.9177361],[130.1866913,48.9089012],[130.1955261,48.896946],[130.2014771,48.8882599],[130.2028046,48.8823929],[130.207489,48.8761559],[130.2111206,48.8725166],[130.2152863,48.869915],[130.2220459,48.8673172],[130.2308807,48.8652382],[130.2391968,48.8642006],[130.249588,48.863678],[130.2625885,48.8647194],[130.2750549,48.865757],[130.2849274,48.8673172],[130.3062439,48.8704376],[130.3197632,48.874073],[130.3291168,48.8777122],[130.3452301,48.8829117],[130.359787,48.8896675],[130.370697,48.8933067],[130.3847351,48.896946],[130.3966827,48.9000626],[130.4117584,48.9016228],[130.4263153,48.9026642],[130.4408569,48.9016228],[130.4528198,48.8995438],[130.4663391,48.8953857],[130.4777679,48.8886299],[130.4850464,48.8808327],[130.4894562,48.8730354],[130.4936218,48.8673172],[130.5009003,48.8621216],[130.5149384,48.85952],[130.5237732,48.8590012],[130.5336456,48.85952],[130.5487213,48.8605614],[130.5645752,48.863678],[130.574707,48.8662796],[130.5858765,48.8709564],[130.5957642,48.8761559],[130.6082306,48.8803139],[130.6248627,48.8839493],[130.6316223,48.8844719],[130.640976,48.8839493],[130.6487732,48.8834305],[130.6570892,48.8813515],[130.6664429,48.8771935],[130.6726837,48.8730354],[130.6763153,48.8693962],[130.6789246,48.863678],[130.6794434,48.8574409],[130.6784058,48.8538055],[130.6726837,48.8449669],[130.6690521,48.8428879],[130.6654053,48.8392487],[130.6568298,48.831974],[130.6485138,48.8262558],[130.640976,48.8195],[130.6363068,48.8143005],[130.6305847,48.8101425],[130.6243439,48.8049431],[130.6207123,48.8013077],[130.6160278,48.7955894],[130.6134338,48.79039],[130.6090088,48.7815552],[130.6048584,48.7737579],[130.600174,48.7633629],[130.5955048,48.7534866],[130.5913391,48.7436104],[130.5866547,48.7352943],[130.5817261,48.7264595],[130.5791321,48.7207413],[130.5749664,48.7119064],[130.5713348,48.706707],[130.5666504,48.6978722],[130.5665436,48.6967239],[130.5645752,48.6947517],[130.5598907,48.6843567],[130.556778,48.6791611],[130.5536499,48.670845],[130.5520935,48.6656456],[130.5484619,48.6609688],[130.5432587,48.6557693],[130.5401459,48.6516113],[130.5375366,48.6479721],[130.533905,48.6448555],[130.5323486,48.6417351],[130.531311,48.6380959],[130.5297394,48.6323814],[130.528183,48.629261],[130.5276642,48.625103],[130.528183,48.616787],[130.5292206,48.6141891],[130.5323486,48.6105499],[130.5349426,48.6095085],[130.5406647,48.6084709],[130.5453339,48.6079521],[130.5500183,48.6069107],[130.5583344,48.6058731],[130.5682068,48.6048317],[130.5765228,48.6027527],[130.5812073,48.6017151],[130.5853577,48.5991135],[130.5905609,48.5949554],[130.5947113,48.5902786],[130.596283,48.5876808],[130.6004333,48.5788422],[130.6025085,48.5705261],[130.6040802,48.5622101],[130.6051178,48.5575333],[130.6061554,48.551815],[130.6066742,48.545578],[130.6066742,48.54142],[130.607193,48.535183],[130.607193,48.5299835],[130.6082306,48.5237465],[130.6082306,48.5180283],[130.6092682,48.5123138],[130.6103058,48.5086746],[130.6108246,48.5045166],[130.612915,48.5013962],[130.6165466,48.4967194],[130.6207123,48.4946404],[130.6248627,48.4935989],[130.6311035,48.4915199],[130.6363068,48.4910011],[130.6435699,48.4915199],[130.6477356,48.4930801],[130.6534576,48.4941216],[130.6591644,48.4946404],[130.6643677,48.4951591],[130.6737213,48.4982796],[130.6789246,48.5008774],[130.6872406,48.5045166],[130.694519,48.506073],[130.7012787,48.508152],[130.7075043,48.5112724],[130.7153015,48.5128326],[130.7215424,48.5133514],[130.730896,48.5117912],[130.7386932,48.5107536],[130.7449341,48.5086746],[130.7496033,48.506073],[130.7563629,48.5013962],[130.7584534,48.4993172],[130.7610474,48.4946404],[130.762085,48.4889221],[130.762085,48.4847641],[130.7615662,48.4816437],[130.7579193,48.4748878],[130.7548065,48.4728088],[130.7490845,48.4676132],[130.7438965,48.4629326],[130.7412872,48.4592934],[130.7381744,48.455658],[130.7371368,48.4514999],[130.7355804,48.4473419],[130.7350616,48.4416237],[130.7371368,48.434864],[130.7386932,48.4296684],[130.7423401,48.4218712],[130.7454529,48.4151154],[130.7490845,48.4078369],[130.7511749,48.4036789],[130.7537689,48.3979607],[130.7553253,48.390686],[130.7568817,48.3849678],[130.7589722,48.378212],[130.7610474,48.3735313],[130.7631226,48.3698921],[130.7657166,48.3662567],[130.7698822,48.3610573],[130.7733002,48.3590622],[130.776123,48.3574181],[130.7818298,48.3548203],[130.7822266,48.3548012],[130.7828827,48.3543015],[130.7875519,48.3501434],[130.7937927,48.347023],[130.807312,48.3418274],[130.8119812,48.338707],[130.8161469,48.3335114],[130.8187408,48.3283119],[130.8234253,48.3194771],[130.8265381,48.3153191],[130.8291321,48.3121986],[130.8317413,48.3080406],[130.8332977,48.3054428],[130.8327789,48.3023224],[130.8312225,48.2971268],[130.8275757,48.2929688],[130.8244629,48.2908897],[130.8202972,48.2872505],[130.8161469,48.2836113],[130.8125,48.2799721],[130.8104248,48.2763329],[130.8083496,48.2742538],[130.8047028,48.2690582],[130.8021088,48.2669792],[130.7963867,48.2638588],[130.7922363,48.2617798],[130.7844391,48.2586632],[130.7797546,48.2576218],[130.7740326,48.2534637],[130.770401,48.2503471],[130.767807,48.2461891],[130.764679,48.2409897],[130.762085,48.2357941],[130.759491,48.2305946],[130.7574005,48.2264366],[130.7558441,48.2207184],[130.7548065,48.2150002],[130.7537689,48.2092819],[130.7542877,48.2020073],[130.7537689,48.1978493],[130.7527313,48.1936913],[130.7511749,48.1916122],[130.7475281,48.1874542],[130.7438965,48.1843338],[130.7402496,48.181736],[130.7360992,48.1791382],[130.7303772,48.177578],[130.7246552,48.1744576],[130.719986,48.1718597],[130.7163391,48.1692619],[130.7121887,48.1661415],[130.7075043,48.1630249],[130.7033539,48.1599045],[130.699707,48.1578255],[130.6942596,48.1552277],[130.6893158,48.1531487],[130.6851654,48.1500282],[130.6809998,48.1469116],[130.6752777,48.1432724],[130.6726837,48.1417122],[130.6643677,48.1328773],[130.6612549,48.1287193],[130.657608,48.1219635],[130.6560516,48.1162453],[130.6565704,48.1110458],[130.657608,48.106369],[130.6591644,48.100132],[130.6617737,48.0954514],[130.6633301,48.0933723],[130.6669617,48.0871353],[130.6695709,48.0829773],[130.6716461,48.0798607],[130.6747589,48.0725822],[130.6752777,48.0679054],[130.6768494,48.0616684],[130.6799622,48.0554314],[130.6820374,48.0528336],[130.686203,48.0497131],[130.6898346,48.0476341],[130.692688,48.0469208],[130.6950378,48.0455551],[130.7002258,48.0445137],[130.7064667,48.0413971],[130.7121887,48.0387993],[130.717392,48.0361977],[130.7210236,48.0346413],[130.7277832,48.0294418],[130.730896,48.0258026],[130.73349,48.0216446],[130.7355804,48.0180054],[130.7376556,48.0148888],[130.7397308,48.0117683],[130.7423401,48.0096893],[130.7449341,48.0065727],[130.7480469,48.0034523],[130.7511749,48.0008545],[130.7553253,47.9982567],[130.7574005,47.9961777],[130.7605286,47.993576],[130.7657166,47.9909782],[130.7698822,47.9888992],[130.776123,47.9863014],[130.781311,47.983181],[130.7839203,47.981102],[130.7917175,47.9774628],[130.7953491,47.9743462],[130.798996,47.9727859],[130.804184,47.9701881],[130.8083496,47.9686279],[130.8135376,47.9655113],[130.8197784,47.9613533],[130.8270569,47.9566727],[130.8395386,47.9504356],[130.8504486,47.9457588],[130.8566895,47.9421196],[130.8613586,47.939003],[130.8660431,47.9343224],[130.8707123,47.9296455],[130.8748779,47.9254875],[130.8811188,47.9192505],[130.8868256,47.911972],[130.89151,47.905735],[130.8946228,47.9010582],[130.9003448,47.8943024],[130.9055481,47.8865051],[130.9091797,47.8802681],[130.9143829,47.8719521],[130.9190521,47.8636322],[130.9221802,47.8589554],[130.9263306,47.8542786],[130.9325714,47.8475227],[130.9367218,47.8418045],[130.9414062,47.8334885],[130.9460907,47.8256912],[130.9476471,47.8194542],[130.9497223,47.8111382],[130.9502411,47.8043785],[130.9497223,47.7955437],[130.9502411,47.7851486],[130.9507599,47.7768326],[130.9517975,47.7664375],[130.9512787,47.7534409],[130.9517975,47.7492828],[130.9528351,47.7430458],[130.9533691,47.7326508],[130.9559631,47.7269325],[130.9590759,47.7212143],[130.962204,47.7186165],[130.9684296,47.7144585],[130.975708,47.7097816],[130.9772644,47.7082214],[130.9803925,47.705101],[130.9866333,47.7025032],[130.9954681,47.6983452],[131.0016937,47.6962662],[131.0079346,47.6941872],[131.012619,47.6931496],[131.0183411,47.692627],[131.026123,47.6921082],[131.0313263,47.692627],[131.0375671,47.692627],[131.0427704,47.6915894],[131.0516052,47.6910706],[131.0583496,47.6900291],[131.0656281,47.6889915],[131.0729065,47.6889915],[131.0827789,47.6869125],[131.0921478,47.6863899],[131.1009827,47.6869125],[131.1103363,47.6879501],[131.1196899,47.6884689],[131.1274872,47.6910706],[131.1358032,47.6931496],[131.1430817,47.6957474],[131.1503601,47.698864],[131.1576385,47.700943],[131.1654358,47.7045822],[131.1763458,47.70718],[131.1815491,47.7097816],[131.1903839,47.7123795],[131.1955719,47.7165375],[131.2018127,47.7201767],[131.207016,47.7232933],[131.2137756,47.7274513],[131.2184448,47.7295303],[131.2246857,47.732132],[131.2314453,47.734211],[131.2423553,47.73629],[131.2543182,47.73629],[131.2631531,47.73629],[131.2740631,47.73629],[131.2828979,47.7357712],[131.293808,47.7357712],[131.3068085,47.73629],[131.3203278,47.73629],[131.330719,47.7368088],[131.3499451,47.7378502],[131.361908,47.7388878],[131.3764648,47.7414856],[131.3889313,47.744606],[131.4086914,47.7472038],[131.4201202,47.7498016],[131.4305115,47.7503242],[131.4403839,47.7524033],[131.4528656,47.7518806],[131.4642944,47.7503242],[131.4736633,47.7482452],[131.491333,47.7435646],[131.502243,47.7394066],[131.5105591,47.734211],[131.5209503,47.7248535],[131.5282288,47.7165375],[131.536026,47.7108192],[131.5398865,47.7081223],[131.5407104,47.7061424],[131.5427856,47.7019844],[131.544342,47.6983452],[131.5464172,47.692627],[131.5490265,47.6874313],[131.5511017,47.6832733],[131.5536957,47.6806717],[131.5588989,47.6770363],[131.5620117,47.6749573],[131.567215,47.6702766],[131.5724182,47.6676788],[131.5776062,47.6655998],[131.5830841,47.6636467],[131.5848846,47.663002],[131.5932007,47.6614418],[131.6015167,47.6614418],[131.6098328,47.6614418],[131.6165924,47.6624832],[131.6223145,47.665081],[131.6301117,47.6687202],[131.6368713,47.6723557],[131.6425781,47.6780739],[131.6472626,47.6837921],[131.6529846,47.6895103],[131.6576538,47.6931496],[131.6675262,47.7004242],[131.6742859,47.7025032],[131.6820831,47.7045822],[131.6971588,47.70718],[131.7065125,47.7077026],[131.7137909,47.7056236],[131.7247009,47.7035446],[131.7335358,47.700943],[131.7434235,47.6978264],[131.749649,47.6952286],[131.7564087,47.6921082],[131.7642059,47.6889915],[131.7735596,47.6869125],[131.7823944,47.6837921],[131.7891541,47.6817131],[131.7995605,47.6796341],[131.8099518,47.6785927],[131.8198242,47.6775551],[131.8312531,47.6775551],[131.8364563,47.6775551],[131.8510132,47.6785927],[131.8676453,47.6811943],[131.8795929,47.6822319],[131.8894806,47.6843109],[131.9009094,47.6858711],[131.9092255,47.6884689],[131.9201355,47.6915894],[131.9279327,47.6962662],[131.9378204,47.6999054],[131.9497681,47.7056236],[131.9580841,47.7097816],[131.9679565,47.7139397],[131.9804382,47.7206955],[131.9918671,47.7248535],[132.0027924,47.7279739],[132.017334,47.7279739],[132.0298157,47.7248535],[132.0381317,47.7227745],[132.0490417,47.7222557],[132.062561,47.7180977],[132.0724335,47.7139397],[132.0810089,47.7113419],[132.0856934,47.7108192],[132.0898438,47.7087402],[132.0934906,47.7077026],[132.1023254,47.705101],[132.1096039,47.7025032],[132.1189575,47.7004242],[132.1303864,47.6993866],[132.1433868,47.698864],[132.1615753,47.698864],[132.174057,47.7004242],[132.1906891,47.7025032],[132.2015991,47.7040634],[132.2125092,47.70718],[132.2265472,47.7113419],[132.2400665,47.7154999],[132.2551422,47.7201767],[132.2681274,47.7253723],[132.2816467,47.7295303],[132.2962036,47.7331696],[132.3081512,47.7378502],[132.3185425,47.7430458],[132.3284302,47.7492828],[132.3367462,47.7524033],[132.3486938,47.7565613],[132.3637695,47.7586403],[132.371048,47.7575989],[132.3804016,47.7575989],[132.3871613,47.7570801],[132.3975525,47.7550011],[132.4069061,47.7524033],[132.4204254,47.7492828],[132.4422607,47.7461662],[132.460968,47.7435646],[132.4765625,47.7414856],[132.4916382,47.7399292],[132.5098267,47.7394066],[132.5158691,47.7398376],[132.5243835,47.740448],[132.5378876,47.7420082],[132.5540009,47.7461662],[132.5695953,47.7529221],[132.5841522,47.7607193],[132.5950623,47.7726746],[132.6023407,47.7856674],[132.6085815,47.7939835],[132.6168976,47.8033409],[132.6226196,47.8132172],[132.6298981,47.8298492],[132.6340485,47.8418045],[132.6413269,47.8542786],[132.6491241,47.8703918],[132.6543274,47.8828659],[132.655365,47.9000168],[132.656662,47.9072952],[132.6576996,47.9145737],[132.6582184,47.9208107],[132.6587372,47.9275665],[132.6597748,47.9322433],[132.6634216,47.939003],[132.6686096,47.9441986],[132.6743317,47.947319],[132.6836853,47.9499168],[132.6972046,47.9509544],[132.7086334,47.9504356],[132.7226715,47.9488754],[132.7351532,47.9488754],[132.7455444,47.9467964],[132.7538605,47.9426384],[132.7616577,47.9395218],[132.7704926,47.9353638],[132.780365,47.9327621],[132.7918091,47.9317245],[132.8037567,47.9322433],[132.8183136,47.9348412],[132.8229828,47.939003],[132.83078,47.9462776],[132.8375397,47.9551125],[132.8432617,47.9644699],[132.8500214,47.9738274],[132.8541718,47.9795418],[132.8604126,47.9904594],[132.8666534,47.9987755],[132.8760071,48.0029335],[132.8853607,48.0091705],[132.8968048,48.0128098],[132.90979,48.0133286],[132.9227905,48.01437],[132.938385,48.0159264],[132.9565735,48.0174866],[132.9706116,48.0195656],[132.9825592,48.022686],[132.9960785,48.0273628],[133.0017853,48.0315208],[133.0025787,48.0367203],[133.0015259,48.0445137],[133.0041351,48.0507545],[133.0072479,48.0559502],[133.0124512,48.0616684],[133.0223236,48.0673866],[133.0358429,48.0757027],[133.0529938,48.0824585],[133.0664978,48.0876579],[133.0867767,48.093895],[133.1034088,48.098053],[133.1200409,48.1027298],[133.1335602,48.1058502],[133.1470642,48.1100082],[133.1663055,48.112606],[133.1813812,48.112606],[133.2037201,48.1131248],[133.2167206,48.1120872],[133.2307587,48.1110458],[133.2515411,48.1110458],[133.2723389,48.112606],[133.2967682,48.1157227],[133.3170319,48.1188431],[133.3295135,48.1204033],[133.3378296,48.1204033],[133.3492584,48.1198845],[133.3554993,48.1188431],[133.3658905,48.1178055],[133.3768158,48.1162453],[133.3892822,48.1136436],[133.4017639,48.1089668],[133.4137115,48.10429],[133.423584,48.1006508],[133.4360657,48.0985718],[133.4490509,48.0985718],[133.463089,48.098053],[133.4807587,48.0985718],[133.4973907,48.1027298],[133.5114288,48.108448],[133.5265045,48.1152039],[133.5368958,48.1230011],[133.550415,48.1328773],[133.5628815,48.1427536],[133.578476,48.1547089],[133.5935516,48.1604233],[133.6096649,48.1640625],[133.6273346,48.1692619],[133.6439667,48.1723785],[133.6585236,48.17342],[133.6725616,48.1729012],[133.6923065,48.1749802],[133.7115479,48.1812172],[133.7261047,48.1926498],[133.7401276,48.2061653],[133.7593689,48.2155228],[133.7780762,48.2212372],[133.8004303,48.2253952],[133.8175812,48.2264366],[133.8222504,48.2279968],[133.8279724,48.2311134],[133.8331757,48.2347527],[133.8409729,48.2383919],[133.8529205,48.2435875],[133.862793,48.2513847],[133.8747559,48.257103],[133.8893127,48.2623024],[133.899704,48.2680168],[133.9121704,48.2700958],[133.9277649,48.2706184],[133.9428406,48.2706184],[133.9641571,48.2726974],[133.978714,48.2789345],[133.9901428,48.2856903],[133.9917755,48.2873268],[133.9989777,48.2945251],[134.0036621,48.304924],[134.0083313,48.311161],[134.0130157,48.3184357],[134.0161285,48.3231163],[134.0176849,48.3309097],[134.020813,48.3340302],[134.0244446,48.3350677],[134.0358887,48.3355904],[134.0452423,48.336628],[134.0545959,48.336628],[134.0675964,48.3376694],[134.0764313,48.338707],[134.0888977,48.3397484],[134.1044922,48.340786],[134.1185303,48.344944],[134.1377563,48.3517036],[134.1517944,48.3574181],[134.1710205,48.3620987],[134.1881714,48.3657341],[134.2001343,48.3678131],[134.2141724,48.3698959],[134.2276764,48.3724937],[134.2401581,48.374054],[134.2541809,48.3750916],[134.265625,48.3750916],[134.2838135,48.376133],[134.2988892,48.3766518],[134.3165588,48.376133],[134.3331909,48.3766518],[134.3404694,48.3766518],[134.3456726,48.3771706],[134.3524323,48.378212],[134.3612671,48.3808098],[134.3690643,48.3828888],[134.3758087,48.3849678],[134.3851776,48.3870468],[134.3955688,48.3880844],[134.4106445,48.3880844],[134.4215546,48.3870468],[134.4392242,48.384449],[134.4584656,48.3834076],[134.479248,48.3849678],[134.499527,48.388607],[134.5182343,48.392765],[134.5369415,48.3974419],[134.552536,48.3995209],[134.5774841,48.4015999],[134.5951538,48.4036789],[134.6117859,48.4036789],[134.6362152,48.4041977],[134.6596069,48.4047203],[134.6746826,48.4036789],[134.6913147,48.4000397],[134.7027588,48.3984833],[134.7151794,48.3951035],[134.7195587,48.3911591],[134.7209473,48.386528],[134.7209473,48.3813286],[134.7225037,48.3787308],[134.7245789,48.3766518],[134.7313385,48.3745728],[134.7370605,48.374054],[134.7484894,48.374054],[134.757843,48.3735313],[134.7708435,48.3730125],[134.7859192,48.3745728],[134.8009949,48.3756104],[134.8134613,48.3787308],[134.8238678,48.3854866],[134.8317719,48.3920364],[134.839447,48.3984833],[134.8457947,48.4065018],[134.8529663,48.4135551],[134.8592072,48.4187546],[134.8649292,48.4229126],[134.8732452,48.428627],[134.8831177,48.4343452],[134.8903961,48.4390259],[134.8981934,48.4411049],[134.9080658,48.4421425],[134.9226227,48.4431839],[134.9319763,48.4431839],[134.9512024,48.4421425],[134.9621277,48.4416237],[134.9704437,48.4405823],[134.9818726,48.4385033],[134.9927826,48.4364243],[135.0083771,48.4353867],[135.02034,48.4353867],[135.0333252,48.4379845],[135.0432129,48.4426613],[135.0489197,48.4478607],[135.0546417,48.4530563],[135.0609894,48.4555893],[135.0675659,48.456028],[135.0728302,48.4533958],[135.0759583,48.4499397],[135.0780334,48.4463005],[135.0801086,48.4437027],[135.0827026,48.4411049],[135.0842743,48.4385033],[135.0858307,48.4343452],[135.0858307,48.4296684],[135.0858307,48.4234314],[135.0847931,48.4192734],[135.0827026,48.4109573],[135.0775146,48.4052391],[135.073349,48.4010811],[135.0671082,48.3953629],[135.0603638,48.3912048],[135.0525665,48.3875656],[135.0468445,48.3849678],[135.0364532,48.38237],[135.028656,48.3797684],[135.0239716,48.3766518],[135.0182495,48.3724937],[135.0130615,48.3683357],[135.0057831,48.3646965],[134.9990234,48.3631363],[134.9839478,48.3636551],[134.9730377,48.3626175],[134.9657593,48.3626175],[134.9564056,48.3620987],[134.949646,48.3605385],[134.9402924,48.3579407],[134.9335327,48.3563805],[134.9241791,48.3537827],[134.915863,48.3517036],[134.9085846,48.351181],[134.9023438,48.349102],[134.8966217,48.347023],[134.8924713,48.344944],[134.8862305,48.3413048],[134.8815613,48.3381882],[134.873764,48.3350677],[134.8711548,48.334549],[134.8638763,48.3319511],[134.8555603,48.3293533],[134.8493347,48.3277931],[134.8399811,48.3257141],[134.8306122,48.3241539],[134.8197021,48.3215561],[134.8113861,48.3194771],[134.8051453,48.3163567],[134.7999573,48.3132401],[134.7963104,48.3096008],[134.7911224,48.3044014],[134.7874756,48.3012848],[134.7822723,48.2966042],[134.7760468,48.2929688],[134.7692871,48.2898483],[134.7614899,48.2872505],[134.752655,48.2841301],[134.7453766,48.2815323],[134.7370605,48.2794533],[134.7292633,48.2778931],[134.7209473,48.2747765],[134.7110748,48.2700958],[134.7058716,48.2680168],[134.6965179,48.2638588],[134.6907959,48.2607422],[134.6840363,48.2576218],[134.6783295,48.2513847],[134.6726074,48.2446289],[134.6694946,48.2394295],[134.6663666,48.2326736],[134.6648102,48.2222786],[134.6629944,48.2165604],[134.6624756,48.2113647],[134.6619568,48.2066841],[134.661438,48.1994095],[134.6609039,48.1947289],[134.6609039,48.1869354],[134.661438,48.1812172],[134.661438,48.1744576],[134.6619568,48.1666641],[134.6619568,48.1604233],[134.6635132,48.1479492],[134.6619568,48.1385956],[134.6567535,48.1313171],[134.6494751,48.1235199],[134.6401215,48.1141663],[134.6323242,48.1068878],[134.6266022,48.0985718],[134.6198425,48.0933723],[134.6136169,48.0918159],[134.6058197,48.0892143],[134.5964661,48.0866165],[134.5891876,48.0840187],[134.5829468,48.0798607],[134.5772247,48.0720634],[134.5751495,48.0684242],[134.5715179,48.0611496],[134.5715179,48.0584183],[134.5699463,48.056469],[134.5689087,48.0533524],[134.5678711,48.0491943],[134.5668335,48.0450363],[134.5657959,48.0413971],[134.5642395,48.0335999],[134.5637207,48.0278816],[134.5616302,48.0154076],[134.5595551,48.0076103],[134.5579987,47.9992943],[134.5569611,47.991497],[134.5564423,47.9842224],[134.5585175,47.9774628],[134.5605927,47.9733047],[134.5642395,47.9686279],[134.5694275,47.9655113],[134.5767059,47.9613533],[134.5808716,47.9571953],[134.5855408,47.9519958],[134.5886688,47.947319],[134.5902252,47.941082],[134.5902252,47.9343224],[134.5902252,47.9249687],[134.5923004,47.9197693],[134.593338,47.9150925],[134.5980225,47.9083328],[134.6104889,47.9031372],[134.6188049,47.9005394],[134.6266022,47.9000168],[134.635437,47.9000168],[134.6448059,47.8984604],[134.6510315,47.8984604],[134.6577911,47.893261],[134.6603851,47.8911819],[134.664032,47.8833847],[134.664032,47.8766289],[134.6635132,47.8683128],[134.6635132,47.8625946],[134.664032,47.8579178],[134.6645508,47.8516808],[134.6650696,47.8475227],[134.6661072,47.8412819],[134.6676636,47.8350449],[134.6692352,47.8288078],[134.6707916,47.8236122],[134.674942,47.8189316],[134.6796265,47.8163338],[134.6952209,47.8090591],[134.7009277,47.8043785],[134.706131,47.8002205],[134.7102966,47.7955437],[134.7165222,47.7877464],[134.7217255,47.7830696],[134.7269287,47.7794304],[134.7362823,47.7747536],[134.743042,47.7726746],[134.753952,47.7674751],[134.7586365,47.7648773],[134.7648621,47.7581215],[134.7669525,47.7555199],[134.7711029,47.748764],[134.7747345,47.7420082],[134.7757874,47.7347298],[134.7757874,47.7264137],[134.7752686,47.7227745],[134.7731781,47.7196579],[134.7690277,47.7149773],[134.7664185,47.7108192],[134.7638245,47.7077026],[134.7601929,47.7040634],[134.7555084,47.6983452],[134.7529144,47.6936684],[134.7508392,47.6879501],[134.7471924,47.6822319],[134.7445984,47.6754761],[134.7404327,47.6681976],[134.7357635,47.663002],[134.7295227,47.6583214],[134.7232819,47.654686],[134.7175598,47.6515656],[134.7108154,47.6489677],[134.703537,47.6458473],[134.6972961,47.6432495],[134.6889801,47.6385727],[134.6837769,47.6338921],[134.6801453,47.6281776],[134.6785889,47.6219406],[134.6806641,47.6120644],[134.6817017,47.6073837],[134.6811829,47.6011467],[134.6801453,47.5969887],[134.6713104,47.585556],[134.6681824,47.5824356],[134.6624756,47.5767174],[134.6567535,47.5725594],[134.6531219,47.5684013],[134.6479187,47.5632057],[134.6427155,47.5580063],[134.6390839,47.5533295],[134.6292114,47.5455322],[134.6229706,47.5429344],[134.6162109,47.5403328],[134.6104889,47.5387764],[134.5995789,47.535656],[134.5912628,47.5330582],[134.5870972,47.5309792],[134.5792999,47.5263023],[134.5751495,47.5237007],[134.5720367,47.5205841],[134.5683899,47.5153847],[134.5678711,47.5086288],[134.5725555,47.503952],[134.5725555,47.5003128],[134.5709839,47.4966736],[134.5683899,47.4914742],[134.5611115,47.4852371],[134.5548706,47.4821205],[134.548645,47.4805603],[134.5449982,47.4779625],[134.5413666,47.4769211],[134.5366821,47.4748421],[134.5304413,47.4722443],[134.5262909,47.4706841],[134.5221252,47.4691238],[134.5184937,47.466526],[134.5148621,47.462368],[134.511734,47.4592514],[134.5039368,47.4504128],[134.4992676,47.4467735],[134.4914703,47.4431381],[134.4831543,47.4415779],[134.4743195,47.4431381],[134.4628754,47.4441757],[134.4514465,47.4452171],[134.4389648,47.4436569],[134.43013,47.4426155],[134.4202576,47.4415779],[134.4129791,47.4400177],[134.4051819,47.4384575],[134.3979034,47.4363785],[134.3911438,47.4358597],[134.382309,47.4363785],[134.3734741,47.4379387],[134.3615265,47.4379387],[134.3521729,47.4374199],[134.3491516,47.4372063],[134.3448944,47.4369011],[134.337616,47.4348221],[134.3308563,47.4322205],[134.3240967,47.4291039],[134.3178558,47.4265022],[134.3105774,47.4223442],[134.3059082,47.4171486],[134.2996674,47.4103928],[134.2923889,47.4062309],[134.2866669,47.4041519],[134.2799225,47.4025955],[134.269516,47.3984375],[134.2638092,47.3937569],[134.2601624,47.3885612],[134.2575684,47.3792038],[134.2544556,47.3662109],[134.2518463,47.3625717],[134.2487335,47.3578949],[134.2435303,47.3547745],[134.2388611,47.3506165],[134.233139,47.3480186],[134.2263794,47.3474998],[134.2180634,47.3469772],[134.2092285,47.3454208],[134.1972656,47.3407402],[134.1915588,47.3376236],[134.1868744,47.3355446],[134.182724,47.332943],[134.1775208,47.3277473],[134.1728363,47.3220291],[134.1707611,47.3183899],[134.1692047,47.3126717],[134.1686859,47.3079948],[134.1686859,47.3027992],[134.1666107,47.2965622],[134.1655731,47.292923],[134.1645203,47.2892838],[134.1603699,47.2809677],[134.1577759,47.2773285],[134.1546478,47.2742119],[134.1520538,47.2721329],[134.148941,47.267971],[134.1478882,47.263813],[134.1468506,47.2601776],[134.1463318,47.2544594],[134.1468506,47.2508202],[134.1478882,47.2466621],[134.1510162,47.2399063],[134.1536102,47.2373047],[134.1577759,47.2336693],[134.1634827,47.2315903],[134.1702423,47.2284698],[134.1754456,47.225872],[134.1801147,47.223793],[134.185318,47.2206726],[134.1915588,47.2165146],[134.1951904,47.213398],[134.1998749,47.2081985],[134.2045441,47.1998825],[134.2081909,47.1957245],[134.2128601,47.1868896],[134.2154694,47.1785698],[134.216507,47.1712952],[134.2170258,47.1634979],[134.2196198,47.1531029],[134.2216949,47.1458244],[134.2253418,47.1390686],[134.2268982,47.1312714],[134.2268982,47.1260757],[134.2243042,47.1187973],[134.222229,47.1136017],[134.2149506,47.0995674],[134.2107849,47.0948868],[134.2050629,47.0896912],[134.1983185,47.0876122],[134.1925964,47.0865707],[134.1775208,47.0839729],[134.1686859,47.0803337],[134.1624451,47.0772171],[134.1556854,47.0746155],[134.148941,47.0725365],[134.1473694,47.0709801],[134.1447754,47.0683784],[134.1411438,47.0652618],[134.134903,47.0605812],[134.1307373,47.0548668],[134.1255493,47.0491486],[134.1193085,47.0423889],[134.114624,47.0371933],[134.109436,47.0330353],[134.1042328,47.027317],[134.0979919,47.02108],[134.0943604,47.0158806],[134.0907135,47.0112038],[134.0803223,47.0013275],[134.0761719,46.9987297],[134.0714874,46.9966507],[134.0662842,46.9950905],[134.0595398,46.9924927],[134.0538177,46.9904137],[134.0512238,46.9862556],[134.0527802,46.9800186],[134.0569305,46.973259],[134.0600586,46.969101],[134.0636902,46.9649429],[134.066803,46.9613075],[134.0688934,46.9576683],[134.0688934,46.9540291],[134.0683746,46.9431152],[134.0678558,46.9363556],[134.067337,46.9295998],[134.0647278,46.9249229],[134.0610962,46.9186859],[134.0574493,46.9140053],[134.0538177,46.9098473],[134.0496521,46.9051704],[134.0455017,46.8963356],[134.0439453,46.8932152],[134.0402985,46.8874969],[134.0387421,46.8823013],[134.0366669,46.8739853],[134.0361481,46.8656693],[134.0361481,46.8609886],[134.0356293,46.8568306],[134.0361481,46.8526726],[134.0351105,46.8500748],[134.0325012,46.8459167],[134.0293884,46.8427963],[134.026001,46.8401985],[134.023407,46.8365593],[134.020813,46.8344803],[134.0171661,46.8318825],[134.0145721,46.8282433],[134.0140533,46.8251266],[134.0140533,46.8220062],[134.0145721,46.818367],[134.0150909,46.8136902],[134.0171661,46.8090134],[134.0192566,46.8064117],[134.0244446,46.8038139],[134.0275726,46.8022537],[134.0327606,46.7980957],[134.0348511,46.7939377],[134.0384827,46.7892609],[134.0415955,46.7830238],[134.0431671,46.778347],[134.0431671,46.7710686],[134.0415955,46.7663918],[134.0374451,46.7601547],[134.0332794,46.7533951],[134.0296478,46.7487183],[134.0265198,46.7440414],[134.0202942,46.7341652],[134.0192566,46.7279282],[134.0187378,46.7216911],[134.0202942,46.7154541],[134.0228882,46.7066154],[134.023407,46.7019386],[134.0228882,46.6931038],[134.020813,46.6842651],[134.0182037,46.6764679],[134.0171661,46.6717911],[134.0156097,46.6686745],[134.0150909,46.6645164],[134.0130157,46.6567192],[134.0109406,46.6520386],[134.0072937,46.6484032],[134.0036621,46.6458015],[134.0000153,46.6411247],[133.992218,46.6348877],[133.9844208,46.6286507],[133.9761047,46.6229324],[133.9714355,46.6198158],[133.9631195,46.6151352],[133.9573975,46.6125374],[133.9490814,46.6094208],[133.9412842,46.6047401],[133.9376526,46.6031799],[133.9288025,46.5995445],[133.9236145,46.5985031],[133.9173737,46.5953865],[133.9132233,46.5922661],[133.910614,46.5886269],[133.9064636,46.581871],[133.9043732,46.5771942],[133.902298,46.5688782],[133.9017792,46.5615997],[133.9007416,46.5579605],[133.899704,46.5527649],[133.8986664,46.5486069],[133.8955383,46.5428886],[133.8924255,46.540287],[133.8861847,46.5371704],[133.8815155,46.5350914],[133.8742371,46.529892],[133.8700714,46.5257339],[133.8690338,46.5220985],[133.8674774,46.5122223],[133.8674316,46.5120697],[133.865921,46.5070229],[133.8643951,46.503067],[133.8617554,46.4997482],[133.8596802,46.498188],[133.8534393,46.49403],[133.8503265,46.491951],[133.8456421,46.487793],[133.8435669,46.4846725],[133.8430481,46.4825935],[133.8430481,46.4784355],[133.8425293,46.4763565],[133.8420105,46.4737587],[133.8430481,46.4690781],[133.8435669,46.4664803],[133.8446045,46.4618034],[133.8466797,46.4581642],[133.8492889,46.4529686],[133.8529205,46.4493294],[133.8555145,46.446209],[133.8581238,46.4446487],[133.8622742,46.4436111],[133.8674774,46.4441299],[133.8721466,46.446209],[133.8757935,46.4467278],[133.8841095,46.4467278],[133.8882599,46.446209],[133.8955383,46.4446487],[133.9007416,46.4430923],[133.9059448,46.4399719],[133.9095764,46.4363327],[133.9126892,46.4326973],[133.9152985,46.4285393],[133.9173737,46.4259377],[133.9230957,46.418663],[133.9272461,46.4139824],[133.9319305,46.4098244],[133.9355621,46.4056664],[133.9397278,46.4009895],[133.9407654,46.3973503],[133.9407654,46.3947525],[133.9397278,46.3905945],[133.9386902,46.3864365],[133.9355621,46.3822784],[133.9303741,46.3786392],[133.9220581,46.3724022],[133.9152985,46.3698044],[133.9111328,46.3682442],[133.905426,46.3672028],[133.9002228,46.3661652],[133.8950195,46.3651237],[133.8872223,46.3635674],[133.8815155,46.3614883],[133.8700714,46.3552475],[133.8664398,46.3505707],[133.8654022,46.3484917],[133.8643646,46.3448524],[133.8664398,46.3375778],[133.8690338,46.3328972],[133.8731995,46.3292618],[133.8804779,46.3261414],[133.8867035,46.3266602],[133.8903503,46.3271828],[133.8991852,46.3287392],[133.9049072,46.3302994],[133.9100952,46.3308182],[133.9152985,46.3308182],[133.9163361,46.3297806],[133.9168549,46.3271828],[133.9168549,46.3225021],[133.9132233,46.3188667],[133.910614,46.3173065],[133.9049072,46.3126297],[133.9017792,46.3100281],[133.899704,46.3072777],[133.8986664,46.3032722],[133.8989868,46.300808],[133.9002228,46.2985954],[133.9020996,46.296257],[133.9049072,46.2944374],[133.9064178,46.2926636],[133.90802,46.2902794],[133.9104919,46.2878723],[133.9121704,46.2840385],[133.9133606,46.2797279],[133.9147797,46.2757225],[133.9157562,46.2720604],[133.9158173,46.2684479],[133.9152985,46.2637672],[133.9121704,46.2601318],[133.9075012,46.2570114],[133.9043732,46.2544136],[133.8986664,46.2523346],[133.8898315,46.2523346],[133.8820343,46.2523346],[133.8747559,46.2533722],[133.8690338,46.2533722],[133.8666992,46.2528534],[133.8609772,46.2523346],[133.8578644,46.2518158],[133.856308,46.2507744],[133.8547363,46.2486954],[133.8547363,46.2466164],[133.8557739,46.2455788],[133.8573456,46.2440186],[133.8599396,46.2424583],[133.8625336,46.2408981],[133.8661804,46.2393379],[133.8687744,46.2372589],[133.8692932,46.2362213],[133.8692932,46.2336235],[133.867218,46.2320633],[133.8651428,46.2305031],[133.8604584,46.2263451],[133.8583832,46.2242661],[133.8568268,46.2206268],[133.8552551,46.21595],[133.8542938,46.2113495],[133.852417,46.2078247],[133.8498383,46.2050056],[133.8467865,46.2031288],[133.8427887,46.2019539],[133.8373871,46.2017174],[133.8319855,46.2026558],[133.8282318,46.2071152],[133.8261566,46.2121658],[133.8240814,46.2195892],[133.8225098,46.2237473],[133.8204346,46.2273865],[133.8162842,46.2299843],[133.8126373,46.2305031],[133.8069153,46.2299843],[133.8032837,46.2279053],[133.7991333,46.2247849],[133.7970428,46.2227058],[133.7942963,46.2181587],[133.7930908,46.2138443],[133.7922974,46.2094688],[133.7913513,46.2050056],[133.7899475,46.2005424],[133.7880707,46.1963577],[133.7850952,46.1925583],[133.779892,46.1889229],[133.7746429,46.1843758],[133.7691345,46.1805458],[133.7636261,46.1769524],[133.7583618,46.1738358],[133.7533264,46.1714401],[133.7454224,46.1695251],[133.7363129,46.1668892],[133.7279205,46.16605],[133.7227173,46.16605],[133.7152557,46.1655464],[133.70961,46.1650772],[133.7050476,46.1639709],[133.7024536,46.1629333],[133.6993256,46.1603355],[133.6924744,46.1568565],[133.6887054,46.1549759],[133.6861267,46.1530991],[133.6833038,46.1505165],[133.6816559,46.1473389],[133.6806183,46.1436996],[133.6811371,46.1395416],[133.6816559,46.1338272],[133.6832123,46.128109],[133.6863403,46.1218719],[133.6884155,46.1177139],[133.6917572,46.1144218],[133.6951141,46.1115494],[133.698288,46.1093979],[133.7055664,46.1057587],[133.7102509,46.1021194],[133.7133636,46.0995216],[133.7206421,46.0917244],[133.7253113,46.0870476],[133.7289581,46.0818481],[133.7325897,46.0771713],[133.7341614,46.0698929],[133.735199,46.0626183],[133.7357178,46.054821],[133.735199,46.0501404],[133.7336273,46.0433846],[133.7294769,46.0376663],[133.7253113,46.0340271],[133.7193146,46.0298538],[133.7133636,46.0267525],[133.7071228,46.0241547],[133.7025452,46.0212288],[133.698288,46.0184364],[133.6941376,46.0147972],[133.6915283,46.0127182],[133.6868591,46.009079],[133.6821747,46.0059624],[133.6790619,46.0028419],[133.6759338,45.9986839],[133.672821,45.9955673],[133.6702271,45.9914055],[133.6697083,45.9877701],[133.6686554,45.9836121],[133.6686554,45.979454],[133.6707458,45.9742546],[133.6707458,45.971138],[133.6702271,45.9669762],[133.6689911,45.9596596],[133.6689911,45.9541512],[133.6681366,45.9487877],[133.6665802,45.9435883],[133.6655426,45.9404678],[133.6629486,45.9373512],[133.658783,45.9373512],[133.6515045,45.9404678],[133.6437073,45.9425468],[133.6353912,45.9441071],[133.6255188,45.9441071],[133.6151276,45.9425468],[133.6057739,45.9383888],[133.6021271,45.9347534],[133.6000519,45.9300728],[133.5995178,45.9246826],[133.6016083,45.9201965],[133.6047363,45.9165611],[133.6094055,45.9103241],[133.6109619,45.9051247],[133.6083679,45.8994064],[133.6047363,45.8968086],[133.6000519,45.8942108],[133.5959015,45.8916092],[133.5917358,45.8874512],[133.5906982,45.8858948],[133.5896606,45.8832932],[133.5875702,45.8786163],[133.5875702,45.8749771],[133.5865326,45.8713379],[133.5844574,45.8697815],[133.5813446,45.8671799],[133.577179,45.8661423],[133.5707703,45.865509],[133.5641937,45.8682213],[133.5605469,45.8718605],[133.5563965,45.8780975],[133.5532684,45.8843346],[133.549118,45.8895302],[133.54599,45.8916092],[133.5413208,45.8936882],[133.5389099,45.8944969],[133.5357971,45.8949776],[133.5324402,45.8949776],[133.5266876,45.8949776],[133.5229645,45.8946381],[133.5197906,45.8946381],[133.5175323,45.8946381],[133.5139008,45.8932762],[133.5111847,45.8919182],[133.5089111,45.8905602],[133.5066528,45.8896523],[133.5039368,45.8878403],[133.502121,45.8855743],[133.4998627,45.8819504],[133.4994049,45.8792343],[133.4998627,45.8765144],[133.5003052,45.8742485],[133.5007629,45.8733444],[133.5012207,45.8701744],[133.5030212,45.8670006],[133.5057526,45.8638306],[133.5052948,45.8624725],[133.502121,45.8620186],[133.4998627,45.8624725],[133.4975891,45.8633766],[133.4930573,45.8638306],[133.4889832,45.8638306],[133.4858093,45.8638306],[133.4830933,45.8633766],[133.4812775,45.8620186],[133.4799194,45.8588448],[133.4803772,45.8556747],[133.4812775,45.8515968],[133.482193,45.8479729],[133.4830933,45.8429909],[133.4830933,45.8398209],[133.4826355,45.838459],[133.4803772,45.836647],[133.4776611,45.8361931],[133.473587,45.835289],[133.4694977,45.835289],[133.4631653,45.8348351],[133.4608917,45.8343811],[133.4577179,45.833931],[133.4563599,45.831665],[133.4563599,45.8293991],[133.4577179,45.8271332],[133.4590912,45.8226051],[133.4590912,45.8203392],[133.4572754,45.8135414],[133.4572754,45.8112793],[133.4563599,45.8081055],[133.4559174,45.8008575],[133.4568176,45.7985916],[133.4572754,45.7963257],[133.4581757,45.7936096],[133.4590912,45.7917976],[133.4622498,45.7899857],[133.4654236,45.7895317],[133.4685974,45.7890778],[133.4717712,45.7890778],[133.4772034,45.7890778],[133.4799194,45.7890778],[133.4849091,45.7890778],[133.4867249,45.7881737],[133.4889832,45.7863617],[133.4903412,45.7845497],[133.4912567,45.7818298],[133.4916992,45.7786598],[133.4912567,45.7763939],[133.4903412,45.7745819],[133.4867249,45.7732239],[133.4849091,45.7732239],[133.4817352,45.7732239],[133.4776611,45.773674],[133.4744873,45.7750359],[133.472229,45.7763939],[133.4704132,45.7777519],[133.4681396,45.77911],[133.4654236,45.7795639],[133.4640656,45.77911],[133.4636078,45.7777519],[133.4631653,45.774128],[133.4627075,45.773674],[133.4622498,45.772316],[133.4604492,45.768692],[133.4577179,45.765522],[133.4568176,45.7646141],[133.4559174,45.7628021],[133.4559174,45.7605362],[133.4559174,45.7578201],[133.4563599,45.7555542],[133.4586334,45.7532883],[133.4613495,45.7519302],[133.4640656,45.7496643],[133.4694977,45.7492104],[133.4713135,45.7469444],[133.4731293,45.7442284],[133.473587,45.7424164],[133.4740295,45.7401505],[133.473587,45.7387924],[133.4726715,45.7378845],[133.4717712,45.7369804],[133.4704132,45.7356186],[133.4672394,45.7347145],[133.4631653,45.7338066],[133.4581757,45.7338066],[133.4568176,45.7333565],[133.4541016,45.7324486],[133.4509277,45.7315445],[133.4495697,45.7301826],[133.4477539,45.7288246],[133.4450378,45.7265587],[133.4391479,45.7233887],[133.4364319,45.7206688],[133.4337158,45.7170448],[133.4314423,45.7147789],[133.4287262,45.7120628],[133.4264679,45.7097969],[133.4232941,45.7066269],[133.4214783,45.703907],[133.41922,45.7011909],[133.4178619,45.699379],[133.4169464,45.6966591],[133.4174042,45.6948471],[133.4196625,45.6930351],[133.4210358,45.6925812],[133.4246521,45.6934891],[133.4282837,45.6962051],[133.4309998,45.6984711],[133.4337158,45.700737],[133.4355316,45.702095],[133.4377899,45.702095],[133.4400635,45.700737],[133.4423218,45.6980171],[133.4445801,45.6948471],[133.4463959,45.6930351],[133.4486694,45.6912231],[133.4532013,45.6903152],[133.4568176,45.6903152],[133.4640656,45.6912231],[133.4667816,45.6907692],[133.4699554,45.6894112],[133.4720306,45.6879463],[133.4717712,45.6848793],[133.4708557,45.6821632],[133.472229,45.6794434],[133.473587,45.6785355],[133.4758453,45.6767235],[133.4781036,45.6735535],[133.4794769,45.6708374],[133.4799194,45.6685715],[133.4803772,45.6667595],[133.4794769,45.6649475],[133.4772034,45.6631355],[133.4749451,45.6617737],[133.4708557,45.6590576],[133.4681396,45.6572456],[133.4654236,45.6563377],[133.4631653,45.6558838],[133.4572754,45.6545258],[133.4550018,45.6540718],[133.451828,45.6536217],[133.4477539,45.6527138],[133.4454956,45.6518097],[133.4414215,45.6504478],[133.4396057,45.6499977],[133.4391479,45.6490898],[133.4382477,45.6477318],[133.4386902,45.6459198],[133.4396057,45.6441078],[133.4423218,45.6422958],[133.4459381,45.639576],[133.4477539,45.639122],[133.4522858,45.63731],[133.4554596,45.635952],[133.4577179,45.63414],[133.4604492,45.6318741],[133.4627075,45.6300621],[133.4649658,45.6282501],[133.466507,45.6268845],[133.4680328,45.6249962],[133.4651184,45.6220741],[133.4631805,45.6199646],[133.4559631,45.6180382],[133.4521637,45.6206741],[133.446701,45.6234627],[133.4388733,45.6281815],[133.4300842,45.6326866],[133.4205627,45.6334839],[133.4145966,45.6310844],[133.412323,45.6264839],[133.4190521,45.620575],[133.4211273,45.6152534],[133.4165344,45.6133728],[133.4103546,45.6165199],[133.4018402,45.6162872],[133.3993378,45.6131554],[133.4032288,45.6080551],[133.4010468,45.6036339],[133.3968506,45.5986214],[133.3969421,45.5920868],[133.399704,45.5890617],[133.4020386,45.5857162],[133.4052582,45.5817795],[133.4065857,45.5794563],[133.4053802,45.5749626],[133.4042206,45.5733109],[133.4033966,45.5714455],[133.3998413,45.5710678],[133.3975372,45.5711975],[133.3938293,45.5726433],[133.3901062,45.5740891],[133.3860626,45.5755157],[133.3822021,45.574894],[133.3780518,45.5738068],[133.3762512,45.5757904],[133.3727875,45.5781555],[133.3687439,45.5795898],[133.3666534,45.5772095],[133.3669434,45.5737915],[133.3658447,45.5714531],[133.3643799,45.569561],[133.3610077,45.5669022],[133.3572998,45.5644531],[133.3526001,45.562191],[133.3498993,45.563221],[133.3438416,45.5652542],[133.3395996,45.5652962],[133.3382111,45.5624962],[133.3392334,45.5581894],[133.3360291,45.5537033],[133.3323059,45.551487],[133.3281708,45.5501633],[133.3237305,45.5524902],[133.3209534,45.5544281],[133.3178253,45.5565834],[133.3156891,45.5548897],[133.3146973,45.5511856],[133.3130951,45.5469971],[133.3084106,45.5484009],[133.304184,45.5482178],[133.2992401,45.5486908],[133.2981873,45.5458984],[133.299469,45.5422935],[133.3001251,45.5386581],[133.2966766,45.5369072],[133.2918854,45.5357819],[133.2848206,45.5343323],[133.2782745,45.5345078],[133.2745667,45.5359459],[133.2692413,45.5370903],[133.2689819,45.5327301],[133.2699585,45.5288811],[133.268631,45.5253944],[133.2616425,45.5269165],[133.255661,45.5282631],[133.2526093,45.5258369],[133.2501678,45.5239029],[133.2468109,45.5212364],[133.2435303,45.517662],[133.2371521,45.5160103],[133.2314911,45.5173645],[133.2254791,45.5189285],[133.2179108,45.5197449],[133.2183075,45.5151787],[133.2196503,45.5111237],[133.2127228,45.5119591],[133.2067108,45.5135269],[133.2019806,45.5153809],[133.1929169,45.5145226],[133.19133,45.5139923],[133.1895294,45.51231],[133.188446,45.5097466],[133.191452,45.5089645],[133.1967926,45.5075989],[133.1999054,45.5056763],[133.1991119,45.503582],[133.1904755,45.5015945],[133.181839,45.4996147],[133.1784668,45.4971771],[133.1804199,45.4935989],[133.1830444,45.4898262],[133.1859894,45.4860611],[133.1847076,45.4821167],[133.1832581,45.4799881],[133.1818848,45.4771843],[133.1768036,45.4755859],[133.1750641,45.473217],[133.1740265,45.4701958],[133.1689301,45.4688263],[133.1641998,45.4670143],[133.1639252,45.462883],[133.1665192,45.4593315],[133.1652985,45.4547043],[133.1636353,45.4514236],[133.1610107,45.447876],[133.1543579,45.4494095],[133.1487885,45.4498482],[133.14711,45.4468002],[133.1512756,45.443779],[133.1538849,45.4402313],[133.159668,45.4375153],[133.1585999,45.4347191],[133.1551361,45.4334259],[133.1463318,45.4334908],[133.1373596,45.431942],[133.1365204,45.4303017],[133.1422424,45.4282684],[133.1469269,45.4268761],[133.1515961,45.4257126],[133.1488342,45.4237556],[133.144989,45.4231262],[133.1377411,45.4239464],[133.1321411,45.424614],[133.1309509,45.4234161],[133.1319122,45.4200287],[133.1315002,45.417263],[133.1341858,45.4128036],[133.1357269,45.4101372],[133.1368866,45.4081154],[133.1341705,45.4057083],[133.1289368,45.4022675],[133.1354675,45.3984375],[133.1396637,45.395195],[133.1364441,45.3911591],[133.1347504,45.3883324],[133.1320648,45.3854713],[133.1317444,45.381794],[133.1326752,45.3786278],[133.1358948,45.3755684],[133.1355438,45.3721199],[133.1358643,45.3684731],[133.1340942,45.3628998],[133.1295319,45.3665848],[133.1269073,45.3703613],[133.1225433,45.371994],[133.1197205,45.3670616],[133.1183929,45.3637962],[133.1164703,45.3598213],[133.1139984,45.3546753],[133.1108093,45.3504105],[133.1095123,45.3466873],[133.1123505,45.3440704],[133.1158142,45.3417053],[133.1188049,45.3374901],[133.1194763,45.3336296],[133.116806,45.3307648],[133.1114807,45.3284645],[133.1104889,45.3249855],[133.1097565,45.3222046],[133.10495,45.3215294],[133.100235,45.3197174],[133.1024017,45.3172989],[133.104599,45.3146515],[133.0982666,45.3127632],[133.0931244,45.3120728],[133.0930786,45.3088646],[133.0945282,45.3073273],[133.1016083,45.3081055],[133.1077118,45.3088379],[133.1110687,45.3076172],[133.1101074,45.3039093],[133.1065369,45.3003159],[133.1038666,45.297451],[133.1005249,45.2947845],[133.0980835,45.2930679],[133.0930634,45.2910118],[133.0884399,45.2882843],[133.0937347,45.2871475],[133.1003571,45.2858467],[133.0992279,45.2839622],[133.0981445,45.2816277],[133.0948334,45.2821617],[133.0886688,45.2821121],[133.0856628,45.2794609],[133.0904388,45.2769279],[133.0960388,45.2760353],[133.101532,45.27285],[133.09552,45.2709808],[133.0885773,45.2688332],[133.0939331,45.2670135],[133.0979156,45.2660522],[133.102066,45.2632637],[133.1002808,45.2613487],[133.0938721,45.2603722],[133.0896912,45.2599564],[133.0896149,45.257206],[133.0882721,45.2541695],[133.0861511,45.2524681],[133.0829773,45.2479744],[133.0869446,45.2472458],[133.0930481,45.2479782],[133.0974884,45.2490959],[133.100235,45.2473869],[133.0998077,45.2450752],[133.0983124,45.2436371],[133.0935211,45.242733],[133.0874329,45.2417717],[133.0856934,45.2394028],[133.0849609,45.2368507],[133.0940552,45.2368088],[133.0999756,45.2359314],[133.0964203,45.2321053],[133.0972595,45.2300835],[133.0996399,45.2288208],[133.1026154,45.2282677],[133.1056061,45.2274857],[133.1103058,45.2256355],[133.1141357,45.2228317],[133.11763,45.2200165],[133.1154938,45.2148857],[133.1139679,45.2102356],[133.1163177,45.2057648],[133.1197052,45.200428],[133.1214752,45.1952362],[133.1238556,45.1903114],[133.1286774,45.1873207],[133.1310883,45.1856003],[133.1279907,45.1840897],[133.124588,45.182106],[133.1221924,45.1799393],[133.1260681,45.1764488],[133.1278839,45.1742439],[133.1241608,45.1724701],[133.1210785,45.1707306],[133.1183472,45.1685448],[133.119339,45.1646996],[133.121521,45.1620522],[133.1246796,45.1594505],[133.1271667,45.1570435],[133.1244507,45.1546288],[133.1227264,45.1522675],[133.1229706,45.1495247],[133.1267853,45.1467247],[133.1292114,45.1450005],[133.1219788,45.1423874],[133.1182861,45.1401596],[133.1138,45.1360664],[133.1133728,45.1335335],[133.1154785,45.131794],[133.118927,45.133091],[133.122818,45.1367035],[133.1277771,45.1392174],[133.1310425,45.1352425],[133.1302795,45.1329193],[133.1291962,45.1305809],[133.1280823,45.1284714],[133.1273193,45.1261482],[133.1259155,45.1237946],[133.1219177,45.1213303],[133.1186066,45.1257553],[133.1154175,45.1251564],[133.1106415,45.1242523],[133.1051483,45.1240044],[133.0995941,45.121006],[133.0990295,45.1200638],[133.0975342,45.1186256],[133.0961151,45.116497],[133.094101,45.1136589],[133.0926666,45.1115341],[133.0903931,45.1079979],[133.0922546,45.1053391],[133.0934601,45.1026459],[133.0917206,45.1005058],[133.0889282,45.0990067],[133.0842438,45.0971909],[133.0815582,45.0945511],[133.0781555,45.0927925],[133.0757751,45.094059],[133.074234,45.0967331],[133.0705872,45.0977135],[133.0669098,45.0954819],[133.0654144,45.0940437],[133.0608826,45.0940666],[133.0581207,45.0923347],[133.0553589,45.0906067],[133.0529327,45.0888939],[133.0522003,45.0861168],[133.053299,45.0847893],[133.0547791,45.082798],[133.0560303,45.0796509],[133.0508881,45.0791855],[133.0469971,45.0792389],[133.042511,45.0788002],[133.039093,45.0772743],[133.0380707,45.0742493],[133.0393677,45.0706482],[133.0320282,45.069397],[133.0283661,45.0669403],[133.0324402,45.0648384],[133.036499,45.0629616],[133.0397491,45.0592194],[133.033905,45.0594063],[133.0278473,45.058445],[133.0287781,45.0552826],[133.0306549,45.0523949],[133.0258026,45.0523987],[133.0201111,45.0509911],[133.0164032,45.0489922],[133.0120697,45.0469589],[133.0060883,45.0450783],[133.0004883,45.0425339],[132.9938049,45.0413094],[132.9875183,45.0428467],[132.9834442,45.0449486],[132.9814606,45.0418816],[132.9800568,45.0395279],[132.980011,45.0365486],[132.9735718,45.0362473],[132.9709625,45.0363579],[132.9664764,45.0359192],[132.9634705,45.033493],[132.9662781,45.0311012],[132.9709015,45.0299454],[132.9742737,45.0284996],[132.9721832,45.0265732],[132.970108,45.0246391],[132.9676514,45.0231552],[132.965271,45.0209846],[132.9611969,45.0194206],[132.958847,45.0204582],[132.9558868,45.024437],[132.9534454,45.0263824],[132.9508514,45.0264893],[132.9480286,45.025444],[132.9456177,45.0234985],[132.9452515,45.0205078],[132.9463806,45.0187302],[132.9481659,45.0169792],[132.9473114,45.0157967],[132.9418488,45.0153122],[132.9395142,45.0161209],[132.9372101,45.0164642],[132.9344025,45.018856],[132.932312,45.0205879],[132.9307861,45.0230331],[132.9288177,45.0268326],[132.9278717,45.029995],[132.9260559,45.0321999],[132.9228363,45.0320473],[132.9181519,45.0302238],[132.9108276,45.028965],[132.907135,45.0303955],[132.9066467,45.0322037],[132.9047699,45.0348625],[132.9022827,45.0372658],[132.8969879,45.0386162],[132.8934021,45.0389061],[132.8874054,45.0406837],[132.8817749,45.0420189],[132.8757629,45.0440216],[132.8728027,45.0445709],[132.8713684,45.0461044],[132.8724823,45.0479889],[132.8745117,45.0505981],[132.8727875,45.0516624],[132.8703613,45.0533829],[132.8661346,45.0536385],[132.8606567,45.0533791],[132.8583374,45.0539551],[132.8561859,45.0561447],[132.8534393,45.0578423],[132.850769,45.0586319],[132.8451385,45.059967],[132.0023041,45.2561455],[131.9984741,45.2569847],[131.9941711,45.2585373],[131.9909973,45.2611198],[131.9868317,45.2666817],[131.9840393,45.2698593],[131.9808655,45.2712479],[131.9751129,45.273632],[131.9701385,45.275219],[131.9566345,45.2776031],[131.949295,45.2766113],[131.9399567,45.276413],[131.9322052,45.2791901],[131.9323883,45.2843666],[131.9327393,45.290535],[131.9318085,45.2969666],[131.928421,45.3057556],[131.9272919,45.3085327],[131.9247894,45.3102074],[131.9190369,45.3119698],[131.9130096,45.3144302],[131.9092255,45.3163681],[131.9078827,45.3212128],[131.9068146,45.3253593],[131.9048004,45.3299904],[131.9030609,45.3336983],[131.901001,45.3374176],[131.8981781,45.3390999],[131.8926849,45.3397141],[131.8868408,45.3396492],[131.8816071,45.3391075],[131.8760376,45.3383484],[131.869812,45.3373795],[131.8644562,45.3343277],[131.8626556,45.3314056],[131.8598175,45.3271408],[131.8569946,45.3231049],[131.8539734,45.3211288],[131.8479309,45.3176384],[131.8419342,45.3150597],[131.8370056,45.3140564],[131.8314819,45.3139763],[131.8272858,45.3143234],[131.8240204,45.3139572],[131.8213196,45.3119736],[131.819519,45.3088226],[131.8193359,45.3056221],[131.8206787,45.3005562],[131.8201599,45.2971344],[131.8182831,45.2923889],[131.815506,45.289032],[131.8116302,45.2836494],[131.8081207,45.2787132],[131.8036041,45.2733498],[131.7984619,45.2682304],[131.7953033,45.2639694],[131.7908325,45.2592888],[131.7870331,45.2550468],[131.7842712,45.2519226],[131.7817993,45.248333],[131.7805939,45.2442436],[131.7805634,45.2376137],[131.7798462,45.2303162],[131.7797852,45.2232246],[131.7805176,45.2188568],[131.7806702,45.2158813],[131.7817993,45.2128754],[131.7787476,45.2102165],[131.7741699,45.2094269],[131.766449,45.2105484],[131.7568817,45.2133293],[131.7466888,45.2168083],[131.742218,45.2178421],[131.736496,45.2200546],[131.7323914,45.2219963],[131.7285767,45.2234688],[131.7237549,45.2240601],[131.7172394,45.2235451],[131.7097015,45.2221451],[131.7054443,45.2211189],[131.7017822,45.2193871],[131.697052,45.215847],[131.6888733,45.214241],[131.6847076,45.2152634],[131.6815948,45.2176361],[131.6788025,45.2199936],[131.6752319,45.2198601],[131.667572,45.2189674],[131.6654053,45.2118874],[131.665451,45.2066231],[131.664505,45.2009315],[131.6622772,45.1954994],[131.6590729,45.1898651],[131.6551514,45.1828766],[131.6519165,45.1767883],[131.6480865,45.1718597],[131.6452789,45.1675873],[131.6444092,45.1632652],[131.6444702,45.1582298],[131.6474915,45.1542625],[131.6541138,45.1508904],[131.658905,45.1493874],[131.6636963,45.1483498],[131.6691284,45.1470604],[131.6729431,45.1455879],[131.6757507,45.1436844],[131.6787872,45.1397171],[131.6807556,45.1341782],[131.6807861,45.128685],[131.6804962,45.1232033],[131.6786499,45.118679],[131.6742096,45.1142235],[131.6681213,45.1093521],[131.6604462,45.1047516],[131.6530762,45.0999107],[131.6420288,45.0926514],[131.6370239,45.0898132],[131.6310577,45.0867653],[131.6273346,45.0836601],[131.624527,45.0793915],[131.6200409,45.0740166],[131.6172943,45.0706596],[131.6125641,45.0666656],[131.6049194,45.0625153],[131.5989227,45.0592422],[131.5955963,45.0572701],[131.5895691,45.0530777],[131.5809479,45.0487289],[131.573349,45.0454903],[131.5644836,45.0427437],[131.5588684,45.0403709],[131.5565033,45.038372],[131.5543365,45.0338516],[131.5522919,45.03162],[131.5475464,45.0271645],[131.5414581,45.0216026],[131.5361328,45.0185356],[131.5308228,45.0156937],[131.5258331,45.0126228],[131.5183716,45.0118942],[131.5118866,45.0116005],[131.5060425,45.0108299],[131.5001068,45.0084648],[131.4931641,45.0052071],[131.4868164,45.0007896],[131.4821472,44.9977036],[131.477951,44.9975777],[131.47435,44.9967537],[131.473587,44.9942551],[131.4743805,44.9908066],[131.478363,44.9863625],[131.4829712,44.9814453],[131.4872589,44.9769936],[131.4887543,44.9744415],[131.4869537,44.9706001],[131.4838715,44.9670143],[131.4798889,44.9645996],[131.4720764,44.9634209],[131.46492,44.9622231],[131.4587708,44.961689],[131.4543152,44.962944],[131.4511414,44.9641647],[131.4486237,44.9653702],[131.4444733,44.9663887],[131.4405975,44.9662514],[131.4324799,44.9650764],[131.4267273,44.9661331],[131.4214478,44.9706078],[131.4174347,44.9741364],[131.4134674,44.9790344],[131.4081421,44.9823608],[131.4017639,44.9838905],[131.3956299,44.9840355],[131.3878174,44.9826241],[131.3809814,44.9811859],[131.3712158,44.9795876],[131.3638153,44.9799957],[131.3587646,44.9824028],[131.355011,44.9847794],[131.3505402,44.9860268],[131.3450317,44.9854698],[131.3401184,44.983757],[131.3360901,44.980648],[131.3320465,44.9768562],[131.3269348,44.9708061],[131.3196106,44.9661713],[131.3156738,44.9646645],[131.3085175,44.9632301],[131.3026733,44.9624519],[131.3000641,44.9618263],[131.2992554,44.958416],[131.2977448,44.9534187],[131.2965698,44.9491005],[131.2940979,44.9441299],[131.2906342,44.9389496],[131.2891693,44.9350929],[131.2870789,44.9317131],[131.2846985,44.9290237],[131.2820435,44.9274826],[131.2768097,44.9257774],[131.2683105,44.9232254],[131.2650604,44.9223862],[131.2612762,44.9243011],[131.2591248,44.9266396],[131.2566223,44.928524],[131.2534332,44.9292831],[131.2481842,44.9271164],[131.2435913,44.9253922],[131.2377167,44.9236946],[131.2321472,44.9217644],[131.2243805,44.9210243],[131.2194977,44.9199905],[131.2116852,44.918335],[131.2065277,44.9182243],[131.2001801,44.9206505],[131.1958008,44.9234924],[131.1911316,44.9274826],[131.1880341,44.930069],[131.1842194,44.9315224],[131.1791077,44.9325523],[131.1743164,44.9335709],[131.1707916,44.9338799],[131.1654053,44.9362831],[131.160553,44.9357071],[131.1554565,44.9371872],[131.1517181,44.9404716],[131.1476593,44.9435349],[131.1402588,44.943924],[131.1321106,44.9418144],[131.1251984,44.9383049],[131.1202393,44.9354401],[131.1159668,44.9337044],[131.1120911,44.9333267],[131.1056671,44.9339256],[131.1004944,44.9338074],[131.0952606,44.9320908],[131.0887146,44.9297142],[131.0840454,44.9256973],[131.0819397,44.921627],[131.0816956,44.9159164],[131.0821686,44.9117889],[131.0848389,44.9064751],[131.0869751,44.9034576],[131.0883484,44.8979378],[131.085022,44.8952675],[131.0794525,44.8931007],[131.0744934,44.8900032],[131.0701599,44.8864365],[131.0674591,44.8837509],[131.0608368,44.8793182],[131.0545959,44.8764763],[131.0461273,44.8741379],[131.0390015,44.8729172],[131.0328979,44.8732719],[131.0287628,44.8747292],[131.0255585,44.8752518],[131.0216217,44.8735085],[131.0166626,44.8701782],[131.0107727,44.8677864],[130.9987946,44.8662033],[130.9881439,44.8657341],[130.9823151,44.8647118],[130.9770813,44.8629875],[130.9727936,44.8603325],[130.9697571,44.8569641],[130.9615631,44.8530121],[130.955368,44.8532104],[130.9564514,44.8460312],[130.9546051,44.8401222],[130.9538727,44.8376198],[130.954071,44.8346481],[130.9549255,44.8318863],[130.9584656,44.8314133],[130.9588013,44.8240356],[130.9602661,44.8205757],[130.9621124,44.8182487],[130.9665375,44.81633],[130.9726868,44.8171234],[130.9804688,44.8187904],[130.9866486,44.8202667],[130.9914856,44.8206253],[130.9959259,44.8189316],[131.0018616,44.8146973],[131.0048981,44.8100624],[131.0066833,44.8065948],[131.0093689,44.8015099],[131.0110626,44.7955322],[131.0115814,44.7925491],[131.0130157,44.7883987],[131.0150604,44.7831001],[131.0197754,44.7804871],[131.0287323,44.7796135],[131.0355072,44.780159],[131.0429535,44.7813759],[131.0471649,44.7822037],[131.0520325,44.7832413],[131.0548706,44.7818108],[131.0571747,44.7753601],[131.0595703,44.7711945],[131.0612488,44.7649841],[131.0635834,44.759449],[131.0665741,44.7541275],[131.0699463,44.749939],[131.0753479,44.7486839],[131.0787659,44.7458649],[131.0823975,44.7402992],[131.0835114,44.7361603],[131.0830078,44.7320557],[131.0821686,44.727272],[131.0816956,44.7233963],[131.0821838,44.7199554],[131.0838776,44.7144318],[131.0863037,44.7107239],[131.0886993,44.7067833],[131.0944061,44.7050591],[131.1005249,44.6976128],[131.10289,44.6929893],[131.1051483,44.6856232],[131.1080627,44.6787033],[131.1101227,44.6740875],[131.112381,44.6667175],[131.1471558,44.532032],[131.217514,44.296917],[131.2388458,44.2242203],[131.2623749,44.1450844],[131.2912445,44.0461655],[131.2822113,44.0399361],[131.2737122,44.0348396],[131.2601776,44.0343437],[131.2436676,44.0028191],[131.245285,43.9930153],[131.2337494,43.9910393],[131.2293091,43.9851341],[131.2341461,43.9775085],[131.2303619,43.9633255],[131.2320557,43.9550209],[131.2390442,43.9488411],[131.2512665,43.9432869],[131.2559662,43.9326553],[131.2573853,43.9183464],[131.2436829,43.8923836],[131.2308502,43.8844299],[131.2274933,43.8792496],[131.2285461,43.8574371],[131.2003784,43.8318138],[131.2031097,43.8234825],[131.2103882,43.8240623],[131.2144318,43.8217125],[131.21492,43.8096771],[131.203064,43.8001938],[131.1985779,43.7927895],[131.2003021,43.7852325],[131.2132874,43.7744064],[131.2120819,43.7706757],[131.2013702,43.7634163],[131.20224,43.7596397],[131.2073517,43.7580147],[131.2127686,43.7631454],[131.2190552,43.7644958],[131.2259216,43.7560692],[131.2222137,43.7433853],[131.2106171,43.7391548],[131.2062378,43.7339973],[131.2081757,43.7309494],[131.2253876,43.7222672],[131.2252197,43.7185173],[131.2116241,43.7158356],[131.208313,43.7114067],[131.216507,43.6871643],[131.2345428,43.6739616],[131.2363586,43.6686554],[131.2206421,43.6645241],[131.2253265,43.6538925],[131.223877,43.6449089],[131.2307281,43.6364822],[131.2148438,43.6285973],[131.2103577,43.6211891],[131.2087708,43.6092033],[131.2107391,43.6069031],[131.2263794,43.6095352],[131.2335052,43.6071053],[131.2350769,43.5965462],[131.2305298,43.5876427],[131.2253723,43.5877647],[131.2132568,43.5940666],[131.2080841,43.5941925],[131.2027435,43.5905609],[131.2014008,43.5838318],[131.2061157,43.5739479],[131.2047119,43.5657158],[131.1829224,43.5639839],[131.1828308,43.5617332],[131.1968689,43.5523796],[131.1898804,43.5352592],[131.1957397,43.527607],[131.2051544,43.5303879],[131.2097931,43.5190048],[131.2313232,43.51548],[131.24263,43.5077133],[131.2643738,43.495594],[131.2737579,43.488903],[131.2927246,43.4789467],[131.2809906,43.4770317],[131.2730713,43.4765587],[131.257843,43.4744759],[131.1893158,43.4473686],[131.1500092,43.418705],[131.1313934,43.4409981],[131.1256256,43.4519119],[131.0274048,43.4984207],[131.0026703,43.5011559],[130.9218903,43.460022],[130.8634186,43.4356689],[130.8139038,43.5045242],[130.736145,43.5516129],[130.6744385,43.5664139],[130.6669312,43.5812569],[130.6232147,43.5905571],[130.6229858,43.6272087],[130.5443878,43.6277122],[130.5173035,43.6242142],[130.4705963,43.670826],[130.4485931,43.7173538],[130.4542542,43.738987],[130.4237976,43.7511139],[130.4154968,43.7865639],[130.3633118,43.8781586],[130.3737793,43.9012871],[130.3300629,43.9480209],[130.3575287,43.9984932],[130.3532257,44.0443993],[130.3265381,44.0431976],[130.3045502,44.0282059],[130.2983398,44.0009575],[130.2484741,43.9774323],[130.2431183,43.9464035],[130.2002106,43.9436111],[130.1678009,43.9252548],[130.1422882,43.879509],[130.1135559,43.8732033],[130.1001892,43.8459892],[130.0643463,43.835453],[130.0207672,43.8557396],[130.0029907,43.8810272],[130.0127716,43.9596062],[129.9841003,43.9827995],[129.997879,43.995369],[129.9485321,44.0241394],[129.9381866,44.0295105],[129.9037781,44.0225792],[129.858551,43.9941902],[129.8530884,44.0094109],[129.8091583,43.9682503],[129.7736969,43.9599113],[129.78862,43.9411201],[129.7711639,43.920578],[129.7797852,43.9028091],[129.7747345,43.8932762],[129.7359619,43.8895607],[129.7324066,43.8770294],[129.6993103,43.8819122],[129.657074,43.867466],[129.5944824,43.8819351],[129.5592957,43.8694077],[129.491394,43.875885],[129.4636841,43.8694077],[129.4382629,43.842289],[129.4076691,43.8340073],[129.3954315,43.813797],[129.3526306,43.7974205],[129.3103027,43.8121567],[129.2991028,43.7937584],[129.2606659,43.8130074],[129.2304688,43.8067322],[129.2125549,43.783596],[129.2225647,43.7104454],[129.2058868,43.6850014],[129.2304993,43.6304474],[129.2263031,43.5984421],[129.190033,43.5697937],[129.1452332,43.5666466],[129.0903168,43.5466499],[129.0031738,43.5194016],[128.9820404,43.5340385],[128.9581299,43.5349617],[128.9458313,43.5508804],[128.9294891,43.5533257],[128.8955688,43.5401306],[128.8496094,43.5595512],[128.769989,43.7259789],[128.738739,43.7269135],[128.7240448,43.7366447],[128.7277374,43.7517204],[128.7531128,43.7579346],[128.7337952,43.7965431],[128.6930084,43.8410339],[128.6857452,43.8857231],[128.6468658,43.8905792],[128.6282654,43.9200096],[128.631012,43.9360123],[128.5847626,43.9864502],[128.567627,44.0348358],[128.5153351,44.1190872],[128.4627686,44.1571541],[128.4546509,44.1957588],[128.4489746,44.2590523],[128.4716949,44.3100624],[128.4709015,44.3491402],[128.4298706,44.4621849],[128.3895111,44.4796791],[128.3596039,44.5086174],[128.2904053,44.4814186],[128.2720642,44.4543839],[128.2523041,44.4476776],[128.2498169,44.4387512],[128.2169495,44.4331322],[128.1982269,44.4197922],[128.1828156,44.358242],[128.163208,44.33918],[128.1414032,44.3514175],[128.1185303,44.3435287],[128.0945587,44.3482018],[128.0662842,44.366787],[128.0467377,44.3463326],[128.0580292,44.3054886],[128.0933228,44.2830582],[128.0574036,44.2472038],[128.0899353,44.2421303],[128.0988007,44.2170372],[128.0817261,44.207119],[128.0835876,44.1817627],[128.0425415,44.1828995],[128.0961914,44.1313248],[128.036438,44.1058464],[128.0137177,44.1201057],[127.9968567,44.0960045],[127.9344864,44.0818825],[127.9096222,44.0661697],[127.8671265,44.063343],[127.8287201,44.0847588],[127.8001785,44.0827026],[127.7787933,44.0704155],[127.7496872,44.0831985],[127.7326202,44.0976753],[127.7131424,44.1964645],[127.7013931,44.1949883],[127.6837692,44.1662598],[127.6298828,44.1915817],[127.6287613,44.183342],[127.6153336,44.1873245],[127.5856323,44.2263451],[127.6141281,44.2508507],[127.611351,44.2800789],[127.5291824,44.3567314],[127.5128098,44.3615837],[127.5056763,44.3818512],[127.4740524,44.3984222],[127.4975128,44.4368515],[127.4662628,44.4641685],[127.4687805,44.4950523],[127.4503174,44.5058174],[127.4828796,44.5237808],[127.5347824,44.5206757],[127.5601425,44.5481377],[127.5254898,44.567894],[127.4059372,44.615036],[127.401123,44.629612],[127.3645401,44.6177521],[127.273407,44.6344528],[127.2537766,44.5996857],[127.2238235,44.6182671],[127.2069702,44.6132431],[127.2063599,44.6365509],[127.1555328,44.6429482],[127.1451263,44.6128578],[127.1238708,44.6050186],[127.0877914,44.6115875],[127.0793762,44.5806046],[127.0439529,44.5654564],[127.0238571,44.5948753],[127.0370865,44.646965],[127.0191269,44.67939],[127.0356674,44.7063866],[126.9860916,44.7643929],[126.9827805,44.8208122],[126.9961472,44.8790855],[127.069397,44.9185791],[127.0720673,44.9375954],[127.0880127,44.9437675],[127.069603,44.9672813],[127.0523376,44.9693489],[127.0479584,44.9776154],[127.0435791,44.9810219],[127.0484467,44.9883156],[127.0348282,44.9897766],[127.0265579,45.0102005],[127.0012665,45.0243034],[127.0002975,45.0296555],[127.0037003,45.0330582],[127.0037003,45.0369492],[126.9939728,45.0418129],[126.9915466,45.0486221],[126.9861908,45.0491066],[126.9857101,45.0583458],[126.9740372,45.061264],[126.9638214,45.070507],[126.9628525,45.0816917],[126.9628525,45.0889854],[126.9652786,45.1001701],[126.9618835,45.1069794],[126.9599304,45.1118431],[126.9540863,45.1186523],[126.9555588,45.1312981],[126.9604187,45.1322708],[126.9599304,45.1351891],[126.9514465,45.1435242],[126.9373169,45.1403122],[126.9305878,45.1454506],[126.9183884,45.1403122],[126.90522,45.1396713],[126.8862762,45.1393509],[126.8785782,45.1364594],[126.8638229,45.1351776],[126.8540192,45.1398315],[126.8498535,45.1443253],[126.8382874,45.1484985],[126.8231964,45.1436844],[126.8167877,45.1507454],[126.8122864,45.1501045],[126.8052292,45.143364],[126.7981567,45.1436844],[126.7853165,45.1517105],[126.7821121,45.1517105],[126.7590027,45.1716118],[126.7455215,45.1728973],[126.733963,45.1684036],[126.7291489,45.1693649],[126.7220764,45.1822052],[126.7024994,45.1815643],[126.6909485,45.1809196],[126.6883774,45.1822052],[126.6829224,45.1812439],[126.6659088,45.1911926],[126.6588364,45.1927986],[126.6543503,45.1982574],[126.6511383,45.2021103],[126.6405487,45.2072449],[126.6386185,45.2130241],[126.6171112,45.2261848],[126.6074829,45.2290726],[126.6045914,45.2335663],[126.5875778,45.234211],[126.5789108,45.2338905],[126.5651093,45.2364578],[126.5551529,45.2467308],[126.5450211,45.2380486],[126.5399475,45.2346611],[126.5268936,45.2358704],[126.5215836,45.2281342],[126.5044098,45.2351456],[126.4855576,45.2339363],[126.4797516,45.2228165],[126.4715271,45.225235],[126.4642792,45.2276535],[126.4509888,45.2230606],[126.4393768,45.2184677],[126.433342,45.2177429],[126.4306793,45.2230606],[126.423912,45.2281342],[126.4089279,45.2206421],[126.3951492,45.2165337],[126.3828201,45.2054138],[126.378952,45.2039642],[126.3767776,45.1986465],[126.3605804,45.1904259],[126.3523636,45.180275],[126.3485031,45.180275],[126.340271,45.1846237],[126.3342285,45.1831741],[126.3354416,45.1751976],[126.3322983,45.1693954],[126.3289108,45.1626282],[126.3361664,45.1580353],[126.3332672,45.1546478],[126.3257675,45.1556168],[126.3173065,45.1575508],[126.3081207,45.1546478],[126.3059464,45.1440125],[126.2972488,45.1428032],[126.2921677,45.1457062],[126.2854004,45.1515083],[126.2718735,45.1556168],[126.2646103,45.1546478],[126.2626801,45.1515083],[126.2571182,45.151989],[126.2556686,45.1469154],[126.2382736,45.13797],[126.2278671,45.1374855],[126.2203827,45.1452217],[126.2065964,45.1423225],[126.2012787,45.1444969],[126.182663,45.1457062],[126.1722717,45.1355515],[126.1584396,45.1306229],[126.1470032,45.1339569],[126.1450882,45.1392021],[126.1341324,45.1401558],[126.1212616,45.1406326],[126.1122131,45.1420631],[126.1002884,45.1392021],[126.0921936,45.1415863],[126.0855103,45.1411095],[126.0836029,45.1468277],[126.0802689,45.1520729],[126.0750198,45.158268],[126.0535736,45.1644669],[126.0430832,45.1606522],[126.027359,45.1620827],[126.0192566,45.1525497],[126.0135269,45.1520729],[126.0049515,45.1630363],[126.0001831,45.1649399],[125.9891205,45.1591644],[125.9901733,45.1663704],[125.9897003,45.1725693],[125.9782562,45.1687546],[125.9720612,45.1682777],[125.9606171,45.1663704],[125.9725418,45.179718],[125.9553833,45.1835327],[125.9482269,45.1925888],[125.9386978,45.1911583],[125.928688,45.1902046],[125.9134369,45.1897278],[125.9010391,45.1902046],[125.8981781,45.2054596],[125.887207,45.2068863],[125.8762512,45.2087936],[125.8657684,45.213562],[125.8562317,45.2202339],[125.8509903,45.2245255],[125.8452682,45.2311974],[125.8419266,45.2359657],[125.8328781,45.2335815],[125.8252487,45.2311974],[125.8114319,45.2307205],[125.8042831,45.2345352],[125.8023834,45.2392998],[125.8019028,45.2516937],[125.8004684,45.2607498],[125.7971268,45.2669487],[125.7780609,45.2664719],[125.7709122,45.2679024],[125.7718735,45.2736206],[125.7761536,45.2836304],[125.7661438,45.2860146],[125.7561264,45.2826767],[125.747963,45.2818565],[125.7427902,45.2979317],[125.7332535,45.3065109],[125.72229,45.315567],[125.7180023,45.3208084],[125.7199097,45.3260536],[125.72229,45.3293915],[125.7132263,45.3322487],[125.7041779,45.3332024],[125.6951218,45.334156],[125.6946487,45.3403549],[125.6932068,45.3441658],[125.6903534,45.3522682],[125.6898804,45.3565598],[125.6913071,45.362278],[125.6927414,45.3670464],[125.6922607,45.3718109],[125.6908264,45.3761024],[125.6941681,45.3818207],[125.7089462,45.3965988],[125.7065735,45.4080391],[125.7089462,45.4128036],[125.7036972,45.4213867],[125.7094269,45.4242439],[125.710701,45.4282646],[125.6937027,45.4342537],[125.7027512,45.4418831],[125.6927414,45.448555],[125.6937027,45.4518929],[125.7018204,45.4557762],[125.6998901,45.4595184],[125.6970291,45.4628563],[125.6855927,45.4628563],[125.681778,45.467144],[125.6884537,45.4690514],[125.6932068,45.4719124],[125.6989365,45.4733429],[125.7003174,45.4779587],[125.6932068,45.4814453],[125.6865463,45.482399],[125.6789169,45.4833527],[125.6841583,45.4909782],[125.6875,45.4952698],[125.684639,45.5019417],[125.687973,45.5076599],[125.6091614,45.5124016],[125.5791397,45.4911804],[125.4954376,45.4694748],[125.4393463,45.4836159],[125.4587173,45.4523926],[125.4109573,45.4356003],[125.365509,45.3954659],[125.3472672,45.3926201],[125.3326797,45.3952255],[125.3028336,45.4239807],[125.2917404,45.4208488],[125.2855225,45.3923187],[125.2503967,45.4178963],[125.1890869,45.4008598],[125.1273804,45.4050484],[125.0917435,45.3830414],[125.0751572,45.3824272],[125.070282,45.4176369],[125.0337067,45.4381218],[125.040657,45.4915695],[124.9602432,45.4907074],[124.9243622,45.5308075],[124.9097214,45.5347328],[124.8755798,45.4872856],[124.8792801,45.4500313],[124.8672028,45.4418335],[124.8128967,45.4460564],[124.7793503,45.4346886],[124.759613,45.4619102],[124.7091293,45.4430046],[124.6678238,45.4437218],[124.6502304,45.4261322],[124.5806503,45.4503632],[124.5699081,45.444191],[124.5695877,45.4204216],[124.5312271,45.4103508],[124.4934998,45.4249458],[124.4693832,45.4550858],[124.4511566,45.4578018],[124.3942795,45.4394302],[124.3642807,45.459938],[124.3652115,45.4706802],[124.3449631,45.4909744],[124.3598175,45.5216293],[124.3463669,45.5428505],[124.2867737,45.5392723],[124.260643,45.5508499],[124.2598038,45.5844421],[124.2221909,45.60009],[124.2187271,45.6316109],[124.1672821,45.6158867],[124.1385117,45.6233139],[124.1266632,45.6369743],[124.1392288,45.6573639],[124.1143036,45.670517],[124.1240005,45.6826668],[124.1170731,45.6926918],[124.0845032,45.716774],[124.0498505,45.7175217],[124.0373001,45.7304878],[124.0687027,45.7290382],[124.0708923,45.7400208],[124.0076904,45.7495308],[123.9956436,45.7755203],[124.0565872,45.8014259],[124.028183,45.8275642],[124.0611191,45.8439484],[124.056633,45.8676949],[124.0488815,45.8905067],[124.0295563,45.8885841],[123.9854202,45.9077759],[123.9541779,45.9448509],[123.967041,45.9689178],[124.0069122,45.9876442],[123.9875793,46.0147324],[124.031601,46.0156479],[124.0396881,46.029171],[123.9946365,46.0618439],[124.006897,46.0852165],[123.9860306,46.0988159],[124.0031967,46.124958],[123.9932709,46.1619263],[123.9602966,46.1640282],[123.9626083,46.1939774],[123.9502792,46.2051048],[123.9689026,46.2214317],[123.9433136,46.2384224],[123.9533463,46.2844124],[123.9338531,46.2863541],[123.9001999,46.2559929],[123.8963928,46.297554],[123.8428497,46.2999573],[123.774353,46.2624664],[123.6059265,46.2471848],[123.5670166,46.2269592],[123.5025024,46.2537804],[123.4507828,46.2324791],[123.3932495,46.2380562],[123.3672638,46.2190399],[123.3190689,46.2498169],[123.288063,46.2492371],[123.239357,46.2701492],[123.2185669,46.2694473],[123.1710434,46.2466812],[123.1051712,46.333477],[123.0120163,46.4189491],[122.9992828,46.4489746],[123.0041885,46.474205],[122.9836273,46.4990883],[123.0050507,46.5263824],[122.9982071,46.5695267],[123.0440063,46.5797577],[123.0459671,46.6170731],[123.0696182,46.6137276],[123.0782166,46.6021729],[123.174881,46.6102638],[123.1956329,46.589695],[123.2172318,46.5876694],[123.2624435,46.6115341],[123.2709732,46.6587563],[123.3923798,46.6797523],[123.5888977,46.686657],[123.6171875,46.72258],[123.6326065,46.8148918],[123.6095428,46.8079376],[123.5884018,46.8101692],[123.5780563,46.8156929],[123.572197,46.8226089],[123.5848999,46.8280106],[123.6026917,46.8307457],[123.6085434,46.8398476],[123.5941772,46.8605385],[123.5972137,46.8759117],[123.598053,46.8880196],[123.5853195,46.8911095],[123.5690079,46.8895988],[123.5657272,46.866787],[123.5584412,46.8535576],[123.5649033,46.8396988],[123.5518799,46.8228874],[123.5274124,46.8234482],[123.5035934,46.82267],[123.497757,46.8216248],[123.4927368,46.8239021],[123.481102,46.8320618],[123.4749527,46.8407822],[123.4734116,46.8507462],[123.4776764,46.8626823],[123.4854431,46.8708954],[123.4941101,46.8877754],[123.5014114,46.8991814],[123.5082626,46.9192543],[123.5150986,46.9365883],[123.5238419,46.9516335],[123.5264969,46.9562073],[123.5133896,46.9542694],[123.5092773,46.955864],[123.5051727,46.9508476],[123.5003815,46.9483376],[123.493309,46.9522133],[123.4903488,46.9547234],[123.4807663,46.9526711],[123.4741516,46.9517593],[123.4657135,46.9503899],[123.4579468,46.950161],[123.4536209,46.9531288],[123.4495163,46.9551811],[123.4426727,46.9563217],[123.4383392,46.9567757],[123.4315033,46.9572334],[123.4294434,46.9538116],[123.4262466,46.9508476],[123.4203186,46.947197],[123.4150696,46.9458275],[123.407547,46.9455986],[123.4037628,46.9470367],[123.4036636,46.9508476],[123.4057236,46.95541],[123.4011536,46.9588318],[123.3965912,46.9601974],[123.3904266,46.9597435],[123.3847427,46.9581451],[123.3769836,46.9574623],[123.3757629,46.960701],[123.3756104,46.9663582],[123.3721771,46.9709206],[123.3694534,46.9757118],[123.3653412,46.9791298],[123.359642,46.9820976],[123.3575897,46.9848328],[123.3603287,46.9900818],[123.3466415,46.9909935],[123.3484573,46.9946442],[123.3491516,46.998291],[123.3448105,46.998291],[123.3356934,46.995327],[123.3304367,46.9946442],[123.312973,47.0062256],[123.3095627,46.9647903],[123.3622513,46.952549],[123.3793182,46.903553],[123.3525696,46.8609543],[123.3081665,46.8497238],[123.2973328,46.8566208],[123.2852783,46.8595314],[123.2785797,46.859066],[123.263092,46.8541756],[123.2528992,46.8537674],[123.243927,46.8525429],[123.2331772,46.8538437],[123.2272263,46.8452072],[123.2243729,46.8403168],[123.2185135,46.8327065],[123.2207031,46.8240128],[123.2170334,46.8179016],[123.2149963,46.8134155],[123.2109222,46.8097496],[123.2088928,46.8068962],[123.2073517,46.8021698],[123.1995087,46.796299],[123.187973,46.7921867],[123.1791611,46.7863159],[123.1732864,46.771637],[123.1680069,46.7622414],[123.1591873,46.7546082],[123.1568527,46.7428627],[123.1516571,46.7410545],[123.1477509,46.7388306],[123.138649,46.7387505],[123.1239624,46.7399254],[123.1098709,46.7340546],[123.0936432,46.7334328],[123.0834503,46.7322922],[123.0769272,46.7279282],[123.0728836,46.7270088],[123.05233,46.7293549],[123.0441132,46.7223091],[123.0264893,46.724659],[123.0129929,46.7168312],[123.0070267,46.7171288],[123.0041733,46.7211342],[122.9990768,46.7222252],[122.9983063,46.7240715],[122.9988937,46.7328796],[122.9962311,46.7338409],[122.9941864,46.7387505],[122.9903336,46.7409706],[122.9859695,46.7458],[122.9884872,46.7495308],[122.9924316,46.7522583],[122.9929733,46.7546272],[122.9909134,46.7572479],[122.9795227,46.7645874],[122.9719772,46.7674637],[122.9689407,46.7669373],[122.9640427,46.7701149],[122.9618988,46.770462],[122.9597473,46.7709274],[122.9542618,46.7745705],[122.9505768,46.7772446],[122.9472198,46.7769203],[122.9430466,46.7780609],[122.937233,46.7780952],[122.937233,46.7822037],[122.9353027,46.7856026],[122.9332733,46.7868233],[122.9290771,46.7893219],[122.8890076,46.815731],[122.8925171,46.8537598],[122.8752136,46.8857574],[122.8887024,46.9026566],[122.8867035,46.957756],[122.8620529,46.9560204],[122.8305206,46.9390755],[122.7964935,46.9387856],[122.7659073,46.9755974],[122.7906036,47.018074],[122.8077316,47.0153618],[122.8234482,47.0258942],[122.8419113,47.0554543],[122.7867126,47.0763435],[122.7300491,47.0795708],[122.7266922,47.0900383],[122.6975784,47.0897942],[122.6912537,47.0988426],[122.6547775,47.0982437],[122.6543503,47.1103592],[122.6056137,47.1250954],[122.5876312,47.1593285],[122.567421,47.161953],[122.5249329,47.1962051],[122.5117569,47.2252541],[122.4562073,47.2734337],[122.4470596,47.3016281],[122.3889236,47.3440094],[122.4952011,47.4061165],[122.5437775,47.5126381],[122.5676117,47.5343246],[122.6162415,47.5619087],[122.7590103,47.6145248],[122.7985764,47.645092],[122.8363571,47.6694412],[122.9006729,47.6902733],[123.184761,47.8051186],[123.2905273,47.9519501],[123.5343323,48.0220337],[123.5742188,48.0417213],[123.7315521,48.1873131],[123.8522415,48.2598686],[124.0718002,48.4294243],[124.2672882,48.5298576],[124.2795334,48.5226593],[124.2975235,48.514019],[124.3003998,48.5068207],[124.3076019,48.5003433],[124.3140793,48.4837837],[124.3126373,48.4773064],[124.2982407,48.4708252],[124.2946396,48.4629097],[124.3003998,48.4535484],[124.3101196,48.4402313],[124.323082,48.4351921],[124.3259583,48.4251137],[124.326683,48.4186363],[124.3050766,48.4150352],[124.3058014,48.4085579],[124.3101196,48.4020767],[124.3029327,48.3984795],[124.3022003,48.3934402],[124.3144379,48.3912811],[124.3201981,48.3862419],[124.3137207,48.3819199],[124.3065186,48.3797607],[124.3022003,48.3732834],[124.3014832,48.366806],[124.3194809,48.3574448],[124.316597,48.3495255],[124.3187637,48.3394508],[124.3295593,48.3336906],[124.3410721,48.3300896],[124.3353195,48.3200111],[124.3525925,48.3142548],[124.3489914,48.3020172],[124.3576431,48.2976952],[124.3763504,48.2926559],[124.3792267,48.2825775],[124.3878708,48.2775383],[124.3900299,48.2710609],[124.3993835,48.2588234],[124.3979492,48.2509041],[124.3907471,48.2494659],[124.3871536,48.2444267],[124.3936234,48.2393875],[124.3950729,48.2336273],[124.4145126,48.2235489],[124.4216995,48.2228279],[124.4548187,48.1969147],[124.4584122,48.181797],[124.4584122,48.1753159],[124.4505005,48.1702766],[124.4555435,48.1652374],[124.4670563,48.1616402],[124.4613037,48.15588],[124.4598465,48.1486816],[124.4677734,48.1364441],[124.4645081,48.1290665],[124.4440231,48.1270866],[124.4267426,48.1227646],[124.4296188,48.1177254],[124.4358063,48.1092644],[124.4180832,48.1018982],[124.4188232,48.0946922],[124.418457,48.0860519],[124.4245834,48.0831718],[124.4312363,48.0833054],[124.4360962,48.0874901],[124.4368591,48.0973091],[124.4468994,48.0961304],[124.4548187,48.1054878],[124.4684906,48.1083679],[124.4709473,48.1201134],[124.4929733,48.1206055],[124.502327,48.1249237],[124.5030365,48.1321259],[124.50737,48.1422043],[124.5001678,48.1659584],[124.5166931,48.1708984],[124.5167236,48.177475],[124.5145569,48.1853943],[124.5390396,48.1969147],[124.5433578,48.2026711],[124.5447998,48.2091522],[124.545517,48.2149086],[124.5527191,48.2199478],[124.5584793,48.225708],[124.5599213,48.2336273],[124.5570374,48.2429848],[124.55056,48.2458649],[124.545517,48.2509041],[124.5541611,48.2653008],[124.5591965,48.2667427],[124.5721588,48.2724991],[124.5685577,48.2789803],[124.5563202,48.2811394],[124.5563202,48.2868996],[124.5469589,48.2933769],[124.5462418,48.3056145],[124.5433578,48.3084946],[124.5440826,48.3142548],[124.5498428,48.318573],[124.55056,48.3236122],[124.5447998,48.3257713],[124.5390396,48.3264923],[124.5304031,48.3344116],[124.5239334,48.3329697],[124.5174484,48.3315315],[124.5131226,48.3315315],[124.5095291,48.3322487],[124.5109634,48.3380089],[124.5116882,48.3430481],[124.5080872,48.3509674],[124.5152893,48.3560066],[124.5167236,48.366806],[124.5098877,48.3743629],[124.5109634,48.3790436],[124.5235672,48.3887596],[124.5174484,48.3941612],[124.5131226,48.3977585],[124.5127563,48.4045982],[124.5174484,48.4092789],[124.5217667,48.4150352],[124.5286026,48.4189949],[124.5275269,48.4279938],[124.5192413,48.4417801],[124.5224762,48.4517517],[124.5275269,48.4539108],[124.5289612,48.4618263],[124.5357971,48.4722672],[124.5318527,48.4827042],[124.5304031,48.4899025],[124.5260773,48.4949417],[124.523201,48.5129395],[124.5260773,48.5179787],[124.5311203,48.5208588],[124.5368805,48.525898],[124.5383224,48.5338173],[124.5289612,48.5402946],[124.5196075,48.5410156],[124.5131226,48.547493],[124.5174484,48.5568504],[124.5289612,48.5618896],[124.5354538,48.57341],[124.549118,48.5748482],[124.5577621,48.569809],[124.5620804,48.5755692],[124.555603,48.5863686],[124.5692673,48.5899658],[124.5757523,48.5892448],[124.5800781,48.5914078],[124.5851135,48.5935669],[124.5915909,48.5942841],[124.595192,48.6007652],[124.5843964,48.618042],[124.5930328,48.6310005],[124.5944672,48.6554756],[124.6052704,48.665554],[124.6095886,48.6734734],[124.6117477,48.684269],[124.6124725,48.6950684],[124.6131897,48.7123451],[124.6074295,48.7238655],[124.6067123,48.7468987],[124.6117477,48.7526588],[124.6254272,48.7605782],[124.6455765,48.7713737],[124.6463013,48.7814522],[124.6484604,48.7908134],[124.6397171,48.8116455],[124.6412735,48.8167267],[124.6427078,48.8217659],[124.6491928,48.8275261],[124.6606979,48.8332863],[124.6736603,48.8340034],[124.6844635,48.8347244],[124.6909332,48.8390427],[124.6909332,48.8448029],[124.6902237,48.8498421],[124.6938171,48.8556023],[124.6988525,48.8591995],[124.7039032,48.8671188],[124.7039032,48.8836746],[124.6938171,48.8901558],[124.7017365,48.9009552],[124.6966934,48.918232],[124.7017365,48.9196701],[124.7154083,48.9153519],[124.7326889,48.9153519],[124.7418671,48.9206924],[124.7449265,48.9283524],[124.7487564,48.9329453],[124.7479935,48.9451981],[124.7433929,48.9528542],[124.7510529,48.9720001],[124.7702789,48.9900513],[124.7717285,48.9949722],[124.7755585,48.995739],[124.7923965,49.0118179],[124.7931671,49.0179443],[124.800827,49.022541],[124.8038864,49.0340271],[124.8123169,49.0416832],[124.8130798,49.0455132],[124.8084869,49.0547028],[124.8123169,49.0646591],[124.8199692,49.0661888],[124.8207397,49.0715485],[124.7969971,49.1060104],[124.7977676,49.1121368],[124.8054199,49.1144333],[124.8184433,49.1167297],[124.8337631,49.1220894],[124.8437119,49.1397018],[124.8467712,49.1565514],[124.8521271,49.1626778],[124.8590164,49.1672707],[124.8751068,49.1688004],[124.8812332,49.177227],[124.8896637,49.1787567],[124.9080429,49.17799],[124.9218216,49.1741638],[124.9447937,49.1603775],[124.9777222,49.1603775],[125.0098801,49.1756935],[125.0290298,49.1749268],[125.0336227,49.1718636],[125.0274963,49.1534882],[125.0450974,49.1419983],[125.0657806,49.1374054],[125.0879898,49.1289825],[125.0994797,49.1259193],[125.106369,49.1243858],[125.1147919,49.1266861],[125.1232071,49.1435318],[125.1216888,49.1550179],[125.1239929,49.1642075],[125.1170883,49.1741638],[125.1193771,49.1795235],[125.1546097,49.1642075],[125.1546097,49.1749268],[125.1638031,49.1910095],[125.1729889,49.1971359],[125.1860123,49.1963692],[125.1898422,49.1902428],[125.2128067,49.1925392],[125.2105179,49.1979027],[125.2204666,49.2323608],[125.2066879,49.2476768],[125.2074509,49.2522697],[125.2212372,49.2538033],[125.2258301,49.2576294],[125.2120438,49.2637558],[125.2235336,49.270649],[125.2051468,49.2752457],[125.2059174,49.2798386],[125.2212372,49.2829018],[125.2273636,49.2882614],[125.2319565,49.301281],[125.2510986,49.3135338],[125.2434387,49.3257828],[125.2564621,49.3418655],[125.2510986,49.355648],[125.2656479,49.3579483],[125.2679367,49.3763237],[125.2503433,49.3893433],[125.2495728,49.4169121],[125.2480392,49.4337578],[125.2602234,49.4408035],[125.2602921,49.4513702],[125.2556915,49.4582634],[125.2449722,49.463623],[125.2373123,49.4735794],[125.2143402,49.4873619],[125.2189407,49.4911919],[125.230423,49.4911919],[125.2388535,49.4957848],[125.2365494,49.5026779],[125.2273636,49.5034409],[125.2212372,49.5156937],[125.2250671,49.5325432],[125.230423,49.5333061],[125.2258606,49.5489655],[125.226593,49.5532188],[125.2220001,49.5608749],[125.2120438,49.5647049],[125.1875381,49.5677681],[125.1867828,49.5738945],[125.1929016,49.5792542],[125.2051468,49.583847],[125.2089767,49.5899734],[125.199791,49.5899734],[125.1898422,49.6052895],[125.1745224,49.6129456],[125.1722336,49.6213722],[125.1660995,49.6297951],[125.1569138,49.6290283],[125.1523132,49.6167755],[125.1446609,49.6152458],[125.1339264,49.618309],[125.1209183,49.6428108],[125.1209183,49.6665497],[125.130867,49.6719131],[125.1477203,49.6726761],[125.1569138,49.6703796],[125.1645737,49.6642532],[125.1737595,49.6588936],[125.1783524,49.649704],[125.1768188,49.6412811],[125.1760635,49.6328583],[125.1837234,49.6290283],[125.1913681,49.6336212],[125.1929016,49.6435776],[125.1936569,49.6527672],[125.2120438,49.6673164],[125.2089767,49.707901],[125.2166367,49.7239838],[125.2082138,49.7324066],[125.1944427,49.7370033],[125.2143402,49.757679],[125.2189407,49.7990303],[125.1974869,49.8105164],[125.1867828,49.8135796],[125.1706924,49.8227692],[125.1691666,49.8304253],[125.1821823,49.8342552],[125.2189407,49.8357849],[125.2319565,49.8488045],[125.2281265,49.8549309],[125.2097473,49.8618202],[125.2120438,49.8664169],[125.2319565,49.8664169],[125.2365494,49.8717766],[125.2197037,49.897049],[125.2043915,49.9115982],[125.2158737,49.9253807],[125.1890717,49.9384003],[125.1860123,49.9491196],[125.1722565,49.9566154],[125.1775894,49.9621391],[125.2281265,49.9598389],[125.2357864,49.9659653],[125.230423,49.9851112],[125.2327194,49.9889374],[125.2396164,49.9943008],[125.2465134,49.9958305],[125.2587585,49.9965973],[125.2733078,49.997364],[125.2824936,50.0019569],[125.28862,50.0119133],[125.2901535,50.0195694],[125.28862,50.0272293],[125.2817307,50.0318222],[125.2526321,50.0356522],[125.2434387,50.0394783],[125.2388535,50.047905],[125.259903,50.0490532],[125.2660294,50.057476],[125.2744522,50.0590057],[125.2943573,50.0467529],[125.3081512,50.0452232],[125.3165665,50.0482864],[125.3272934,50.057476],[125.3227005,50.0643692],[125.2828827,50.0666656],[125.2652664,50.0758553],[125.2637329,50.0812149],[125.2813492,50.0911674],[125.2775192,50.0957642],[125.2545471,50.0957642],[125.2514801,50.0980606],[125.2530136,50.1034203],[125.2767563,50.1126099],[125.2713928,50.1256294],[125.289772,50.1332855],[125.293602,50.1417084],[125.3020172,50.1409454],[125.3043213,50.134819],[125.3073807,50.1187363],[125.3135071,50.1156731],[125.321167,50.1164398],[125.3249969,50.1217995],[125.3219299,50.1332855],[125.3280563,50.1371155],[125.3456726,50.1363487],[125.3602219,50.135582],[125.3717117,50.1401787],[125.3663483,50.1463051],[125.3510437,50.1463051],[125.3380127,50.150135],[125.3272934,50.1585579],[125.3265305,50.1646843],[125.3364868,50.1654472],[125.3510437,50.162384],[125.3625183,50.1746368],[125.3755264,50.1715736],[125.3831863,50.1746368],[125.382431,50.1807632],[125.3740082,50.1868896],[125.3747711,50.1922493],[125.3808975,50.1960793],[125.4015732,50.1930161],[125.4214935,50.1960793],[125.4230118,50.2006721],[125.4345016,50.2022057],[125.4406281,50.2090988],[125.4390869,50.2159882],[125.4253235,50.2221146],[125.4260788,50.2274742],[125.437561,50.2290077],[125.4467468,50.224411],[125.4567108,50.2259445],[125.4536438,50.2313042],[125.4398727,50.2374306],[125.4390869,50.2489166],[125.4329681,50.2558098],[125.4345016,50.2634659],[125.4383316,50.2657661],[125.4605408,50.2649994],[125.4590073,50.274189],[125.4521103,50.2872047],[125.4528809,50.2918015],[125.4582367,50.2956276],[125.472023,50.2956276],[125.4781494,50.3048172],[125.4842834,50.3094139],[125.503418,50.3063507],[125.5118408,50.3086472],[125.5095367,50.3140068],[125.4972916,50.3193665],[125.499588,50.3239632],[125.5217972,50.3270264],[125.5080185,50.3392792],[125.5064774,50.3446388],[125.5171967,50.3499985],[125.5348206,50.3507652],[125.5409393,50.3568916],[125.5355835,50.3622513],[125.5202637,50.3622513],[125.5126114,50.3660812],[125.5286865,50.3806305],[125.5195007,50.3974762],[125.5149078,50.3997726],[125.5080185,50.4005394],[125.5011215,50.4066658],[125.5164413,50.4127922],[125.5217972,50.4196854],[125.5317535,50.4181519],[125.5409393,50.409729],[125.5531921,50.4028358],[125.5616074,50.3990097],[125.5677414,50.3990097],[125.5730972,50.4020691],[125.5738678,50.4081955],[125.5600891,50.4227448],[125.5539627,50.4327011],[125.5547333,50.4388275],[125.5631485,50.4388275],[125.5715714,50.4365311],[125.5822906,50.4342346],[125.5853577,50.4365311],[125.5853577,50.4395943],[125.5761719,50.4426575],[125.5715714,50.4464836],[125.5799866,50.4510803],[125.5907211,50.45261],[125.6029663,50.4510803],[125.6136932,50.4388275],[125.6236496,50.441124],[125.6343689,50.4487839],[125.6412582,50.4656296],[125.6519775,50.4725227],[125.6642303,50.4778824],[125.6902695,50.4786491],[125.6956329,50.4824753],[125.6933289,50.4847755],[125.6741867,50.4863052],[125.6688232,50.4886017],[125.6718903,50.4954948],[125.6894989,50.4962616],[125.7201309,50.5169373],[125.7293167,50.5222969],[125.7400436,50.5215302],[125.7438736,50.5184669],[125.7323837,50.5077477],[125.7339172,50.5031509],[125.743103,50.5039177],[125.7638474,50.5082283],[125.7653122,50.5161705],[125.7584229,50.5261269],[125.7591934,50.5307198],[125.7660828,50.5322533],[125.7790985,50.5284233],[125.7882767,50.5330162],[125.7936478,50.5399094],[125.80513,50.5437393],[125.8127899,50.5437393],[125.8181534,50.5475655],[125.8150864,50.5536919],[125.8189163,50.5659447],[125.8104935,50.5797272],[125.8104935,50.5904503],[125.8043671,50.5942802],[125.8066635,50.618782],[125.7859879,50.6371613],[125.7867508,50.6463509],[125.7956314,50.6545486],[125.7944107,50.6586037],[125.7829285,50.6700897],[125.7821579,50.6777458],[125.80513,50.6854057],[125.8181534,50.6945953],[125.8173828,50.7022514],[125.8013077,50.7099113],[125.7944107,50.7190971],[125.7752686,50.7190971],[125.7706833,50.7229271],[125.7714386,50.7275238],[125.7889786,50.7367859],[125.7882767,50.7413063],[125.7821579,50.7443695],[125.7752686,50.7443695],[125.7492294,50.7443695],[125.75,50.7512627],[125.7706833,50.7658119],[125.7836914,50.7719383],[125.8035965,50.7688751],[125.8242798,50.7550888],[125.8365326,50.7566223],[125.839592,50.7673416],[125.8258133,50.7788277],[125.8250427,50.788784],[125.8281021,50.7918472],[125.8579712,50.7903137],[125.8818512,50.8001328],[125.8817062,50.8071632],[125.8724976,50.8159523],[125.8840103,50.8217125],[125.907753,50.8270721],[125.918457,50.8339653],[125.9177017,50.8416214],[125.9100418,50.8477478],[125.8871765,50.8540459],[125.8916626,50.8592339],[125.9046936,50.8577042],[125.9360809,50.8515778],[125.9522629,50.8585281],[125.9506302,50.8630638],[125.9399109,50.86689],[125.9383774,50.8707199],[125.9483337,50.8806763],[125.9513931,50.8952255],[125.9575195,50.8982887],[125.9644089,50.897522],[125.9713135,50.8898659],[125.9728394,50.8699532],[125.986618,50.86689],[125.994278,50.8737831],[125.9881516,50.8860359],[125.9889069,50.8921623],[125.9958115,50.8959923],[125.9919815,50.9044151],[125.9981079,50.9067116],[126.0057602,50.9005852],[126.0141907,50.8990555],[126.021843,50.9005852],[126.0172501,50.9097748],[126.0124664,50.9153252],[126.0132294,50.9252815],[126.0212708,50.9317894],[126.0300827,50.9306412],[126.0384979,50.9233665],[126.0407867,50.9287262],[126.0404129,50.9352379],[126.0377274,50.940979],[126.0519028,50.9494019],[126.0505981,50.9602165],[126.0641632,50.9589767],[126.0691299,50.9593582],[126.0737228,50.9612732],[126.0756378,50.9658661],[126.0633926,50.9670143],[126.0630035,50.9731407],[126.0591736,50.9758224],[126.0488434,50.975441],[126.0417175,50.9764938],[126.0392685,50.9834785],[126.0415573,50.9899902],[126.036972,50.9980278],[126.0279694,51.0028152],[126.0266266,51.0056877],[126.0273972,51.0079842],[126.0314178,51.0127716],[126.0287399,51.0162163],[126.0317993,51.0215759],[126.0427017,51.0236778],[126.0329514,51.0296173],[126.0379333,51.034977],[126.05056,51.0288506],[126.055542,51.0319138],[126.051712,51.0388069],[126.0417633,51.0411034],[126.0245285,51.0418701],[126.019928,51.0437851],[126.02491,51.0487633],[126.0229874,51.0541229],[126.0084534,51.0522079],[126.0042267,51.0560379],[126.0107422,51.063694],[126.0046234,51.065609],[126.0000229,51.0633125],[125.9877701,51.0747986],[125.9732208,51.0816879],[125.9751434,51.0851364],[125.9797287,51.0843697],[125.986618,51.0866661],[125.9843216,51.0897293],[125.9755173,51.0912628],[125.9732208,51.0958557],[125.9938965,51.1153831],[125.9919815,51.1199799],[125.9808731,51.1165314],[125.9755173,51.1230392],[125.9693909,51.1234245],[125.9437332,51.1065788],[125.933403,51.1077271],[125.9276581,51.1123199],[125.927269,51.1165314],[125.9192429,51.1195946],[125.9196167,51.1226578],[125.9310989,51.123806],[125.9345474,51.1272545],[125.9046936,51.139122],[125.8920364,51.1345291],[125.8851471,51.1352921],[125.8759689,51.1395035],[125.865242,51.1395035],[125.8587265,51.1425667],[125.8587265,51.1486931],[125.8748169,51.1529045],[125.8686905,51.1597977],[125.867157,51.1674538],[125.8545227,51.1731987],[125.8556671,51.18507],[125.8464813,51.1996193],[125.8468704,51.2091904],[125.8330765,51.216465],[125.8181534,51.21838],[125.7501068,51.2248001],[125.7532883,51.2581482],[125.701889,51.3004036],[125.6916275,51.3286247],[125.6338882,51.3614922],[125.6111526,51.383606],[125.6157837,51.3953247],[125.5998383,51.3969536],[125.5632324,51.42976],[125.5691833,51.4464684],[125.5358963,51.4605408],[125.5140533,51.4915352],[125.3732834,51.5844727],[125.3598633,51.6097984],[125.3435364,51.6221771],[125.3081436,51.6082916],[125.2746582,51.6358185],[125.2521591,51.6287193],[125.2208328,51.6389427],[125.2069702,51.6264381],[125.1680069,51.6376495],[125.1272964,51.632412],[125.1203232,51.6572189],[125.0907669,51.656559],[125.0527267,51.5986938],[125.0647964,51.5516853],[125.0395737,51.5279236],[124.9987488,51.5276909],[124.9760513,51.5068016],[124.920639,51.4963341],[124.908577,51.4784584],[124.9350586,51.4460373],[124.8760834,51.4061241],[124.8778229,51.38657],[124.8572083,51.3781891],[124.7648087,51.3885422],[124.7436829,51.3554039],[124.7221603,51.344738],[124.6861496,51.3316193],[124.6479874,51.3343887],[124.6248322,51.3253708],[124.567749,51.3688965],[124.4826126,51.3787727],[124.4703598,51.3606377],[124.4293213,51.3519745],[124.4224472,51.2995071],[124.3924179,51.2698326],[124.3576736,51.2776566],[124.3402176,51.2702255],[124.3318634,51.2918167],[124.3041229,51.2879372],[124.2640686,51.3066826],[124.2574463,51.3233986],[124.2171402,51.3483238],[124.1796036,51.3369408],[124.1546021,51.3441658],[124.0914307,51.3411331],[124.0640335,51.319088],[123.9870682,51.3212509],[123.932579,51.3116875],[123.9188232,51.2992744],[123.882988,51.3179893],[123.8351288,51.3661385],[123.7870789,51.3597603],[123.7108612,51.3976784],[123.6775284,51.3725052],[123.6736984,51.3501701],[123.6529465,51.3413582],[123.6545334,51.3177261],[123.5889587,51.3106079],[123.5603867,51.2889442],[123.4797592,51.2901917],[123.4323196,51.2692223],[123.4065628,51.2769966],[123.3707275,51.2653198],[123.3320312,51.2708855],[123.2748489,51.250103],[123.2241135,51.2671509],[123.2194366,51.2798576],[123.1809235,51.2828484],[123.1461563,51.2992516],[123.1203995,51.296196],[123.0618896,51.3193054],[122.9942017,51.311451],[122.9592133,51.3445129],[122.9554214,51.3929062],[122.8959427,51.4152641],[122.8935165,51.4439354],[122.8640366,51.4537201],[122.847702,51.4762726],[122.8769989,51.501976],[122.8538666,51.5278778],[122.8784637,51.5410881],[122.8670273,51.5598755],[122.8250122,51.5836487],[122.8493729,51.6053467],[122.8136902,51.6317253],[122.809021,51.6537933],[122.7427368,51.7423515],[122.7649536,51.7780647],[122.7252808,51.8322144],[122.7185287,51.8767166],[122.6992035,51.8887711],[122.723877,51.9216919],[122.7190781,51.9773941],[122.6769867,51.9731865],[122.6645737,51.9837227],[122.6436234,52.057766],[122.6174698,52.0657082],[122.6370468,52.1081886],[122.6236877,52.1352348],[122.6837234,52.1390724],[122.7309036,52.1521187],[122.7629471,52.1771049],[122.7572632,52.22686],[122.7800369,52.2385025],[122.780098,52.2513008],[122.755928,52.265461],[122.7037125,52.2548904],[122.6719131,52.2753563],[122.5791168,52.2652092],[122.5537033,52.2813759],[122.4709778,52.2947998],[122.4770126,52.3401184],[122.4399033,52.3924484],[122.4091873,52.3726387],[122.4004822,52.3761864],[122.3597031,52.41222],[122.3361893,52.4114571],[122.3033371,52.4738617],[122.2006989,52.4678535],[122.1719437,52.4864044],[122.1589127,52.5134125],[122.1321869,52.5072975],[122.1263733,52.4745293],[122.0732117,52.4387436],[122.0838394,52.4256554],[122.0332336,52.4116058],[122.040329,52.3934364],[122.0283585,52.3761024],[121.9697037,52.3424683],[121.9407272,52.2971916],[121.9200363,52.2845039],[121.834137,52.2814178],[121.7621536,52.3068657],[121.7118301,52.314621],[121.7014389,52.3514557],[121.651413,52.3891373],[121.6716003,52.4185486],[121.6409225,52.4412766],[121.583313,52.4419823],[121.5581131,52.4590836],[121.5115433,52.4554024],[121.4919662,52.4783134],[121.4013901,52.5052261],[121.3970337,52.5227356],[121.3544312,52.5273056],[121.3156281,52.5694389],[121.2694626,52.5825882],[121.2163162,52.5742989],[121.1843185,52.594368],[121.2325363,52.6286316],[121.2749786,52.641243],[121.288063,52.6614304],[121.3771667,52.6873817],[121.4406662,52.7287292],[121.4762726,52.7729073],[121.5046005,52.7785187],[121.5943832,52.834713],[121.613472,52.8520012],[121.5969162,52.8727112],[121.5994186,52.8899117],[121.6479797,52.9082184],[121.7042465,52.9927139],[121.778717,53.0189857],[121.8091736,53.064106],[121.7664337,53.0928345],[121.7709885,53.1082344],[121.7432632,53.1472855],[121.7156677,53.1440392],[121.6461411,53.1804657],[121.653038,53.1943092],[121.6685028,53.1971169],[121.6706467,53.2369347],[121.6598663,53.2467957],[121.6012573,53.2600861],[121.531601,53.3076477],[121.500351,53.3138885],[121.4973831,53.3210449],[121.4884415,53.3326492]]]]},
  5 +"properties":{
  6 +"gid":1,
  7 +"name":"黑龙江省"}
  8 +},
  9 +{"type":"Feature",
  10 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.4884415,53.3326492],[121.4973831,53.3210449],[121.500351,53.3138885],[121.531601,53.3076477],[121.6012573,53.2600861],[121.6598663,53.2467957],[121.6706467,53.2369347],[121.6685028,53.1971169],[121.653038,53.1943092],[121.6461411,53.1804657],[121.7156677,53.1440392],[121.7432632,53.1472855],[121.7709885,53.1082344],[121.7664337,53.0928345],[121.8091736,53.064106],[121.778717,53.0189857],[121.7042465,52.9927139],[121.6479797,52.9082184],[121.5994186,52.8899117],[121.5969162,52.8727112],[121.613472,52.8520012],[121.5943832,52.834713],[121.5046005,52.7785187],[121.4762726,52.7729073],[121.4406662,52.7287292],[121.3771667,52.6873817],[121.288063,52.6614304],[121.2749786,52.641243],[121.2325363,52.6286316],[121.1843185,52.594368],[121.2163162,52.5742989],[121.2694626,52.5825882],[121.3156281,52.5694389],[121.3544312,52.5273056],[121.3970337,52.5227356],[121.4013901,52.5052261],[121.4919662,52.4783134],[121.5115433,52.4554024],[121.5581131,52.4590836],[121.583313,52.4419823],[121.6409225,52.4412766],[121.6716003,52.4185486],[121.651413,52.3891373],[121.7014389,52.3514557],[121.7118301,52.314621],[121.7621536,52.3068657],[121.834137,52.2814178],[121.9200363,52.2845039],[121.9407272,52.2971916],[121.9697037,52.3424683],[122.0283585,52.3761024],[122.040329,52.3934364],[122.0332336,52.4116058],[122.0838394,52.4256554],[122.0732117,52.4387436],[122.1263733,52.4745293],[122.1321869,52.5072975],[122.1589127,52.5134125],[122.1719437,52.4864044],[122.2006989,52.4678535],[122.3033371,52.4738617],[122.3361893,52.4114571],[122.3597031,52.41222],[122.4004822,52.3761864],[122.4091873,52.3726387],[122.4399033,52.3924484],[122.4770126,52.3401184],[122.4709778,52.2947998],[122.5537033,52.2813759],[122.5791168,52.2652092],[122.6719131,52.2753563],[122.7037125,52.2548904],[122.755928,52.265461],[122.780098,52.2513008],[122.7800369,52.2385025],[122.7572632,52.22686],[122.7629471,52.1771049],[122.7309036,52.1521187],[122.6837234,52.1390724],[122.6236877,52.1352348],[122.6370468,52.1081886],[122.6174698,52.0657082],[122.6436234,52.057766],[122.6645737,51.9837227],[122.6769867,51.9731865],[122.7190781,51.9773941],[122.723877,51.9216919],[122.6992035,51.8887711],[122.7185287,51.8767166],[122.7252808,51.8322144],[122.7649536,51.7780647],[122.7427368,51.7423515],[122.809021,51.6537933],[122.8136902,51.6317253],[122.8493729,51.6053467],[122.8250122,51.5836487],[122.8670273,51.5598755],[122.8784637,51.5410881],[122.8538666,51.5278778],[122.8769989,51.501976],[122.847702,51.4762726],[122.8640366,51.4537201],[122.8935165,51.4439354],[122.8959427,51.4152641],[122.9554214,51.3929062],[122.9592133,51.3445129],[122.9942017,51.311451],[123.0618896,51.3193054],[123.1203995,51.296196],[123.1461563,51.2992516],[123.1809235,51.2828484],[123.2194366,51.2798576],[123.2241135,51.2671509],[123.2748489,51.250103],[123.3320312,51.2708855],[123.3707275,51.2653198],[123.4065628,51.2769966],[123.4323196,51.2692223],[123.4797592,51.2901917],[123.5603867,51.2889442],[123.5889587,51.3106079],[123.6545334,51.3177261],[123.6529465,51.3413582],[123.6736984,51.3501701],[123.6775284,51.3725052],[123.7108612,51.3976784],[123.7870789,51.3597603],[123.8351288,51.3661385],[123.882988,51.3179893],[123.9188232,51.2992744],[123.932579,51.3116875],[123.9870682,51.3212509],[124.0640335,51.319088],[124.0914307,51.3411331],[124.1546021,51.3441658],[124.1796036,51.3369408],[124.2171402,51.3483238],[124.2574463,51.3233986],[124.2640686,51.3066826],[124.3041229,51.2879372],[124.3318634,51.2918167],[124.3402176,51.2702255],[124.3576736,51.2776566],[124.3924179,51.2698326],[124.4224472,51.2995071],[124.4293213,51.3519745],[124.4703598,51.3606377],[124.4826126,51.3787727],[124.567749,51.3688965],[124.6248322,51.3253708],[124.6479874,51.3343887],[124.6861496,51.3316193],[124.7221603,51.344738],[124.7436829,51.3554039],[124.7648087,51.3885422],[124.8572083,51.3781891],[124.8778229,51.38657],[124.8760834,51.4061241],[124.9350586,51.4460373],[124.908577,51.4784584],[124.920639,51.4963341],[124.9760513,51.5068016],[124.9987488,51.5276909],[125.0395737,51.5279236],[125.0647964,51.5516853],[125.0527267,51.5986938],[125.0907669,51.656559],[125.1203232,51.6572189],[125.1272964,51.632412],[125.1680069,51.6376495],[125.2069702,51.6264381],[125.2208328,51.6389427],[125.2521591,51.6287193],[125.2746582,51.6358185],[125.3081436,51.6082916],[125.3435364,51.6221771],[125.3598633,51.6097984],[125.3732834,51.5844727],[125.5140533,51.4915352],[125.5358963,51.4605408],[125.5691833,51.4464684],[125.5632324,51.42976],[125.5998383,51.3969536],[125.6157837,51.3953247],[125.6111526,51.383606],[125.6338882,51.3614922],[125.6916275,51.3286247],[125.701889,51.3004036],[125.7532883,51.2581482],[125.7501068,51.2248001],[125.8181534,51.21838],[125.8330765,51.216465],[125.8468704,51.2091904],[125.8464813,51.1996193],[125.8556671,51.18507],[125.8545227,51.1731987],[125.867157,51.1674538],[125.8686905,51.1597977],[125.8748169,51.1529045],[125.8587265,51.1486931],[125.8587265,51.1425667],[125.865242,51.1395035],[125.8759689,51.1395035],[125.8851471,51.1352921],[125.8920364,51.1345291],[125.9046936,51.139122],[125.9345474,51.1272545],[125.9310989,51.123806],[125.9196167,51.1226578],[125.9192429,51.1195946],[125.927269,51.1165314],[125.9276581,51.1123199],[125.933403,51.1077271],[125.9437332,51.1065788],[125.9693909,51.1234245],[125.9755173,51.1230392],[125.9808731,51.1165314],[125.9919815,51.1199799],[125.9938965,51.1153831],[125.9732208,51.0958557],[125.9755173,51.0912628],[125.9843216,51.0897293],[125.986618,51.0866661],[125.9797287,51.0843697],[125.9751434,51.0851364],[125.9732208,51.0816879],[125.9877701,51.0747986],[126.0000229,51.0633125],[126.0046234,51.065609],[126.0107422,51.063694],[126.0042267,51.0560379],[126.0084534,51.0522079],[126.0229874,51.0541229],[126.02491,51.0487633],[126.019928,51.0437851],[126.0245285,51.0418701],[126.0417633,51.0411034],[126.051712,51.0388069],[126.055542,51.0319138],[126.05056,51.0288506],[126.0379333,51.034977],[126.0329514,51.0296173],[126.0427017,51.0236778],[126.0317993,51.0215759],[126.0287399,51.0162163],[126.0314178,51.0127716],[126.0273972,51.0079842],[126.0266266,51.0056877],[126.0279694,51.0028152],[126.036972,50.9980278],[126.0415573,50.9899902],[126.0392685,50.9834785],[126.0417175,50.9764938],[126.0488434,50.975441],[126.0591736,50.9758224],[126.0630035,50.9731407],[126.0633926,50.9670143],[126.0756378,50.9658661],[126.0737228,50.9612732],[126.0691299,50.9593582],[126.0641632,50.9589767],[126.0505981,50.9602165],[126.0519028,50.9494019],[126.0377274,50.940979],[126.0404129,50.9352379],[126.0407867,50.9287262],[126.0384979,50.9233665],[126.0300827,50.9306412],[126.0212708,50.9317894],[126.0132294,50.9252815],[126.0124664,50.9153252],[126.0172501,50.9097748],[126.021843,50.9005852],[126.0141907,50.8990555],[126.0057602,50.9005852],[125.9981079,50.9067116],[125.9919815,50.9044151],[125.9958115,50.8959923],[125.9889069,50.8921623],[125.9881516,50.8860359],[125.994278,50.8737831],[125.986618,50.86689],[125.9728394,50.8699532],[125.9713135,50.8898659],[125.9644089,50.897522],[125.9575195,50.8982887],[125.9513931,50.8952255],[125.9483337,50.8806763],[125.9383774,50.8707199],[125.9399109,50.86689],[125.9506302,50.8630638],[125.9522629,50.8585281],[125.9360809,50.8515778],[125.9046936,50.8577042],[125.8916626,50.8592339],[125.8871765,50.8540459],[125.9100418,50.8477478],[125.9177017,50.8416214],[125.918457,50.8339653],[125.907753,50.8270721],[125.8840103,50.8217125],[125.8724976,50.8159523],[125.8817062,50.8071632],[125.8818512,50.8001328],[125.8579712,50.7903137],[125.8281021,50.7918472],[125.8250427,50.788784],[125.8258133,50.7788277],[125.839592,50.7673416],[125.8365326,50.7566223],[125.8242798,50.7550888],[125.8035965,50.7688751],[125.7836914,50.7719383],[125.7706833,50.7658119],[125.75,50.7512627],[125.7492294,50.7443695],[125.7752686,50.7443695],[125.7821579,50.7443695],[125.7882767,50.7413063],[125.7889786,50.7367859],[125.7714386,50.7275238],[125.7706833,50.7229271],[125.7752686,50.7190971],[125.7944107,50.7190971],[125.8013077,50.7099113],[125.8173828,50.7022514],[125.8181534,50.6945953],[125.80513,50.6854057],[125.7821579,50.6777458],[125.7829285,50.6700897],[125.7944107,50.6586037],[125.7956314,50.6545486],[125.7867508,50.6463509],[125.7859879,50.6371613],[125.8066635,50.618782],[125.8043671,50.5942802],[125.8104935,50.5904503],[125.8104935,50.5797272],[125.8189163,50.5659447],[125.8150864,50.5536919],[125.8181534,50.5475655],[125.8127899,50.5437393],[125.80513,50.5437393],[125.7936478,50.5399094],[125.7882767,50.5330162],[125.7790985,50.5284233],[125.7660828,50.5322533],[125.7591934,50.5307198],[125.7584229,50.5261269],[125.7653122,50.5161705],[125.7638474,50.5082283],[125.743103,50.5039177],[125.7339172,50.5031509],[125.7323837,50.5077477],[125.7438736,50.5184669],[125.7400436,50.5215302],[125.7293167,50.5222969],[125.7201309,50.5169373],[125.6894989,50.4962616],[125.6718903,50.4954948],[125.6688232,50.4886017],[125.6741867,50.4863052],[125.6933289,50.4847755],[125.6956329,50.4824753],[125.6902695,50.4786491],[125.6642303,50.4778824],[125.6519775,50.4725227],[125.6412582,50.4656296],[125.6343689,50.4487839],[125.6236496,50.441124],[125.6136932,50.4388275],[125.6029663,50.4510803],[125.5907211,50.45261],[125.5799866,50.4510803],[125.5715714,50.4464836],[125.5761719,50.4426575],[125.5853577,50.4395943],[125.5853577,50.4365311],[125.5822906,50.4342346],[125.5715714,50.4365311],[125.5631485,50.4388275],[125.5547333,50.4388275],[125.5539627,50.4327011],[125.5600891,50.4227448],[125.5738678,50.4081955],[125.5730972,50.4020691],[125.5677414,50.3990097],[125.5616074,50.3990097],[125.5531921,50.4028358],[125.5409393,50.409729],[125.5317535,50.4181519],[125.5217972,50.4196854],[125.5164413,50.4127922],[125.5011215,50.4066658],[125.5080185,50.4005394],[125.5149078,50.3997726],[125.5195007,50.3974762],[125.5286865,50.3806305],[125.5126114,50.3660812],[125.5202637,50.3622513],[125.5355835,50.3622513],[125.5409393,50.3568916],[125.5348206,50.3507652],[125.5171967,50.3499985],[125.5064774,50.3446388],[125.5080185,50.3392792],[125.5217972,50.3270264],[125.499588,50.3239632],[125.4972916,50.3193665],[125.5095367,50.3140068],[125.5118408,50.3086472],[125.503418,50.3063507],[125.4842834,50.3094139],[125.4781494,50.3048172],[125.472023,50.2956276],[125.4582367,50.2956276],[125.4528809,50.2918015],[125.4521103,50.2872047],[125.4590073,50.274189],[125.4605408,50.2649994],[125.4383316,50.2657661],[125.4345016,50.2634659],[125.4329681,50.2558098],[125.4390869,50.2489166],[125.4398727,50.2374306],[125.4536438,50.2313042],[125.4567108,50.2259445],[125.4467468,50.224411],[125.437561,50.2290077],[125.4260788,50.2274742],[125.4253235,50.2221146],[125.4390869,50.2159882],[125.4406281,50.2090988],[125.4345016,50.2022057],[125.4230118,50.2006721],[125.4214935,50.1960793],[125.4015732,50.1930161],[125.3808975,50.1960793],[125.3747711,50.1922493],[125.3740082,50.1868896],[125.382431,50.1807632],[125.3831863,50.1746368],[125.3755264,50.1715736],[125.3625183,50.1746368],[125.3510437,50.162384],[125.3364868,50.1654472],[125.3265305,50.1646843],[125.3272934,50.1585579],[125.3380127,50.150135],[125.3510437,50.1463051],[125.3663483,50.1463051],[125.3717117,50.1401787],[125.3602219,50.135582],[125.3456726,50.1363487],[125.3280563,50.1371155],[125.3219299,50.1332855],[125.3249969,50.1217995],[125.321167,50.1164398],[125.3135071,50.1156731],[125.3073807,50.1187363],[125.3043213,50.134819],[125.3020172,50.1409454],[125.293602,50.1417084],[125.289772,50.1332855],[125.2713928,50.1256294],[125.2767563,50.1126099],[125.2530136,50.1034203],[125.2514801,50.0980606],[125.2545471,50.0957642],[125.2775192,50.0957642],[125.2813492,50.0911674],[125.2637329,50.0812149],[125.2652664,50.0758553],[125.2828827,50.0666656],[125.3227005,50.0643692],[125.3272934,50.057476],[125.3165665,50.0482864],[125.3081512,50.0452232],[125.2943573,50.0467529],[125.2744522,50.0590057],[125.2660294,50.057476],[125.259903,50.0490532],[125.2388535,50.047905],[125.2434387,50.0394783],[125.2526321,50.0356522],[125.2817307,50.0318222],[125.28862,50.0272293],[125.2901535,50.0195694],[125.28862,50.0119133],[125.2824936,50.0019569],[125.2733078,49.997364],[125.2587585,49.9965973],[125.2465134,49.9958305],[125.2396164,49.9943008],[125.2327194,49.9889374],[125.230423,49.9851112],[125.2357864,49.9659653],[125.2281265,49.9598389],[125.1775894,49.9621391],[125.1722565,49.9566154],[125.1860123,49.9491196],[125.1890717,49.9384003],[125.2158737,49.9253807],[125.2043915,49.9115982],[125.2197037,49.897049],[125.2365494,49.8717766],[125.2319565,49.8664169],[125.2120438,49.8664169],[125.2097473,49.8618202],[125.2281265,49.8549309],[125.2319565,49.8488045],[125.2189407,49.8357849],[125.1821823,49.8342552],[125.1691666,49.8304253],[125.1706924,49.8227692],[125.1867828,49.8135796],[125.1974869,49.8105164],[125.2189407,49.7990303],[125.2143402,49.757679],[125.1944427,49.7370033],[125.2082138,49.7324066],[125.2166367,49.7239838],[125.2089767,49.707901],[125.2120438,49.6673164],[125.1936569,49.6527672],[125.1929016,49.6435776],[125.1913681,49.6336212],[125.1837234,49.6290283],[125.1760635,49.6328583],[125.1768188,49.6412811],[125.1783524,49.649704],[125.1737595,49.6588936],[125.1645737,49.6642532],[125.1569138,49.6703796],[125.1477203,49.6726761],[125.130867,49.6719131],[125.1209183,49.6665497],[125.1209183,49.6428108],[125.1339264,49.618309],[125.1446609,49.6152458],[125.1523132,49.6167755],[125.1569138,49.6290283],[125.1660995,49.6297951],[125.1722336,49.6213722],[125.1745224,49.6129456],[125.1898422,49.6052895],[125.199791,49.5899734],[125.2089767,49.5899734],[125.2051468,49.583847],[125.1929016,49.5792542],[125.1867828,49.5738945],[125.1875381,49.5677681],[125.2120438,49.5647049],[125.2220001,49.5608749],[125.226593,49.5532188],[125.2258606,49.5489655],[125.230423,49.5333061],[125.2250671,49.5325432],[125.2212372,49.5156937],[125.2273636,49.5034409],[125.2365494,49.5026779],[125.2388535,49.4957848],[125.230423,49.4911919],[125.2189407,49.4911919],[125.2143402,49.4873619],[125.2373123,49.4735794],[125.2449722,49.463623],[125.2556915,49.4582634],[125.2602921,49.4513702],[125.2602234,49.4408035],[125.2480392,49.4337578],[125.2495728,49.4169121],[125.2503433,49.3893433],[125.2679367,49.3763237],[125.2656479,49.3579483],[125.2510986,49.355648],[125.2564621,49.3418655],[125.2434387,49.3257828],[125.2510986,49.3135338],[125.2319565,49.301281],[125.2273636,49.2882614],[125.2212372,49.2829018],[125.2059174,49.2798386],[125.2051468,49.2752457],[125.2235336,49.270649],[125.2120438,49.2637558],[125.2258301,49.2576294],[125.2212372,49.2538033],[125.2074509,49.2522697],[125.2066879,49.2476768],[125.2204666,49.2323608],[125.2105179,49.1979027],[125.2128067,49.1925392],[125.1898422,49.1902428],[125.1860123,49.1963692],[125.1729889,49.1971359],[125.1638031,49.1910095],[125.1546097,49.1749268],[125.1546097,49.1642075],[125.1193771,49.1795235],[125.1170883,49.1741638],[125.1239929,49.1642075],[125.1216888,49.1550179],[125.1232071,49.1435318],[125.1147919,49.1266861],[125.106369,49.1243858],[125.0994797,49.1259193],[125.0879898,49.1289825],[125.0657806,49.1374054],[125.0450974,49.1419983],[125.0274963,49.1534882],[125.0336227,49.1718636],[125.0290298,49.1749268],[125.0098801,49.1756935],[124.9777222,49.1603775],[124.9447937,49.1603775],[124.9218216,49.1741638],[124.9080429,49.17799],[124.8896637,49.1787567],[124.8812332,49.177227],[124.8751068,49.1688004],[124.8590164,49.1672707],[124.8521271,49.1626778],[124.8467712,49.1565514],[124.8437119,49.1397018],[124.8337631,49.1220894],[124.8184433,49.1167297],[124.8054199,49.1144333],[124.7977676,49.1121368],[124.7969971,49.1060104],[124.8207397,49.0715485],[124.8199692,49.0661888],[124.8123169,49.0646591],[124.8084869,49.0547028],[124.8130798,49.0455132],[124.8123169,49.0416832],[124.8038864,49.0340271],[124.800827,49.022541],[124.7931671,49.0179443],[124.7923965,49.0118179],[124.7755585,48.995739],[124.7717285,48.9949722],[124.7702789,48.9900513],[124.7510529,48.9720001],[124.7433929,48.9528542],[124.7479935,48.9451981],[124.7487564,48.9329453],[124.7449265,48.9283524],[124.7418671,48.9206924],[124.7326889,48.9153519],[124.7154083,48.9153519],[124.7017365,48.9196701],[124.6966934,48.918232],[124.7017365,48.9009552],[124.6938171,48.8901558],[124.7039032,48.8836746],[124.7039032,48.8671188],[124.6988525,48.8591995],[124.6938171,48.8556023],[124.6902237,48.8498421],[124.6909332,48.8448029],[124.6909332,48.8390427],[124.6844635,48.8347244],[124.6736603,48.8340034],[124.6606979,48.8332863],[124.6491928,48.8275261],[124.6427078,48.8217659],[124.6412735,48.8167267],[124.6397171,48.8116455],[124.6484604,48.7908134],[124.6463013,48.7814522],[124.6455765,48.7713737],[124.6254272,48.7605782],[124.6117477,48.7526588],[124.6067123,48.7468987],[124.6074295,48.7238655],[124.6131897,48.7123451],[124.6124725,48.6950684],[124.6117477,48.684269],[124.6095886,48.6734734],[124.6052704,48.665554],[124.5944672,48.6554756],[124.5930328,48.6310005],[124.5843964,48.618042],[124.595192,48.6007652],[124.5915909,48.5942841],[124.5851135,48.5935669],[124.5800781,48.5914078],[124.5757523,48.5892448],[124.5692673,48.5899658],[124.555603,48.5863686],[124.5620804,48.5755692],[124.5577621,48.569809],[124.549118,48.5748482],[124.5354538,48.57341],[124.5289612,48.5618896],[124.5174484,48.5568504],[124.5131226,48.547493],[124.5196075,48.5410156],[124.5289612,48.5402946],[124.5383224,48.5338173],[124.5368805,48.525898],[124.5311203,48.5208588],[124.5260773,48.5179787],[124.523201,48.5129395],[124.5260773,48.4949417],[124.5304031,48.4899025],[124.5318527,48.4827042],[124.5357971,48.4722672],[124.5289612,48.4618263],[124.5275269,48.4539108],[124.5224762,48.4517517],[124.5192413,48.4417801],[124.5275269,48.4279938],[124.5286026,48.4189949],[124.5217667,48.4150352],[124.5174484,48.4092789],[124.5127563,48.4045982],[124.5131226,48.3977585],[124.5174484,48.3941612],[124.5235672,48.3887596],[124.5109634,48.3790436],[124.5098877,48.3743629],[124.5167236,48.366806],[124.5152893,48.3560066],[124.5080872,48.3509674],[124.5116882,48.3430481],[124.5109634,48.3380089],[124.5095291,48.3322487],[124.5131226,48.3315315],[124.5174484,48.3315315],[124.5239334,48.3329697],[124.5304031,48.3344116],[124.5390396,48.3264923],[124.5447998,48.3257713],[124.55056,48.3236122],[124.5498428,48.318573],[124.5440826,48.3142548],[124.5433578,48.3084946],[124.5462418,48.3056145],[124.5469589,48.2933769],[124.5563202,48.2868996],[124.5563202,48.2811394],[124.5685577,48.2789803],[124.5721588,48.2724991],[124.5591965,48.2667427],[124.5541611,48.2653008],[124.545517,48.2509041],[124.55056,48.2458649],[124.5570374,48.2429848],[124.5599213,48.2336273],[124.5584793,48.225708],[124.5527191,48.2199478],[124.545517,48.2149086],[124.5447998,48.2091522],[124.5433578,48.2026711],[124.5390396,48.1969147],[124.5145569,48.1853943],[124.5167236,48.177475],[124.5166931,48.1708984],[124.5001678,48.1659584],[124.50737,48.1422043],[124.5030365,48.1321259],[124.502327,48.1249237],[124.4929733,48.1206055],[124.4709473,48.1201134],[124.4684906,48.1083679],[124.4548187,48.1054878],[124.4468994,48.0961304],[124.4368591,48.0973091],[124.4360962,48.0874901],[124.4312363,48.0833054],[124.4245834,48.0831718],[124.418457,48.0860519],[124.4188232,48.0946922],[124.4180832,48.1018982],[124.4358063,48.1092644],[124.4296188,48.1177254],[124.4267426,48.1227646],[124.4440231,48.1270866],[124.4645081,48.1290665],[124.4677734,48.1364441],[124.4598465,48.1486816],[124.4613037,48.15588],[124.4670563,48.1616402],[124.4555435,48.1652374],[124.4505005,48.1702766],[124.4584122,48.1753159],[124.4584122,48.181797],[124.4548187,48.1969147],[124.4216995,48.2228279],[124.4145126,48.2235489],[124.3950729,48.2336273],[124.3936234,48.2393875],[124.3871536,48.2444267],[124.3907471,48.2494659],[124.3979492,48.2509041],[124.3993835,48.2588234],[124.3900299,48.2710609],[124.3878708,48.2775383],[124.3792267,48.2825775],[124.3763504,48.2926559],[124.3576431,48.2976952],[124.3489914,48.3020172],[124.3525925,48.3142548],[124.3353195,48.3200111],[124.3410721,48.3300896],[124.3295593,48.3336906],[124.3187637,48.3394508],[124.316597,48.3495255],[124.3194809,48.3574448],[124.3014832,48.366806],[124.3022003,48.3732834],[124.3065186,48.3797607],[124.3137207,48.3819199],[124.3201981,48.3862419],[124.3144379,48.3912811],[124.3022003,48.3934402],[124.3029327,48.3984795],[124.3101196,48.4020767],[124.3058014,48.4085579],[124.3050766,48.4150352],[124.326683,48.4186363],[124.3259583,48.4251137],[124.323082,48.4351921],[124.3101196,48.4402313],[124.3003998,48.4535484],[124.2946396,48.4629097],[124.2982407,48.4708252],[124.3126373,48.4773064],[124.3140793,48.4837837],[124.3076019,48.5003433],[124.3003998,48.5068207],[124.2975235,48.514019],[124.2795334,48.5226593],[124.2672882,48.5298576],[124.0718002,48.4294243],[123.8522415,48.2598686],[123.7315521,48.1873131],[123.5742188,48.0417213],[123.5343323,48.0220337],[123.2905273,47.9519501],[123.184761,47.8051186],[122.9006729,47.6902733],[122.8363571,47.6694412],[122.7985764,47.645092],[122.7590103,47.6145248],[122.6162415,47.5619087],[122.5676117,47.5343246],[122.5437775,47.5126381],[122.4952011,47.4061165],[122.3889236,47.3440094],[122.4470596,47.3016281],[122.4562073,47.2734337],[122.5117569,47.2252541],[122.5249329,47.1962051],[122.567421,47.161953],[122.5876312,47.1593285],[122.6056137,47.1250954],[122.6543503,47.1103592],[122.6547775,47.0982437],[122.6912537,47.0988426],[122.6975784,47.0897942],[122.7266922,47.0900383],[122.7300491,47.0795708],[122.7867126,47.0763435],[122.8419113,47.0554543],[122.8234482,47.0258942],[122.8077316,47.0153618],[122.7906036,47.018074],[122.7659073,46.9755974],[122.7964935,46.9387856],[122.8305206,46.9390755],[122.8620529,46.9560204],[122.8867035,46.957756],[122.8887024,46.9026566],[122.8752136,46.8857574],[122.8925171,46.8537598],[122.8890076,46.815731],[122.9290771,46.7893219],[122.9332733,46.7868233],[122.9353027,46.7856026],[122.937233,46.7822037],[122.937233,46.7780952],[122.9430466,46.7780609],[122.9472198,46.7769203],[122.9505768,46.7772446],[122.9542618,46.7745705],[122.9597473,46.7709274],[122.9618988,46.770462],[122.9640427,46.7701149],[122.9689407,46.7669373],[122.9719772,46.7674637],[122.9795227,46.7645874],[122.9909134,46.7572479],[122.9929733,46.7546272],[122.9924316,46.7522583],[122.9884872,46.7495308],[122.9859695,46.7458],[122.9903336,46.7409706],[122.9941864,46.7387505],[122.9962311,46.7338409],[122.9988937,46.7328796],[122.9983063,46.7240715],[122.9990768,46.7222252],[123.0041733,46.7211342],[123.0070267,46.7171288],[123.0129929,46.7168312],[123.0264893,46.724659],[123.0441132,46.7223091],[123.05233,46.7293549],[123.0728836,46.7270088],[123.0769272,46.7279282],[123.0834503,46.7322922],[123.0936432,46.7334328],[123.1098709,46.7340546],[123.1239624,46.7399254],[123.138649,46.7387505],[123.1477509,46.7388306],[123.1516571,46.7410545],[123.1568527,46.7428627],[123.1591873,46.7546082],[123.1680069,46.7622414],[123.1732864,46.771637],[123.1791611,46.7863159],[123.187973,46.7921867],[123.1995087,46.796299],[123.2073517,46.8021698],[123.2088928,46.8068962],[123.2109222,46.8097496],[123.2149963,46.8134155],[123.2170334,46.8179016],[123.2207031,46.8240128],[123.2185135,46.8327065],[123.2243729,46.8403168],[123.2272263,46.8452072],[123.2331772,46.8538437],[123.243927,46.8525429],[123.2528992,46.8537674],[123.263092,46.8541756],[123.2785797,46.859066],[123.2852783,46.8595314],[123.2973328,46.8566208],[123.3081665,46.8497238],[123.3525696,46.8609543],[123.3793182,46.903553],[123.3622513,46.952549],[123.3095627,46.9647903],[123.312973,47.0062256],[123.3304367,46.9946442],[123.3356934,46.995327],[123.3448105,46.998291],[123.3491516,46.998291],[123.3484573,46.9946442],[123.3466415,46.9909935],[123.3603287,46.9900818],[123.3575897,46.9848328],[123.359642,46.9820976],[123.3653412,46.9791298],[123.3694534,46.9757118],[123.3721771,46.9709206],[123.3756104,46.9663582],[123.3757629,46.960701],[123.3769836,46.9574623],[123.3847427,46.9581451],[123.3904266,46.9597435],[123.3965912,46.9601974],[123.4011536,46.9588318],[123.4057236,46.95541],[123.4036636,46.9508476],[123.4037628,46.9470367],[123.407547,46.9455986],[123.4150696,46.9458275],[123.4203186,46.947197],[123.4262466,46.9508476],[123.4294434,46.9538116],[123.4315033,46.9572334],[123.4383392,46.9567757],[123.4426727,46.9563217],[123.4495163,46.9551811],[123.4536209,46.9531288],[123.4579468,46.950161],[123.4657135,46.9503899],[123.4741516,46.9517593],[123.4807663,46.9526711],[123.4903488,46.9547234],[123.493309,46.9522133],[123.5003815,46.9483376],[123.5051727,46.9508476],[123.5092773,46.955864],[123.5133896,46.9542694],[123.5264969,46.9562073],[123.5238419,46.9516335],[123.5150986,46.9365883],[123.5082626,46.9192543],[123.5014114,46.8991814],[123.4941101,46.8877754],[123.4854431,46.8708954],[123.4776764,46.8626823],[123.4734116,46.8507462],[123.4749527,46.8407822],[123.481102,46.8320618],[123.4927368,46.8239021],[123.497757,46.8216248],[123.5035934,46.82267],[123.5274124,46.8234482],[123.5518799,46.8228874],[123.5649033,46.8396988],[123.5584412,46.8535576],[123.5657272,46.866787],[123.5690079,46.8895988],[123.5853195,46.8911095],[123.598053,46.8880196],[123.5972137,46.8759117],[123.5941772,46.8605385],[123.6085434,46.8398476],[123.6026917,46.8307457],[123.5848999,46.8280106],[123.572197,46.8226089],[123.5780563,46.8156929],[123.5884018,46.8101692],[123.6095428,46.8079376],[123.6326065,46.8148918],[123.6171875,46.72258],[123.5888977,46.686657],[123.3923798,46.6797523],[123.2709732,46.6587563],[123.2624435,46.6115341],[123.2172318,46.5876694],[123.1956329,46.589695],[123.174881,46.6102638],[123.0782166,46.6021729],[123.0696182,46.6137276],[123.0459671,46.6170731],[123.0440063,46.5797577],[122.9982071,46.5695267],[123.0050507,46.5263824],[122.9836273,46.4990883],[123.0041885,46.474205],[122.9992828,46.4489746],[123.0120163,46.4189491],[123.1051712,46.333477],[123.1710434,46.2466812],[123.1704178,46.2320328],[123.1252975,46.2184219],[123.1217422,46.1771927],[123.0975266,46.1713905],[123.0954285,46.1262894],[123.0559921,46.125309],[123.0383377,46.0971565],[122.7799377,46.0674973],[122.8138275,45.9129524],[122.8208771,45.8811874],[122.8030167,45.8346863],[122.8029938,45.7831993],[122.7461166,45.7427025],[122.7176895,45.7131729],[122.710968,45.6892624],[122.681282,45.6986084],[122.6791687,45.7228317],[122.5572586,45.7628212],[122.5152817,45.7938728],[122.4778366,45.8689346],[122.414711,45.9100838],[122.3675385,45.9098587],[122.3606033,45.8694458],[122.3491287,45.8616676],[122.319252,45.8638191],[122.2940521,45.8230362],[122.2461319,45.8030624],[122.226181,45.8108864],[122.2186508,45.8267555],[122.2058487,45.820076],[122.1676407,45.8414726],[122.1526031,45.8640404],[122.0887375,45.8791313],[122.0607376,45.9268112],[121.9983978,45.9638634],[121.9913025,45.9897957],[121.9534531,45.9781685],[121.899353,46.0050621],[121.8644409,46.0003433],[121.8380585,46.023056],[121.7792206,46.0044556],[121.7734528,45.9951553],[121.8191223,45.9472885],[121.8198929,45.9251022],[121.8001938,45.8992119],[121.8060837,45.8792114],[121.7632828,45.8378677],[121.765213,45.8189163],[121.7524033,45.8133316],[121.7440109,45.7913742],[121.7094269,45.7705879],[121.6825333,45.7596016],[121.6316605,45.7635536],[121.625267,45.7544594],[121.6544724,45.7396507],[121.6699829,45.7176132],[121.7107468,45.7058372],[121.7229233,45.6848526],[121.787178,45.6857719],[121.8171234,45.7075691],[121.8477173,45.716095],[121.9461594,45.706295],[121.9663467,45.6932602],[121.9727173,45.6613579],[121.9968872,45.6390228],[121.9619827,45.5901527],[121.960762,45.567234],[121.9873428,45.541523],[122.0147781,45.4890442],[122.0753098,45.4734688],[122.1616669,45.4302673],[122.1658325,45.4012871],[122.1378403,45.3574219],[122.1456528,45.2960205],[122.2334595,45.2651634],[122.231987,45.2221031],[122.1862717,45.1854324],[122.158989,45.1880493],[122.1136093,45.1527252],[122.1113586,45.0624924],[122.0853577,45.0223198],[122.0814133,44.9132805],[122.0277634,44.8960419],[122.0325165,44.8757782],[122.0850601,44.8291321],[122.0837631,44.8000374],[122.0977173,44.7815781],[122.1622467,44.7745323],[122.1424103,44.7500687],[122.0963898,44.7602654],[122.0784225,44.7452126],[122.0830917,44.7338753],[122.1213837,44.7239723],[122.0989838,44.7003555],[122.0933914,44.6366043],[122.1190033,44.599411],[122.1132584,44.5763969],[122.1679382,44.5698204],[122.2042465,44.5424576],[122.2155685,44.4770164],[122.2287064,44.4681435],[122.2888565,44.4652863],[122.2916031,44.3392525],[122.2844467,44.2944794],[122.2625427,44.2612991],[122.3479919,44.2319412],[122.4300079,44.2244225],[122.4792786,44.2336121],[122.5671234,44.2688866],[122.5958862,44.2932053],[122.6720123,44.3114815],[122.6916428,44.3346977],[122.7345428,44.3484688],[122.7592697,44.372673],[122.8665237,44.4004784],[123.0172577,44.5006409],[123.0649033,44.4992447],[123.1006317,44.5134544],[123.1369705,44.5171432],[123.1192169,44.4221878],[123.1339264,44.3558083],[123.169693,44.3532982],[123.2091827,44.3270302],[123.2720871,44.2481842],[123.2975769,44.1871796],[123.3801498,44.1581459],[123.3553009,44.1313362],[123.3502579,44.0836983],[123.3219376,44.0733147],[123.3263321,44.0603256],[123.3400726,44.0294113],[123.4735336,43.8559837],[123.4671707,43.8396759],[123.4714966,43.8005714],[123.4788666,43.7755852],[123.4604187,43.7527733],[123.4958115,43.7360878],[123.5140228,43.707325],[123.531311,43.6483192],[123.525032,43.6384315],[123.5020676,43.6295204],[123.4860535,43.5885201],[123.4513931,43.5843201],[123.4103394,43.6000214],[123.4177475,43.5809975],[123.4446182,43.565731],[123.4316788,43.5533295],[123.4267731,43.5465622],[123.3708725,43.561554],[123.3220215,43.5568275],[123.3211136,43.4910545],[123.3904266,43.4584808],[123.4307709,43.4212532],[123.4786072,43.4688416],[123.505867,43.4244232],[123.5821686,43.3694954],[123.6901932,43.3767662],[123.6922989,43.3250961],[123.7008591,43.3220291],[123.7144928,43.3094902],[123.7095795,43.3067665],[123.7041321,43.3056755],[123.693222,43.3045845],[123.6970367,43.2953186],[123.6910477,43.2909546],[123.6823196,43.2876854],[123.6790466,43.2822342],[123.698143,43.2773285],[123.6926804,43.2713318],[123.686142,43.2691498],[123.6779633,43.2675133],[123.6654205,43.2658806],[123.6582336,43.2624626],[123.6764603,43.2425995],[123.6735611,43.221138],[123.6516037,43.2060318],[123.6660233,43.1956978],[123.6553574,43.1705894],[123.6386871,43.144783],[123.6268463,43.1453743],[123.619133,43.0960884],[123.6021576,43.0746193],[123.5940475,43.0544701],[123.6062927,43.0499458],[123.5836105,43.0320969],[123.5841293,43.019928],[123.5746307,42.9922523],[123.5611496,42.9968109],[123.5286102,43.0067978],[123.5126419,43.0327606],[123.4731369,43.0367508],[123.4289627,43.0353737],[123.3485031,43.0066414],[123.2466431,42.9908714],[123.2119598,42.9455605],[123.1786499,42.9302444],[123.1729736,42.9175644],[123.1704178,42.8529663],[123.2167816,42.8452072],[123.2282562,42.8269806],[123.1023636,42.8042259],[123.0582504,42.7710648],[122.9900894,42.7720222],[122.9525833,42.7569847],[122.9146881,42.7715263],[122.8892517,42.7671585],[122.8769302,42.7635841],[122.855423,42.7249374],[122.8261032,42.7234039],[122.7895889,42.7344322],[122.7735138,42.7561684],[122.7187271,42.7832222],[122.6183014,42.7732964],[122.5764236,42.7908058],[122.5516891,42.8234901],[122.4159164,42.8485985],[122.3590088,42.8443489],[122.3363571,42.8239784],[122.3638763,42.7729454],[122.4474792,42.7619171],[122.4241562,42.7255287],[122.3870316,42.7080154],[122.3908386,42.6872978],[122.3811111,42.6776505],[122.3594971,42.6813354],[122.3311615,42.6725502],[122.2616272,42.691227],[122.1914673,42.7266083],[122.190712,42.6986542],[122.1605835,42.6914711],[122.1257935,42.7006454],[122.0639038,42.7179031],[122.0444107,42.7207985],[122.0151978,42.7041626],[121.9897766,42.7066994],[121.9623795,42.6877213],[121.9402618,42.6773529],[121.9424515,42.6596642],[121.9203033,42.6481438],[121.9086075,42.6144295],[121.9165115,42.6003036],[121.8995667,42.5673676],[121.8941803,42.5637932],[121.8605881,42.5426102],[121.8576431,42.5282211],[121.8471222,42.538723],[121.8441925,42.5250168],[121.8219223,42.5267792],[121.8014679,42.4980164],[121.7957001,42.5116386],[121.7812805,42.5066109],[121.7277374,42.4793053],[121.7021484,42.4428177],[121.6647568,42.4353943],[121.6369934,42.449131],[121.6308136,42.4813194],[121.6086578,42.5084839],[121.5985565,42.5132217],[121.5689392,42.5037956],[121.5393829,42.5059128],[121.5005417,42.4883232],[121.4573822,42.4969635],[121.4159164,42.4757614],[121.39328,42.474926],[121.3741608,42.4538651],[121.3255463,42.454277],[121.2938538,42.4368057],[121.26577,42.375267],[121.204422,42.3569908],[121.1868973,42.3475723],[121.1667175,42.3154869],[121.0247574,42.2469101],[120.9637833,42.2544022],[120.938797,42.2727585],[120.8721771,42.2600861],[120.7850418,42.2163773],[120.7326202,42.2186356],[120.7166367,42.2015686],[120.6912613,42.1960297],[120.6194382,42.1525383],[120.5789108,42.1651917],[120.5546265,42.1456337],[120.4763031,42.1135559],[120.4610977,42.103096],[120.4795837,42.0745697],[120.4688187,42.0198479],[120.4194107,41.9999428],[120.4053268,41.9761772],[120.3771667,41.9877777],[120.3309784,41.978363],[120.3199463,41.9474678],[120.2839813,41.9441757],[120.2587814,41.9018707],[120.2151566,41.8541183],[120.1825867,41.845974],[120.1723022,41.8180428],[120.1211472,41.7702789],[120.1331635,41.7260056],[120.123909,41.7138824],[120.0901489,41.6947098],[120.0656662,41.6952209],[120.0241318,41.7161598],[120.0313492,41.7617645],[120.0433502,41.774807],[120.0340118,41.8137894],[120.0119934,41.8264351],[119.9791336,41.9025803],[119.9486923,41.9183731],[119.9449234,41.9722443],[119.9200974,41.9848862],[119.9206772,42.0066032],[119.8919067,42.0259895],[119.8944321,42.0439835],[119.8790665,42.0499306],[119.8696976,42.0758247],[119.8363037,42.1015091],[119.8318405,42.1332054],[119.85009,42.174305],[119.846962,42.2077904],[119.8358536,42.2133751],[119.7444534,42.2059402],[119.6001129,42.2554512],[119.5584106,42.2986526],[119.5524521,42.2905769],[119.5408096,42.2986603],[119.5522537,42.3113937],[119.5371323,42.3557053],[119.4965668,42.3859596],[119.4580536,42.3312454],[119.4166336,42.3114929],[119.3475723,42.3013382],[119.3201675,42.2764015],[119.2786865,42.2673531],[119.2301331,42.2097511],[119.2348099,42.1899757],[119.262558,42.1831322],[119.3168106,42.11549],[119.3523788,42.1120911],[119.3691635,42.0954361],[119.3742981,42.0406456],[119.3502274,41.9923096],[119.3133926,41.966465],[119.3264771,41.9169693],[119.3181992,41.8497086],[119.27948,41.7797661],[119.3066711,41.7578278],[119.2950211,41.7439346],[119.3106995,41.731884],[119.2919769,41.7035294],[119.3031082,41.6655197],[119.3016129,41.6525192],[119.3282623,41.6134338],[119.4050598,41.5829048],[119.3523331,41.5453644],[119.3569717,41.5267181],[119.3909531,41.502758],[119.3983765,41.4854126],[119.394928,41.4701805],[119.3714828,41.4575119],[119.3647003,41.4295502],[119.3424301,41.408844],[119.29879,41.4003258],[119.3242035,41.3829994],[119.3116074,41.3670731],[119.3198471,41.327301],[119.309288,41.3291664],[119.3037109,41.3471413],[119.2933273,41.3261299],[119.2402267,41.322403],[119.2331085,41.3125114],[119.2057571,41.3060799],[119.194313,41.2802811],[119.1484528,41.2955475],[119.0389709,41.2950935],[118.9685135,41.3046608],[118.9434204,41.316185],[118.9285965,41.302784],[118.8846664,41.2989197],[118.8388138,41.3405838],[118.8375931,41.3726234],[118.7637482,41.3510323],[118.7487488,41.3234367],[118.7102966,41.3283119],[118.6708603,41.3485146],[118.5219269,41.3531113],[118.4237366,41.3365402],[118.4058914,41.3297539],[118.3930817,41.3089371],[118.3736572,41.309948],[118.3446121,41.3348923],[118.3417587,41.3717499],[118.3552399,41.3845596],[118.3380203,41.3992462],[118.3366165,41.4337959],[118.3206177,41.4486847],[118.2657471,41.4692192],[118.2632294,41.4768028],[118.2890167,41.4830284],[118.3093414,41.5103722],[118.2966232,41.5444107],[118.305748,41.5643845],[118.2751694,41.562355],[118.2195816,41.5828781],[118.2035065,41.6085014],[118.2074509,41.6399879],[118.1526794,41.6737366],[118.1485367,41.7103653],[118.1239471,41.7399864],[118.1492767,41.8047752],[118.1718674,41.8126755],[118.2241669,41.8096046],[118.2364197,41.7769547],[118.2643967,41.7600632],[118.2858429,41.7706985],[118.3303986,41.8470383],[118.3218918,41.8700371],[118.2561264,41.9183998],[118.2851105,41.943779],[118.3002319,41.9776077],[118.2798691,42.0058212],[118.2498169,42.0085716],[118.2311172,42.0207481],[118.2819366,42.0343666],[118.2550812,42.0837097],[118.232811,42.0906754],[118.2060165,42.0789642],[118.2136765,42.0564461],[118.1932831,42.0309181],[118.1097565,42.034874],[118.1084518,42.0435791],[118.1333008,42.0526009],[118.1320572,42.063591],[118.1471634,42.0647469],[118.1484833,42.0788994],[118.0849228,42.1074638],[118.0995026,42.1696701],[118.0268707,42.1969566],[117.9622726,42.2400932],[118.0334473,42.273674],[118.0531693,42.2960396],[118.0022125,42.3444977],[118.0175171,42.3751526],[118.0127106,42.3930473],[117.8696899,42.5061722],[117.8430023,42.5446548],[117.7959976,42.5778847],[117.785553,42.5962868],[117.7947617,42.6106148],[117.7963715,42.62117],[117.7613373,42.6052513],[117.692543,42.6094742],[117.6816177,42.6056786],[117.6769638,42.5856018],[117.6604233,42.5793343],[117.591011,42.6036148],[117.5255508,42.6033745],[117.4560471,42.5766106],[117.3775635,42.5174026],[117.3771591,42.5096359],[117.4054108,42.5151939],[117.4078293,42.5032349],[117.4036636,42.4742432],[117.3672333,42.4603577],[117.3276062,42.4606514],[117.263237,42.4835014],[117.152832,42.4677391],[117.1274567,42.4681091],[117.0917206,42.4840736],[117.0701294,42.4622459],[117.0180817,42.4563255],[116.9877777,42.4260635],[116.9627228,42.4261703],[116.9304428,42.4114456],[116.9006424,42.3980713],[116.8880234,42.3242912],[116.912262,42.2279816],[116.9064407,42.1928024],[116.7887573,42.200489],[116.7791672,42.1950302],[116.7949905,42.1609306],[116.8219681,42.1423416],[116.8493271,42.1365433],[116.8783798,42.1085625],[116.884903,42.0760841],[116.8733902,42.0164642],[116.8579025,41.9996033],[116.8256683,42.0033607],[116.8009262,41.9769135],[116.7601395,41.988224],[116.7382812,41.9800453],[116.7285385,41.9357224],[116.708252,41.9305077],[116.667778,41.939949],[116.6290665,41.9292641],[116.5910187,41.9336472],[116.5471115,41.9265938],[116.490097,41.9775848],[116.4473877,41.9437485],[116.3902893,41.9396019],[116.3801575,41.9501076],[116.4047165,41.9695549],[116.4025726,41.9917259],[116.3672333,42.0076942],[116.3208313,42.0035248],[116.3039474,41.9950409],[116.2886429,41.9630165],[116.2116699,41.929718],[116.1897964,41.8624611],[116.1588135,41.8671761],[116.0991135,41.8482475],[116.1006165,41.7897377],[116.0884171,41.7768936],[116.0633469,41.7717781],[115.9913788,41.7756042],[115.99263,41.8192711],[115.9434814,41.8791656],[115.9144974,41.9405098],[115.8902435,41.9403877],[115.8569107,41.9258118],[115.8203201,41.9333763],[115.7593994,41.8868332],[115.7259369,41.8898201],[115.7179108,41.8659897],[115.6836166,41.8609581],[115.642067,41.8229408],[115.4483032,41.7493439],[115.4232407,41.7264824],[115.3269119,41.705204],[115.3070068,41.6704826],[115.331398,41.6565552],[115.3320007,41.6389618],[115.3628693,41.619381],[115.3353806,41.6008186],[115.3009872,41.5938377],[115.2745209,41.6235085],[115.2579422,41.6109886],[115.2539368,41.5787086],[115.2249908,41.5758781],[115.1858292,41.5966988],[115.1570969,41.5979691],[115.1196365,41.6235886],[115.0936127,41.6269341],[115.076889,41.6230698],[115.0538483,41.5999222],[115.0184479,41.6131897],[114.9396667,41.6119232],[114.8918686,41.60532],[114.8614273,41.5886574],[114.8559113,41.6020699],[114.8893509,41.6345482],[114.8966599,41.6874619],[114.8935623,41.754406],[114.8680573,41.7967987],[114.9394913,41.8206482],[114.9407196,41.8341522],[114.9063034,41.9036369],[114.912262,41.9503593],[114.8953171,41.9915009],[114.846962,42.0093422],[114.817131,42.0470924],[114.814003,42.061676],[114.8394775,42.1013641],[114.865509,42.1197929],[114.8086166,42.165844],[114.7775421,42.1523552],[114.7720718,42.1136398],[114.7520294,42.1028252],[114.6691132,42.1184616],[114.6238098,42.1090508],[114.5649719,42.1318588],[114.4953003,42.103241],[114.4920578,42.0677452],[114.4727783,42.0541534],[114.4702377,42.0365028],[114.4722672,41.999958],[114.4896164,41.964592],[114.4375687,41.939209],[114.4149323,41.9463501],[114.3515472,41.9312439],[114.316658,41.9090958],[114.2050934,41.7976303],[114.2157135,41.7285233],[114.2112808,41.6759872],[114.2321472,41.6418724],[114.2225494,41.6045647],[114.235878,41.5831032],[114.2169876,41.5657425],[114.2161713,41.5469475],[114.2453766,41.5166779],[114.2382736,41.5030098],[114.2026215,41.5019951],[114.14608,41.5204163],[114.1031113,41.5111885],[114.033287,41.5175629],[113.9834137,41.5086555],[113.9524689,41.4875221],[113.9171066,41.4785843],[113.8674622,41.4438286],[113.8611069,41.4181061],[113.8677368,41.4070091],[113.9331818,41.3799591],[113.9196167,41.322361],[113.8998108,41.311985],[113.9152069,41.2821999],[113.9412079,41.2698212],[113.9561386,41.2448425],[113.9645615,41.2426224],[113.9761887,41.2622948],[114.0094223,41.2302055],[113.9939499,41.2235374],[113.9900513,41.1906815],[113.9777832,41.1781158],[113.907959,41.1684647],[113.8712463,41.1140366],[113.8124619,41.09589],[113.8618011,41.067337],[113.9663086,40.9814606],[113.9754715,40.949501],[114.066658,40.8556366],[114.0360794,40.8247948],[114.0569763,40.7975769],[114.097702,40.7806129],[114.0973129,40.7664299],[114.1231995,40.7415924],[114.0578537,40.7178879],[114.0616531,40.6637688],[114.0347824,40.6091309],[114.0700302,40.5743217],[114.0700073,40.540905],[114.0429611,40.5240288],[114.0047073,40.5145607],[113.9635162,40.521019],[113.9383621,40.5059547],[113.8568192,40.4553566],[113.7879791,40.5167274],[113.7620468,40.4758034],[113.6737213,40.4427986],[113.6628418,40.4201202],[113.6410828,40.4145393],[113.5491562,40.3446922],[113.4808197,40.3317986],[113.3635712,40.3136139],[113.316658,40.3170052],[113.2756271,40.3781319],[113.240097,40.4092255],[112.9841614,40.354496],[112.8866272,40.324543],[112.8657532,40.2614288],[112.8398666,40.201107],[112.7424927,40.1656342],[112.7183533,40.168808],[112.6283798,40.2266541],[112.5579376,40.2566414],[112.5039368,40.2675095],[112.4459534,40.2966576],[112.4045792,40.2893486],[112.3467865,40.2553673],[112.2997665,40.2466736],[112.2825317,40.2248116],[112.2805328,40.2017365],[112.2186813,40.1640511],[112.2145081,40.1279602],[112.1775208,40.089695],[112.1006012,39.9730949],[111.9695206,39.7891998],[111.9514999,39.6966019],[111.9268188,39.6716728],[111.9192886,39.6153297],[111.8513336,39.6094322],[111.8327026,39.6128159],[111.7721329,39.5910454],[111.7485275,39.5929756],[111.7156067,39.6009636],[111.6745682,39.6305885],[111.6029968,39.6354485],[111.5362473,39.6562462],[111.4891663,39.6590805],[111.4373932,39.639904],[111.4348526,39.6320343],[111.4567032,39.6167068],[111.4504166,39.6031418],[111.4337234,39.6166801],[111.421463,39.6118851],[111.4359131,39.5858459],[111.4202271,39.5460548],[111.4258118,39.5091896],[111.3636703,39.4781303],[111.3556671,39.4464874],[111.3462677,39.424633],[111.3311462,39.4182129],[111.2108612,39.4264374],[111.1945267,39.4173317],[111.1626968,39.4172516],[111.12146,39.3899994],[111.1166306,39.3654213],[111.0922318,39.36343],[111.0874405,39.398365],[111.0604172,39.4080315],[111.0551834,39.4206467],[111.0619431,39.4505501],[111.0771332,39.4553871],[111.1046906,39.4873886],[111.1103973,39.5088425],[111.1508331,39.5433083],[111.1470795,39.5675659],[111.1257172,39.5823364],[111.0883026,39.5552406],[111.0437469,39.556324],[111.0237503,39.5654411],[110.9573669,39.5255203],[110.8721771,39.4964142],[110.7329102,39.3500557],[110.7144089,39.2857552],[110.6892776,39.266861],[110.643898,39.2717857],[110.6153336,39.2487526],[110.6085663,39.2517776],[110.5913925,39.2841225],[110.56427,39.3079643],[110.5663376,39.3377609],[110.5504303,39.3587189],[110.5162506,39.3835144],[110.5054321,39.3824463],[110.4954224,39.3656578],[110.4481964,39.3757019],[110.4138489,39.3613243],[110.4050064,39.3492851],[110.4164429,39.3454781],[110.4175873,39.3325005],[110.3841476,39.3129883],[110.3690033,39.3236542],[110.3528137,39.3368454],[110.3349762,39.3367157],[110.2805786,39.3771324],[110.2388382,39.442894],[110.1858673,39.4527664],[110.1623764,39.4656639],[110.1431427,39.4612236],[110.1079712,39.4288635],[110.1243973,39.3876801],[110.1467438,39.380394],[110.1636581,39.3803864],[110.1726074,39.3703308],[110.2075729,39.2944641],[110.2039185,39.2832031],[110.0797272,39.2284012],[110.044548,39.2211227],[110.0080872,39.2155342],[109.9869537,39.1963501],[109.9528198,39.1872482],[109.9199371,39.1655083],[109.8998871,39.1447449],[109.8942184,39.1172638],[109.8712463,39.0992241],[109.7639771,39.0669441],[109.7136002,39.0656357],[109.6746674,38.9498444],[109.6753235,38.936451],[109.6421967,38.9022293],[109.5895233,38.8694878],[109.5626373,38.8097534],[109.552063,38.807209],[109.5100403,38.8306084],[109.4209671,38.8035622],[109.3946304,38.712925],[109.3426208,38.7131882],[109.3245316,38.7057991],[109.3409271,38.6182365],[109.3211212,38.6139488],[109.2677002,38.6257782],[109.2144699,38.5747414],[109.1479874,38.5551033],[109.1286621,38.480793],[109.0549316,38.4516525],[109.016777,38.3750114],[108.9696732,38.3382454],[108.9655991,38.2742844],[108.9295731,38.18116],[109.0097198,38.107338],[109.0519791,38.0861511],[109.0462265,38.0231781],[109.0208435,38.0077095],[108.971283,37.9427948],[108.9378433,37.9213181],[108.9114838,37.9562569],[108.8793564,37.9673615],[108.8733368,37.9930305],[108.842041,38.0162697],[108.7943573,38.023201],[108.7973938,38.0055389],[108.8220825,37.9863777],[108.7857208,37.9645691],[108.7767487,37.9430046],[108.7789688,37.8225327],[108.7953873,37.7898216],[108.7886276,37.7731857],[108.7699203,37.7623138],[108.7838364,37.6869469],[108.7495117,37.6822777],[108.7122269,37.6897316],[108.6851196,37.6593132],[108.5826569,37.6504478],[108.5603104,37.6563187],[108.5730362,37.6691704],[108.5712967,37.6853752],[108.5235825,37.6904335],[108.4372177,37.669426],[108.364212,37.6725349],[108.3390503,37.6628723],[108.318718,37.635231],[108.3016434,37.6352386],[108.2524872,37.6666489],[108.1478577,37.6170464],[108.1253281,37.6209984],[108.0791168,37.6501122],[108.0524368,37.649437],[108.0144119,37.665905],[108.0084534,37.723938],[107.9661713,37.7918777],[107.8116074,37.8345337],[107.7524567,37.8333588],[107.6843796,37.8857117],[107.6517487,37.8743706],[107.5687866,37.8965683],[107.5228271,37.8971176],[107.492897,37.9229622],[107.4088593,37.9487],[107.4009171,37.96278],[107.4282303,37.9968071],[107.356987,38.0452423],[107.3286285,38.0905914],[107.2585602,38.0981369],[107.1672974,38.1577568],[107.1362534,38.1580162],[107.1071472,38.1360435],[107.0741806,38.1417542],[107.0171432,38.1232719],[106.9796829,38.1249542],[106.8286438,38.1629753],[106.809967,38.1579361],[106.7174377,38.2091484],[106.5575638,38.2629089],[106.4946976,38.3128967],[106.490448,38.3373451],[106.5056305,38.3630028],[106.6153488,38.4388771],[106.6894073,38.5803146],[106.6762314,38.6676636],[106.6897278,38.7095451],[106.6996231,38.7251701],[106.7381287,38.7341576],[106.7994766,38.8175812],[106.9643631,38.9577408],[106.9670792,39.0429344],[106.9230194,39.08255],[106.8438416,39.0982246],[106.8529816,39.1392136],[106.8002472,39.2168999],[106.7930679,39.2272835],[106.7884827,39.2520638],[106.8025436,39.2789612],[106.7961807,39.3003807],[106.8099289,39.307766],[106.7979431,39.3652992],[106.7492371,39.3808784],[106.7227631,39.3719711],[106.590683,39.3640785],[106.5522537,39.3454208],[106.506279,39.3059387],[106.4572906,39.2857857],[106.3981476,39.2906151],[106.2826614,39.2713547],[106.2754669,39.2612839],[106.2910309,39.1671638],[106.280571,39.1455269],[106.2465591,39.1307907],[106.1850967,39.1434822],[106.1662369,39.1624413],[106.1414413,39.1523056],[106.0918732,39.0838127],[106.0829163,39.0445213],[106.0930328,39.0181961],[106.075531,38.9800262],[106.0192871,38.9544525],[105.9667664,38.9085312],[105.9838333,38.8725548],[105.9808731,38.8557091],[105.9024963,38.7791061],[105.8825073,38.6960487],[105.8464279,38.6312981],[105.8672867,38.5949974],[105.8489532,38.5716782],[105.8551331,38.5257263],[105.830368,38.4693604],[105.8361282,38.4426804],[105.8224869,38.4250183],[105.8265228,38.3477631],[105.8562088,38.3025703],[105.859108,38.2689095],[105.8407364,38.2421379],[105.789917,38.2140732],[105.7710571,38.1863556],[105.7637787,38.1211243],[105.7717972,38.0954399],[105.8359909,38.0036163],[105.7956238,37.9396019],[105.8044968,37.8749046],[105.7633286,37.8057976],[105.6794128,37.7715149],[105.6363297,37.7780838],[105.6001129,37.7015038],[105.4478607,37.6959],[105.4073563,37.7082176],[105.3684464,37.707489],[105.3108292,37.701458],[105.2182999,37.6763954],[105.1070633,37.6330681],[105.0277634,37.5644798],[104.9824066,37.5438347],[104.8022614,37.5385551],[104.7511368,37.5148163],[104.6873169,37.5052261],[104.5661926,37.5383835],[104.4809265,37.5183182],[104.4094467,37.5155869],[104.4047012,37.4850349],[104.3961029,37.4697571],[104.3750534,37.4818306],[104.3416214,37.4564476],[104.3106308,37.4537811],[104.2938538,37.4301186],[104.2187119,37.4077873],[104.1781464,37.4081879],[103.8992462,37.5864792],[103.8452988,37.6311722],[103.6689835,37.7857513],[103.4102402,37.8474388],[103.3927612,37.9237785],[103.3622894,38.0907211],[103.5444489,38.1552849],[103.4844208,38.3269119],[103.412323,38.4075089],[103.876297,38.6451225],[104.0319138,38.8911591],[104.1742096,38.9414635],[104.2057114,39.0929489],[104.0525436,39.2974701],[104.0910568,39.4178162],[103.9413681,39.4647636],[103.8374634,39.458847],[103.361351,39.3460693],[103.2539673,39.2645111],[103.2545166,39.2484474],[103.2367783,39.2488747],[103.1727524,39.2127724],[103.1238098,39.2029762],[103.0018768,39.1021957],[102.6074829,39.1816597],[102.4558029,39.2540398],[102.2007828,39.170517],[101.9863663,39.1230087],[101.8152313,39.1021423],[101.9280777,39.0102501],[102.0804901,38.8969002],[101.8638687,38.7244949],[101.8538666,38.6796303],[101.8039322,38.6833878],[101.7768478,38.664814],[101.7611618,38.6749458],[101.7471237,38.691185],[101.6760025,38.692421],[101.6168823,38.6619644],[101.5907669,38.6923294],[101.5304413,38.7255173],[101.4114914,38.7686348],[101.3692627,38.7681503],[101.3275223,38.782753],[101.3214264,38.7936401],[101.3402634,38.831028],[101.331749,38.848835],[101.3089676,38.8612061],[101.2432785,38.8723679],[101.218071,38.9390297],[101.1759491,38.9547234],[101.2232895,39.0018806],[101.2198563,39.0239258],[101.1326981,38.9821014],[101.0158463,38.9572372],[100.9851837,38.9744911],[100.9401474,39.0469246],[100.9016266,39.037281],[100.8725662,39.0068665],[100.857048,39.0089569],[100.8407135,39.0254784],[100.8357468,39.0493622],[100.8395462,39.0820312],[100.8622665,39.1059227],[100.8546371,39.1735725],[100.828537,39.2122192],[100.8563538,39.3152161],[100.8478928,39.3970604],[100.8007431,39.4035454],[100.6239929,39.3943367],[100.4955215,39.4007034],[100.5013809,39.479805],[100.3250427,39.5136223],[100.3089905,39.5572891],[100.3023376,39.628067],[100.2647171,39.6786118],[100.2313995,39.6911125],[100.0130615,39.7400246],[99.7649384,39.8859749],[99.453186,39.8761063],[99.6193771,40.0640297],[99.9068985,40.2121468],[100.019928,40.397049],[100.2398605,40.6006927],[100.2268372,40.7219238],[100.1089096,40.8723946],[100.0158463,40.9064255],[99.6775513,40.932785],[99.5683365,40.8487892],[99.1793747,40.8647118],[99.0370789,40.8046799],[98.8688889,40.7530365],[98.647934,40.5419121],[98.2649231,40.5230446],[98.2562027,40.5271454],[98.3693466,40.8367844],[98.3653946,40.8523636],[98.3347702,40.9130478],[98.3187637,40.9157639],[98.2616272,40.9339714],[98.2083359,40.9638519],[98.0002365,41.1078949],[97.9730759,41.0960732],[97.6886444,41.3707085],[97.61203,41.4583549],[97.6206894,41.4930344],[97.8398666,41.6589546],[97.1687469,42.794754],[97.1759109,42.7941513],[97.1805801,42.7937469],[97.1893234,42.792244],[97.2014771,42.7907829],[97.2139435,42.7895508],[97.2211151,42.7887154],[97.2304688,42.7874489],[97.2385788,42.7861633],[97.2479324,42.7846642],[97.2563477,42.7838402],[97.2663116,42.7828064],[97.2725449,42.7821884],[97.2800369,42.7804375],[97.2878265,42.7798309],[97.2962418,42.7785492],[97.305275,42.777729],[97.3139954,42.7769051],[97.3214569,42.7767525],[97.3286362,42.7752266],[97.3317719,42.7738838],[97.3395767,42.771904],[97.3520432,42.770195],[97.3638763,42.7691727],[97.3694839,42.7685432],[97.3738403,42.7681274],[97.3807068,42.7663651],[97.3875656,42.7652855],[97.3987961,42.7631073],[97.4093781,42.7622948],[97.4177856,42.7614594],[97.4264984,42.7608566],[97.4386826,42.7570763],[97.4473953,42.7564735],[97.4561081,42.7554054],[97.4654541,42.7543488],[97.4729309,42.7530441],[97.4832077,42.7517624],[97.4937973,42.7500267],[97.5034561,42.7485085],[97.5165176,42.7477074],[97.5211945,42.7470627],[97.5296021,42.7457619],[97.5370865,42.7439957],[97.550766,42.7431946],[97.5622787,42.7421494],[97.5685043,42.7412834],[97.5797195,42.739315],[97.5897064,42.7364197],[97.6027756,42.7346916],[97.6117935,42.7340775],[97.6217499,42.7330093],[97.6316986,42.7326317],[97.6419754,42.7308769],[97.651001,42.7293434],[97.6597137,42.7282677],[97.6650085,42.7273903],[97.6743393,42.7260857],[97.6824341,42.7247696],[97.6920853,42.723011],[97.7007904,42.7221565],[97.7085648,42.7212944],[97.7141647,42.7206497],[97.7222595,42.719101],[97.7309799,42.7173309],[97.7400055,42.7157898],[97.7487106,42.7149315],[97.757103,42.7140732],[97.7636337,42.7134285],[97.7704773,42.7125587],[97.7788696,42.7121582],[97.7854004,42.7110558],[97.7903824,42.709938],[97.7956772,42.7083702],[97.8031311,42.7081909],[97.8078003,42.707531],[97.818985,42.7066879],[97.8311157,42.7044716],[97.8413849,42.7026978],[97.8531952,42.7018547],[97.8618927,42.7007599],[97.8712234,42.6996689],[97.880867,42.6974335],[97.8905029,42.6961098],[97.8976593,42.6947784],[97.9060593,42.6932182],[97.9178696,42.6909943],[97.9303055,42.6892281],[97.9386902,42.6888123],[97.9511185,42.6875],[97.9595108,42.6868591],[97.9666672,42.6846008],[97.9750595,42.6828079],[97.9899826,42.6803589],[97.9986801,42.6790276],[98.0070648,42.6790657],[98.0151443,42.6777267],[98.0250854,42.6757126],[98.0362701,42.6741562],[98.046524,42.6730576],[98.0542831,42.6724014],[98.0629807,42.671524],[98.0726166,42.6694984],[98.0847321,42.6670265],[98.0955963,42.6663818],[98.1058426,42.6659622],[98.1157913,42.6625633],[98.1288376,42.6598625],[98.1372223,42.6594315],[98.1459122,42.6583176],[98.157402,42.6567535],[98.1691971,42.6558762],[98.1813049,42.6552277],[98.1927872,42.6543427],[98.1996155,42.6536789],[98.2086105,42.6532478],[98.2194748,42.6528206],[98.2303314,42.6521606],[98.2393341,42.6519585],[98.2477112,42.6519775],[98.2551575,42.65131],[98.2644653,42.6504173],[98.2759476,42.6495285],[98.2855682,42.6497765],[98.2936325,42.64888],[98.3060455,42.6477623],[98.3141098,42.6475487],[98.3240433,42.6466484],[98.3330383,42.6459808],[98.3417282,42.6455383],[98.3501053,42.6453209],[98.3625107,42.644886],[98.3736801,42.6449013],[98.3842316,42.6442299],[98.3947754,42.6437836],[98.4053192,42.6433411],[98.4158707,42.6422081],[98.4248657,42.641758],[98.4347916,42.6410828],[98.4425507,42.6408577],[98.4534073,42.6401787],[98.4620895,42.6397285],[98.4710846,42.6392746],[98.4819412,42.6392822],[98.4921799,42.639286],[98.5011749,42.6386032],[98.5104752,42.6376915],[98.5185394,42.6370049],[98.5331192,42.6358643],[98.5377731,42.6356316],[98.5458374,42.6344872],[98.5554504,42.6340294],[98.5653763,42.6338005],[98.5759201,42.6335678],[98.5849152,42.6328773],[98.5926666,42.631958],[98.6059952,42.630806],[98.6171646,42.6301117],[98.6292572,42.6294174],[98.6363831,42.6287231],[98.6503372,42.6271057],[98.6602631,42.6270981],[98.6701813,42.6261711],[98.6785583,42.6261635],[98.687233,42.6250076],[98.7024307,42.6245308],[98.7166901,42.6238213],[98.7263031,42.6235771],[98.7352905,42.6221886],[98.7476883,42.6212502],[98.7579193,42.6203156],[98.7678375,42.6196098],[98.7765198,42.6193657],[98.7836533,42.6191216],[98.7945023,42.6181793],[98.8047333,42.6183891],[98.8134079,42.616993],[98.8230209,42.6162834],[98.8307648,42.6160355],[98.8385162,42.6157875],[98.8537064,42.6143723],[98.8651733,42.6136551],[98.8763275,42.612709],[98.8815918,42.6120033],[98.8927536,42.6115112],[98.902977,42.6105652],[98.9159927,42.6096077],[98.9308701,42.6088715],[98.9414062,42.6081505],[98.9503937,42.6076584],[98.962471,42.6057816],[98.9776535,42.6045837],[98.9906693,42.6040726],[99.0011978,42.6026611],[99.0169983,42.6016808],[99.0297012,42.6004829],[99.0451889,42.5990372],[99.0554123,42.5987663],[99.0665665,42.5980301],[99.0724564,42.5980034],[99.081131,42.5977325],[99.0910492,42.597229],[99.1037445,42.5955658],[99.1195374,42.5945702],[99.1294556,42.5940628],[99.1396713,42.5933228],[99.1517563,42.5923462],[99.1656952,42.5915833],[99.1793213,42.5905914],[99.1907806,42.5896149],[99.2031708,42.5888557],[99.2136993,42.5881081],[99.2223663,42.5873718],[99.2313385,42.5859451],[99.2455826,42.584713],[99.2561111,42.5841904],[99.2647858,42.5839081],[99.269104,42.5822754],[99.2759171,42.5822334],[99.2852097,42.5817146],[99.295433,42.581192],[99.3072052,42.580658],[99.3140182,42.5803833],[99.3180313,42.5794411],[99.329483,42.5782166],[99.3378372,42.5774727],[99.3458862,42.5764999],[99.3530045,42.5762215],[99.3626099,42.5759277],[99.367569,42.5761185],[99.3725204,42.5753975],[99.3805618,42.5741959],[99.3926315,42.5731888],[99.4006882,42.5733604],[99.4084244,42.5728416],[99.4146118,42.5721092],[99.4232788,42.5713577],[99.432579,42.5712852],[99.4415512,42.5705299],[99.4474258,42.5697975],[99.4533081,42.5695229],[99.4591904,42.5690193],[99.463829,42.5685234],[99.4709473,42.5677795],[99.480545,42.5674706],[99.4947739,42.5662079],[99.5034561,42.5663681],[99.5108948,42.5667648],[99.5189667,42.5673828],[99.530777,42.5695763],[99.5425797,42.5713081],[99.5522156,42.573288],[99.5593719,42.575058],[99.571167,42.5763283],[99.5801849,42.5778542],[99.5913696,42.5798187],[99.597908,42.5815887],[99.6053619,42.5822105],[99.6174698,42.5837021],[99.6330261,42.5867691],[99.6482697,42.5898323],[99.6641235,42.5924301],[99.6802902,42.5950241],[99.6930466,42.5976486],[99.709877,42.6020622],[99.7244797,42.6037483],[99.7397308,42.6068001],[99.7571716,42.6107445],[99.7764435,42.6132927],[99.791687,42.6154213],[99.8078613,42.6179962],[99.8265457,42.6216888],[99.8402176,42.6229134],[99.8548355,42.6248093],[99.8729019,42.6285019],[99.885994,42.6315575],[99.9043503,42.6338654],[99.9193039,42.636898],[99.9267731,42.6379585],[99.9389267,42.6403313],[99.9473267,42.6413765],[99.9579163,42.6430817],[99.9722519,42.6461143],[99.9793854,42.6457977],[99.9877625,42.6459236],[100.0010986,42.6457558],[100.0157013,42.6464882],[100.0240707,42.6461525],[100.0386505,42.6459656],[100.0485535,42.6451492],[100.063118,42.6442757],[100.0779877,42.6433907],[100.0934906,42.6431847],[100.1074371,42.6427689],[100.1210938,42.6423531],[100.1313095,42.641758],[100.1474075,42.6406212],[100.1659927,42.6394463],[100.1737366,42.6391068],[100.1876831,42.6384506],[100.1979065,42.6383057],[100.2121811,42.6381035],[100.2251816,42.6369972],[100.2357025,42.636158],[100.2434616,42.6360435],[100.2509079,42.6361656],[100.2599182,42.6367188],[100.2680435,42.6384315],[100.2677917,42.6409569],[100.2750931,42.6468086],[100.2836304,42.6524124],[100.2886963,42.6562309],[100.2925262,42.6598396],[100.2986069,42.6661682],[100.3049622,42.6713409],[100.3110428,42.6774368],[100.3154678,42.6805801],[100.3195267,42.6842957],[100.3311691,42.6867561],[100.3451538,42.6867714],[100.3631134,42.6855736],[100.3802109,42.6862183],[100.3988495,42.6866112],[100.4199371,42.685585],[100.4382172,42.6846008],[100.4562225,42.6843071],[100.4720764,42.6849632],[100.4885178,42.6844597],[100.502449,42.6833076],[100.5207596,42.6829948],[100.5359802,42.683197],[100.5583267,42.6830368],[100.5750427,42.6813736],[100.5939636,42.680809],[100.6085205,42.6798668],[100.6308365,42.6790085],[100.6510315,42.6793289],[100.6724167,42.6782532],[100.6878815,42.6763649],[100.7052536,42.6758118],[100.7229691,42.6766281],[100.7434464,42.6762428],[100.7602234,42.6763802],[100.7760162,42.6753922],[100.7937164,42.6757355],[100.8092499,42.6758957],[100.8281631,42.6750641],[100.8461227,42.6737938],[100.8652802,42.6713486],[100.8785172,42.66856],[100.8966827,42.6645279],[100.9080734,42.6617737],[100.9200668,42.6592369],[100.9268265,42.6572647],[100.9391479,42.6547165],[100.9508514,42.6524124],[100.9675064,42.6500015],[100.9739532,42.6478043],[100.9825516,42.6455612],[100.993927,42.6430283],[101.009697,42.6415482],[101.0179901,42.6393089],[101.0302505,42.6356087],[101.0432129,42.6337242],[101.0533829,42.6319008],[101.0610886,42.6308174],[101.0644608,42.6298256],[101.0751877,42.6266136],[101.0865707,42.6243019],[101.1016769,42.6219063],[101.1137085,42.6202621],[101.1207504,42.618042],[101.1306,42.6162224],[101.1416931,42.6141396],[101.1527634,42.6120567],[101.1595306,42.6107559],[101.1675415,42.6094284],[101.1798325,42.6066284],[101.191803,42.6038361],[101.1998367,42.6031914],[101.2038498,42.6026421],[101.2124329,42.6001511],[101.2232132,42.5982971],[101.237648,42.595211],[101.2465591,42.593399],[101.2554626,42.5913582],[101.2646866,42.5895348],[101.276062,42.587204],[101.2892685,42.5843735],[101.2978897,42.5830193],[101.3059235,42.5821419],[101.3102112,42.5811234],[101.3175583,42.579113],[101.3310471,42.5755806],[101.3427505,42.5739212],[101.3553696,42.5717812],[101.3667068,42.568985],[101.3805008,42.5654373],[101.3968124,42.562973],[101.4091263,42.5610657],[101.4183426,42.5592308],[101.4253693,42.5569916],[101.4385605,42.554142],[101.4529877,42.5510292],[101.4627838,42.5482597],[101.4732132,42.5461617],[101.4768829,42.5451508],[101.4888382,42.5423279],[101.5020905,42.5408401],[101.5119171,42.5389862],[101.5211182,42.5369148],[101.5309219,42.5345993],[101.5462723,42.5316811],[101.557663,42.5300102],[101.5702591,42.5278473],[101.580658,42.5250511],[101.5932465,42.5228844],[101.6040421,42.5219116],[101.6166992,42.5208893],[101.627182,42.5199242],[101.6453629,42.5178299],[101.6588974,42.5160904],[101.6734085,42.5150146],[101.682663,42.5143051],[101.6921768,42.5126686],[101.7033005,42.5119057],[101.7158737,42.5094986],[101.7297821,42.5088882],[101.7414932,42.5076485],[101.7516785,42.5069084],[101.7603226,42.5064392],[101.7704773,42.5052376],[101.7818832,42.5040016],[101.7921829,42.5024719],[101.796608,42.5015259],[101.8044968,42.4967613],[101.8139267,42.4891129],[101.8254623,42.4786949],[101.8310623,42.4732628],[101.8411026,42.4640312],[101.8508377,42.4550362],[101.8581924,42.4477158],[101.867897,42.4382668],[101.8752365,42.4307137],[101.8840408,42.4217453],[101.89048,42.4149094],[101.8983612,42.4061928],[101.9053421,42.3979645],[101.9120407,42.3902016],[101.9211502,42.3814507],[101.9282379,42.3752785],[101.9367828,42.3674583],[101.9438477,42.3610573],[101.9502792,42.3542175],[101.9564819,42.3489876],[101.9635391,42.3423576],[101.9688568,42.3380699],[101.9759064,42.33144],[101.9826431,42.3243599],[101.9864578,42.3208046],[102,42.2947159],[102.0755463,42.2249298],[102.4434814,42.144207],[102.5390701,42.1606674],[102.6218109,42.1510811],[102.7078018,42.1510696],[102.9894333,42.033699],[102.9907532,42.0331497],[103.3856964,41.887989],[103.4517136,41.8755226],[103.8437729,41.8006134],[103.8544998,41.8008156],[103.8639908,41.7996483],[104.0531235,41.8019829],[104.0687408,41.8005409],[104.0883865,41.8043442],[104.1098938,41.8083687],[104.1320038,41.8128357],[104.5249329,41.8733826],[104.5183487,41.6622009],[104.6776505,41.6426849],[104.9157562,41.6522598],[105.0112076,41.5804176],[105.2084427,41.7326775],[105.2143173,41.7368393],[105.2287292,41.7470322],[105.2837982,41.7448463],[105.317337,41.7612801],[105.6138382,41.8983078],[105.6297302,41.9053459],[105.6561432,41.914257],[105.6969376,41.9309082],[105.7339096,41.9428062],[106.5070877,42.1939583],[106.5593109,42.2189522],[106.7860031,42.2914276],[106.993187,42.3099632],[107.0208664,42.3130341],[107.0410538,42.3142586],[107.2569809,42.3627625],[107.2648621,42.3702965],[107.2928085,42.4081116],[107.2985535,42.4098511],[107.4531784,42.4566612],[107.4961624,42.4549789],[107.5659332,42.4115791],[107.7273636,42.4120674],[107.7774734,42.4107094],[107.8287964,42.4092865],[107.8762512,42.4054642],[107.9187927,42.4022675],[107.9279327,42.4044418],[107.950737,42.411602],[107.979599,42.4123344],[108,42.4248085],[108.0028229,42.425621],[108.0167236,42.4313393],[108.029068,42.4319725],[108.045433,42.4327316],[108.0571594,42.4333382],[108.084137,42.43787],[108.106369,42.4390411],[108.1242371,42.4405251],[108.1420898,42.4424629],[108.1635971,42.4454308],[108.1715469,42.447052],[108.1853409,42.4497681],[108.1991272,42.4522591],[108.2101593,42.4544334],[108.2230225,42.457119],[108.2331085,42.4594879],[108.2407913,42.46064],[108.2530289,42.4575844],[108.2597122,42.4543571],[108.2724533,42.4476585],[108.279213,42.443058],[108.2859421,42.4386864],[108.2931671,42.4366188],[108.3062134,42.4358711],[108.3145599,42.4361229],[108.3371201,42.4368019],[108.3575211,42.4374084],[108.3760529,42.4381905],[108.3939667,42.4387169],[108.4134598,42.4390602],[108.4289474,42.4388275],[108.4345169,42.4387627],[108.4583588,42.4387627],[108.477829,42.4393272],[108.4963303,42.4407692],[108.5136566,42.4410362],[108.5275726,42.4412003],[108.5390472,42.4406128],[108.5524368,42.4391594],[108.5649033,42.4374466],[108.5936737,42.4313889],[108.6183167,42.4272652],[108.6429977,42.4226799],[108.6561127,42.4202919],[108.6735992,42.4168777],[108.6858215,42.4135513],[108.6998978,42.4102669],[108.7160187,42.4095573],[108.7320328,42.4111252],[108.7403336,42.412262],[108.7653122,42.4140625],[108.7828979,42.4149818],[108.7956314,42.4139366],[108.806633,42.4103355],[108.8141937,42.4073296],[108.8205109,42.4042931],[108.8230972,42.401844],[108.8291473,42.3978806],[108.8385315,42.395607],[108.8473969,42.397892],[108.8522186,42.4007607],[108.9210205,42.4260483],[108.9413986,42.4340973],[108.9599533,42.4416428],[108.9715424,42.4455872],[108.9776688,42.4471092],[108.9835129,42.447937],[108.9915771,42.4474487],[108.9966278,42.445282],[109.0007782,42.4421806],[109.0082016,42.4423599],[109.0183182,42.4519806],[109.0244064,42.4541855],[109.0337219,42.4537201],[109.0414963,42.4527664],[109.1669769,42.441967],[109.1968613,42.4376106],[109.2158127,42.4357491],[109.2340927,42.4352417],[109.2517166,42.435173],[109.263237,42.4333687],[109.2710037,42.4328537],[109.2772064,42.4323044],[109.2839432,42.4345055],[109.2968369,42.4368439],[109.3162308,42.4395485],[109.3329086,42.4403648],[109.3502274,42.440731],[109.366272,42.4419823],[109.3752365,42.442173],[109.3802109,42.4415894],[109.3829269,42.4434738],[109.3831482,42.443512],[109.4100037,42.4479256],[109.4260178,42.4500809],[109.4414368,42.451313],[109.4571762,42.452549],[109.4639816,42.4529152],[109.469223,42.453476],[109.475647,42.4556618],[109.4801865,42.4584999],[109.4859314,42.4624977],[109.4953918,42.4663467],[109.5058975,42.4670105],[109.5139465,42.4669418],[109.521698,42.4666405],[109.5284805,42.4674568],[109.5388336,42.4726906],[109.543663,42.4759827],[109.5600433,42.4861336],[109.567627,42.4906235],[109.5906677,42.5056992],[109.6022034,42.5127754],[109.6183472,42.5208549],[109.6390762,42.5313034],[109.6542664,42.5409584],[109.6688232,42.5512848],[109.6933136,42.5606499],[109.7086563,42.5657272],[109.7227325,42.5716934],[109.7451401,42.5789528],[109.7703629,42.5860252],[109.7863235,42.5913315],[109.8037872,42.5982628],[109.824028,42.6061554],[109.8574829,42.6186066],[109.8759689,42.6230278],[109.8913498,42.6276245],[109.9033737,42.6305656],[109.917923,42.6319427],[109.9291077,42.6312103],[110.1008301,42.6391068],[110.1032715,42.6407433],[110.1099167,42.6479225],[110.1283875,42.6667061],[110.1363297,42.6720772],[110.1474228,42.675663],[110.1523514,42.6771049],[110.1677628,42.6818962],[110.1893616,42.6876793],[110.1992264,42.6907883],[110.2109375,42.6948357],[110.2519684,42.7070465],[110.2726364,42.7137184],[110.293602,42.7208481],[110.3080826,42.7267494],[110.3188477,42.7316856],[110.3256378,42.7338295],[110.3273926,42.7345009],[110.331192,42.7359581],[110.3339767,42.7359924],[110.3463135,42.7414055],[110.3518524,42.7437592],[110.3604813,42.7472954],[110.3706512,42.7513046],[110.3737335,42.7524834],[110.3848495,42.756279],[110.3913269,42.758873],[110.4033508,42.763813],[110.4156799,42.7692184],[110.4221573,42.7718086],[110.429863,42.7755585],[110.43293,42.777195],[110.4371872,42.7822723],[110.4420166,42.7894135],[110.4495697,42.8011551],[110.4525604,42.8071327],[110.4549026,42.814476],[110.4572678,42.8209],[110.4627304,42.8280487],[110.4713135,42.8352318],[110.481163,42.8412857],[110.4863892,42.8443184],[110.5158768,42.8654404],[110.5266418,42.8731003],[110.5590134,42.8915062],[110.6191635,42.9273224],[110.6281128,42.9326706],[110.6345367,42.9395905],[110.6372375,42.9460144],[110.6508636,42.9703751],[110.6551208,42.977272],[110.6615295,42.9860153],[110.6697769,42.9968376],[110.6783524,43.0069771],[110.6817093,43.0113487],[110.6835403,43.0141106],[110.6850204,43.0193787],[110.6849289,43.0250931],[110.6829681,43.0305557],[110.6822662,43.0351219],[110.6865463,43.0401917],[110.6936722,43.0446014],[110.7092972,43.0637131],[110.7188568,43.0715714],[110.7284164,43.0798836],[110.7330475,43.0840416],[110.7407913,43.0884514],[110.7488708,43.0914955],[110.7588196,43.0947838],[110.7668762,43.099884],[110.7711563,43.1056328],[110.7801208,43.1132507],[110.7865982,43.1192474],[110.7918472,43.1236343],[110.7992783,43.1291847],[110.8014374,43.1312599],[110.8060379,43.1376953],[110.8137283,43.1469002],[110.8208084,43.1549568],[110.8248215,43.1588745],[110.8307037,43.1639519],[110.837822,43.1694946],[110.848671,43.1773491],[110.8566971,43.1851845],[110.8702774,43.1999168],[110.8786316,43.2079773],[110.8888397,43.2171974],[110.9021683,43.2282677],[110.9123993,43.2368011],[110.9319077,43.2556801],[110.9805908,43.3010406],[110.9874191,43.3070297],[110.9961166,43.3141708],[111.006073,43.3220062],[111.0160522,43.3275566],[111.028862,43.3324394],[111.0357437,43.3349991],[111.0478973,43.3419304],[111.0654068,43.3484383],[111.0801086,43.3537827],[111.0963669,43.3598213],[111.1073227,43.3635406],[111.1188965,43.3674927],[111.127037,43.3700523],[111.1408081,43.3744698],[111.146759,43.377018],[111.1527023,43.3793335],[111.1538696,43.3796997],[111.1689835,43.384449],[111.1837082,43.3890953],[111.202179,43.3955879],[111.2131424,43.3992958],[111.2269363,43.4030228],[111.2429199,43.4078941],[111.2592163,43.4132271],[111.2767868,43.4174156],[111.2931137,43.4199982],[111.309433,43.422123],[111.3270035,43.4251671],[111.3448868,43.4307213],[111.3605423,43.4406013],[111.3661728,43.4467926],[111.3702164,43.4522896],[111.3780365,43.4596291],[111.3896332,43.4699478],[111.4015503,43.476387],[111.4203873,43.4819298],[111.4379883,43.4863243],[111.4533768,43.4893379],[111.4647064,43.4900589],[111.4769669,43.4887199],[111.4939728,43.4871674],[111.5162964,43.4865379],[111.5288773,43.4874802],[111.5414581,43.4870491],[111.5527802,43.4870758],[111.5637894,43.4882393],[111.5729065,43.4907722],[111.5870438,43.5003891],[111.6049576,43.513443],[111.6172104,43.52351],[111.6297913,43.5360947],[111.6474075,43.5500526],[111.6508636,43.5523415],[111.665657,43.565609],[111.6782532,43.5765839],[111.691803,43.5871086],[111.7003021,43.5939674],[111.714798,43.6060829],[111.7255173,43.6159134],[111.7416,43.6280289],[111.7526474,43.6378555],[111.7636871,43.6481361],[111.776001,43.6588745],[111.7876816,43.6664162],[111.7990417,43.6696129],[111.811348,43.6698418],[111.8391113,43.670517],[111.8589783,43.6705093],[111.8734894,43.6707268],[111.8798065,43.6711807],[111.8841629,43.6732407],[111.8911667,43.6761971],[111.9009705,43.6812134],[111.9082336,43.6834908],[111.9192886,43.6855354],[111.9316025,43.6875801],[111.9375992,43.6880264],[111.947403,43.6916695],[111.9534302,43.7014847],[111.955658,43.7062798],[111.9614182,43.7240868],[111.9636688,43.7332191],[111.9665527,43.7412109],[111.9678192,43.7439461],[111.9676437,43.7444725],[111.963768,43.7562904],[111.9637909,43.762455],[111.9647827,43.7720451],[111.9632263,43.7789001],[111.9610672,43.788723],[111.9601593,43.7990036],[111.9601974,43.8079109],[111.9602203,43.812252],[111.9589767,43.8191032],[111.9545898,43.8275604],[111.952713,43.8296165],[111.9416885,43.8431091],[111.9382172,43.8469925],[111.9322433,43.8536263],[111.9256287,43.8627663],[111.91996,43.8703079],[111.9139709,43.8783073],[111.906723,43.8863106],[111.9001083,43.8965912],[111.8941193,43.9055061],[111.8903427,43.9093895],[111.8830795,43.9192162],[111.8780365,43.926754],[111.8739319,43.9322395],[111.8698273,43.9365807],[111.8622437,43.9443512],[111.8489609,43.9544029],[111.8423233,43.9582901],[111.8302917,43.9651451],[111.8150864,43.9740562],[111.8014832,43.9854736],[111.7881927,43.9959793],[111.778183,44.0000076],[111.7658615,44.006073],[111.7542038,44.0087814],[111.7435532,44.0130692],[111.735733,44.0166283],[111.7288589,44.0201683],[111.7175369,44.0235519],[111.7028427,44.0306435],[111.6931381,44.0353699],[111.6859894,44.040287],[111.6781769,44.0445251],[111.6710892,44.0512657],[111.664238,44.0557137],[111.6542664,44.0620422],[111.6493378,44.0669174],[111.6453171,44.0704079],[111.6397934,44.0764351],[111.631813,44.0859261],[111.6225433,44.0945244],[111.6169968,44.1005516],[111.6092224,44.1061592],[111.6046219,44.1117096],[111.6016083,44.1172409],[111.599617,44.1248131],[111.5950165,44.130825],[111.5885162,44.1366348],[111.583847,44.1401329],[111.5788727,44.1438675],[111.5742264,44.1480484],[111.5686417,44.1529312],[111.561882,44.1610298],[111.5591431,44.1654129],[111.556427,44.1704788],[111.5511932,44.1762695],[111.5481186,44.1801987],[111.5429077,44.1869049],[111.5392303,44.1917572],[111.5365067,44.1968231],[111.534729,44.2011909],[111.5327072,44.2083054],[111.5287476,44.2145348],[111.5270004,44.2202721],[111.5261765,44.2248535],[111.5247574,44.230587],[111.5236664,44.2372284],[111.5206528,44.2429886],[111.5192337,44.248951],[111.5203705,44.2551041],[111.5227737,44.2610092],[111.5219574,44.2658195],[111.5192337,44.2708893],[111.5121002,44.2778473],[111.5075378,44.2854538],[111.5026016,44.2912369],[111.4954224,44.2968254],[111.4894409,44.2996521],[111.4773865,44.3025627],[111.4669113,44.304081],[111.4567871,44.3071938],[111.4507599,44.3086472],[111.4422607,44.3128777],[111.4355774,44.313427],[111.425148,44.3174515],[111.4186172,44.3239403],[111.4165726,44.3305931],[111.4123306,44.3388786],[111.4092865,44.344635],[111.4097366,44.3494263],[111.4102707,44.3569603],[111.4140778,44.3676529],[111.4148712,44.3733521],[111.4166336,44.3790436],[111.4183578,44.3840485],[111.4218063,44.3931427],[111.4248962,44.4008713],[111.4275665,44.4049492],[111.4312363,44.4106102],[111.4359283,44.4183159],[111.4415817,44.4260101],[111.4442978,44.4316864],[111.4463501,44.4364586],[111.4484024,44.4412308],[111.4534073,44.4487038],[111.4564438,44.4539185],[111.4591827,44.4600487],[111.4612503,44.4657364],[111.4636536,44.4714165],[111.4689789,44.478653],[111.4745789,44.4840622],[111.4830322,44.4887428],[111.4885864,44.4925499],[111.4957733,44.4974747],[111.5010529,44.5026588],[111.5082626,44.5084991],[111.5115814,44.5125656],[111.5143509,44.5196114],[111.5178528,44.5293884],[111.5200195,44.5380402],[111.5237885,44.5464439],[111.5290833,44.5520821],[111.5401001,44.5560341],[111.5491714,44.55933],[111.5547409,44.5631332],[111.5610733,44.57127],[111.5631866,44.5776405],[111.5631638,44.5870094],[111.5617065,44.5925179],[111.5590668,44.6005554],[111.5585938,44.6060486],[111.5584106,44.6106186],[111.5583115,44.6179352],[111.5565109,44.6223068],[111.5557098,44.6275749],[111.5543137,44.6344528],[111.5534973,44.6397209],[111.5533524,44.6454353],[111.557518,44.6556625],[111.5593338,44.6627197],[111.5611496,44.6697769],[111.5649796,44.6795502],[111.5684128,44.6865845],[111.5715103,44.6936226],[111.5738983,44.6981583],[111.5782623,44.7042656],[111.5826874,44.712429],[111.586113,44.7190056],[111.5888367,44.7242203],[111.5929489,44.7326164],[111.5986023,44.7387047],[111.6017075,44.7455139],[111.6028137,44.7500687],[111.6049194,44.7557526],[111.6092529,44.7604866],[111.6132736,44.7654533],[111.6183701,44.7745171],[111.6217194,44.7785835],[111.6264496,44.7858238],[111.6298065,44.7903442],[111.6351166,44.7952919],[111.6411438,44.8025131],[111.6448364,44.8074837],[111.6479187,44.8131523],[111.6529617,44.819931],[111.6597519,44.8307991],[111.6631622,44.836689],[111.6678696,44.8427849],[111.6736526,44.852066],[111.677681,44.8572617],[111.6874084,44.8692207],[111.6925201,44.8776016],[111.6988907,44.8850403],[111.7039413,44.8915901],[111.7093735,44.8999634],[111.7124329,44.9047127],[111.7158966,44.9122009],[111.7193604,44.9190025],[111.7224121,44.9235229],[111.7261429,44.9287224],[111.7318573,44.9359436],[111.7358627,44.9399948],[111.7395477,44.944046],[111.7429428,44.9490242],[111.7483368,44.9560204],[111.7523804,44.9607544],[111.7570572,44.9657097],[111.7607803,44.9704475],[111.7655029,44.9760857],[111.7695236,44.9805908],[111.7797699,44.9875069],[111.7906723,44.9946404],[111.7985687,44.9988518],[111.8084106,45.0030289],[111.8139877,45.0054512],[111.8238068,45.0089417],[111.8329773,45.0126724],[111.8428879,45.0186768],[111.8501663,45.0233498],[111.8584137,45.0277824],[111.8676529,45.0333366],[111.87397,45.0380287],[111.8808899,45.0417938],[111.8890915,45.0450783],[111.8986664,45.050396],[111.9055328,45.0525627],[111.9124069,45.0549507],[111.9199066,45.0566483],[111.925499,45.059063],[111.9320984,45.062603],[111.9376907,45.0650177],[111.9445877,45.0678673],[111.9534683,45.0718231],[111.9626923,45.0762253],[111.9667206,45.08004],[111.9713821,45.0836105],[111.9809036,45.0868683],[111.9890137,45.0874023],[112.0001221,45.0904007],[112.0089111,45.091835],[112.0199509,45.0927734],[112.0293579,45.0932846],[112.0410233,45.0932922],[112.05233,45.0930786],[112.0618286,45.095871],[112.0678101,45.0916443],[112.07444,45.0874023],[112.08078,45.0840797],[112.0887375,45.0807228],[112.1011276,45.0749969],[112.111351,45.0715981],[112.1197662,45.0716629],[112.1313629,45.0705223],[112.1417007,45.0700874],[112.1533585,45.0703163],[112.163063,45.0701218],[112.1733932,45.069458],[112.1859818,45.0689774],[112.2008514,45.068676],[112.2147522,45.0683937],[112.2228165,45.0677719],[112.2334518,45.0668678],[112.2437668,45.0659714],[112.2573318,45.0654602],[112.2673721,45.0657082],[112.2809372,45.0651932],[112.2977905,45.0657539],[112.306488,45.0648842],[112.3158417,45.0642281],[112.3265381,45.0646858],[112.3355484,45.0635796],[112.344902,45.0629196],[112.356842,45.0622063],[112.3671799,45.0619774],[112.3742828,45.0615959],[112.3853912,45.0640984],[112.3939514,45.0675774],[112.400177,45.0699501],[112.4057083,45.072361],[112.4138565,45.0747986],[112.4200974,45.0749664],[112.4255066,45.0741653],[112.4336319,45.0696564],[112.4372711,45.0666046],[112.4444275,45.0602722],[112.4529419,45.0555077],[112.4646072,45.0490723],[112.4705582,45.0448189],[112.4765091,45.0405693],[112.4840393,45.0355949],[112.4918213,45.0292435],[112.4973907,45.0238571],[112.5071487,45.0181465],[112.518837,45.012619],[112.5247726,45.0079079],[112.5274734,45.0035019],[112.5307922,44.9986229],[112.5440063,44.9845963],[112.5476532,44.9794807],[112.5531769,44.9734039],[112.5568619,44.9694328],[112.5614166,44.9636078],[112.5662766,44.9570923],[112.5755081,44.9474983],[112.5794907,44.943058],[112.5849609,44.9360733],[112.590889,44.9318161],[112.5977936,44.927536],[112.6063538,44.9243584],[112.6158066,44.9200134],[112.6215286,44.918045],[112.6275406,44.9156151],[112.634819,44.9126968],[112.6411133,44.9093437],[112.6467514,44.9060059],[112.6552124,44.9009972],[112.6637878,44.8982697],[112.6710663,44.8953476],[112.6804962,44.8905449],[112.6905823,44.8857231],[112.7019501,44.880867],[112.7092819,44.8790855],[112.7169189,44.8770676],[112.7314835,44.8716698],[112.7381134,44.868988],[112.7450867,44.8667526],[112.756813,44.8625717],[112.770813,44.8590164],[112.7832413,44.8561821],[112.7934418,44.8538628],[112.8090973,44.8514023],[112.8176804,44.8488922],[112.8243637,44.8471184],[112.8324585,44.841877],[112.843277,44.8390808],[112.8564301,44.8380508],[112.8634796,44.8371773],[112.8779907,44.8372536],[112.8851013,44.8377533],[112.8918762,44.8378029],[112.9076767,44.8380661],[112.920929,44.8386269],[112.9309692,44.8395004],[112.9380112,44.838623],[112.946579,44.8361092],[112.9551697,44.8340454],[112.9624634,44.8317909],[112.9717026,44.829937],[112.9803238,44.8285599],[112.9915237,44.8268814],[113.0037231,44.826088],[113.0133133,44.8246765],[113.0222397,44.8230591],[113.0301666,44.8207817],[113.0403214,44.8179817],[113.0507812,44.8149452],[113.0609436,44.8121452],[113.0694885,44.8096199],[113.080307,44.8072548],[113.0920563,44.8044052],[113.1034927,44.8013382],[113.1142731,44.7982864],[113.1276169,44.7953873],[113.1359634,44.794693],[113.14431,44.7942238],[113.1568222,44.7934036],[113.1715927,44.7925186],[113.181221,44.7920074],[113.1924362,44.7909966],[113.2030029,44.7900009],[113.2139206,44.7894478],[113.2248993,44.7898102],[113.2380524,44.7889671],[113.2469864,44.7875557],[113.2581711,44.7860794],[113.2687683,44.7855339],[113.2797089,44.7854347],[113.2893295,44.784687],[113.3005829,44.7843475],[113.3114166,44.7824173],[113.3223419,44.7820854],[113.3332901,44.7819824],[113.3448563,44.7816277],[113.3547668,44.7804108],[113.3683472,44.7813644],[113.3789368,44.7805786],[113.3931427,44.7810555],[113.4052505,44.7790756],[113.4157715,44.7773743],[113.4247437,44.776638],[113.4372864,44.7764702],[113.4488831,44.7763329],[113.4556122,44.7758942],[113.4630203,44.7758865],[113.4694519,44.7756844],[113.4762115,44.7756996],[113.4905701,44.7736397],[113.4972916,44.7729683],[113.505928,44.7720032],[113.5156097,44.7673454],[113.5277328,44.7605515],[113.5378036,44.7570229],[113.5444565,44.7554359],[113.5540237,44.7539787],[113.5646133,44.7534065],[113.5735321,44.7519722],[113.5812073,44.7512627],[113.5977936,44.7488899],[113.6066818,44.746994],[113.6126709,44.7453766],[113.6238098,44.7439575],[113.6365433,44.7455215],[113.6438065,44.7485085],[113.6531372,44.753231],[113.6635132,44.7590599],[113.6698837,44.7627335],[113.6805878,44.7687798],[113.6877213,44.7742615],[113.6975098,44.7807922],[113.7072372,44.7866402],[113.7157364,44.7929878],[113.7251892,44.7993011],[113.7340317,44.8060913],[113.7411575,44.8113365],[113.7483063,44.8168144],[113.755127,44.8223],[113.7605133,44.8255463],[113.7700272,44.8325424],[113.7762833,44.8389626],[113.7813034,44.8417587],[113.7919769,44.8468819],[113.8029709,44.8517647],[113.8128128,44.8541679],[113.8190536,44.8557816],[113.8253479,44.858078],[113.8354568,44.8597832],[113.8446503,44.8619804],[113.8504486,44.8663521],[113.8556366,44.8714333],[113.8631821,44.8729973],[113.8700638,44.8743591],[113.8769073,44.8800621],[113.8806686,44.8874817],[113.8814316,44.893631],[113.8872528,44.8982315],[113.8931885,44.9000816],[113.8974915,44.906105],[113.8985672,44.912014],[113.9068298,44.9146957],[113.9151917,44.9141693],[113.9251099,44.912899],[113.9360886,44.9129639],[113.9476624,44.9166679],[113.9549332,44.9189224],[113.9630966,44.9202309],[113.9715424,44.9208412],[113.9792709,44.9205627],[113.9886475,44.9206772],[114,44.9231606],[114.0455399,44.9235802],[114.0575485,44.9220924],[114.0901108,44.9390717],[114.1256027,44.9618568],[114.1333771,44.9666595],[114.1604919,44.9956169],[114.1710434,45.0225296],[114.1769714,45.0337906],[114.1910934,45.0420647],[114.2164307,45.0497513],[114.2962189,45.0955849],[114.3483963,45.1178169],[114.385643,45.1483536],[114.4233093,45.1772842],[114.4410019,45.1924019],[114.4561768,45.2060776],[114.514679,45.274231],[114.528038,45.2926674],[114.5309067,45.3067207],[114.5415878,45.3470955],[114.5469971,45.3825226],[114.744751,45.4350319],[114.7900085,45.4190788],[114.9443207,45.3749275],[114.9548035,45.3730812],[115.0017929,45.3756409],[115.1623383,45.3899918],[115.1718063,45.3906593],[115.2152405,45.3914261],[115.3567429,45.3871651],[115.3719711,45.3879814],[115.4157715,45.3985748],[115.5616226,45.4309006],[115.6874466,45.4526749],[115.7050705,45.4620857],[115.891983,45.5962753],[115.9254303,45.6266098],[115.9332504,45.6301498],[115.9828262,45.6422539],[116.0262222,45.6564903],[116.0283127,45.6654472],[116.0309219,45.6796799],[116.0458908,45.6819038],[116.06707,45.6839676],[116.0834503,45.6813889],[116.1090622,45.6745529],[116.1233673,45.6772194],[116.1309128,45.679493],[116.1341171,45.680172],[116.1454926,45.6808777],[116.1816025,45.6924858],[116.2123718,45.7170372],[116.2155228,45.7230225],[116.2167206,45.7285347],[116.2169266,45.7344933],[116.2171402,45.7409096],[116.2307205,45.7485962],[116.2584686,45.7678642],[116.2715607,45.7675209],[116.2816772,45.7701454],[116.2857666,45.7768097],[116.2786636,45.8085938],[116.2727737,45.8438225],[116.2580338,45.8620186],[116.2414703,45.8714905],[116.2374115,45.8785591],[116.2389297,45.8845291],[116.2453232,45.8937492],[116.2516632,45.9050331],[116.2618179,45.9401741],[116.2673035,45.9631348],[116.2740936,45.9684639],[116.2811203,45.9790649],[116.3638611,46.0752869],[116.3902893,46.1080246],[116.4100723,46.1260452],[116.4287872,46.134594],[116.4415131,46.1415634],[116.5334396,46.2247276],[116.5667419,46.2496796],[116.5804214,46.288475],[116.6234207,46.3082008],[116.6777573,46.3204079],[116.7515564,46.3304558],[116.7554321,46.3328171],[116.7575226,46.3342819],[116.7614212,46.3368607],[116.7690887,46.3406181],[116.7832031,46.3458786],[116.8108978,46.3521767],[116.8131409,46.3604317],[116.8150711,46.366169],[116.8189774,46.3735123],[116.8331299,46.3811264],[116.8573227,46.3731995],[116.8656006,46.37117],[116.8864288,46.3714714],[116.9075928,46.3701668],[116.9403305,46.3672905],[117.0927429,46.3548088],[117.1472626,46.3562584],[117.2034378,46.3595161],[117.2629166,46.3620567],[117.3603973,46.3581352],[117.3665466,46.3611374],[117.3723068,46.3668289],[117.3822708,46.3917885],[117.3730316,46.4085159],[117.3760376,46.426609],[117.3909912,46.4618683],[117.4059372,46.489109],[117.4418106,46.5243378],[117.4139862,46.5802383],[117.4216385,46.5821762],[117.4632034,46.5827103],[117.4708481,46.5861359],[117.4784927,46.5902443],[117.4884567,46.59412],[117.497757,46.5961647],[117.508049,46.595459],[117.5143433,46.5897179],[117.5259705,46.595192],[117.5329514,46.5979233],[117.5412521,46.5981331],[117.556839,46.5962677],[117.5793915,46.5932312],[117.591713,46.6007576],[117.6029663,46.5963745],[117.6158981,46.5922165],[117.6228485,46.5901299],[117.6287689,46.5807228],[117.6362915,46.5630646],[117.6339264,46.5566597],[117.636879,46.5509224],[117.6441422,46.5458641],[117.6866989,46.5150261],[117.7052231,46.5110664],[117.7304535,46.5166969],[117.7533722,46.522789],[117.7697067,46.5344009],[117.8037567,46.523716],[117.8223572,46.5268326],[117.8356628,46.5311203],[117.8446503,46.5354309],[117.8629913,46.5461044],[117.8558121,46.5566788],[117.8532486,46.566082],[117.8576126,46.5706406],[117.8749237,46.5762787],[117.8872375,46.5798798],[117.8933029,46.5880928],[117.8980026,46.5937958],[117.9040527,46.5999451],[117.9160538,46.6051445],[117.9224396,46.6115265],[117.9347229,46.6119156],[117.9473267,46.6113815],[117.9566116,46.6094971],[117.9682236,46.6087418],[117.9802094,46.6118736],[117.9806366,46.6194305],[117.9843979,46.6281128],[117.9956894,46.628273],[118.0079498,46.6263618],[118.0238571,46.6237411],[118.0438385,46.6277313],[118.0521469,46.6343193],[118.064827,46.6443291],[118.0725784,46.6496925],[118.0890808,46.6596222],[118.1051712,46.6657906],[118.1102371,46.671711],[118.1273117,46.6793709],[118.1406326,46.6806488],[118.161232,46.6800346],[118.1755371,46.6808434],[118.1931915,46.6829948],[118.2005463,46.6859131],[118.2082901,46.6911201],[118.2150269,46.6965599],[118.2177811,46.7020378],[118.2231827,46.7065735],[118.2309036,46.7106323],[118.2402496,46.7130737],[118.2558975,46.7136307],[118.2749405,46.718277],[118.2995377,46.7354698],[118.3112335,46.7378883],[118.3652725,46.7275429],[118.3892365,46.7280045],[118.4028397,46.7262688],[118.4127274,46.7213631],[118.435997,46.7050972],[118.4508896,46.7012825],[118.5401611,46.6927834],[118.5773773,46.6916847],[118.5964737,46.6976547],[118.6337433,46.7123413],[118.6504135,46.7139778],[118.6617203,46.7005577],[118.6675491,46.6943016],[118.6768265,46.6928177],[118.6878281,46.6940575],[118.7004929,46.6950455],[118.7104568,46.6944656],[118.7199783,46.6899948],[118.7295227,46.6857529],[118.7417374,46.6863098],[118.7549515,46.685009],[118.7655792,46.6867371],[118.7794418,46.686615],[118.7907867,46.6860504],[118.7919083,46.6936569],[118.7820435,46.7100525],[118.7892838,46.71912],[118.8021164,46.7265129],[118.8146515,46.7343636],[118.8174973,46.7411995],[118.8193512,46.747818],[118.8231735,46.7576141],[118.826149,46.7656403],[118.8353577,46.7703743],[118.8505783,46.7728806],[118.8641663,46.7737617],[118.8963623,46.7794456],[118.9067535,46.772377],[118.9129791,46.750885],[118.9146576,46.7400932],[118.9057617,46.7317467],[118.9151688,46.7236633],[118.9263229,46.718853],[118.9365692,46.715107],[118.9429169,46.7183685],[118.953598,46.7274208],[118.9611664,46.731144],[118.9726791,46.7360268],[118.9865799,46.7411156],[119.0005875,46.7418251],[119.0080566,46.7359886],[119.0118713,46.7302017],[119.0664673,46.6691246],[119.0758209,46.6604996],[119.0864029,46.6587334],[119.091568,46.654068],[119.0994034,46.6495934],[119.1002121,46.6440811],[119.1115036,46.6439056],[119.1195068,46.645153],[119.1305466,46.6472664],[119.145668,46.6520615],[119.1559906,46.6525841],[119.1744537,46.6483879],[119.1819916,46.6452866],[119.1952133,46.6430054],[119.2104797,46.6427498],[119.2175217,46.6444664],[119.2273407,46.6497993],[119.2345734,46.6473846],[119.2413635,46.642231],[119.2557831,46.6364861],[119.2896118,46.6168861],[119.2962799,46.6082916],[119.3190994,46.6058311],[119.3276901,46.604763],[119.3374786,46.6089401],[119.3426285,46.61343],[119.3496628,46.615139],[119.3554916,46.6111374],[119.3665924,46.6048164],[119.3743896,46.6060333],[119.4179306,46.6283264],[119.4325714,46.6374512],[119.4411774,46.6366005],[119.4486771,46.6332512],[119.4674301,46.6283188],[119.4922485,46.6260109],[119.5040436,46.6301384],[119.5130081,46.6299667],[119.5250168,46.6313362],[119.5523529,46.6333237],[119.5646133,46.6246033],[119.5815277,46.6160164],[119.5942688,46.6109505],[119.6023331,46.6130791],[119.6137772,46.616745],[119.6238403,46.6190605],[119.6325836,46.6216316],[119.6402817,46.6228523],[119.649231,46.6224365],[119.6592789,46.6203461],[119.66996,46.610096],[119.6753235,46.603569],[119.6789932,46.5963898],[119.6791229,46.5840111],[119.6889572,46.589077],[119.6988602,46.5950584],[119.7092438,46.5969009],[119.7188034,46.6028862],[119.7273102,46.6077461],[119.7367935,46.6119003],[119.7486572,46.6098137],[119.7557602,46.6126404],[119.7632065,46.6159172],[119.7738037,46.6221046],[119.7790298,46.6277199],[119.7844391,46.637001],[119.7914505,46.6450958],[119.7980499,46.651371],[119.8027267,46.6590576],[119.8060379,46.6660881],[119.8029327,46.677948],[119.817688,46.6736259],[119.8344727,46.6698189],[119.8506393,46.6671677],[119.8668289,46.6649742],[119.8820038,46.6623421],[119.8923111,46.6623383],[119.8968506,46.662693],[119.90522,46.677681],[119.912262,46.6903],[119.9199524,46.6981468],[119.925087,46.7081108],[119.9263611,46.71381],[119.9232864,46.7191505],[119.9140472,46.7278404],[119.8989334,46.7595787],[119.9056168,46.7674484],[119.9266968,46.7830048],[119.9289932,46.7891426],[119.9309616,46.7955132],[119.9299088,46.8012657],[119.9239731,46.8094215],[119.9200134,46.8170738],[119.9195099,46.8276291],[119.9194336,46.8397751],[119.9301376,46.8475494],[119.922493,46.84795],[119.9121628,46.8481865],[119.9053268,46.8520088],[119.9029236,46.8573341],[119.9004974,46.8695297],[119.9127884,46.9031639],[119.8905869,46.9068756],[119.8538971,46.9150276],[119.8463364,46.9319191],[119.8435974,46.9374809],[119.8492966,46.9449158],[119.862648,46.951725],[119.857132,46.9623871],[119.8477478,46.9619026],[119.8364334,46.962841],[119.8267899,46.971302],[119.8161774,46.9804688],[119.8100662,46.9856453],[119.8066101,46.990303],[119.7981033,47.0017128],[119.7833328,47.0224228],[119.7877579,47.0314903],[119.7961807,47.047348],[119.7993393,47.0578156],[119.7780914,47.0910416],[119.7638016,47.11586],[119.7534637,47.1316566],[119.7296219,47.1534653],[119.7228394,47.1593361],[119.7138367,47.1682281],[119.7117462,47.1739998],[119.705719,47.1915588],[119.6999664,47.1936646],[119.6880493,47.2015114],[119.6717224,47.2074852],[119.6610718,47.2210159],[119.6554031,47.2313156],[119.6413269,47.2397652],[119.624733,47.2503204],[119.6113663,47.2518463],[119.5960464,47.2490807],[119.5811386,47.2472153],[119.5719681,47.2458725],[119.5693665,47.2461777],[119.5669632,47.2464676],[119.557579,47.2495728],[119.5488281,47.2524643],[119.5536194,47.2549438],[119.5588989,47.2576714],[119.5593414,47.2647514],[119.5591888,47.2703171],[119.5591278,47.2723007],[119.5476913,47.2778816],[119.5539169,47.2859421],[119.5485077,47.2911224],[119.5543518,47.2985039],[119.5465927,47.3013306],[119.5441437,47.3022232],[119.536293,47.3006096],[119.5323334,47.307354],[119.5279617,47.3059654],[119.5230637,47.304409],[119.5173187,47.3153152],[119.508873,47.3203506],[119.5052032,47.323391],[119.5037384,47.324604],[119.5009232,47.3245354],[119.4909134,47.3242722],[119.4824524,47.3235893],[119.4751968,47.3263016],[119.4722366,47.3330116],[119.4765167,47.3350677],[119.4767532,47.3351746],[119.462677,47.3364754],[119.4558029,47.3398628],[119.4544296,47.3451576],[119.4481277,47.352417],[119.4437027,47.357338],[119.431633,47.3640671],[119.4265823,47.3756371],[119.4204865,47.3808289],[119.4077835,47.3827667],[119.3922272,47.3879814],[119.3818817,47.3896294],[119.3832092,47.3950844],[119.3679581,47.399601],[119.3634262,47.4086342],[119.3590164,47.414238],[119.3556595,47.4202728],[119.3426819,47.4233513],[119.3394165,47.4312134],[119.3309937,47.4312057],[119.3240891,47.4286385],[119.3220062,47.4277763],[119.3224182,47.4339867],[119.329567,47.4520607],[119.3544769,47.4726295],[119.3576431,47.4795952],[119.1976471,47.517498],[119.152977,47.5340233],[119.142807,47.5398521],[119.1410065,47.5495529],[119.1286774,47.6237144],[119.1236725,47.6558456],[119.1216812,47.6640396],[119.1096802,47.6679115],[118.7548218,47.7720795],[118.5853729,47.9615555],[118.5609131,47.987915],[118.5549316,47.9934616],[118.4601364,47.994915],[118.4428101,47.9966927],[118.4297791,48.0000076],[118.4227829,48.0080528],[118.4179382,48.013176],[118.4092636,48.0167885],[118.3862228,48.0134163],[118.3776703,48.0131493],[118.3672638,48.0165787],[118.3531799,48.0148354],[118.3488464,48.0103607],[118.3439102,48.0072708],[118.3363876,48.0069809],[118.329277,48.0082855],[118.3167419,48.0099373],[118.3072662,48.0115166],[118.2988663,48.0075874],[118.2932663,48.005764],[118.2849121,48.0091515],[118.2712097,48.0083122],[118.2652435,48.0116425],[118.2625198,48.0187912],[118.2568588,48.0216599],[118.2422867,48.0238075],[118.2362671,48.0264511],[118.2322617,48.0352249],[118.2277832,48.0412674],[118.2210388,48.0430107],[118.2086029,48.0403061],[118.1995163,48.0430183],[118.189621,48.0432281],[118.1779709,48.0425606],[118.1682205,48.0457382],[118.1565628,48.0448418],[118.1509171,48.0413017],[118.1421738,48.0366859],[118.134613,48.0357018],[118.1325073,48.0348282],[118.1228333,48.0393715],[118.1141891,48.0445824],[118.1027832,48.0416145],[118.0956726,48.0358162],[118.0856171,48.0325928],[118.0800095,48.0295067],[118.0742569,48.0232239],[118.0652771,48.0211182],[118.0495377,48.0202904],[118.0372696,48.0207672],[118.0382996,48.0134315],[118.0314331,48.0126572],[118.0246582,48.0137024],[118.0137329,48.0136909],[118.0086365,48.0144768],[118.0001602,48.0155563],[117.9877396,48.0125999],[117.9773026,48.0160027],[117.968811,48.0168533],[117.9574738,48.0152473],[117.9481964,48.0140533],[117.9399872,48.0137482],[117.9295197,48.0162354],[117.9231033,48.0177307],[117.9149628,48.0187988],[117.9034271,48.0208435],[117.8948669,48.0203133],[117.8916931,48.0222816],[117.8771286,48.0215378],[117.863472,48.0215225],[117.8494568,48.0210609],[117.8132706,48.0204773],[117.8085098,48.0186615],[117.8063507,48.0178375],[117.805687,48.0178909],[117.8029404,48.0178909],[117.7994232,48.0147438],[117.7928238,48.0111847],[117.7882538,48.0073662],[117.7839432,48.0000038],[117.51548,47.7787895],[117.5164337,47.7627602],[117.4824982,47.7566452],[117.3751831,47.6400414],[117.0869064,47.8203011],[116.8707886,47.8909378],[116.8197708,47.8948708],[116.6763763,47.8891983],[116.4555435,47.8391151],[116.4317932,47.837574],[116.2572327,47.8730469],[116.1078415,47.8167534],[116.1033401,47.8095894],[115.9537201,47.6843834],[115.9422531,47.6826515],[115.9305801,47.6801491],[115.5822906,47.9154396],[115.5734634,47.9211311],[115.5588608,48.0000076],[115.5470276,48.0594292],[115.5421295,48.1027145],[115.539299,48.1044769],[115.5354233,48.1066742],[115.5323029,48.1077423],[115.5283966,48.1101685],[115.5272598,48.1124306],[115.5271301,48.1149445],[115.5290222,48.1179619],[115.5306168,48.1200562],[115.5338669,48.1235619],[115.5384979,48.1266479],[115.5407333,48.1299019],[115.5413513,48.1310577],[115.5412369,48.1333427],[115.5387115,48.1358032],[115.536232,48.1373444],[115.5330734,48.1388702],[115.5314178,48.1388283],[115.5304794,48.140274],[115.5301132,48.1430092],[115.8134079,48.2588654],[115.7941971,48.5224152],[116.071373,48.8193779],[116.0363388,48.867382],[116.7192764,49.8471451],[117.0604935,49.6884041],[117.0912628,49.6751137],[117.1273499,49.6635933],[117.1796417,49.6519089],[117.2147293,49.6444893],[117.2480164,49.636158],[117.2658768,49.6309471],[117.2711105,49.6303978],[117.271759,49.6303291],[117.2876663,49.6286659],[117.3211365,49.6276321],[117.3708572,49.6284637],[117.4255219,49.6292229],[117.4551163,49.6288757],[117.4709396,49.6270905],[117.7979507,49.5220985],[117.8089828,49.5268593],[117.814888,49.5336151],[117.8228378,49.5382767],[117.8304214,49.5427208],[117.8321686,49.5424614],[117.8341293,49.5472298],[117.8428192,49.5527878],[117.8363113,49.5570221],[117.8419571,49.5653801],[117.8481369,49.5700722],[117.852623,49.5757103],[117.8529282,49.5827942],[117.8556366,49.588459],[117.8624725,49.5917664],[117.8734818,49.5936279],[117.8841629,49.595726],[117.8908615,49.5960617],[117.901062,49.5956459],[117.9124603,49.5981827],[117.924469,49.598877],[117.9315033,49.5985184],[117.9396133,49.5983696],[117.9478226,49.6007347],[117.945549,49.6051216],[117.9432831,49.6095047],[117.9521408,49.6104851],[117.9634705,49.6114159],[117.9670868,49.6134071],[117.9736786,49.6187706],[117.9832764,49.6204224],[117.9948578,49.6192856],[118.0046463,49.6175041],[118.0056686,49.6145134],[118.0095367,49.6145172],[118.0127182,49.6149826],[118.0158997,49.6136169],[118.018013,49.6133881],[118.0208282,49.6140747],[118.0240021,49.6152229],[118.0246964,49.6161423],[118.0246964,49.6172829],[118.0257568,49.6193428],[118.0282135,49.6218605],[118.0282135,49.6220894],[118.0310364,49.620266],[118.0324631,49.6186638],[118.0359879,49.6143227],[118.0377502,49.6122704],[118.0395126,49.6115837],[118.0430374,49.6120453],[118.0444489,49.6134148],[118.0458527,49.6150208],[118.048317,49.6168518],[118.0500793,49.6170807],[118.0543137,49.6173134],[118.058197,49.6150322],[118.0606613,49.6143494],[118.0634766,49.6138954],[118.067009,49.6134415],[118.0684204,49.6138992],[118.0691223,49.6145821],[118.0687637,49.6170998],[118.0687637,49.6177826],[118.0673523,49.6180115],[118.0641785,49.6184654],[118.0641785,49.6209831],[118.0645294,49.6216698],[118.0655899,49.6228104],[118.0687637,49.6239586],[118.0694733,49.6239586],[118.071579,49.624649],[118.0733414,49.6260185],[118.0729828,49.6280785],[118.0722809,49.6289902],[118.0708694,49.6294479],[118.0677032,49.6299019],[118.0638123,49.6305847],[118.0606384,49.6310387],[118.0578232,49.6314964],[118.0542908,49.6314926],[118.0539398,49.6337814],[118.0553436,49.6360664],[118.0567627,49.636982],[118.0623932,49.6388168],[118.0648727,49.6388168],[118.0687408,49.6392784],[118.0729828,49.6404228],[118.076149,49.6417999],[118.0789566,49.6436348],[118.0831985,49.6434021],[118.086731,49.640892],[118.0892029,49.6365509],[118.0930786,49.6372414],[118.0934296,49.6386108],[118.095192,49.6418114],[118.0976562,49.6441002],[118.1011887,49.646389],[118.103653,49.6475334],[118.1050568,49.6477661],[118.1050568,49.6482201],[118.1071777,49.6509666],[118.1075287,49.6534805],[118.1075287,49.6555405],[118.1068268,49.6585121],[118.1061172,49.6626244],[118.105423,49.6658249],[118.1078796,49.6674309],[118.1103516,49.6681175],[118.1149368,49.6688042],[118.1184692,49.6681175],[118.1269379,49.6665192],[118.1336365,49.6649208],[118.1354065,49.6649208],[118.1389313,49.6649246],[118.1392899,49.6633224],[118.1403427,49.6601219],[118.1421127,49.6582909],[118.1435165,49.657608],[118.1484604,49.6573792],[118.1509171,49.6569214],[118.1533966,49.6571503],[118.154808,49.6576118],[118.156929,49.6592102],[118.1579895,49.6608124],[118.1586914,49.663784],[118.158699,49.6656151],[118.15905,49.6672134],[118.158699,49.6697273],[118.1594086,49.6722412],[118.1604691,49.6731567],[118.1618805,49.6736183],[118.1643524,49.6749878],[118.1654129,49.6756744],[118.1678772,49.6777344],[118.1692963,49.678875],[118.1699982,49.6800194],[118.1707077,49.6813927],[118.1721191,49.6832199],[118.1742401,49.6852798],[118.1756516,49.6832199],[118.1763535,49.68116],[118.177063,49.6784172],[118.1809387,49.6770439],[118.1841202,49.6784134],[118.1865921,49.6804733],[118.1887131,49.6825294],[118.1922531,49.6852722],[118.1936569,49.6866455],[118.1957932,49.6887016],[118.1993179,49.6907616],[118.2014389,49.6921272],[118.2035599,49.6935005],[118.2070923,49.6957855],[118.2085037,49.6976166],[118.2092133,49.6983032],[118.2095718,49.7008171],[118.2088699,49.7035637],[118.2071075,49.704937],[118.2049866,49.7081337],[118.2049866,49.7085915],[118.2060471,49.7111092],[118.2067566,49.7115669],[118.2078171,49.7122498],[118.2095871,49.7129364],[118.2124176,49.7131653],[118.2145386,49.7138519],[118.2170105,49.7143021],[118.2209015,49.7152176],[118.2233734,49.7161293],[118.223732,49.7170448],[118.2240906,49.7188759],[118.2240906,49.7195625],[118.2230301,49.7211609],[118.2216187,49.7220764],[118.2202072,49.7227631],[118.2173767,49.7241364],[118.2156219,49.7245941],[118.2124481,49.7261963],[118.2099762,49.7277985],[118.2103271,49.7300873],[118.2135086,49.7307701],[118.2170486,49.7303123],[118.220932,49.7298546],[118.224823,49.7284813],[118.2283478,49.7273293],[118.2311783,49.7282448],[118.2315292,49.7293892],[118.2304764,49.7319031],[118.2297668,49.7321358],[118.228363,49.7344208],[118.2294235,49.7353325],[118.2311935,49.7353325],[118.2322464,49.7351036],[118.2347183,49.734417],[118.2375488,49.7337303],[118.2403717,49.7328148],[118.2428436,49.7318954],[118.244957,49.7321243],[118.2463837,49.7332649],[118.2488632,49.7371521],[118.2517014,49.7403488],[118.2587738,49.7401161],[118.2644196,49.7403374],[118.2722015,49.7410164],[118.2806931,49.7428398],[118.2856522,49.7464905],[118.2856522,49.7485504],[118.2856598,49.7496948],[118.2853088,49.751297],[118.2856674,49.7524376],[118.2867279,49.7531204],[118.288147,49.7542648],[118.2885132,49.7544937],[118.2930984,49.754715],[118.2945175,49.754715],[118.2994614,49.7542534],[118.3012314,49.7547035],[118.3019409,49.7549324],[118.30159,49.755619],[118.301239,49.7579079],[118.3009033,49.75951],[118.3026733,49.7613373],[118.3040771,49.7617912],[118.3065567,49.7629318],[118.3086929,49.7631607],[118.3108063,49.763382],[118.3136368,49.7645226],[118.3164673,49.7658882],[118.317543,49.7658882],[118.3200073,49.7647438],[118.3221283,49.7638245],[118.3235397,49.7635956],[118.3274307,49.7633591],[118.3299026,49.7638168],[118.3302612,49.763813],[118.3313217,49.7649574],[118.3313293,49.7654152],[118.331337,49.7679253],[118.3309937,49.7690697],[118.3306427,49.7702141],[118.3313522,49.7709007],[118.3313522,49.7711296],[118.3327637,49.7711296],[118.3345337,49.7702103],[118.3373489,49.7688332],[118.3408813,49.7676849],[118.3426514,49.7676849],[118.34478,49.768364],[118.3451309,49.7690506],[118.3458481,49.770649],[118.3462067,49.7722511],[118.3462219,49.7743073],[118.3487015,49.775444],[118.3518829,49.7756729],[118.3568268,49.7756615],[118.3617935,49.7761078],[118.3688736,49.7763252],[118.3727493,49.7758636],[118.3752365,49.7776871],[118.3741837,49.7795181],[118.3727798,49.7804375],[118.3703079,49.7822723],[118.3671265,49.7841034],[118.3657303,49.7854805],[118.3667984,49.78685],[118.3682175,49.7879906],[118.3703384,49.7879868],[118.374939,49.7879791],[118.3806,49.7877388],[118.3827133,49.7868233],[118.38414,49.7893333],[118.3813324,49.7925377],[118.37957,49.7936859],[118.3781662,49.7962036],[118.3795929,49.798027],[118.3817215,49.8000832],[118.3863373,49.8019028],[118.3884735,49.8028145],[118.3895264,49.8035011],[118.3898926,49.8050957],[118.3891907,49.8067017],[118.3870773,49.8085365],[118.3853073,49.8103676],[118.3832092,49.813343],[118.381813,49.8156319],[118.3800507,49.8188362],[118.3793488,49.8195229],[118.3807831,49.8220367],[118.3818512,49.8234062],[118.3832703,49.8240929],[118.3850403,49.8247757],[118.3878708,49.8247681],[118.388443,49.8248367],[118.3931808,49.8245277],[118.3974304,49.8238373],[118.4023666,49.8226814],[118.4083862,49.8208389],[118.4133377,49.8201408],[118.4161682,49.8199081],[118.4197235,49.8210411],[118.4222107,49.8240128],[118.4236374,49.8262901],[118.4236526,49.826519],[118.4247208,49.8285751],[118.428627,49.8308563],[118.4314728,49.8317642],[118.4350128,49.8326683],[118.4406815,49.8331108],[118.4445724,49.8331032],[118.450943,49.8319473],[118.4544678,49.829422],[118.455162,49.8282738],[118.4562073,49.825531],[118.4583206,49.8234634],[118.4639664,49.8223038],[118.4689331,49.8218384],[118.4717636,49.8222885],[118.4731827,49.8232002],[118.4742584,49.8245659],[118.4739227,49.8261719],[118.4725113,49.8282318],[118.4714584,49.8293762],[118.4693527,49.8309822],[118.4679413,49.8319016],[118.4668808,49.8328209],[118.4665298,49.8330498],[118.4669037,49.8357925],[118.4683228,49.8364716],[118.4729385,49.8382912],[118.4772034,49.8389664],[118.4814529,49.83918],[118.4860535,49.8389397],[118.488533,49.8393898],[118.4896088,49.8414421],[118.4889069,49.843277],[118.4871597,49.844883],[118.4846878,49.8462601],[118.4822235,49.8474121],[118.4808121,49.8485565],[118.4794083,49.8510742],[118.4794235,49.8531342],[118.4801407,49.8542747],[118.4815826,49.8563309],[118.4819489,49.8586159],[118.4819565,49.8604431],[118.4798508,49.8627396],[118.4787979,49.8645706],[118.4788132,49.8654861],[118.4788208,49.8673134],[118.4788589,49.8721161],[118.4810028,49.8746262],[118.4820709,49.875309],[118.4859772,49.8766708],[118.4898834,49.8773422],[118.4955521,49.8777847],[118.5015869,49.8784523],[118.5054932,49.8788986],[118.5115204,49.880024],[118.5150833,49.8820686],[118.5204163,49.8841095],[118.525383,49.8843231],[118.5285873,49.8866043],[118.5286026,49.887516],[118.5279236,49.8902626],[118.5272064,49.891407],[118.5258179,49.8939285],[118.5251236,49.8959885],[118.5237198,49.8971405],[118.5219574,49.8982849],[118.5233765,49.8987389],[118.5265732,49.8996429],[118.5287094,49.9000931],[118.5318985,49.9003105],[118.5340271,49.8998489],[118.5379333,49.9000664],[118.5425262,49.8991356],[118.5457077,49.8979797],[118.5495987,49.8970528],[118.5506821,49.899334],[118.5496216,49.8995667],[118.5482178,49.9009476],[118.5467987,49.9014053],[118.5425568,49.9034767],[118.5418625,49.9041672],[118.5418625,49.9043961],[118.5432968,49.9064484],[118.5457764,49.9068985],[118.5486221,49.9068871],[118.5507507,49.9064255],[118.5539627,49.9084702],[118.5532608,49.9096146],[118.5532837,49.9116707],[118.5522308,49.9139671],[118.5519028,49.9160233],[118.5515671,49.9187698],[118.5523071,49.9221992],[118.5530396,49.9247093],[118.5541229,49.9265366],[118.5580521,49.9297218],[118.5587616,49.9304047],[118.5623169,49.9313087],[118.5651474,49.9296989],[118.5658493,49.9292374],[118.5686569,49.9269447],[118.5693665,49.9264793],[118.5732574,49.9248657],[118.573967,49.9250946],[118.5764465,49.9253159],[118.5792999,49.9257622],[118.5817871,49.9264412],[118.5839233,49.9268875],[118.5864105,49.9268799],[118.5895996,49.9270973],[118.5913773,49.9270859],[118.5956268,49.9266129],[118.5991669,49.9261475],[118.6005936,49.9261398],[118.6037827,49.9263573],[118.607338,49.9270287],[118.6080627,49.9274826],[118.6080704,49.9293137],[118.609169,49.9327393],[118.6095734,49.9375381],[118.6159973,49.9418564],[118.6220016,49.9384079],[118.6315536,49.9347076],[118.6322632,49.9351616],[118.6411667,49.9390106],[118.6423035,49.9449501],[118.6483917,49.9497261],[118.6579971,49.9517441],[118.6689835,49.9505539],[118.6806793,49.9489021],[118.6887589,49.9479294],[118.6986465,49.9468727],[118.7082367,49.9467354],[118.7082367,49.9469643],[118.7167664,49.9472961],[118.7246094,49.9478683],[118.7380981,49.9478951],[118.7453918,49.9532738],[118.7511673,49.9559288],[118.7600327,49.9556847],[118.7636032,49.9557037],[118.7753525,49.9566765],[118.7847214,49.9604301],[118.7912369,49.9639969],[118.800209,49.9663773],[118.8079529,49.9644318],[118.8173981,49.960865],[118.8241882,49.9621353],[118.8281937,49.9643555],[118.8371429,49.9664993],[118.8460464,49.9672737],[118.8564072,49.9689407],[118.85952,49.9757538],[118.8667603,49.9792938],[118.8760986,49.9818878],[118.8766403,49.9775352],[118.8768082,49.9727325],[118.8861237,49.9748688],[118.886528,49.9760056],[118.8930206,49.9786453],[118.9023666,49.9814644],[118.9098587,49.982029],[118.916748,49.9855766],[118.9204407,49.9891739],[118.9268875,49.9904404],[118.926857,49.9897575],[118.9352264,49.9857292],[118.9444504,49.9853477],[118.9548187,49.9870033],[118.9617386,49.9825249],[118.9695435,49.9819565],[118.97509,49.9788933],[118.9805832,49.9742241],[118.9871368,49.9780006],[118.9925995,49.9813385],[119.0015335,49.9823265],[119.0114975,49.9828453],[119.0196991,49.9836159],[119.0304489,49.9857178],[119.0318832,49.9861526],[119.0406265,49.9830246],[119.0454712,49.9797401],[119.0513229,49.9837532],[119.0567932,49.9868584],[119.0635986,49.9883385],[119.0724792,49.9881821],[119.0790482,49.9921799],[119.0810471,49.9974022],[119.0895309,49.9963379],[119.0996399,49.9998169],[119.1051712,50.0045204],[119.1078568,50.0090446],[119.1115875,50.0128632],[119.1202316,50.0154495],[119.1285019,50.0175858],[119.1317673,50.018898],[119.1337738,50.0238914],[119.1367798,50.0277214],[119.1434326,50.0253143],[119.1514893,50.0226555],[119.1514282,50.0292816],[119.1512909,50.0340843],[119.1599426,50.0366707],[119.1664581,50.0312958],[119.1736908,50.033905],[119.1721573,50.0394173],[119.1695099,50.0435829],[119.1766129,50.0434532],[119.185463,50.0423775],[119.1885223,50.047123],[119.1819229,50.0504417],[119.1755676,50.0517044],[119.1684189,50.0589218],[119.1774063,50.0608215],[119.1765671,50.0658646],[119.1743622,50.0720749],[119.1808777,50.0744705],[119.1793289,50.079525],[119.1799164,50.0847702],[119.1890411,50.0816307],[119.1963501,50.0780716],[119.2038803,50.0792961],[119.2097931,50.0762177],[119.2123718,50.0704536],[119.21241,50.0713654],[119.2235565,50.0736656],[119.2321167,50.074192],[119.2330704,50.0792007],[119.2344437,50.0855751],[119.2395782,50.0813637],[119.2450867,50.0773735],[119.2488708,50.0821037],[119.2463608,50.0892334],[119.2448273,50.0947533],[119.2489777,50.0994759],[119.2583237,50.1011276],[119.2586288,50.1077499],[119.2706528,50.1059265],[119.2788086,50.1050835],[119.2817764,50.1075401],[119.2845383,50.1132011],[119.2845306,50.1205139],[119.280098,50.1247177],[119.2821732,50.1306152],[119.2880173,50.1337051],[119.2938614,50.1292496],[119.3003922,50.1316338],[119.3020782,50.1370888],[119.310997,50.1371422],[119.3059921,50.1443253],[119.3065567,50.1486626],[119.3035965,50.1537437],[119.292511,50.1530457],[119.2920227,50.1576309],[119.2988968,50.1600113],[119.3085785,50.1609688],[119.3157272,50.1612854],[119.3274765,50.1610603],[119.3330231,50.1637726],[119.3333282,50.1639214],[119.3300171,50.169239],[119.3263168,50.1736565],[119.3255615,50.1800728],[119.3301773,50.1870689],[119.3424835,50.1904831],[119.3490829,50.1940079],[119.3494186,50.2008629],[119.3475037,50.2054749],[119.338768,50.2019882],[119.3298721,50.2026291],[119.324379,50.2070808],[119.3181915,50.2120094],[119.3153763,50.2129822],[119.3084488,50.2172318],[119.3061905,50.2223015],[119.3050003,50.2271271],[119.3059998,50.2330589],[119.310463,50.2366333],[119.3130264,50.2379532],[119.3220367,50.23983],[119.3310928,50.2421646],[119.325943,50.2463837],[119.3251419,50.2521133],[119.3361969,50.2516708],[119.3354111,50.2574005],[119.3275528,50.2575531],[119.3215866,50.2599564],[119.3203964,50.2645531],[119.3234406,50.268383],[119.3236771,50.273407],[119.3188477,50.2769356],[119.3137131,50.2813797],[119.3240738,50.2814026],[119.3347931,50.281189],[119.3368073,50.2859612],[119.338562,50.2925568],[119.3388901,50.2991714],[119.3433533,50.3025169],[119.3748398,50.3172073],[119.3678589,50.3207817],[119.3596497,50.3211746],[119.352478,50.3208618],[119.3462067,50.3244133],[119.348587,50.3289413],[119.3587799,50.3323975],[119.3597565,50.3378639],[119.3495865,50.3421822],[119.3555527,50.3468628],[119.3479614,50.3525047],[119.3415833,50.353775],[119.3294601,50.3549309],[119.3238678,50.3577843],[119.316391,50.3586159],[119.3103027,50.3511887],[119.3026962,50.3495102],[119.2952728,50.3514862],[119.2949982,50.3457718],[119.2950974,50.3405113],[119.2856216,50.3443565],[119.2797165,50.3481255],[119.278862,50.3527184],[119.2747421,50.3564568],[119.2666931,50.3602676],[119.2584229,50.3595123],[119.2566605,50.3526917],[119.2457886,50.3499222],[119.2454224,50.3421555],[119.2440033,50.3421822],[119.2365036,50.3427811],[119.2265091,50.3434296],[119.2200012,50.3497238],[119.2214508,50.3577003],[119.2195129,50.3620834],[119.2112427,50.3613243],[119.1998978,50.3562775],[119.1921768,50.3518486],[119.1829376,50.3456154],[119.1728973,50.3453445],[119.1673737,50.3497887],[119.1757278,50.3523788],[119.1794891,50.3562012],[119.172081,50.3586235],[119.1637726,50.3571739],[119.1548004,50.3566551],[119.1480865,50.3588295],[119.1480026,50.3647804],[119.1578522,50.3687172],[119.1585007,50.3751068],[119.1496277,50.3768692],[119.1455612,50.3819733],[119.1389618,50.3866615],[119.1284027,50.38274],[119.1232224,50.3791771],[119.1138763,50.3786545],[119.115593,50.3848],[119.1208267,50.3899651],[119.1286774,50.3971367],[119.1310883,50.4028091],[119.1345367,50.4077797],[119.1417236,50.4081078],[119.1505432,50.4129753],[119.1576538,50.4192467],[119.1657867,50.417038],[119.1708679,50.4183159],[119.178009,50.4177284],[119.1861267,50.4150658],[119.1923599,50.4101486],[119.1982498,50.4056969],[119.2010803,50.4127274],[119.2017365,50.4191208],[119.2077332,50.4247246],[119.2119064,50.4296722],[119.212532,50.435379],[119.2219391,50.4370346],[119.228157,50.4396591],[119.23246,50.439579],[119.23703,50.4452057],[119.2351074,50.4500427],[119.2285538,50.4556541],[119.2316132,50.459713],[119.2381973,50.4625626],[119.2472763,50.4646759],[119.2511673,50.4710045],[119.2483215,50.4790611],[119.2497406,50.4863472],[119.2445679,50.4907913],[119.2317734,50.4935493],[119.2269211,50.4972954],[119.231041,50.5008812],[119.240097,50.5027657],[119.250412,50.5080566],[119.2539291,50.5139351],[119.2567596,50.5205116],[119.255188,50.525341],[119.2530136,50.5324707],[119.2578888,50.5367241],[119.2649231,50.5409355],[119.2690964,50.5456543],[119.268013,50.5527649],[119.2576599,50.5545616],[119.2593765,50.5604706],[119.2649994,50.5651703],[119.271637,50.5686989],[119.2857895,50.5711708],[119.2854691,50.5794067],[119.2849503,50.5835342],[119.2759094,50.590107],[119.2699966,50.5943375],[119.2697067,50.5959435],[119.2717972,50.6018448],[119.2752609,50.6065826],[119.2816162,50.6114922],[119.289917,50.6120148],[119.2982025,50.6118546],[119.3037415,50.6147194],[119.311058,50.6170921],[119.3187332,50.6194572],[119.3208008,50.6249046],[119.3229065,50.6312637],[119.3246231,50.6367188],[119.3314972,50.6374969],[119.3344727,50.6317253],[119.3385162,50.6263885],[119.3462372,50.6296616],[119.3508377,50.6350594],[119.3554077,50.6399994],[119.3596268,50.645401],[119.3638,50.6494331],[119.3690186,50.6529884],[119.3753662,50.6574287],[119.3766708,50.6617508],[119.3754807,50.6668053],[119.372818,50.6712036],[119.3742828,50.6787186],[119.3763428,50.6837082],[119.3841934,50.6821785],[119.3928375,50.682003],[119.3990173,50.6832504],[119.4056015,50.6849442],[119.4157715,50.6863289],[119.4225235,50.6843567],[119.4320068,50.6864433],[119.4365311,50.6902351],[119.4393005,50.6949844],[119.4403763,50.7018204],[119.4417877,50.7081871],[119.4487991,50.7112465],[119.4534836,50.7180099],[119.456337,50.7243576],[119.46138,50.7311096],[119.4663391,50.7362709],[119.4738235,50.7411499],[119.4862595,50.7443314],[119.4929276,50.7476196],[119.493187,50.7524185],[119.4941788,50.7576523],[119.4936676,50.7615547],[119.4877472,50.7657928],[119.4872589,50.7701454],[119.4907227,50.7739601],[119.4931564,50.7793961],[119.4960022,50.7852783],[119.5036621,50.7864952],[119.5092087,50.7888908],[119.506897,50.7930527],[119.5019989,50.7961273],[119.4978638,50.7998772],[119.4963608,50.8056221],[119.4973373,50.8104057],[119.4976273,50.8158875],[119.4914627,50.8224182],[119.4877319,50.8270645],[119.4831085,50.835392],[119.4848633,50.8410759],[119.4900589,50.843708],[119.4943619,50.8429298],[119.5009995,50.8384476],[119.5079727,50.8403587],[119.5067978,50.8454132],[119.5002365,50.8514977],[119.5026474,50.855793],[119.5113831,50.8567505],[119.5195923,50.8613739],[119.5181274,50.8678093],[119.5173111,50.87286],[119.5262222,50.8770142],[119.5218124,50.8825951],[119.5165329,50.8852234],[119.5043182,50.8873062],[119.5060272,50.8923035],[119.5091095,50.8956642],[119.5163574,50.9023705],[119.5205307,50.905941],[119.5262299,50.9108505],[119.5322495,50.9150658],[119.5385895,50.9183617],[119.5449066,50.921196],[119.5572968,50.9291649],[119.5614471,50.9389038],[119.5631638,50.9436684],[119.5675507,50.9508896],[119.5726318,50.9576416],[119.5768204,50.9612122],[119.580513,50.9688988],[119.5838928,50.9777451],[119.5870132,50.9815674],[119.5943909,50.9839172],[119.6047592,50.9875832],[119.612648,50.9924355],[119.6181335,50.9996338],[119.6199036,51.0053101],[119.6248322,51.0090904],[119.6391296,51.0115166],[119.6481934,51.0110855],[119.6569901,51.012722],[119.6647034,51.0141487],[119.6747894,51.0191803],[119.6812592,51.0242958],[119.6773834,51.0262108],[119.673233,51.0299606],[119.6817627,51.0331955],[119.6891327,51.0348625],[119.6945801,51.0349731],[119.6951981,51.0392952],[119.6998062,51.0435333],[119.7101364,51.0462685],[119.7140732,51.0514412],[119.7142181,51.06036],[119.7082977,51.0648346],[119.7023392,51.0686264],[119.7100983,51.0707359],[119.7173309,51.0701141],[119.7249985,51.0706291],[119.7335434,51.073864],[119.7338333,51.0786629],[119.7344513,51.0832214],[119.7433472,51.0859871],[119.7508087,51.0892487],[119.7528687,51.0933151],[119.7517395,51.0988274],[119.7392807,51.1034584],[119.7406235,51.1077728],[119.738327,51.1121674],[119.7400818,51.117157],[119.7460327,51.1193085],[119.7559662,51.1213646],[119.7621536,51.1271706],[119.7640305,51.1344414],[119.7639771,51.1397018],[119.7657166,51.1446915],[119.770813,51.1505165],[119.7645721,51.1559219],[119.7525787,51.1564217],[119.7495499,51.1606102],[119.7555008,51.1627579],[119.7645111,51.1611786],[119.775322,51.1652718],[119.7771072,51.170948],[119.7744827,51.1755829],[119.7665863,51.1778221],[119.7614365,51.1832008],[119.7589569,51.1905746],[119.7549973,51.1975212],[119.7506866,51.204937],[119.7524338,51.2096977],[119.761322,51.2120056],[119.7689438,51.2173195],[119.7776031,51.22192],[119.7887115,51.218689],[119.7908936,51.2124672],[119.7930527,51.2057838],[119.8009262,51.2094879],[119.8059311,51.2139435],[119.8102722,51.2193298],[119.8087769,51.2248535],[119.8013229,51.2282257],[119.7937775,51.2302284],[119.7860031,51.2342987],[119.7830582,51.2400818],[119.7861176,51.242527],[119.7947464,51.2464409],[119.8015594,51.2503967],[119.8094025,51.2534142],[119.8146973,51.2564926],[119.810997,51.2618332],[119.8049469,51.2642632],[119.8013611,51.2714348],[119.8053207,51.2765961],[119.8110809,51.2812653],[119.8224106,51.2873993],[119.831398,51.2910767],[119.8430862,51.2910271],[119.8543167,51.2896156],[119.8617935,51.2921867],[119.869339,51.2961159],[119.872551,51.3008423],[119.8729477,51.3072357],[119.8721313,51.3177681],[119.8671494,51.3258934],[119.8674469,51.3306847],[119.8739471,51.335331],[119.8799667,51.3381577],[119.8913727,51.3390312],[119.9020386,51.3401451],[119.9113388,51.3426628],[119.9156265,51.3468933],[119.9210968,51.3524704],[119.9228668,51.3574448],[119.9202118,51.3616219],[119.913063,51.3643112],[119.9013214,51.3696136],[119.8939133,51.373909],[119.8901291,51.3778839],[119.8929977,51.3828392],[119.895813,51.3868904],[119.90522,51.3910103],[119.9201431,51.3895073],[119.9325638,51.3892097],[119.9410095,51.3896942],[119.9481277,51.3922691],[119.9545135,51.3948631],[119.9588928,51.4002533],[119.9611588,51.4072876],[119.9590836,51.4148788],[119.9593887,51.4196663],[119.9592972,51.4240036],[119.9596329,51.4292526],[119.9650803,51.4341507],[119.9734879,51.4396591],[119.9793015,51.4445534],[119.9829636,51.4501801],[119.9825668,51.4554558],[119.9788971,51.4561996],[119.9784927,51.4612389],[119.9751663,51.4665794],[119.9723816,51.4739914],[119.9628906,51.4804001],[119.9661407,51.4853516],[119.9711685,51.4893417],[119.9701233,51.4959984],[119.9687119,51.5026627],[119.972908,51.5050735],[119.9826431,51.5080299],[119.9913788,51.5126152],[120.0008011,51.5164986],[120.0319672,51.5221252],[120.0355301,51.5288887],[120.0378799,51.5371475],[120.0474396,51.5446815],[120.0570374,51.5484581],[120.05336,51.5589523],[120.0557175,51.5657043],[120.0460434,51.5739288],[120.0423737,51.5829201],[120.0507202,51.5934486],[120.0482483,51.6031914],[120.0602417,51.6092262],[120.0589981,51.6152229],[120.0661774,51.6212463],[120.0661163,51.6302452],[120.0781174,51.6377792],[120.0973663,51.6408348],[120.1081924,51.6461143],[120.1105576,51.6528702],[120.1081314,51.6566124],[120.0935974,51.6685791],[120.0935669,51.6738243],[120.1032028,51.6768532],[120.1333694,51.6701775],[120.1562729,51.67173],[120.177948,51.674778],[120.1984177,51.682312],[120.2092209,51.6965866],[120.2248688,51.7056122],[120.2308807,51.7123718],[120.240509,51.7213898],[120.2622223,51.7244148],[120.2718582,51.7319298],[120.2766724,51.7401848],[120.287529,51.7446976],[120.3020172,51.7469635],[120.3140564,51.769474],[120.3225098,51.7777328],[120.3285522,51.7799873],[120.3672104,51.7837563],[120.3720474,51.7867584],[120.379303,51.8002625],[120.3853531,51.8040123],[120.4046936,51.8055153],[120.413147,51.8115196],[120.4059067,51.8220177],[120.4083405,51.8287659],[120.4143906,51.8325157],[120.4531097,51.8377647],[120.4627838,51.8385086],[120.4809494,51.8445015],[120.4906464,51.8512421],[120.4906616,51.8579979],[120.4822235,51.8684998],[120.4822311,51.8737488],[120.4895096,51.8789902],[120.500412,51.8827324],[120.5088882,51.8827286],[120.5246124,51.8774681],[120.5354996,51.8729591],[120.551239,51.8744431],[120.5609589,51.8819275],[120.5573807,51.896183],[120.5586166,51.9036789],[120.5634766,51.9066734],[120.5743866,51.9074097],[120.5852737,51.9036446],[120.5937729,51.9043846],[120.618042,51.9133453],[120.6580734,51.9185219],[120.6678238,51.9275017],[120.6691818,51.9514961],[120.6996231,51.9686775],[120.7033005,51.9739189],[120.7179565,51.987381],[120.7073669,52.0003624],[120.7093964,52.0027084],[120.7095871,52.0049934],[120.7095032,52.006134],[120.7097321,52.0077362],[120.7094727,52.0109215],[120.7074966,52.0122299],[120.7038879,52.0155373],[120.6980133,52.019455],[120.6929092,52.0227089],[120.6894302,52.0244217],[120.6855774,52.026123],[120.683197,52.0278702],[120.6818771,52.0303421],[120.6801224,52.0337029],[120.6788177,52.0359459],[120.6795502,52.0405312],[120.6817398,52.0453949],[120.6870728,52.0526428],[120.6911469,52.057106],[120.6952591,52.061348],[120.7011719,52.0661011],[120.7049103,52.0703278],[120.7086411,52.0745544],[120.7154236,52.0779686],[120.7215805,52.0797615],[120.7275085,52.0799522],[120.7347565,52.0774422],[120.7382126,52.0761871],[120.7421188,52.0783653],[120.7457123,52.0798492],[120.7466431,52.0821571],[120.7452469,52.085537],[120.7408905,52.0888214],[120.7388763,52.09058],[120.7368088,52.0932541],[120.7372971,52.0962334],[120.7382965,52.0976372],[120.7422104,52.0998154],[120.7476196,52.1018143],[120.7508926,52.1028252],[120.7540131,52.1054382],[120.7570877,52.1087265],[120.7593765,52.1124496],[120.7609634,52.1159248],[120.762291,52.1177902],[120.7631607,52.1207848],[120.7617493,52.1243896],[120.7592316,52.127964],[120.7564087,52.1306114],[120.7543335,52.1332817],[120.7536926,52.1364594],[120.7530289,52.1400871],[120.7542877,52.1428642],[120.7567062,52.1449966],[120.758873,52.1459732],[120.7631683,52.1479378],[120.7671204,52.1496582],[120.7703171,52.1513557],[120.7735519,52.1528244],[120.7773972,52.1559143],[120.7778778,52.1591225],[120.7760773,52.1629486],[120.7723312,52.1678505],[120.7678375,52.1727219],[120.7600708,52.1811523],[120.7565079,52.1837769],[120.7527695,52.188446],[120.7494431,52.1926765],[120.7462463,52.1953163],[120.7432404,52.2002411],[120.742363,52.2018089],[120.7413406,52.2051964],[120.739563,52.2087936],[120.7391129,52.2107925],[120.7383804,52.2140045],[120.7380219,52.2183266],[120.7387238,52.2233696],[120.73909,52.2279472],[120.7415924,52.2337265],[120.7445602,52.2383842],[120.7471771,52.2428055],[120.7500763,52.2483749],[120.7512665,52.2520638],[120.7506104,52.2554626],[120.7478867,52.2567482],[120.7384491,52.2582741],[120.7317123,52.2585182],[120.7249222,52.2594376],[120.7166138,52.2607727],[120.7101669,52.2619362],[120.7048035,52.2638168],[120.7003784,52.2675552],[120.6978836,52.270668],[120.6966095,52.2724533],[120.6968384,52.2786217],[120.6960068,52.2797356],[120.6937637,52.2842293],[120.691452,52.2850685],[120.687027,52.2888031],[120.6809082,52.2906609],[120.6744537,52.2920494],[120.6676102,52.2934265],[120.6622467,52.2950783],[120.6526871,52.2977371],[120.6483231,52.3007889],[120.6434708,52.3051949],[120.6418762,52.3062859],[120.636322,52.3102112],[120.6332092,52.3117065],[120.6277237,52.314724],[120.6260986,52.3162651],[120.6220627,52.3197861],[120.6203384,52.3224678],[120.6200485,52.325882],[120.6196976,52.3299789],[120.6194077,52.3333931],[120.6195831,52.3356781],[120.6181183,52.3397408],[120.6178207,52.3431511],[120.6156464,52.3467331],[120.6125336,52.3482285],[120.6112976,52.3495598],[120.6092529,52.3515434],[120.609787,52.3540726],[120.6118469,52.3561935],[120.6139297,52.3580856],[120.6156921,52.3592873],[120.6223373,52.3601875],[120.6293869,52.3608742],[120.6341782,52.3617134],[120.6389236,52.3630066],[120.6417313,52.3651581],[120.6430435,52.3674812],[120.6435471,52.3702354],[120.6436081,52.3738899],[120.6430435,52.376152],[120.6426926,52.3802452],[120.6412811,52.383625],[120.642067,52.3875275],[120.6437836,52.3894081],[120.6462631,52.3910904],[120.6506195,52.392601],[120.6527023,52.3944931],[120.6540527,52.3963623],[120.6572495,52.402626],[120.6591263,52.4070244],[120.6595993,52.4102364],[120.6651764,52.414978],[120.6687469,52.4171448],[120.6734085,52.4195786],[120.676651,52.421051],[120.6761017,52.4230881],[120.6763611,52.4244652],[120.6776962,52.4263344],[120.6785889,52.4291],[120.6810837,52.435112],[120.6820068,52.4374275],[120.6806183,52.4405746],[120.678833,52.443943],[120.6779938,52.4450569],[120.678627,52.4464493],[120.6785507,52.4473572],[120.6771393,52.4507332],[120.6758423,52.4527473],[120.6744003,52.4565773],[120.6730728,52.4590454],[120.6741333,52.4641037],[120.6734924,52.4672775],[120.6739883,52.4702606],[120.6756287,52.4730492],[120.6809692,52.4764175],[120.6867523,52.4788857],[120.6881866,52.4796104],[120.6876068,52.4821091],[120.6889877,52.4835205],[120.6903687,52.4849358],[120.6945267,52.488945],[120.6958923,52.4905853],[120.6950073,52.4921532],[120.6933136,52.4946098],[120.692009,52.4966202],[120.6890793,52.5001793],[120.6853714,52.5041695],[120.682579,52.506134],[120.6810226,52.5113335],[120.681427,52.5152283],[120.6834717,52.5178032],[120.688179,52.5197792],[120.6940308,52.5215645],[120.704361,52.523716],[120.7094727,52.5254784],[120.7186279,52.5280533],[120.723999,52.5311852],[120.7230988,52.5329857],[120.7231674,52.5366364],[120.7228622,52.5402794],[120.7213974,52.544342],[120.7201385,52.5458984],[120.7134933,52.5491104],[120.7078094,52.549614],[120.7006989,52.5493851],[120.6928635,52.5489082],[120.6846771,52.5479622],[120.6812973,52.5478554],[120.6759872,52.5485954],[120.6732712,52.5496521],[120.6677399,52.5528946],[120.6641006,52.5559769],[120.6612473,52.5586205],[120.6590424,52.5624313],[120.656723,52.5632668],[120.6524582,52.5647278],[120.6479111,52.5652657],[120.6435089,52.5639839],[120.6393509,52.5643044],[120.6329727,52.5643272],[120.6265793,52.5643463],[120.6203918,52.5664291],[120.6172409,52.5681534],[120.612793,52.5718842],[120.6095505,52.5745201],[120.6055069,52.5778122],[120.6025772,52.5813675],[120.5985031,52.5851173],[120.5956497,52.587532],[120.5913162,52.589901],[120.587883,52.5904732],[120.5807037,52.5909195],[120.5750198,52.5914192],[120.5708466,52.5917358],[120.5644836,52.5915298],[120.5541916,52.5932388],[120.5507202,52.5942688],[120.5436478,52.5976868],[120.5369568,52.6011162],[120.5326538,52.6030235],[120.526413,52.6055603],[120.5186234,52.6087227],[120.5126266,52.6126328],[120.5082169,52.6156769],[120.5013123,52.6172714],[120.4931564,52.6201935],[120.4863663,52.6245308],[120.4824371,52.6264534],[120.4765472,52.6292229],[120.4689865,52.6337624],[120.4650574,52.6356812],[120.4620895,52.6394615],[120.4576721,52.6425095],[120.4535065,52.6428223],[120.4478607,52.6428566],[120.4429779,52.6426926],[120.4377136,52.6427422],[120.4321594,52.6416397],[120.427063,52.6398697],[120.4231567,52.6372223],[120.4186096,52.6334152],[120.4136887,52.6295967],[120.4076538,52.6257362],[120.4030609,52.6223869],[120.3992462,52.6188316],[120.394249,52.6159172],[120.3891373,52.6141434],[120.3839188,52.6137352],[120.3809204,52.6136322],[120.3748322,52.6143341],[120.3737106,52.614296],[120.3672638,52.6149864],[120.3607864,52.6156731],[120.3524628,52.6162949],[120.3445511,52.616478],[120.3358612,52.6168594],[120.3286133,52.6179771],[120.3186111,52.6203651],[120.3105698,52.6219101],[120.300293,52.6231461],[120.2927322,52.6235619],[120.2856064,52.6233101],[120.2782135,52.6219063],[120.2734909,52.6201439],[120.2731781,52.6194458],[120.2695618,52.6179466],[120.2652969,52.615284],[120.2610474,52.6123924],[120.2543182,52.6080437],[120.2478333,52.605072],[120.2388077,52.6011009],[120.2315063,52.5987854],[120.2242584,52.5960121],[120.2174606,52.5923424],[120.211441,52.5884743],[120.2078705,52.5865173],[120.2025833,52.582901],[120.197258,52.5795135],[120.190567,52.5788155],[120.1841507,52.5790405],[120.1770401,52.5787811],[120.166069,52.579525],[120.1599197,52.5808945],[120.1531067,52.5813332],[120.1444321,52.5817032],[120.1308365,52.5862236],[120.1285629,52.5863724],[120.1233673,52.5857201],[120.115921,52.5849915],[120.1080933,52.5842476],[120.1018372,52.5828743],[120.0936203,52.5823402],[120.0845871,52.5824623],[120.0765533,52.583992],[120.0672836,52.5863876],[120.0625916,52.5882683],[120.0523529,52.5929031],[120.047493,52.5963745],[120.0398331,52.6015663],[120.0371094,52.6062622],[120.0351334,52.6109848],[120.0359192,52.6144409],[120.0373764,52.6186028],[120.0377502,52.6224976],[120.0359268,52.6256294],[120.0306931,52.6290817],[120.0292664,52.632],[120.027153,52.6344299],[120.0299301,52.6404724],[120.0310364,52.6443939],[120.0320663,52.649231],[120.0323181,52.6542587],[120.0365295,52.6573868],[120.0379868,52.6615486],[120.0370636,52.6633453],[120.0371399,52.6663132],[120.0376434,52.6688461],[120.0384064,52.6725273],[120.0391235,52.6766663],[120.0414124,52.6801758],[120.0445938,52.6860008],[120.0473022,52.6890717],[120.0531921,52.6943169],[120.0569611,52.6981087],[120.0609665,52.7032814],[120.0613098,52.7074013],[120.0590973,52.7107468],[120.0561066,52.7142868],[120.052887,52.7162209],[120.0506516,52.7197914],[120.050293,52.7234344],[120.0486908,52.7281685],[120.0474167,52.7333717],[120.044548,52.7394333],[120.0400772,52.7463417],[120.0367126,52.7537498],[120.0335007,52.7593384],[120.0277634,52.7639198],[120.0239563,52.7678871],[120.020607,52.7711906],[120.0207825,52.7732468],[120.0242004,52.7768021],[120.0278702,52.7778511],[120.0340881,52.7799149],[120.0419769,52.7802086],[120.0499268,52.7800484],[120.0585632,52.7805977],[120.0681915,52.7825508],[120.079483,52.7829704],[120.0854721,52.7834206],[120.0910568,52.7879639],[120.0921631,52.7884636],[120.0927277,52.7903137],[120.0948334,52.7919846],[120.096199,52.7934074],[120.1025467,52.7979813],[120.1083908,52.8000221],[120.1150894,52.8048325],[120.1204834,52.8077698],[120.1274338,52.8100815],[120.1351776,52.8119621],[120.1415634,52.8124237],[120.1468277,52.8126144],[120.1510391,52.8120842],[120.1590805,52.8110046],[120.1667862,52.8094597],[120.1718063,52.8082695],[120.1763535,52.8082085],[120.1808319,52.8088226],[120.1851273,52.8112602],[120.1872101,52.8131638],[120.1884766,52.8157196],[120.1885681,52.8186913],[120.1891403,52.8205376],[120.190033,52.823082],[120.1906281,52.8247032],[120.191597,52.8263359],[120.1940002,52.8289337],[120.1975937,52.8308907],[120.2022934,52.8331146],[120.2079697,52.8369675],[120.2078934,52.8378792],[120.2092438,52.8395271],[120.2117462,52.8409882],[120.2139664,52.8415222],[120.2202072,52.8433456],[120.2264023,52.8458481],[120.2300415,52.8473473],[120.232933,52.8488197],[120.2366333,52.8496361],[120.2446671,52.8526611],[120.2498093,52.8542175],[120.253891,52.8550453],[120.2613068,52.856678],[120.2660828,52.8582153],[120.273819,52.8603172],[120.2807236,52.8633003],[120.2851715,52.8682518],[120.2882233,52.8720093],[120.2894516,52.8750229],[120.2895508,52.8779945],[120.2888794,52.8811646],[120.2887802,52.8861847],[120.2889404,52.8884735],[120.2893295,52.8923645],[120.2899628,52.8937607],[120.2943115,52.8957405],[120.2995529,52.8963776],[120.3040619,52.8967667],[120.3089905,52.8967056],[120.3112335,52.8970184],[120.3170166,52.8958473],[120.3206635,52.8973465],[120.3225632,52.8974113],[120.3255463,52.8977432],[120.3300629,52.8981247],[120.3318787,52.8988762],[120.3357773,52.9017525],[120.3381195,52.9050293],[120.3400192,52.9089737],[120.3388214,52.9137268],[120.3392029,52.9178505],[120.3391571,52.9183044],[120.3402634,52.9226799],[120.3404694,52.9245148],[120.3417435,52.9270706],[120.3426437,52.9296112],[120.3451614,52.9310684],[120.3469162,52.9324989],[120.351181,52.9356155],[120.3539886,52.9379921],[120.3557968,52.9389687],[120.3583069,52.9404259],[120.3615875,52.9419098],[120.3648834,52.9431648],[120.3705673,52.9431343],[120.372467,52.9429703],[120.3765488,52.9440231],[120.3846664,52.9463577],[120.3886414,52.9485435],[120.3936996,52.9512291],[120.4004593,52.9560242],[120.4046402,52.9600487],[120.4084625,52.9638329],[120.4104767,52.9666405],[120.4116669,52.9701042],[120.4125824,52.9726486],[120.4124985,52.9776649],[120.4134293,52.9799767],[120.4141769,52.9841156],[120.4161835,52.9871521],[120.4207001,52.991642],[120.4257736,52.9943199],[120.4325409,52.9991188],[120.4386597,53.0027466],[120.4422379,53.0051537],[120.4434967,53.0079346],[120.4478989,53.0096817],[120.453392,53.0119209],[120.4604034,53.0142097],[120.4692078,53.0174713],[120.4754028,53.0204163],[120.4797287,53.0228462],[120.4883575,53.0240479],[120.4939117,53.0255966],[120.4960175,53.0274925],[120.4985428,53.0289497],[120.4991608,53.0305672],[120.499733,53.0326424],[120.4996338,53.0337791],[120.5004196,53.0376854],[120.5018692,53.0384178],[120.5055771,53.0394554],[120.510498,53.0396156],[120.5112381,53.0398712],[120.5159836,53.0420837],[120.5184937,53.0437622],[120.5186615,53.046051],[120.5192337,53.0481224],[120.520607,53.0497665],[120.5216599,53.0507126],[120.5237122,53.0532951],[120.5253677,53.0560875],[120.5266037,53.0593262],[120.5285263,53.0632668],[120.5305328,53.0662994],[120.5318222,53.0688515],[120.5349884,53.0716972],[120.5378418,53.0738449],[120.540329,53.0757523],[120.5443573,53.0774803],[120.5511017,53.0786171],[120.557373,53.0808754],[120.5589218,53.080471],[120.5604401,53.0805206],[120.5653229,53.0811348],[120.5712891,53.0824738],[120.5795288,53.0838776],[120.5831985,53.0853691],[120.5856323,53.0879593],[120.5877075,53.0903091],[120.5894928,53.0917358],[120.59272,53.093895],[120.5978928,53.0956612],[120.6012421,53.0964546],[120.6057281,53.0972824],[120.6090622,53.0983009],[120.6139832,53.09869],[120.6215591,53.0989304],[120.6264496,53.0995483],[120.6344986,53.1032257],[120.6358795,53.1048698],[120.6360626,53.1071587],[120.6362228,53.1096725],[120.6361465,53.1149216],[120.6373291,53.1188393],[120.6400299,53.1228065],[120.6420288,53.1260681],[120.6425705,53.1285896],[120.6439133,53.1306877],[120.6486664,53.1328964],[120.6549835,53.1346931],[120.6605988,53.1357841],[120.6678696,53.1353302],[120.6757812,53.1362648],[120.6824036,53.1389847],[120.6844864,53.1413345],[120.6861267,53.144352],[120.6851501,53.1468353],[120.6849594,53.1491089],[120.6842728,53.1527405],[120.6845474,53.1538887],[120.6839066,53.1568375],[120.6856003,53.1593971],[120.6869278,53.1617279],[120.6871872,53.1631012],[120.6850662,53.1655464],[120.6851425,53.1691971],[120.6841965,53.1712227],[120.6838379,53.1755486],[120.6866531,53.1783791],[120.6917419,53.1810455],[120.6946716,53.1825104],[120.6983337,53.1842232],[120.7005386,53.1852036],[120.7057571,53.1865082],[120.7121201,53.1878471],[120.7143173,53.1888275],[120.7168732,53.1902809],[120.7175827,53.1909866],[120.7176819,53.1941872],[120.7203598,53.1986046],[120.7236328,53.200531],[120.7253876,53.2021828],[120.7315826,53.205574],[120.7323074,53.2060509],[120.7385864,53.2083015],[120.7468567,53.2097015],[120.75103,53.2100563],[120.7555695,53.2104263],[120.7623062,53.2120018],[120.7648315,53.2136765],[120.7680969,53.2156029],[120.7724762,53.2180214],[120.7768631,53.220211],[120.7830734,53.2235947],[120.7873688,53.2269211],[120.7947083,53.2303429],[120.8038788,53.2347298],[120.8101196,53.2376556],[120.8130264,53.2393456],[120.8183975,53.239048],[120.8219833,53.2373352],[120.8254471,53.2367516],[120.8291702,53.2380066],[120.8317566,53.2389946],[120.8328018,53.2401695],[120.8337784,53.2422523],[120.8333435,53.2429276],[120.8328094,53.2447319],[120.8327332,53.2456474],[120.8314819,53.2469788],[120.8294373,53.2485123],[120.8264465,53.2525291],[120.824028,53.254055],[120.8195801,53.2571144],[120.8148422,53.2590256],[120.8112564,53.2607422],[120.8096085,53.262291],[120.8097992,53.264576],[120.8111496,53.2666702],[120.8122177,53.2676163],[120.8139877,53.2692642],[120.8169403,53.2705002],[120.8203125,53.2712822],[120.8259735,53.2721443],[120.8296967,53.2731667],[120.8335114,53.2732849],[120.8392105,53.2736855],[120.8460236,53.2743454],[120.8547134,53.2755165],[120.8607864,53.2759285],[120.8682938,53.2775192],[120.8715515,53.2796707],[120.872467,53.2824402],[120.871048,53.28582],[120.8707428,53.2896881],[120.873703,53.2909203],[120.8783569,53.2899132],[120.8839264,53.287117],[120.8862915,53.286274],[120.8917694,53.2846107],[120.8979187,53.2841072],[120.9028397,53.2847099],[120.9097137,53.284687],[120.9147034,53.2843781],[120.9211807,53.2845688],[120.927597,53.2854424],[120.9320068,53.2876244],[120.9338226,53.2888184],[120.9359818,53.2904816],[120.9396286,53.2926407],[120.9464722,53.2930679],[120.9537964,53.292141],[120.9631119,53.2903595],[120.9716187,53.2890091],[120.9785233,53.2887535],[120.9854279,53.2882652],[120.9919434,53.2879982],[120.996933,53.2876854],[121.0054779,53.2875099],[121.0081177,53.2873802],[121.0120926,53.2877884],[121.0306778,53.287178],[121.0417328,53.2867699],[121.0466614,53.2890091],[121.0511932,53.2911491],[121.0595474,53.2987862],[121.0654526,53.3019409],[121.0764465,53.303978],[121.0854568,53.3054047],[121.0915833,53.3033676],[121.0959473,53.2974625],[121.1019592,53.2933884],[121.10746,53.2919617],[121.1117325,53.2905388],[121.1140671,53.2888069],[121.1157074,53.2868729],[121.1139832,53.2820854],[121.115303,53.279335],[121.1169281,53.2763824],[121.1207962,53.2744484],[121.1247711,53.2732239],[121.1291504,53.273735],[121.1336288,53.2750587],[121.1430969,53.2796402],[121.1505432,53.2809639],[121.1593933,53.279335],[121.1654968,53.2788277],[121.1728363,53.279541],[121.1842422,53.2798462],[121.1997223,53.2784195],[121.2066422,53.2780113],[121.216011,53.277298],[121.2245636,53.2770958],[121.2331238,53.2780113],[121.2402496,53.2809639],[121.2476807,53.2852402],[121.2544022,53.2881966],[121.2631607,53.2879906],[121.2714081,53.2863617],[121.2801666,53.2872772],[121.2923889,53.2913513],[121.3042984,53.2987862],[121.3130569,53.3113098],[121.3242569,53.3188477],[121.3333282,53.3213921],[121.3426895,53.3231239],[121.3516464,53.3233261],[121.3731384,53.3197632],[121.3899536,53.3160973],[121.3961029,53.3160973],[121.4034882,53.3164024],[121.4121933,53.3185425],[121.4205933,53.3207817],[121.4251328,53.3207817],[121.4311829,53.3201714],[121.4368896,53.319458],[121.4441681,53.3212891],[121.4490585,53.3225136],[121.453537,53.3241425],[121.459549,53.3256683],[121.4656525,53.3275032],[121.4695282,53.3287239],[121.4739075,53.3302536],[121.4815369,53.3317795],[121.4882736,53.3325958],[121.4884415,53.3326492]]]]},
  11 +"properties":{
  12 +"gid":2,
  13 +"name":"内蒙古自治区"}
  14 +},
  15 +{"type":"Feature",
  16 +"geometry":{"type":"MultiPolygon","coordinates":[[[[96.3832855,42.7269554],[96.3599091,42.7096901],[96.0966415,42.5996666],[96.0597458,42.398735],[96.025528,42.1109314],[96.0546341,42.0099907],[96.0221405,41.9368248],[95.9984741,41.917942],[95.9914017,41.8989449],[95.8591766,41.8483543],[95.6668701,41.8285522],[95.5684509,41.8516388],[95.519928,41.850666],[95.3566742,41.8173485],[95.0463715,41.7712288],[94.8479309,41.6827049],[94.7398987,41.6489716],[94.6034088,41.5748444],[94.4174194,41.3918839],[94.0770111,41.1583252],[93.8067398,40.8766365],[93.6467514,40.6191101],[93.4567871,40.5338821],[93.3674545,40.4777603],[93.3415756,40.4691582],[93.280632,40.4677353],[92.9138107,40.4982986],[92.9179916,40.1037331],[92.7641602,39.8797989],[92.8386459,39.6664886],[92.8768311,39.5448036],[92.9437027,39.4562073],[92.9491425,39.3281746],[92.9262466,39.2929802],[92.9505615,39.1710548],[92.9108429,39.1688957],[92.8627777,39.1413155],[92.8292999,39.1498756],[92.8186646,39.1375313],[92.7834091,39.1419601],[92.6595993,39.1171761],[92.5505676,39.1158562],[92.5323486,39.1039429],[92.5000305,39.1094322],[92.4609756,39.0741386],[92.4554138,39.0464172],[92.4049301,39.0413322],[92.3999863,39.0115471],[92.3738861,39.0028114],[92.3005447,38.9997025],[92.2260361,38.9958611],[92.1958542,38.9884453],[92.1660385,38.9659081],[92.0569916,38.9588661],[91.984108,38.9406815],[91.8791962,38.9025688],[91.8585815,38.8816071],[91.8064804,38.8776283],[91.7872543,38.8674316],[91.6911469,38.8711319],[91.6707916,38.8583832],[91.6030579,38.8425179],[91.4359894,38.8156471],[91.4073029,38.79636],[91.3269196,38.7737999],[91.296257,38.7533188],[91.2415543,38.7541084],[91.1145477,38.7132378],[90.9654465,38.7014961],[90.8730927,38.6759415],[90.7658768,38.6636124],[90.6204453,38.6734848],[90.6151047,38.6656113],[90.6379547,38.640316],[90.6049118,38.6198463],[90.604538,38.6005898],[90.5389481,38.5871239],[90.5087204,38.5614014],[90.4684677,38.5613899],[90.4541321,38.552433],[90.4656372,38.5269661],[90.4161377,38.4942322],[90.2401581,38.4457893],[90.1502686,38.4332314],[90.1409531,38.4062271],[90.1627045,38.3727493],[90.1884689,38.3494301],[90.2088089,38.3223343],[90.2401657,38.3050728],[90.332283,38.130825],[90.3640366,38.0961189],[90.481842,37.9556923],[90.4712982,37.9396935],[90.4293442,37.919693],[90.4042892,37.8857765],[90.4132462,37.8352852],[90.4460983,37.8072319],[90.4237671,37.780014],[90.4898071,37.7715645],[90.5000916,37.743782],[90.5197601,37.73106],[90.5663605,37.7249794],[90.5811691,37.709877],[90.611351,37.7023544],[90.6614761,37.7040901],[90.6769028,37.6866913],[90.7854309,37.6432228],[90.8146667,37.6120338],[90.8741226,37.579895],[90.8589554,37.5372849],[90.9223022,37.5077019],[90.9372635,37.4804039],[91.0050659,37.4959869],[91.0790482,37.4758568],[91.096817,37.4485779],[91.1289902,37.3410339],[91.1636963,37.3100586],[91.1623993,37.2866669],[91.1809235,37.2770309],[91.1855087,37.2129211],[91.2700729,37.1658249],[91.2996216,37.0645599],[91.2887268,37.0497742],[91.3096237,37.0296059],[91.3052216,37.0190163],[91.2138977,37.0147972],[91.1713867,37.0280495],[91.1280212,37.009655],[91.1222458,36.9825439],[91.107872,36.9727402],[91.0491028,36.970623],[91.0354614,36.9388199],[91.0111923,36.9256706],[90.9737167,36.9169159],[90.9216385,36.9242172],[90.8472977,36.9190292],[90.779335,36.8483429],[90.7535324,36.8305321],[90.7259903,36.8264351],[90.7145462,36.7930222],[90.7253647,36.7574463],[90.7476883,36.7284584],[90.7148819,36.7082367],[90.7046127,36.6858444],[90.7117233,36.6623535],[90.7337341,36.6452866],[90.7177811,36.6113472],[90.7301865,36.5913773],[90.7633133,36.5836449],[90.8109436,36.5871201],[90.819664,36.5783119],[90.8090744,36.5696754],[90.8285675,36.5614891],[90.8980789,36.5634193],[91.0277863,36.537014],[91.0345306,36.4827957],[91.0235672,36.4496574],[91.0511551,36.430542],[91.032959,36.404644],[91.0254898,36.3669662],[91.0323563,36.3489532],[91.0219574,36.3309441],[91.050209,36.3047371],[91.0720749,36.300209],[91.0406189,36.2599335],[91.0572739,36.2321968],[91.0932083,36.2150154],[91.0877228,36.1915779],[91.096756,36.1767998],[91.0887222,36.1686783],[91.1013718,36.1566963],[91.1156998,36.1151772],[91.1055832,36.0976372],[91.0655899,36.0939217],[90.9739151,36.106678],[90.9301682,36.0396271],[90.8468475,36.0210114],[90.7935715,36.0580101],[90.7753754,36.0886612],[90.6809464,36.1313858],[90.5945129,36.1333847],[90.5197296,36.1533966],[90.4773026,36.1352234],[90.4443207,36.1332512],[90.3764343,36.1477966],[90.3474045,36.1458702],[90.3147583,36.1615105],[90.233017,36.1651611],[90.192337,36.192749],[90.1591949,36.1954994],[90.1276093,36.2113419],[90.1353073,36.2449608],[90.0548325,36.2588272],[90.0301208,36.2791443],[90.0083389,36.2791214],[90.0037842,36.2714577],[90.0246048,36.2492294],[90.003891,36.1834564],[89.9888306,36.1557388],[89.9373245,36.1256065],[89.9490738,36.1036606],[89.9460526,36.0756226],[89.9153671,36.0925446],[89.851593,36.0790787],[89.7312469,36.0847435],[89.4850159,36.1537628],[89.370079,36.2307167],[89.2678146,36.2641373],[89.2314682,36.2975197],[89.178421,36.2540588],[89.1258316,36.2556381],[89.0923462,36.2907219],[89.0335236,36.3178329],[88.9591827,36.3217926],[88.9209366,36.3672523],[88.8658066,36.3511658],[88.8337173,36.3563881],[88.7901764,36.3120384],[88.7629318,36.3040695],[88.6849213,36.3708611],[88.6185837,36.3922348],[88.6130295,36.430809],[88.5837097,36.4571648],[88.5680847,36.4639626],[88.4934158,36.448864],[88.4652634,36.4847717],[88.405304,36.475666],[88.3733139,36.4857903],[88.321312,36.460907],[88.2442551,36.4729233],[88.2173538,36.4501801],[88.1769409,36.4551697],[88.1289825,36.429657],[87.9775543,36.4405212],[87.9438019,36.4041252],[87.8867188,36.3729744],[87.8559875,36.378582],[87.7961121,36.3666496],[87.7264099,36.3875618],[87.5651474,36.3452263],[87.4661789,36.3646202],[87.4527359,36.4176521],[87.3653412,36.4157448],[87.3037872,36.3642464],[87.1907043,36.3497505],[87.1584854,36.3259201],[87.1465836,36.297718],[87.0834198,36.3110657],[87.0488892,36.2970695],[86.9936218,36.3091354],[86.9247131,36.2707825],[86.8980484,36.2671776],[86.8636398,36.3079987],[86.8228912,36.2919388],[86.7873306,36.2991371],[86.7561264,36.2950859],[86.7327652,36.2847748],[86.7222672,36.2638321],[86.6723709,36.2370491],[86.597229,36.2230263],[86.5299759,36.2278709],[86.5053635,36.2031212],[86.4526901,36.2215385],[86.4242783,36.2089157],[86.3903275,36.2072945],[86.3557434,36.1690826],[86.2499695,36.1598015],[86.1985855,36.1293945],[86.1686935,36.0188599],[86.102684,36.0005264],[86.083519,35.9715881],[86.0717545,35.9335976],[86.0913467,35.8768997],[86.0598602,35.8407021],[85.9922714,35.8247757],[85.9580231,35.7892303],[85.8327713,35.7707672],[85.8073654,35.7816582],[85.6971664,35.7516747],[85.6419678,35.7161713],[85.6120453,35.6562958],[85.5960922,35.6465988],[85.5671616,35.6432381],[85.524559,35.6592293],[85.5102768,35.6831665],[85.5363846,35.6888161],[85.524086,35.7116203],[85.4773636,35.7117882],[85.4304581,35.7306938],[85.3848877,35.7274017],[85.3378525,35.7547379],[85.2581253,35.7815666],[85.2136383,35.7800522],[85.2242126,35.7682457],[85.2161407,35.7606239],[85.1507339,35.7449493],[85.0321732,35.7470245],[84.9930115,35.7303848],[84.9686432,35.7045059],[84.9181519,35.6941261],[84.8516541,35.6666145],[84.8363571,35.6401215],[84.7406693,35.6138077],[84.6986847,35.6187782],[84.4511261,35.5483513],[84.4553299,35.5230103],[84.4743195,35.5150452],[84.4498367,35.4787598],[84.3339844,35.4149818],[84.2761459,35.4058266],[84.2052307,35.3815498],[84.1786041,35.3589058],[84.1302414,35.3757019],[84.0938034,35.3645401],[84.0566788,35.4114952],[84.0264206,35.4104919],[83.9906921,35.4221573],[83.9116592,35.408783],[83.8952332,35.3986397],[83.8801422,35.3653374],[83.8023529,35.355545],[83.7812195,35.3681145],[83.6760559,35.3653641],[83.6196365,35.3364906],[83.5965652,35.3522491],[83.5390015,35.3425941],[83.5339355,35.3664589],[83.484375,35.3995667],[83.4474716,35.3828545],[83.3939133,35.3822746],[83.344429,35.3988266],[83.2942429,35.4007034],[83.2509384,35.4215393],[83.1898651,35.3925018],[83.1237259,35.399189],[83.0860138,35.4261322],[83.0646133,35.4633217],[82.9962387,35.4852982],[82.9690018,35.549057],[82.9785843,35.5570488],[82.978775,35.6005745],[82.9536209,35.6370583],[82.9647217,35.6681824],[82.8921585,35.6747627],[82.8778534,35.6892242],[82.789917,35.6874161],[82.777626,35.6669235],[82.7286377,35.6385651],[82.6496201,35.6738739],[82.6259918,35.6931114],[82.5435181,35.7093391],[82.5111618,35.6985435],[82.4658203,35.7179604],[82.4221954,35.7133102],[82.405899,35.6999969],[82.3899765,35.6566734],[82.333168,35.6519661],[82.3473587,35.6116829],[82.3277664,35.5862122],[82.3314819,35.5662918],[82.3169174,35.5541115],[82.2964401,35.5455818],[82.2607498,35.548687],[82.2316589,35.5211067],[82.1923447,35.5189095],[82.1834869,35.4945946],[82.1567764,35.5013657],[82.1293793,35.4813271],[82.078392,35.4653015],[82.0680923,35.4512825],[82.0420074,35.4493256],[82.0453949,35.36343],[82.0134125,35.3286781],[81.9929886,35.3244514],[81.9372177,35.3257523],[81.9232788,35.3171959],[81.9385376,35.3012466],[81.89077,35.2858467],[81.8607407,35.2611465],[81.8009491,35.2767982],[81.7311172,35.2602692],[81.6723251,35.234623],[81.5653458,35.2392502],[81.4966354,35.2911072],[81.4981232,35.3055573],[81.467186,35.3148918],[81.4618301,35.3377571],[81.4459,35.354332],[81.4250793,35.3598595],[81.3847504,35.3383827],[81.3581619,35.3548393],[81.3395309,35.3447952],[81.335434,35.356205],[81.3205185,35.3601761],[81.2946854,35.3447762],[81.2652817,35.3433113],[81.2529602,35.3253021],[81.2377548,35.3297157],[81.2168961,35.3200836],[81.2047501,35.3261337],[81.1891403,35.3706322],[81.139595,35.3659248],[81.1162186,35.387867],[81.101326,35.3892899],[81.0956116,35.4107552],[81.0333939,35.3930168],[81.0265884,35.3823891],[81.0481873,35.3366127],[81.0273056,35.3145752],[80.9508286,35.3135643],[80.934288,35.3282356],[80.8923187,35.3251343],[80.8422699,35.3464241],[80.7578583,35.335556],[80.697258,35.338295],[80.6843948,35.3490944],[80.6884537,35.3677177],[80.6628342,35.3721275],[80.6546478,35.3983498],[80.6364975,35.3950806],[80.5979767,35.4107285],[80.5775681,35.3961868],[80.549469,35.3982391],[80.5374374,35.4083519],[80.5506668,35.4294243],[80.5304031,35.4542885],[80.4779739,35.4632492],[80.4396591,35.4493294],[80.4105759,35.4322777],[80.3867722,35.3986244],[80.35952,35.3793411],[80.2935715,35.3607063],[80.270546,35.3018303],[80.2950668,35.2658539],[80.268898,35.2302971],[80.2265244,35.2042732],[80.2050323,35.1532059],[80.1375885,35.0975494],[80.0503998,35.0600128],[79.9920197,34.8621101],[79.9547729,34.8677254],[79.899765,34.8617134],[79.8853226,34.8515358],[79.8666229,34.7495651],[79.9191055,34.7009773],[79.8612366,34.6669121],[79.8839188,34.6447182],[79.8852386,34.6296158],[79.8694687,34.6187172],[79.8416824,34.5591736],[79.8397141,34.5513344],[79.8596039,34.5375633],[79.8275452,34.515976],[79.8162384,34.4969177],[79.7845612,34.4812889],[79.7337723,34.4732285],[79.6977539,34.4797134],[79.6636658,34.4543648],[79.6295547,34.4539986],[79.6033783,34.464592],[79.5683441,34.4589119],[79.5432281,34.4782333],[79.5123749,34.4492531],[79.5023956,34.4565659],[79.4172134,34.4493294],[79.3587112,34.4338036],[79.3313217,34.446373],[79.2666245,34.4407272],[79.2562027,34.4237022],[79.2273941,34.415802],[79.1998215,34.418705],[79.1510773,34.4441719],[79.0773621,34.4154663],[79.0326157,34.3329811],[79.0197525,34.3447304],[79.0180359,34.3453293],[78.9970856,34.3541183],[78.9840012,34.3580322],[78.9814224,34.3590469],[78.980278,34.3594475],[78.9724579,34.3636322],[78.9712448,34.3649483],[78.9703293,34.3660469],[78.9671402,34.3713989],[78.9667435,34.3729858],[78.9663239,34.3748055],[78.9654388,34.3828011],[78.9649887,34.3850784],[78.964592,34.3866653],[78.9565048,34.3906097],[78.9468613,34.3894119],[78.9455109,34.3888817],[78.943573,34.3887787],[78.9341431,34.3848305],[78.9328461,34.3836136],[78.9316559,34.3773422],[78.9318695,34.3745956],[78.9293442,34.3712463],[78.9275131,34.3697701],[78.9246292,34.3675461],[78.9158325,34.3661613],[78.9147491,34.3658752],[78.9100647,34.3617172],[78.9090576,34.3602867],[78.9006195,34.3579979],[78.8995132,34.3579407],[78.8981628,34.3574066],[78.8913956,34.358654],[78.8902206,34.3595161],[78.8780594,34.3873749],[78.8788757,34.3947754],[78.8788071,34.3956909],[78.8694839,34.40485],[78.8679886,34.4061508],[78.8568268,34.4138298],[78.8476944,34.41679],[78.8459625,34.417614],[78.8352432,34.4195709],[78.8341141,34.4197388],[78.832695,34.4201241],[78.823822,34.4233284],[78.8217773,34.4245949],[78.82061,34.4252243],[78.8202667,34.4261246],[78.8102951,34.4327126],[78.8090973,34.4337997],[78.8073425,34.4348564],[78.796402,34.4395523],[78.7952576,34.4399529],[78.7876205,34.4416084],[78.7856216,34.4421921],[78.7822266,34.4429245],[78.7808075,34.4433098],[78.7685242,34.4437943],[78.7656784,34.444561],[78.7625427,34.4455414],[78.7611237,34.4459229],[78.7493973,34.4498863],[78.7473526,34.4511528],[78.7408218,34.4563179],[78.7406616,34.4583778],[78.7407379,34.4609108],[78.7441406,34.4636269],[78.74897,34.4659576],[78.7513733,34.4672356],[78.7537613,34.4687462],[78.7547989,34.4697227],[78.7554703,34.4718246],[78.756897,34.4748917],[78.7573242,34.4765244],[78.7572327,34.4776688],[78.7565079,34.4833794],[78.7552719,34.4849205],[78.7497025,34.4885254],[78.7482758,34.4889107],[78.732933,34.4963531],[78.7211075,34.4980087],[78.7199478,34.4986343],[78.7187805,34.4992599],[78.7140198,34.5031395],[78.7131119,34.5040131],[78.7130203,34.5051575],[78.7118073,34.5099144],[78.7117004,34.5112877],[78.7112961,34.5128784],[78.7073517,34.5204773],[78.6999664,34.5258217],[78.6932373,34.5298271],[78.6912079,34.5308609],[78.6763611,34.5318871],[78.6740875,34.5324516],[78.6721115,34.5328026],[78.6709824,34.5329742],[78.6650314,34.534256],[78.6632767,34.5353088],[78.6615372,34.5361328],[78.6606522,34.5367775],[78.649353,34.5386848],[78.647377,34.5390358],[78.6453781,34.5396156],[78.6367416,34.5395966],[78.634491,34.5399323],[78.6331024,34.539856],[78.6187363,34.538372],[78.6176224,34.538311],[78.6156845,34.5382042],[78.6076355,34.5377579],[78.605751,34.5369644],[78.6041412,34.5361862],[78.5987625,34.5338173],[78.5971909,34.5325813],[78.5961761,34.5313759],[78.5906296,34.5241699],[78.5895004,34.5208893],[78.5872803,34.5138664],[78.5867233,34.5103874],[78.5821609,34.5082932],[78.580513,34.5079727],[78.5745239,34.5097084],[78.5733566,34.5103302],[78.572197,34.5109596],[78.5654297,34.5119591],[78.5643005,34.5121269],[78.5612869,34.5149498],[78.5609207,34.5160789],[78.5605698,34.5169792],[78.5596237,34.5217552],[78.5598221,34.522686],[78.5608215,34.5310173],[78.5613022,34.5319672],[78.5611954,34.5333366],[78.5616379,34.5347443],[78.5615768,34.5457764],[78.5614243,34.5476074],[78.5611877,34.5505829],[78.5611115,34.5514984],[78.5579834,34.5591431],[78.5576172,34.5602722],[78.5564117,34.5613556],[78.5563354,34.5622673],[78.5517502,34.5673027],[78.5499344,34.5690422],[78.5474701,34.5718918],[78.5459366,34.5736465],[78.5427322,34.5753059],[78.5415726,34.5759315],[78.5404053,34.5765533],[78.5339279,34.577343],[78.5271988,34.5778847],[78.5243835,34.5781898],[78.5227203,34.5780945],[78.5114899,34.5790749],[78.5100632,34.5794563],[78.5080795,34.5798035],[78.5010147,34.5810165],[78.4982224,34.581089],[78.491951,34.5793571],[78.4841309,34.5761566],[78.4830399,34.5758667],[78.4808731,34.5750542],[78.4718094,34.573391],[78.4704285,34.5733147],[78.4651947,34.5725555],[78.4632874,34.571991],[78.4563599,34.5681496],[78.4553223,34.5671692],[78.4532013,34.5624504],[78.4521713,34.5585594],[78.4510345,34.5566177],[78.4493942,34.5543747],[78.4483261,34.552887],[78.4470978,34.5509872],[78.4443588,34.5482407],[78.4416656,34.5468521],[78.4367142,34.5461121],[78.4355621,34.546505],[78.4320068,34.5490646],[78.4316406,34.55019],[78.4291,34.5539551],[78.4284515,34.555069],[78.4283752,34.5559845],[78.4294281,34.5668526],[78.4292526,34.5689087],[78.4296951,34.5703163],[78.4290848,34.581089],[78.4294128,34.5838661],[78.4297256,34.5868721],[78.4263229,34.5942726],[78.4253769,34.5955963],[78.4198761,34.5980415],[78.4178619,34.5988464],[78.4037857,34.6037979],[78.3948746,34.6069679],[78.3934937,34.6068878],[78.3923416,34.6072807],[78.3800125,34.6079597],[78.3763504,34.6084366],[78.3726807,34.6089172],[78.3594971,34.6065521],[78.357605,34.6057549],[78.3556671,34.6056442],[78.3472595,34.6060791],[78.3455963,34.6059837],[78.3436737,34.6056442],[78.3340073,34.6078491],[78.3328247,34.6086998],[78.3316574,34.6093216],[78.3263321,34.6129227],[78.3201294,34.6137161],[78.3187027,34.6140938],[78.3164444,34.6144257],[78.3064346,34.6162148],[78.3003769,34.6197052],[78.2980652,34.6207237],[78.2969131,34.6211166],[78.288887,34.623642],[78.2874603,34.6240158],[78.286293,34.6246414],[78.2848511,34.625248],[78.27388,34.6296692],[78.2717972,34.6311607],[78.2706299,34.6317825],[78.2662811,34.6370468],[78.2658463,34.6388588],[78.2650757,34.641346],[78.2631683,34.6506653],[78.2632599,34.6529694],[78.2630615,34.6552582],[78.2662125,34.6641808],[78.2669296,34.6656036],[78.2671127,34.6667633],[78.2705688,34.67202],[78.2735596,34.6763344],[78.2744751,34.678688],[78.2747574,34.6819229],[78.2743683,34.6832809],[78.2742538,34.6846542],[78.2717285,34.6914062],[78.2710342,34.6929779],[78.2691803,34.6983871],[78.2684708,34.7001877],[78.268074,34.7015419],[78.2651062,34.7068901],[78.2636032,34.7081833],[78.2577133,34.71175],[78.2559509,34.7127953],[78.2547607,34.7136459],[78.2486343,34.7167397],[78.247467,34.7173653],[78.2395477,34.7185097],[78.2369919,34.7190514],[78.2352829,34.7194138],[78.2251434,34.7204323],[78.2228622,34.7209892],[78.2211533,34.7213478],[78.2098846,34.7210693],[78.2072067,34.7244453],[78.2072144,34.7341003],[78.2070465,34.7426033],[78.2071686,34.7444496],[78.2073517,34.7456093],[78.2080383,34.7539291],[78.2081757,34.7555466],[78.2118225,34.7619705],[78.2128372,34.7631798],[78.221283,34.7689629],[78.2276917,34.7757721],[78.2289047,34.7779121],[78.2299652,34.7851067],[78.2302933,34.7911034],[78.2301941,34.7922478],[78.2303238,34.7940941],[78.2304916,34.8019218],[78.2306671,34.8030853],[78.2301636,34.8090324],[78.2300262,34.8106346],[78.2299271,34.811779],[78.2302704,34.8143272],[78.2306824,34.8226318],[78.2308807,34.8235626],[78.2307663,34.8249359],[78.2312241,34.8261108],[78.2339935,34.8428307],[78.2339783,34.8462791],[78.2341003,34.8481255],[78.2370911,34.8623276],[78.2370071,34.8632431],[78.2371902,34.8644028],[78.2373123,34.8662491],[78.2373047,34.8729172],[78.2371292,34.8749771],[78.2371902,34.8775101],[78.2373505,34.8788986],[78.2356262,34.8827057],[78.2352524,34.8838348],[78.2342987,34.8851585],[78.2290802,34.8873863],[78.2281799,34.8880234],[78.2230301,34.8893356],[78.2216187,34.8894806],[78.2191162,34.8893356],[78.2086792,34.8903351],[78.2072449,34.8907127],[78.2039413,34.89328],[78.2035675,34.8944092],[78.2034531,34.8957825],[78.2043457,34.8983612],[78.2044907,34.8999786],[78.2049103,34.9016151],[78.2040405,34.9052429],[78.2033463,34.9068108],[78.2029495,34.9081688],[78.1988983,34.9129906],[78.1973877,34.9142838],[78.1921616,34.9197235],[78.1897202,34.9221115],[78.183197,34.9263306],[78.1776505,34.9289932],[78.1761398,34.9302864],[78.174942,34.9343567],[78.1753082,34.936676],[78.1758881,34.9397011],[78.1812439,34.942543],[78.1825943,34.9430809],[78.1880722,34.9445496],[78.1891251,34.9453011],[78.1947021,34.9488487],[78.1954803,34.949585],[78.2009201,34.954731],[78.2018356,34.9570847],[78.2027969,34.9622002],[78.202919,34.9640465],[78.2030411,34.9658928],[78.2028885,34.9700012],[78.2024307,34.9728737],[78.2015228,34.9739647],[78.2004547,34.9750214],[78.1959305,34.9801941],[78.1949768,34.9815178],[78.1937256,34.9830551],[78.1875153,34.9868317],[78.1863632,34.9872246],[78.1789627,34.9886284],[78.1763916,34.9891701],[78.16996,34.9922447],[78.1690674,34.992878],[78.1669998,34.9941368],[78.1580276,35.0039597],[78.1567535,35.0057259],[78.1344147,35.0209694],[78.127861,35.0286331],[78.1269073,35.029953],[78.1227646,35.0356903],[78.1221313,35.0365715],[78.1216278,35.0390739],[78.1211929,35.0473251],[78.1267319,35.0513306],[78.128891,35.0523758],[78.1340714,35.0540619],[78.1356812,35.0548439],[78.1405869,35.0597343],[78.1422653,35.0662727],[78.1424103,35.0678902],[78.1427841,35.0699806],[78.1435471,35.0763092],[78.1408386,35.0859642],[78.1400604,35.0884476],[78.1396637,35.0898018],[78.1388931,35.0922852],[78.1362228,35.0971909],[78.1358643,35.0980873],[78.1349258,35.0991821],[78.134491,35.1009979],[78.1335754,35.1018639],[78.1275101,35.1070251],[78.1263351,35.1076469],[78.1186981,35.108345],[78.1099472,35.1089783],[78.1079712,35.1090927],[78.1057358,35.1089592],[78.1035233,35.1086006],[78.0932007,35.1079903],[78.0917664,35.1083641],[78.0874939,35.1058121],[78.087059,35.1044044],[78.0844879,35.1017265],[78.0831909,35.1004982],[78.0803223,35.0980263],[78.0791626,35.0984192],[78.0745392,35.0999832],[78.0733414,35.1008339],[78.0693512,35.1047363],[78.0684357,35.1056023],[78.0677948,35.1064835],[78.0605927,35.111805],[78.0587616,35.1135368],[78.05439,35.1185646],[78.0548325,35.1231918],[78.055542,35.1246147],[78.0595703,35.1331291],[78.0594711,35.1342735],[78.0600052,35.140976],[78.0596085,35.1423302],[78.0572891,35.1463318],[78.056076,35.1474075],[78.0510406,35.1503296],[78.050766,35.1535301],[78.0517197,35.1554298],[78.0538712,35.1564789],[78.0551529,35.1579323],[78.0565491,35.1612358],[78.0566864,35.1660728],[78.0565262,35.1679039],[78.0559387,35.1777573],[78.056015,35.1800613],[78.0530014,35.1888466],[78.052597,35.1902046],[78.0515976,35.1919861],[78.046524,35.1985817],[78.0452881,35.1998901],[78.044632,35.2010002],[78.0437088,35.2018661],[78.0360413,35.2092285],[78.034523,35.2105141],[78.0330048,35.2118034],[78.0317841,35.212883],[78.0260696,35.2171402],[78.025177,35.2177773],[78.0234146,35.2185898],[78.0164413,35.2211647],[78.014946,35.2222252],[78.0112076,35.2263718],[78.0108109,35.227726],[78.0101242,35.2290649],[78.0084229,35.2356339],[78.0082779,35.237236],[78.0080414,35.2399788],[78.0064163,35.2488518],[78.0061493,35.2518234],[78.0060501,35.2529678],[78.0062027,35.2543564],[78.0060349,35.2626266],[78.0061569,35.264473],[78.0063324,35.2656326],[78.0067291,35.2674942],[78.00914,35.2752266],[78.0095825,35.2766342],[78.0101776,35.2794266],[78.0106125,35.2808342],[78.0108109,35.281765],[78.0109482,35.2833824],[78.0109253,35.2900505],[78.0108185,35.2911949],[78.0111008,35.2944298],[78.0112534,35.2958183],[78.0115967,35.3142357],[78.0107422,35.3525848],[78.0110931,35.3613434],[78.0110092,35.3622589],[78.0108795,35.366745],[78.0116959,35.3674507],[78.0144348,35.3691177],[78.0188599,35.3708153],[78.0243683,35.373455],[78.0303879,35.3774834],[78.0372772,35.3806114],[78.0441284,35.3851128],[78.0483704,35.3923073],[78.0517807,35.3992538],[78.0560608,35.4029694],[78.0569534,35.403717],[78.0575104,35.4041367],[78.0678787,35.411972],[78.072464,35.4175682],[78.0754547,35.4215736],[78.0779037,35.4224968],[78.0820084,35.4253349],[78.0880356,35.4293556],[78.0952606,35.4311142],[78.1004639,35.4346619],[78.1045532,35.4379539],[78.1063461,35.443264],[78.1070251,35.4485474],[78.1070786,35.4556503],[78.1085815,35.4614105],[78.1114578,35.4676552],[78.1157455,35.4739304],[78.1217422,35.4790955],[78.1282196,35.4867935],[78.1336288,35.4930916],[78.1342316,35.4935913],[78.1325684,35.4952049],[78.1313782,35.4958229],[78.1310196,35.4967232],[78.1273804,35.4997253],[78.1267319,35.5006065],[78.1255188,35.5016861],[78.1198044,35.5025024],[78.1175232,35.5028305],[78.1099091,35.5028419],[78.1076279,35.5031662],[78.0950623,35.5017395],[78.0923004,35.5011177],[78.0837097,35.4994621],[78.0812454,35.4986267],[78.0719299,35.4923286],[78.0646591,35.4916687],[78.0618362,35.4917336],[78.0516815,35.4918213],[78.0502548,35.4919662],[78.0439911,35.4895287],[78.0407639,35.4877243],[78.0386887,35.4825439],[78.0340271,35.4746819],[78.0291214,35.4727783],[78.0274582,35.4724503],[78.0218658,35.4751091],[78.0172577,35.4794312],[78.0160141,35.4807396],[78.0092545,35.4902229],[78.0080109,35.4915276],[78.0076523,35.4924278],[78,35.4943657],[77.9973984,35.4932671],[77.9896011,35.490715],[77.979248,35.4912949],[77.9689636,35.4925613],[77.9669113,35.4848671],[77.9625015,35.4791412],[77.9551544,35.4786301],[77.9447174,35.4780655],[77.9381027,35.4830284],[77.9318314,35.4886589],[77.924469,35.4913673],[77.9141617,35.4923973],[77.9156036,35.4861183],[77.9164276,35.4757309],[77.9131622,35.4701729],[77.9024353,35.4627266],[77.8932266,35.4669113],[77.8900299,35.4723701],[77.8823166,35.477623],[77.8756866,35.4857979],[77.8660507,35.4916153],[77.8568954,35.4964828],[77.8507996,35.4906158],[77.8414764,35.4934235],[77.8335342,35.4993706],[77.8260193,35.5071335],[77.8171997,35.5126724],[77.8147202,35.5167122],[77.8071823,35.5139084],[77.8010483,35.5075798],[77.8003769,35.4993477],[77.7947464,35.4923058],[77.7861328,35.4934654],[77.7743988,35.4943314],[77.7622833,35.4972878],[77.7552643,35.4981117],[77.755043,35.4981384],[77.7469177,35.4914589],[77.7411423,35.4825859],[77.7358932,35.4766655],[77.7293243,35.4648476],[77.7254715,35.4588547],[77.7083054,35.4584045],[77.7003632,35.4574509],[77.6948547,35.4517746],[77.6851654,35.4500008],[77.6794586,35.4558182],[77.6721573,35.4628716],[77.6653214,35.4721947],[77.6522141,35.4804726],[77.6455078,35.4808311],[77.6412277,35.4730225],[77.6422348,35.4644699],[77.6355743,35.4583931],[77.6256561,35.4607582],[77.6167374,35.4616928],[77.6054916,35.4650459],[77.5938644,35.4635925],[77.5838394,35.4645844],[77.5798569,35.4746704],[77.5747299,35.4809151],[77.554451,35.4801445],[77.5442276,35.4822884],[77.531868,35.4822502],[77.5147324,35.4822273],[77.4941483,35.4812355],[77.4842682,35.4769249],[77.4742279,35.4742355],[77.4567566,35.4661827],[77.4490814,35.4612999],[77.4358673,35.4610634],[77.4283142,35.4614563],[77.422493,35.4661179],[77.4163589,35.4703369],[77.4070282,35.4694405],[77.3941269,35.4685478],[77.3853149,35.4719353],[77.3781128,35.4768944],[77.3714676,35.4855003],[77.372757,35.4950829],[77.3631973,35.4948807],[77.3522491,35.4949799],[77.344574,35.5011139],[77.3410339,35.5100174],[77.3376694,35.5248871],[77.3286209,35.5315437],[77.3161087,35.5370026],[77.3051834,35.5449028],[77.2912369,35.5426216],[77.2791519,35.538868],[77.2653885,35.5351982],[77.2440033,35.5309906],[77.2272568,35.5249405],[77.2154694,35.5213928],[77.1960602,35.5209846],[77.1826859,35.5225639],[77.1732559,35.5317612],[77.1595764,35.5367966],[77.1502914,35.5404701],[77.141655,35.5452576],[77.133606,35.5504761],[77.1293411,35.5573463],[77.1200638,35.5612411],[77.1036606,35.5636559],[77.0903702,35.5702744],[77.0769043,35.58218],[77.0704803,35.5866241],[77.0617599,35.5980682],[77.0520782,35.5984573],[77.0518265,35.5985107],[77.0461349,35.5997467],[77.0382843,35.6001282],[77.0270996,35.6008987],[77.016449,35.6053123],[77.0062103,35.6115456],[76.9937363,35.6090851],[76.989006,35.6052933],[76.982399,35.6009827],[76.9766922,35.595974],[76.9640884,35.5926743],[76.9554367,35.5935478],[76.9474716,35.5962257],[76.9389114,35.6023712],[76.9317932,35.6050072],[76.9238892,35.6085968],[76.9152374,35.6094627],[76.9076843,35.6139526],[76.9001236,35.622345],[76.8920517,35.6275482],[76.8765564,35.6390648],[76.870697,35.6437035],[76.8645554,35.6487198],[76.8608475,35.651741],[76.8584976,35.6582794],[76.8541794,35.6649094],[76.8500137,35.669693],[76.842186,35.6663895],[76.8333664,35.6649666],[76.8237,35.6635818],[76.8134613,35.6619911],[76.7963333,35.6584282],[76.7883377,35.6567307],[76.778801,35.657177],[76.7682266,35.6588097],[76.7579727,35.6611214],[76.7520981,35.6737862],[76.7489548,35.6812744],[76.742157,35.6887016],[76.7300262,35.6988258],[76.7231827,35.7074776],[76.7160416,35.7142296],[76.7073135,35.7182999],[76.7007217,35.7206688],[76.6958389,35.7231178],[76.6951599,35.7257423],[76.6919937,35.7371292],[76.6905136,35.7484436],[76.6816711,35.7509117],[76.6727676,35.7508392],[76.6663818,35.7528191],[76.6566772,35.7555199],[76.6485901,35.7577934],[76.6396255,35.7628021],[76.633049,35.7656784],[76.6268845,35.7653236],[76.6190033,35.7617569],[76.6045303,35.7638054],[76.5989609,35.7688751],[76.5920639,35.771019],[76.584259,35.7809715],[76.5780487,35.797348],[76.572197,35.8024254],[76.5688629,35.8073959],[76.5633316,35.8131485],[76.5638046,35.82024],[76.5699158,35.8273125],[76.5790482,35.8374596],[76.585228,35.8413162],[76.5840683,35.8491707],[76.5838013,35.85009],[76.5808868,35.8570633],[76.579483,35.8613586],[76.5772171,35.8674545],[76.579071,35.8740082],[76.5837402,35.880806],[76.5906754,35.8898315],[76.5933762,35.8957253],[76.5899429,35.9071922],[76.5851059,35.9149818],[76.5735703,35.9217682],[76.5666046,35.9229965],[76.5555267,35.924099],[76.5463562,35.9200745],[76.5418472,35.9136925],[76.5412216,35.9043121],[76.5333328,35.8959427],[76.523201,35.8875656],[76.5110092,35.8818855],[76.5034332,35.8820839],[76.4876633,35.8878555],[76.479332,35.8898277],[76.4689026,35.8865929],[76.4617004,35.8819618],[76.4551239,35.8756714],[76.4466095,35.8660431],[76.4407349,35.8604431],[76.427269,35.8529625],[76.4182587,35.8515129],[76.4107285,35.8512039],[76.4002686,35.8527641],[76.3810806,35.8578339],[76.3668137,35.8639526],[76.3574295,35.8583908],[76.355484,35.8499832],[76.3589172,35.8420372],[76.3623047,35.8334007],[76.3630066,35.8248672],[76.3451004,35.8288612],[76.3359604,35.8313179],[76.327301,35.8326035],[76.317749,35.8330078],[76.310318,35.8358498],[76.3040543,35.8393288],[76.2946625,35.8422508],[76.2836685,35.8422546],[76.274765,35.8396492],[76.2622375,35.8376503],[76.2489319,35.836834],[76.2448578,35.8347092],[76.2350998,35.8408546],[76.2278366,35.8374863],[76.2230835,35.8269196],[76.2132034,35.8238297],[76.2005386,35.8246307],[76.1865692,35.8219986],[76.1751404,35.8240776],[76.1623917,35.822998],[76.157692,35.8289299],[76.1514664,35.8330841],[76.1445847,35.8402519],[76.1425781,35.8476562],[76.1457443,35.8544273],[76.1521835,35.8628807],[76.1516953,35.8686371],[76.1495667,35.8751488],[76.1539993,35.8877983],[76.1586533,35.8971024],[76.1607971,35.9036484],[76.1618118,35.9095383],[76.162674,35.9181976],[76.1539383,35.9275055],[76.1473465,35.9348869],[76.1448822,35.9407234],[76.1379547,35.9517899],[76.1326141,35.9568291],[76.1252823,35.9614868],[76.1169815,35.9687042],[76.1140213,35.9757118],[76.1098938,35.9820709],[76.1044083,35.9891777],[76.1002274,35.9946251],[76.0999985,36],[76.1002045,36.0143166],[76.0935364,36.0196648],[76.0862808,36.0238762],[76.0742493,36.0252037],[76.0623474,36.0252991],[76.0530167,36.0233421],[76.0411758,36.0230179],[76.0314865,36.0162468],[76.0187912,36.0150146],[76.0008392,36.0204811],[75.9862366,36.0236168],[75.9754868,36.0286217],[75.9617233,36.0431366],[75.9561844,36.049614],[75.9506607,36.0574646],[75.9482346,36.064827],[75.9514847,36.0746498],[75.9515762,36.0810661],[75.9448929,36.0868683],[75.9421921,36.0951462],[75.9412079,36.1050148],[75.9449921,36.1125412],[75.9447632,36.1159821],[75.9363632,36.1206551],[75.9302292,36.1257591],[75.9283371,36.131279],[75.9362946,36.1350975],[75.9504395,36.1377029],[75.9598465,36.1440201],[75.9642029,36.1517715],[75.9719467,36.1599426],[75.9923019,36.1620178],[76.0067215,36.1632385],[76.0108032,36.1716728],[76.0129013,36.1794472],[76.0130539,36.1893005],[76.0115051,36.1982613],[76.0110703,36.2065163],[76.0092545,36.2173119],[76.0094223,36.2278557],[76.0174255,36.2335014],[76.0295486,36.2317619],[76.0418625,36.2245178],[76.0522766,36.2218781],[76.0607681,36.2229309],[76.0620346,36.230938],[76.0588379,36.2431259],[76.0522232,36.2532883],[76.0410233,36.2600632],[76.0264664,36.2698898],[76.0212708,36.2792778],[76.0197525,36.288929],[76.0134811,36.2976112],[76.0055161,36.3037834],[75.9960403,36.3128281],[75.9916687,36.322731],[75.9847794,36.3326988],[75.9838562,36.3420525],[75.9881668,36.3525734],[75.9928665,36.3639908],[75.9995041,36.3721695],[76.0097961,36.378479],[76.0201111,36.386158],[76.0267334,36.3929672],[76.0319519,36.4007034],[76.0320663,36.4078102],[76.0305634,36.420208],[76.0253372,36.4301224],[76.0214844,36.4372711],[76.0176468,36.4422798],[76.0177383,36.4479408],[76.0161819,36.4568558],[76.0125961,36.4689636],[76.0076599,36.4764748],[76.002449,36.4835281],[75.9926834,36.4912224],[75.9829178,36.49823],[75.9697266,36.5095367],[75.9631271,36.5157051],[75.9580078,36.5180092],[75.9535217,36.5234032],[75.9497757,36.5299721],[75.948555,36.5352287],[75.9475555,36.5446091],[75.9449081,36.5505371],[75.9411392,36.5553093],[75.9356537,36.560524],[75.931633,36.5634613],[75.9272919,36.5684586],[75.9260635,36.5737152],[75.9279556,36.5799179],[75.9312286,36.5884247],[75.9379044,36.5976524],[75.9433441,36.6008759],[75.9396515,36.6008339],[75.933342,36.6037369],[75.9267273,36.6077843],[75.9186554,36.6136398],[75.9099655,36.6217804],[75.9036026,36.6274261],[75.9007111,36.6301384],[75.8986969,36.6312599],[75.8929367,36.6348534],[75.8871536,36.6395912],[75.8810577,36.6459274],[75.8738327,36.6517906],[75.8663177,36.6578827],[75.8602676,36.6617012],[75.8573914,36.663269],[75.8536606,36.6650505],[75.8501968,36.6675262],[75.8452911,36.6709023],[75.8394775,36.6770096],[75.832222,36.6843109],[75.8243027,36.6900101],[75.8166809,36.6925201],[75.8108902,36.6972542],[75.8039474,36.7026634],[75.79702,36.7073822],[75.7938614,36.7087135],[75.7912445,36.7112007],[75.7869034,36.7148056],[75.7794342,36.7179146],[75.7699585,36.7214584],[75.7624741,36.7254791],[75.7567291,36.7276955],[75.7562637,36.727787],[75.7473831,36.7368317],[75.7321777,36.7442856],[75.7198563,36.7458992],[75.7082825,36.7449913],[75.7011719,36.7445908],[75.6923752,36.746727],[75.6859055,36.7531967],[75.6774216,36.7583084],[75.6646576,36.7616196],[75.6345367,36.7659798],[75.6268616,36.7667236],[75.6166077,36.7658844],[75.6012344,36.7653084],[75.5864334,36.7647285],[75.5759048,36.7650337],[75.5682449,36.7673798],[75.5534592,36.768631],[75.5378113,36.7691956],[75.5337219,36.7646866],[75.5338516,36.7565308],[75.5336227,36.7478981],[75.5336761,36.7343788],[75.5334396,36.7279549],[75.5300064,36.7256851],[75.520874,36.7225342],[75.5089798,36.7278862],[75.4996338,36.7332191],[75.4925537,36.7360191],[75.4851227,36.7328568],[75.4685287,36.7208061],[75.4585495,36.7181168],[75.455162,36.7213478],[75.450386,36.7282524],[75.4464645,36.7360725],[75.4422455,36.7411423],[75.4354782,36.7492065],[75.4304504,36.7607002],[75.4247971,36.7657738],[75.4197388,36.7742882],[75.4204025,36.7862091],[75.4219131,36.7967453],[75.4216843,36.8045425],[75.4240265,36.8125534],[75.4278259,36.8246803],[75.4313126,36.833374],[75.4299774,36.8439293],[75.4269028,36.8515129],[75.4249725,36.8600082],[75.4200974,36.868309],[75.4162445,36.8757973],[75.4080276,36.8862267],[75.3975983,36.8952446],[75.3916702,36.9026108],[75.3889084,36.9115601],[75.3908691,36.9194145],[75.395256,36.9315681],[75.4105301,36.9416885],[75.4065628,36.9506226],[75.3877869,36.9551392],[75.375473,36.9492455],[75.3655014,36.9515915],[75.3546906,36.954628],[75.3449936,36.9555931],[75.3258972,36.9584427],[75.3196411,36.9621391],[75.308548,36.9674644],[75.296875,36.9709625],[75.2834549,36.9703369],[75.2708893,36.9680977],[75.261734,36.9653893],[75.2548752,36.9622078],[75.2351685,36.9581642],[75.2260437,36.9604912],[75.2135239,36.966507],[75.2006989,36.9699936],[75.1838684,36.9718895],[75.1764755,36.9774208],[75.1693802,36.9850121],[75.1625595,36.9926033],[75.1671829,37.0054283],[75.1663513,37.011158],[75.1598129,37.0155411],[75.1498413,37.021534],[75.1432953,37.0259132],[75.1378479,37.0224953],[75.1255341,37.0126724],[75.1175156,37.0060501],[75.1069489,37.0058517],[75.0946808,37.0074921],[75.0804062,37.0070763],[75.0712585,37.003891],[75.0621109,37.0000191],[75.0535507,37.0016441],[75.0469971,37.0057907],[75.0410156,37.0110779],[75.031601,37.0133934],[75.022171,37.0106621],[75.0153122,37.0065536],[75.0070114,36.9992332],[75.001297,36.9969521],[74.9924393,36.9937592],[74.9778824,36.9940186],[74.9756012,36.9940224],[74.9661789,36.993351],[74.9541855,36.9894753],[74.9456177,36.9855919],[74.9364777,36.9805641],[74.9276199,36.9725533],[74.925087,36.9650688],[74.9233932,36.9562645],[74.9236984,36.9486351],[74.9213028,36.9416084],[74.917305,36.9363403],[74.9101715,36.9340553],[74.8996201,36.9347572],[74.8902054,36.9361458],[74.8833618,36.9395943],[74.8778,36.9453964],[74.8744278,36.9531174],[74.8729477,36.9595604],[74.8690186,36.9686813],[74.8667755,36.9742699],[74.864296,36.9804573],[74.861412,36.9869843],[74.8591385,36.9941864],[74.8542862,37.0008354],[74.8475266,37.0075188],[74.8413544,37.0140266],[74.83992,37.0209236],[74.8423004,37.0295067],[74.8420181,37.0437202],[74.8408737,37.0510597],[74.834877,37.0558815],[74.8237381,37.0517578],[74.8071671,37.0515366],[74.7960281,37.0469589],[74.792038,37.038475],[74.7906113,37.0299911],[74.7800522,37.0228882],[74.7714767,37.0235748],[74.76577,37.0256424],[74.7540588,37.0281639],[74.7420654,37.0265579],[74.7326431,37.0258675],[74.7263565,37.0293045],[74.7217789,37.0354958],[74.7203369,37.0444336],[74.7226105,37.0517731],[74.7231674,37.0600281],[74.7194519,37.0616341],[74.7131577,37.066906],[74.7091446,37.0756111],[74.705986,37.0843239],[74.6994019,37.0918884],[74.6893997,37.0902786],[74.6796951,37.0836258],[74.6717072,37.0776558],[74.6642838,37.0723763],[74.6500092,37.0698433],[74.6388702,37.0673103],[74.6314468,37.0643234],[74.624054,37.0533066],[74.6177826,37.0464211],[74.6103745,37.0418282],[74.5978165,37.0374565],[74.5858307,37.0339966],[74.5715637,37.0321426],[74.5630264,37.0378304],[74.5499725,37.0468102],[74.5437927,37.0531311],[74.5400238,37.0621223],[74.5348358,37.0751839],[74.5282364,37.0806732],[74.5179596,37.0788155],[74.5119781,37.0744476],[74.5034485,37.0641136],[74.4965591,37.0702896],[74.4959412,37.0808334],[74.4944687,37.0904579],[74.4887238,37.0975533],[74.4898071,37.1103973],[74.4857559,37.1204758],[74.4774475,37.1245842],[74.4662781,37.127079],[74.4605255,37.1337128],[74.4619141,37.1424294],[74.4730301,37.1514015],[74.4812851,37.1596756],[74.4875412,37.1672554],[74.4894867,37.1794128],[74.4831619,37.1867332],[74.4759598,37.1961174],[74.4819336,37.2036972],[74.492775,37.2128944],[74.4996109,37.2193298],[74.5035782,37.2282829],[74.5046921,37.2367668],[74.5166931,37.2418365],[74.5321579,37.2427826],[74.5421753,37.2441788],[74.5504761,37.2458],[74.5587921,37.2442093],[74.5668335,37.2364273],[74.5728683,37.2311592],[74.5848923,37.2325554],[74.5903091,37.2399025],[74.5917053,37.2502213],[74.5962677,37.2571068],[74.6014252,37.2568817],[74.6160355,37.2557564],[74.6249008,37.2612686],[74.6323471,37.2608185],[74.6392365,37.2566986],[74.6449814,37.2507439],[74.650444,37.2411156],[74.6599045,37.2365379],[74.6653519,37.2360878],[74.6687775,37.2397575],[74.6776276,37.2537498],[74.6836319,37.2615509],[74.6947937,37.2670593],[74.7128296,37.2741776],[74.7231293,37.2803688],[74.7334442,37.2819786],[74.7446213,37.2801437],[74.7509308,37.2783127],[74.7563782,37.2762451],[74.7612534,37.271431],[74.7661285,37.2636375],[74.7715759,37.2569847],[74.7744446,37.2523994],[74.7816086,37.2475853],[74.7867661,37.2446022],[74.7913513,37.2393265],[74.7985153,37.231987],[74.8048172,37.22052],[74.8111191,37.2131805],[74.8194199,37.2136345],[74.8328781,37.2163811],[74.8460464,37.2188911],[74.8658066,37.2191048],[74.8826981,37.2220688],[74.8858261,37.2295647],[74.8963852,37.2309189],[74.9083405,37.2338943],[74.9130707,37.2387962],[74.9168854,37.2455101],[74.9191513,37.2560959],[74.9144669,37.268837],[74.9162445,37.2766609],[74.9300613,37.2849388],[74.9411392,37.2885818],[74.9540024,37.2904205],[74.9709015,37.2914162],[74.9844208,37.2902908],[74.9995956,37.2917099],[75.0146866,37.2956467],[75.0271454,37.3018227],[75.0436325,37.3073845],[75.0619278,37.3099976],[75.0781403,37.3155479],[75.0895615,37.3175774],[75.1039276,37.3171387],[75.1150742,37.3189316],[75.1180878,37.3242531],[75.1187286,37.332283],[75.1224823,37.3421974],[75.1274414,37.350071],[75.1341782,37.3556862],[75.1354675,37.3612061],[75.135582,37.3676224],[75.1271515,37.3735161],[75.1234283,37.3816223],[75.1220932,37.3884735],[75.1273956,37.3942909],[75.1335754,37.399437],[75.1420364,37.405304],[75.1480255,37.407238],[75.1516647,37.4107361],[75.1518402,37.4148636],[75.1502914,37.4191895],[75.1451721,37.4278107],[75.1393814,37.4400864],[75.1309586,37.4539223],[75.1238632,37.4609032],[75.1162109,37.4674187],[75.1051025,37.4738731],[75.091156,37.4894485],[75.0796509,37.4997864],[75.072197,37.5090523],[75.0693512,37.5181656],[75.0669937,37.5199585],[75.0647049,37.5196915],[75.0607605,37.5164146],[75.050972,37.5063934],[75.0407944,37.4997978],[75.037056,37.499733],[75.0340881,37.5028877],[75.0319748,37.5065155],[75.0296097,37.5085373],[75.0238571,37.5086632],[75.0189896,37.5076599],[75.0138016,37.5077972],[75.0097122,37.5100136],[75.0078964,37.5131912],[75.0048752,37.5179482],[75.002655,37.5252419],[74.9970703,37.5292664],[74.9897537,37.5332565],[74.9768982,37.5398979],[74.9661255,37.5438271],[74.954155,37.5495644],[74.9377365,37.5593452],[74.9220886,37.5721169],[74.9134674,37.5811195],[74.9085236,37.5922546],[74.9068146,37.6011581],[74.9095001,37.6076241],[74.9144058,37.6171112],[74.9130249,37.6246452],[74.9087296,37.6332703],[74.9015503,37.6418457],[74.892746,37.6565742],[74.8902893,37.6613388],[74.8895035,37.6684265],[74.8951263,37.6731148],[74.9027863,37.6773834],[74.9123688,37.6848946],[74.9175797,37.6939278],[74.9216537,37.7024803],[74.9261551,37.706459],[74.9362946,37.7146683],[74.9463577,37.7256203],[74.9547806,37.7337914],[74.9615173,37.7403297],[74.9707108,37.7517242],[74.9783249,37.758049],[74.9893875,37.7648926],[75.0018311,37.7740517],[75.0046005,37.7782249],[75.0052795,37.7846527],[75.0031281,37.789196],[74.9978256,37.7927704],[74.9881058,37.7990074],[74.9772568,37.8045425],[74.9573288,37.8140335],[74.94384,37.8204308],[74.9291382,37.8288651],[74.9193497,37.837162],[74.914772,37.8453255],[74.9150925,37.8538094],[74.9198227,37.8600807],[74.9267807,37.8691483],[74.93116,37.8774796],[74.931839,37.8836746],[74.9258652,37.8899803],[74.9174881,37.8992195],[74.9135284,37.9057922],[74.9152527,37.9156761],[74.9166489,37.9271584],[74.9134369,37.9376373],[74.9096603,37.9476471],[74.905571,37.9583397],[74.9059219,37.9659081],[74.9072113,37.9712029],[74.9136276,37.9793396],[74.9160004,37.987175],[74.9168243,37.998188],[74.9179001,38.0105782],[74.9171295,38.0169792],[74.9118042,38.0205498],[74.9036331,38.0224571],[74.8882828,38.022171],[74.876709,38.021492],[74.8690872,38.0243301],[74.8618698,38.0326691],[74.8557816,38.0421753],[74.8505478,38.0519295],[74.8491592,38.0592346],[74.849823,38.0658913],[74.8470612,38.0708809],[74.8406067,38.0732765],[74.8300934,38.0755959],[74.8218307,38.0800171],[74.8170395,38.0847359],[74.8138733,38.0931549],[74.8138504,38.1032333],[74.8128815,38.1155853],[74.8114777,38.1231194],[74.8121643,38.1288605],[74.8109207,38.131588],[74.8096085,38.1363754],[74.8043976,38.1449814],[74.7997665,38.1538239],[74.7970352,38.1666031],[74.7956543,38.1826134],[74.7959137,38.2018661],[74.7982635,38.2193222],[74.7973022,38.2312164],[74.7938232,38.2400856],[74.7918854,38.2462349],[74.7917786,38.2586021],[74.793869,38.265976],[74.7963562,38.2790833],[74.7994461,38.2917442],[74.8014069,38.3032379],[74.8000717,38.308712],[74.7917709,38.3133621],[74.7852173,38.3182755],[74.7818451,38.3234749],[74.7807617,38.330101],[74.7783279,38.3424225],[74.7809753,38.3507233],[74.7861328,38.353344],[74.8039474,38.3607941],[74.8214569,38.3686943],[74.8328552,38.3718796],[74.8407974,38.3741035],[74.8457642,38.3775787],[74.8539124,38.3832855],[74.863739,38.394928],[74.8678284,38.4039421],[74.8694992,38.4158859],[74.8680573,38.4247932],[74.8656769,38.4357452],[74.8622208,38.4439278],[74.8592072,38.4564705],[74.8553925,38.4667053],[74.8527527,38.4765091],[74.849884,38.4842453],[74.8422165,38.4870758],[74.8354492,38.488781],[74.8238297,38.4874115],[74.8107224,38.4866982],[74.8033142,38.4904518],[74.7976151,38.4953804],[74.7933273,38.5017128],[74.7912445,38.5122108],[74.7903214,38.5227318],[74.7891998,38.5302696],[74.7850113,38.5336266],[74.7803268,38.5339928],[74.772995,38.5352211],[74.7660065,38.534626],[74.7563629,38.5351257],[74.7484207,38.5368004],[74.7420883,38.5341568],[74.7317276,38.5295944],[74.7221832,38.5271149],[74.7136383,38.5294609],[74.7100372,38.5325966],[74.708725,38.5369225],[74.7070618,38.5430756],[74.7010651,38.5477676],[74.6920776,38.5546875],[74.6789474,38.5631256],[74.6547546,38.5791245],[74.6425171,38.5868912],[74.6344452,38.5922203],[74.6270828,38.5939026],[74.6218033,38.5944786],[74.6127701,38.5938339],[74.6040039,38.5938759],[74.5978241,38.5953484],[74.5889053,38.5997429],[74.5804596,38.6073532],[74.5747986,38.6104393],[74.5710144,38.6101303],[74.5693512,38.6075783],[74.567215,38.6018028],[74.5597076,38.59935],[74.553833,38.6001434],[74.5484467,38.6036949],[74.5442123,38.6079521],[74.5345001,38.6180534],[74.52211,38.6294708],[74.5116425,38.636116],[74.503685,38.6377754],[74.4938202,38.6359558],[74.4801483,38.6340523],[74.4681396,38.6347046],[74.4444122,38.6341019],[74.4360199,38.6357727],[74.4273071,38.6402054],[74.4163818,38.6431694],[74.3990173,38.6462097],[74.3853989,38.6507149],[74.3747253,38.6548233],[74.3647385,38.6559677],[74.3509293,38.657711],[74.3342896,38.6570969],[74.3094711,38.6560555],[74.2855301,38.655262],[74.2667618,38.6566505],[74.2479782,38.6582642],[74.2194901,38.6614685],[74.2052307,38.6670799],[74.1850891,38.6732368],[74.1741257,38.6768608],[74.1638641,38.6775246],[74.1525803,38.6794853],[74.14534,38.681572],[74.1389465,38.6787415],[74.1345901,38.6708412],[74.1276932,38.6537132],[74.1196594,38.6358681],[74.1170425,38.6284714],[74.1074677,38.619751],[74.0957718,38.612812],[74.0870056,38.6057129],[74.0780106,38.5972366],[74.0740051,38.5881958],[74.0749741,38.5721817],[74.0786896,38.5601311],[74.0848389,38.5527267],[74.0860977,38.5504684],[74.0829849,38.5480995],[74.0755081,38.5453873],[74.0656281,38.54422],[74.047905,38.54216],[74.0371246,38.5416527],[74.0312805,38.541729],[74.0209122,38.5384827],[74.0117493,38.5343475],[73.9970322,38.5303001],[73.9853134,38.5313683],[73.9738007,38.5342712],[73.9650116,38.5349541],[73.9515533,38.5355186],[73.9340515,38.5352783],[73.9232025,38.5363655],[73.9149246,38.538662],[73.9063034,38.542099],[73.9001999,38.5481224],[73.8983994,38.5558624],[73.8944397,38.5660706],[73.8902969,38.5803947],[73.883606,38.5863991],[73.8780594,38.5862503],[73.8649063,38.5863495],[73.8491211,38.5866051],[73.8394012,38.5884018],[73.8333969,38.5919037],[73.8187332,38.5995178],[73.8081741,38.6067924],[73.8010254,38.6097984],[73.79599,38.6112633],[73.7943802,38.6144295],[73.7945938,38.6162643],[73.7955475,38.6208763],[73.7965164,38.6252556],[73.7978287,38.6349182],[73.7948837,38.6415558],[73.7925797,38.651104],[73.7932663,38.6587372],[73.7934113,38.6619492],[73.7937317,38.6676903],[73.7922363,38.6749802],[73.7883148,38.6773911],[73.7827072,38.6786079],[73.7753067,38.6804657],[73.7681808,38.6836815],[73.7569962,38.7080994],[73.7455139,38.7092896],[73.7349091,38.7105026],[73.7151031,38.7090836],[73.706337,38.7087631],[73.6899185,38.709301],[73.6455765,38.7214127],[73.6240997,38.727951],[73.6158142,38.734066],[73.6073761,38.7426987],[73.5766449,38.7706795],[73.563942,38.7910843],[73.5561447,38.8125877],[73.5598984,38.8228302],[73.568573,38.829361],[73.5856628,38.8279419],[73.635498,38.8325768],[73.6371078,38.839756],[73.6396027,38.8467331],[73.6457977,38.85569],[73.6568146,38.8577042],[73.6685715,38.8572273],[73.6961288,38.8573303],[73.6960983,38.8674278],[73.6987152,38.8773956],[73.70224,38.8869324],[73.7153473,38.9030228],[73.7196426,38.9096069],[73.7398376,38.9394913],[73.7511215,38.9373817],[73.7693329,38.9371262],[73.7780228,38.9342308],[73.786232,38.9294777],[73.7987061,38.9269485],[73.8156052,38.9142494],[73.8233566,38.9170494],[73.8272934,38.9249916],[73.8377991,38.9359245],[73.8409576,38.947052],[73.84552,38.9615936],[73.8432846,38.9721222],[73.8367767,38.9826012],[73.8327103,39.0020599],[73.8310471,39.0102615],[73.8192749,39.0324974],[73.8191681,39.0347824],[73.8195496,39.0393753],[73.818985,39.0453186],[73.8162842,39.0463905],[73.8127823,39.0458336],[73.8093414,39.0439072],[73.8040924,39.0430756],[73.796196,39.0421677],[73.7939377,39.0400429],[73.7919083,39.0331154],[73.790062,39.0284805],[73.7846832,39.0233727],[73.7843781,39.0193672],[73.7660599,39.0258141],[73.7494049,39.024292],[73.7426605,39.028862],[73.7358627,39.0343513],[73.7313385,39.0458908],[73.7219162,39.060688],[73.7111053,39.0788803],[73.71241,39.0865021],[73.7152863,39.1019783],[73.7139969,39.1085892],[73.7103271,39.1254349],[73.6805878,39.1543961],[73.6726532,39.1541023],[73.665062,39.1531334],[73.6582336,39.158844],[73.6545334,39.1662827],[73.6540375,39.1742935],[73.6534576,39.1836815],[73.6475983,39.1974564],[73.6431808,39.2069321],[73.6344223,39.2199135],[73.6254883,39.2308235],[73.6199112,39.2352066],[73.6058655,39.242939],[73.5937729,39.2383537],[73.5763931,39.2381554],[73.569313,39.2429352],[73.5622025,39.2481728],[73.5587997,39.2599792],[73.5517349,39.2691154],[73.5429993,39.2719955],[73.5300369,39.2717323],[73.4759369,39.2783737],[73.4640045,39.2804375],[73.4612656,39.280426],[73.4588547,39.2811546],[73.4537888,39.2821465],[73.4486847,39.2838249],[73.4469604,39.2888107],[73.4472809,39.2940903],[73.4491348,39.3040009],[73.4512253,39.3150635],[73.4560547,39.3246002],[73.460289,39.3283958],[73.4690247,39.3307228],[73.483345,39.3336754],[73.4868088,39.3351555],[73.4949493,39.3376923],[73.5013275,39.3399429],[73.5057755,39.3455772],[73.5058289,39.3503876],[73.5040894,39.3556061],[73.5020599,39.3665428],[73.5044556,39.3776131],[73.5088806,39.3827515],[73.5148239,39.3872147],[73.517601,39.3880539],[73.5659485,39.3942528],[73.5735931,39.3995895],[73.5806046,39.4101791],[73.5842667,39.4176598],[73.5855637,39.4252815],[73.5885468,39.4389305],[73.5907822,39.4456673],[73.6003418,39.4581871],[73.6370239,39.4662285],[73.6432495,39.4710884],[73.6468811,39.475029],[73.6501083,39.4815331],[73.6567612,39.4908905],[73.6628418,39.4935837],[73.6687851,39.4938545],[73.6752319,39.4941864],[73.6790161,39.4935532],[73.6849594,39.4930458],[73.6917953,39.4925613],[73.7051926,39.4908981],[73.7161789,39.490303],[73.7298279,39.489563],[73.7386475,39.4907379],[73.747612,39.4948921],[73.7587509,39.4970474],[73.7695999,39.4991913],[73.771843,39.499855],[73.7730789,39.5002213],[73.7809906,39.5022697],[73.788147,39.5072823],[73.7896729,39.5123634],[73.7899628,39.5185509],[73.7899475,39.5249596],[73.7897873,39.5281563],[73.7902756,39.5302353],[73.7922287,39.5328064],[73.7932281,39.536499],[73.7939148,39.540638],[73.7931595,39.5499992],[73.7949219,39.5624084],[73.7940903,39.5733719],[73.7943878,39.5855103],[73.7997818,39.5964203],[73.8080521,39.6030693],[73.8193512,39.6084251],[73.8256989,39.6120377],[73.8303223,39.61446],[73.8331985,39.6163712],[73.8351822,39.6182594],[73.8376923,39.6215363],[73.8440781,39.6304131],[73.8508759,39.6370163],[73.8615189,39.6439514],[73.870018,39.6522026],[73.8751297,39.6569214],[73.8796234,39.6623116],[73.8826675,39.6667442],[73.8837433,39.6690636],[73.8847198,39.673439],[73.8863831,39.6760025],[73.8903885,39.6790886],[73.8975677,39.6840973],[73.9059525,39.6886749],[73.9084549,39.6901474],[73.9074554,39.6934586],[73.9073257,39.696434],[73.9072189,39.6988411],[73.8966522,39.7026024],[73.8852234,39.7123337],[73.8851318,39.7144241],[73.8848114,39.7214966],[73.8826599,39.7274399],[73.8816071,39.7395744],[73.8812714,39.7425499],[73.8779678,39.7457314],[73.8718338,39.7489128],[73.863945,39.7525024],[73.8588715,39.7549858],[73.8535538,39.7540283],[73.8452225,39.7512856],[73.8405838,39.7523232],[73.8375549,39.7547798],[73.8353348,39.7639732],[73.8340302,39.772213],[73.8351288,39.799942],[73.8358917,39.8088837],[73.8450928,39.8304863],[73.8511887,39.8401566],[73.8567657,39.8447762],[73.8762589,39.8517952],[73.8803177,39.8593864],[73.8903351,39.8649559],[73.8988876,39.8691406],[73.9041748,39.8737602],[73.9094315,39.8804398],[73.9129105,39.8871078],[73.9127579,39.8990173],[73.9093094,39.9131966],[73.9082947,39.9225845],[73.9082565,39.9257889],[73.9094772,39.9307709],[73.9156952,39.9384422],[73.9453354,39.9713936],[73.9759064,40.0000076],[73.9721909,40.0062981],[73.9636765,40.0115089],[73.9593353,40.0130844],[73.9522781,40.0143356],[73.9449844,40.0162849],[73.9399796,40.0169792],[73.9343491,40.0174751],[73.9319763,40.0212479],[73.9338684,40.0225296],[73.9400711,40.0254402],[73.9471436,40.02808],[73.9508591,40.0297318],[73.9552231,40.0320435],[73.9603958,40.0333977],[73.9655838,40.0347519],[73.9714279,40.0369911],[73.9764481,40.0399551],[73.9802933,40.0432053],[73.9843445,40.0452995],[73.9880905,40.0474091],[73.9909973,40.0500145],[73.9953232,40.0518646],[73.9994507,40.0548706],[74.0018311,40.0584221],[74.0033569,40.0624657],[74.0046082,40.0667534],[74.0055923,40.0715103],[74.0064011,40.0739899],[74.0090179,40.0768356],[74.012001,40.0803566],[74.0149155,40.0831909],[74.0188828,40.0878067],[74.0237732,40.0928345],[74.0264359,40.096138],[74.0315018,40.099556],[74.0339737,40.1005783],[74.0378723,40.1008492],[74.0405884,40.1011772],[74.0454712,40.0988808],[74.0492172,40.0936661],[74.0522766,40.0909996],[74.0573654,40.0875511],[74.0633545,40.0842857],[74.0696869,40.0814629],[74.0737686,40.080349],[74.0773392,40.0801735],[74.0834198,40.0814819],[74.0891113,40.0853233],[74.0928116,40.0867462],[74.099205,40.0882645],[74.1062927,40.0908966],[74.1101303,40.0939102],[74.1138458,40.0989914],[74.1161728,40.1018524],[74.1187668,40.1042442],[74.1219711,40.1068344],[74.1263275,40.1089096],[74.1308823,40.1098289],[74.1372223,40.1106606],[74.1434326,40.1098976],[74.1507034,40.1111412],[74.1531982,40.1123924],[74.1571808,40.1135712],[74.1647644,40.1150284],[74.1729507,40.1164513],[74.1815109,40.1187744],[74.189415,40.1204453],[74.1982574,40.1225243],[74.2075958,40.1234322],[74.2151108,40.1239738],[74.2255707,40.1241379],[74.2324371,40.1240273],[74.2396317,40.1243515],[74.2453384,40.124752],[74.2548141,40.1272545],[74.2602692,40.1281242],[74.2654419,40.1258049],[74.2689972,40.1185303],[74.2691956,40.113945],[74.2691574,40.110054],[74.2690811,40.1057091],[74.2741928,40.1027069],[74.2822342,40.1025314],[74.2891312,40.1063042],[74.2949219,40.1110458],[74.2995453,40.1126442],[74.303627,40.1115227],[74.3094101,40.1093979],[74.3139114,40.1061935],[74.3322983,40.0979347],[74.3406143,40.0940781],[74.3485794,40.0895538],[74.3535919,40.0888405],[74.35952,40.0917435],[74.3636856,40.0949631],[74.3670197,40.0989113],[74.3717041,40.1080551],[74.379921,40.1131287],[74.384285,40.1151924],[74.3901749,40.1176376],[74.3997345,40.1210365],[74.4114838,40.1254654],[74.419426,40.1307793],[74.4253693,40.1371117],[74.4318619,40.1429558],[74.4366913,40.1468239],[74.4396286,40.1496468],[74.4428329,40.1520004],[74.4488678,40.1560364],[74.4516907,40.1574936],[74.4576874,40.1610718],[74.4685135,40.1717262],[74.475235,40.1766396],[74.4826279,40.1824379],[74.4856644,40.1896019],[74.4906311,40.1948357],[74.4994507,40.1998711],[74.5100327,40.2043533],[74.519722,40.205677],[74.5287704,40.2097778],[74.5342026,40.2136154],[74.5358353,40.2151299],[74.5431519,40.223217],[74.5467224,40.232872],[74.5515594,40.2399406],[74.5546112,40.2439003],[74.5651474,40.2543335],[74.5742569,40.2623215],[74.5791473,40.2666435],[74.5838852,40.2693672],[74.5894089,40.277317],[74.5931778,40.2791786],[74.6041336,40.2811127],[74.6103516,40.2803268],[74.6156693,40.279583],[74.6279755,40.276638],[74.633728,40.2740402],[74.639389,40.2705307],[74.644928,40.2688637],[74.6516953,40.2675819],[74.6554794,40.2696724],[74.6648636,40.2739754],[74.6721191,40.2811394],[74.6752701,40.2892151],[74.678009,40.2961617],[74.6790771,40.3011436],[74.6825867,40.306675],[74.6883774,40.3141518],[74.694191,40.3218498],[74.6969833,40.3292542],[74.696579,40.3345451],[74.6951294,40.3382835],[74.694664,40.3428879],[74.7039719,40.3462791],[74.7156296,40.3458786],[74.7225952,40.3466454],[74.7386017,40.3478394],[74.7637177,40.3471565],[74.7681961,40.3469124],[74.7813797,40.3468781],[74.7917023,40.3481483],[74.7999649,40.3467751],[74.8074799,40.3438454],[74.8223877,40.339817],[74.8344116,40.333889],[74.8439713,40.3303833],[74.8552246,40.3258705],[74.8663864,40.3266258],[74.8755341,40.3281784],[74.8848953,40.3320084],[74.8913956,40.3341637],[74.8985214,40.3365173],[74.9020386,40.3388405],[74.9028702,40.3442879],[74.9006805,40.3526535],[74.8942795,40.3578224],[74.892662,40.3597412],[74.8828201,40.3664703],[74.8747101,40.369442],[74.86689,40.3723946],[74.847908,40.3933678],[74.8409958,40.3994751],[74.8275146,40.4091492],[74.8166122,40.4175339],[74.8127823,40.4214096],[74.8075027,40.4290276],[74.7986832,40.437294],[74.7923126,40.4429092],[74.7888412,40.4474525],[74.7910919,40.452137],[74.799614,40.4596863],[74.8055344,40.4650879],[74.810112,40.468956],[74.8149261,40.4753342],[74.8155594,40.4819374],[74.8167877,40.4885101],[74.8179245,40.5003586],[74.8190002,40.5053368],[74.8201981,40.5084763],[74.8286972,40.5155678],[74.836586,40.5194817],[74.8523712,40.5179253],[74.865303,40.5117149],[74.8751144,40.5075073],[74.8859329,40.5043907],[74.9035187,40.4997444],[74.9156113,40.4942627],[74.9267502,40.4851685],[74.9331284,40.4797745],[74.9491196,40.4681129],[74.9562378,40.4640503],[74.97155,40.4579201],[74.9807587,40.4537354],[74.9925613,40.4546738],[75.0024261,40.4603004],[75.0068359,40.4623413],[75.0114517,40.4634514],[75.0153351,40.4632301],[75.0216827,40.4605827],[75.0340958,40.4555244],[75.0484924,40.4492073],[75.0580826,40.4429359],[75.0617828,40.4408913],[75.0748367,40.4362488],[75.0859299,40.433094],[75.0977554,40.4342499],[75.1068344,40.437851],[75.1121597,40.4400635],[75.1182632,40.4440613],[75.124855,40.4498672],[75.1339264,40.4564438],[75.1428375,40.4584503],[75.1554947,40.455883],[75.1647568,40.4523659],[75.174202,40.4476967],[75.1881409,40.4459686],[75.1987305,40.4437485],[75.2081223,40.4415932],[75.2154999,40.4432259],[75.224205,40.4461517],[75.2346039,40.4537888],[75.2396164,40.4617386],[75.2484512,40.4717598],[75.2593307,40.4752426],[75.2691193,40.4769554],[75.2769394,40.4799309],[75.2900543,40.4846535],[75.3011551,40.4961395],[75.3069687,40.5058746],[75.3110504,40.5104408],[75.3182068,40.5214729],[75.3288498,40.5284004],[75.3439331,40.5346069],[75.3520355,40.5373268],[75.3638687,40.5412025],[75.3731308,40.5433998],[75.3813705,40.5445099],[75.3856049,40.5447159],[75.3917694,40.5461769],[75.4140091,40.5544624],[75.4205856,40.5597954],[75.4291306,40.5666122],[75.4366989,40.5727997],[75.4443741,40.5798988],[75.4552231,40.5913849],[75.462616,40.6014786],[75.476387,40.6120987],[75.4938889,40.6208878],[75.5086899,40.6268616],[75.5185242,40.6315308],[75.531929,40.6385002],[75.5479965,40.6478271],[75.5640717,40.6544037],[75.5804596,40.6582069],[75.5948563,40.6575508],[75.6001587,40.6535568],[75.6031113,40.6474152],[75.6096802,40.6440277],[75.6131287,40.6396904],[75.6136017,40.6357651],[75.6156845,40.6299057],[75.6238022,40.6213837],[75.6278763,40.6117325],[75.6267929,40.6044693],[75.6267471,40.5985146],[75.6260834,40.5951157],[75.6242142,40.5890427],[75.624733,40.5770988],[75.6234512,40.5652618],[75.6236572,40.5615807],[75.6248398,40.5502777],[75.6297913,40.5375977],[75.6334534,40.5298042],[75.6360779,40.526207],[75.6431351,40.5163689],[75.6506653,40.5053596],[75.6585083,40.5028076],[75.6667709,40.5013733],[75.676506,40.5023689],[75.6849976,40.5002327],[75.6887589,40.493351],[75.6910019,40.4890862],[75.6970749,40.4868736],[75.7103348,40.4844322],[75.7204895,40.4782944],[75.72258,40.4726601],[75.7224503,40.4660225],[75.7223282,40.4621353],[75.7169495,40.456974],[75.7154083,40.4538612],[75.7139893,40.4491386],[75.7068481,40.4415665],[75.7006836,40.4346237],[75.6933517,40.4279785],[75.685318,40.423214],[75.6791306,40.4160385],[75.6764526,40.4107056],[75.6734467,40.4024162],[75.6698227,40.3939362],[75.6671143,40.3856239],[75.6653824,40.3779411],[75.6632767,40.3668442],[75.6639786,40.35672],[75.6678543,40.350975],[75.6733475,40.3462791],[75.6807022,40.3421478],[75.6893005,40.332901],[75.6947861,40.3227005],[75.6966019,40.3200645],[75.6985855,40.3080254],[75.6942749,40.2986717],[75.6935043,40.2916183],[75.6958847,40.2859688],[75.6979446,40.282856],[75.706604,40.2825394],[75.7164841,40.2878761],[75.7242203,40.2956352],[75.7272568,40.301403],[75.7324448,40.3049698],[75.7363129,40.3019753],[75.7410507,40.2986984],[75.7469864,40.2980919],[75.7628937,40.3009758],[75.7742538,40.2979622],[75.7861481,40.2997246],[75.7961044,40.3057365],[75.8027878,40.3119545],[75.8062973,40.3165436],[75.8139038,40.3229332],[75.8195724,40.3253174],[75.835556,40.3233757],[75.8479309,40.315937],[75.855072,40.3127251],[75.8607254,40.3123627],[75.8682785,40.3127899],[75.8811493,40.3098984],[75.8907394,40.3044662],[75.8967056,40.2988052],[75.9006882,40.2941933],[75.9046173,40.2904816],[75.9100189,40.2881546],[75.9186859,40.2910767],[75.9242096,40.2951279],[75.9281082,40.3006668],[75.9279175,40.3096161],[75.9242172,40.3167343],[75.9185944,40.3228264],[75.9215775,40.330658],[75.9298172,40.3372269],[75.9382095,40.342411],[75.9438553,40.3445663],[75.9505844,40.3510056],[75.95121,40.3539391],[75.9523544,40.3614311],[75.9546738,40.3686142],[75.9581223,40.375267],[75.9647675,40.378273],[75.9799728,40.3772774],[75.9876633,40.3735657],[75.9989777,40.3647995],[76.010498,40.3578529],[76.0174789,40.3532677],[76.0238876,40.3489456],[76.0319901,40.3488731],[76.0408478,40.3528748],[76.0464783,40.3600655],[76.0450516,40.3686447],[76.0430984,40.3751907],[76.0430145,40.3823013],[76.0503235,40.3884697],[76.0571442,40.3903084],[76.0614014,40.3907166],[76.0788574,40.3936882],[76.0911331,40.3933296],[76.1014023,40.393795],[76.1111526,40.3949776],[76.1253204,40.3954086],[76.1326981,40.3942261],[76.1424637,40.3903656],[76.1471786,40.3895912],[76.1617661,40.3858643],[76.1742935,40.3824997],[76.1806335,40.3827591],[76.1928406,40.386982],[76.2023392,40.3911591],[76.2108383,40.3944817],[76.2246399,40.4020348],[76.2333832,40.407402],[76.2398834,40.4115486],[76.2490616,40.4180336],[76.2573166,40.4243546],[76.2624588,40.4297371],[76.266304,40.4368134],[76.2696609,40.4397964],[76.2736816,40.4356232],[76.2746887,40.4289055],[76.277977,40.4211159],[76.2890244,40.4077492],[76.2988358,40.4043274],[76.3084869,40.3995438],[76.3163528,40.3948746],[76.3206863,40.3909111],[76.3230438,40.3854752],[76.3222885,40.3791046],[76.3209076,40.3750725],[76.3204269,40.3659325],[76.3202133,40.3615913],[76.3193741,40.3570633],[76.3234406,40.3508224],[76.3296432,40.3448944],[76.3367615,40.3441734],[76.3445892,40.3518944],[76.3469696,40.3567734],[76.3494644,40.3650856],[76.3543625,40.3759842],[76.3611603,40.3826256],[76.3696442,40.3857117],[76.3775024,40.3860855],[76.3850021,40.3860245],[76.3954315,40.3853073],[76.4041595,40.3853874],[76.4136429,40.386795],[76.419548,40.3884506],[76.4239426,40.3899803],[76.4331055,40.3936996],[76.442215,40.3994904],[76.4461212,40.4019699],[76.4542847,40.4098854],[76.4580612,40.4137535],[76.4654388,40.4175911],[76.4826355,40.4205208],[76.4922333,40.4228287],[76.497879,40.4247284],[76.5017395,40.4292755],[76.5029602,40.431942],[76.5081329,40.4398346],[76.5125046,40.4436569],[76.5158768,40.4466324],[76.5211487,40.4503899],[76.5256805,40.4530525],[76.529007,40.4580956],[76.5306168,40.4639435],[76.5337372,40.4722137],[76.5357361,40.4787254],[76.5355835,40.4824028],[76.5385437,40.4918327],[76.538681,40.5028305],[76.5373383,40.5091171],[76.5367279,40.5139771],[76.5401154,40.519474],[76.5458832,40.5248032],[76.549675,40.5311852],[76.5533981,40.5394096],[76.5543518,40.5423279],[76.5572128,40.5460243],[76.5678101,40.5636253],[76.5743332,40.5725708],[76.5774918,40.5737267],[76.5852127,40.5752449],[76.5947418,40.5791588],[76.6024246,40.5852661],[76.6046448,40.5910721],[76.6055527,40.5935326],[76.6046829,40.601162],[76.6124496,40.6127701],[76.6254883,40.6157455],[76.6330643,40.6136017],[76.6393661,40.6133842],[76.6437759,40.6149025],[76.6530991,40.6195183],[76.657402,40.6274681],[76.6598587,40.6399117],[76.6595154,40.6419983],[76.6588669,40.6489296],[76.6590729,40.6578636],[76.6608582,40.6673698],[76.6611557,40.6721649],[76.661438,40.6744385],[76.6632767,40.6844025],[76.6645432,40.692112],[76.664711,40.6982918],[76.6616211,40.7026443],[76.658432,40.7060814],[76.6571884,40.7082367],[76.6569824,40.7085075],[76.650177,40.717453],[76.6479721,40.7240334],[76.6443481,40.7362213],[76.641716,40.7490234],[76.6459045,40.7608871],[76.6572266,40.7692566],[76.6688385,40.7750854],[76.6829605,40.7816467],[76.6980743,40.7888298],[76.7032394,40.7914429],[76.711319,40.8027916],[76.7136841,40.8168488],[76.7136993,40.8241882],[76.7127151,40.828392],[76.7116852,40.8346596],[76.7141418,40.8397598],[76.7189789,40.8421669],[76.7261505,40.846241],[76.7290649,40.8549805],[76.7298126,40.8608932],[76.7294693,40.8677979],[76.7322769,40.8756294],[76.7365875,40.8810539],[76.7405624,40.8885727],[76.7415237,40.8937798],[76.7402267,40.9002991],[76.738205,40.9082451],[76.7402573,40.914978],[76.741951,40.9235764],[76.7450027,40.9357491],[76.7486572,40.943058],[76.7584915,40.9513016],[76.7710114,40.9568253],[76.7769547,40.9582329],[76.7856674,40.9624214],[76.7937317,40.9662018],[76.805336,40.9715576],[76.8154144,40.9745026],[76.8229294,40.9739571],[76.832283,40.9712181],[76.8405838,40.969696],[76.8500366,40.9724503],[76.8539581,40.9818039],[76.8562775,40.98806],[76.8566055,40.9953804],[76.8561478,41.00597],[76.8626556,41.0165138],[76.8749237,41.0245705],[76.8830948,41.0267296],[76.8904953,41.0252686],[76.8937149,41.0243454],[76.9033203,41.021122],[76.9115601,41.0214348],[76.9202118,41.0226402],[76.9293747,41.0254097],[76.9384079,41.0318642],[76.9444199,41.0337181],[76.9488907,41.0354538],[76.9524918,41.0374832],[76.9542007,41.0412598],[76.9579697,41.0492477],[76.9663696,41.0578079],[76.9769135,41.0641441],[76.981369,41.0656509],[76.9919205,41.0696945],[77.005127,41.0707855],[77.0106659,41.0690002],[77.01474,41.0652542],[77.0202255,41.0584221],[77.0263367,41.056366],[77.0325623,41.0575104],[77.0437469,41.059433],[77.0604706,41.0618591],[77.0722351,41.0612144],[77.0843582,41.060997],[77.0960083,41.0571442],[77.1034393,41.0513115],[77.1083755,41.042675],[77.1107788,41.0356102],[77.1140289,41.0303192],[77.1189041,41.0281181],[77.1301193,41.0256691],[77.1393814,41.0245132],[77.1471405,41.0211754],[77.1514053,41.0190163],[77.1588898,41.0136337],[77.1662827,41.0121574],[77.1785202,41.0151367],[77.1887207,41.0187263],[77.191246,41.019455],[77.2130508,41.0258408],[77.2246933,41.0265617],[77.2329559,41.0247879],[77.2390289,41.0224876],[77.2506561,41.0186195],[77.259758,41.0140228],[77.2676544,41.0095177],[77.2740479,41.0074196],[77.283371,41.0067101],[77.2891693,41.0069542],[77.2949829,41.0094948],[77.3029861,41.012558],[77.3119202,41.0157738],[77.3271561,41.0228691],[77.3338089,41.0248833],[77.3417587,41.0274849],[77.3526993,41.0342216],[77.360817,41.0358925],[77.3679123,41.0344276],[77.3715744,41.0323067],[77.3800507,41.0321083],[77.3901978,41.0352287],[77.4008484,41.0419807],[77.407692,41.0453529],[77.4093628,41.0509644],[77.4126358,41.0615044],[77.4148407,41.0709763],[77.4169693,41.0820656],[77.4201736,41.0854874],[77.4217606,41.0970764],[77.4230423,41.1063919],[77.4202042,41.1190109],[77.4202652,41.1261253],[77.4218369,41.1293297],[77.4219055,41.1338959],[77.4224091,41.137207],[77.4221878,41.1423531],[77.4210205,41.145565],[77.4176636,41.1540527],[77.4146957,41.1586533],[77.41082,41.1626854],[77.4082718,41.1645432],[77.4036026,41.1666374],[77.3941498,41.1734657],[77.3910217,41.1771507],[77.3871384,41.1810684],[77.3838806,41.1863594],[77.3830414,41.1912804],[77.3811569,41.1972427],[77.3790741,41.2003441],[77.3754807,41.2031212],[77.3706818,41.2071571],[77.3667679,41.2094803],[77.3615036,41.2128372],[77.3566971,41.2156258],[77.3521729,41.2179451],[77.3481064,41.2203827],[77.3454361,41.2242928],[77.3447342,41.2281799],[77.3423767,41.2335777],[77.3402939,41.2365646],[77.3391037,41.2379456],[77.3400345,41.2393112],[77.3421783,41.2407799],[77.3440094,41.2416801],[77.3483963,41.240612],[77.354744,41.2386131],[77.3585281,41.2380142],[77.3645782,41.2363586],[77.3694305,41.2363167],[77.3783722,41.2354469],[77.3858261,41.2367516],[77.3948059,41.2383842],[77.4015274,41.2413025],[77.4144745,41.244503],[77.4216461,41.2469521],[77.4301834,41.2491608],[77.4397888,41.2517014],[77.444397,41.2552032],[77.4468842,41.259182],[77.4478455,41.262146],[77.4489975,41.2678528],[77.4507065,41.2708092],[77.4549713,41.2713394],[77.4594879,41.2690086],[77.4620361,41.2669296],[77.4674835,41.2658501],[77.4706345,41.2633057],[77.4745483,41.2613258],[77.4774628,41.2631264],[77.477951,41.2654076],[77.4795074,41.2676773],[77.4819489,41.2682304],[77.4889221,41.2677078],[77.4906082,41.2686005],[77.4933853,41.2713165],[77.4973907,41.2747116],[77.5073013,41.2771301],[77.5179443,41.2782822],[77.5297089,41.2821655],[77.5417252,41.2833061],[77.5537567,41.2855835],[77.5633774,41.2883453],[77.5743103,41.288002],[77.5814285,41.2873535],[77.5907059,41.2879486],[77.598175,41.2893562],[77.6028976,41.2902222],[77.6095886,41.290493],[77.6176376,41.2905197],[77.6222076,41.2911568],[77.6257706,41.2951202],[77.6259537,41.2967186],[77.628952,41.2947388],[77.6299744,41.2925568],[77.6300888,41.2903862],[77.6302032,41.2884445],[77.631218,41.2859154],[77.6325455,41.2836189],[77.633728,41.2817726],[77.6364746,41.2824326],[77.6413574,41.2839775],[77.6468277,41.283802],[77.6552963,41.2823372],[77.6577225,41.2818527],[77.6632004,41.2824783],[77.6703415,41.2825165],[77.6776657,41.2843781],[77.6808853,41.2859421],[77.6848526,41.2870407],[77.6890945,41.2866516],[77.6930466,41.2864876],[77.6965561,41.28759],[77.6979828,41.290432],[77.6983566,41.2940826],[77.6985626,41.2969437],[77.6986313,41.3004837],[77.7003174,41.3011513],[77.7032089,41.3015747],[77.7079086,41.3010597],[77.7133408,41.2992859],[77.7166824,41.2990189],[77.7194748,41.3021889],[77.7207336,41.3044586],[77.7226028,41.3066063],[77.7239685,41.3064804],[77.725029,41.3063507],[77.7277527,41.305748],[77.7316895,41.3053627],[77.7346115,41.307045],[77.7381592,41.309742],[77.7416229,41.3082199],[77.7431183,41.3071671],[77.7455215,41.3057709],[77.7491302,41.3040123],[77.7507706,41.3022766],[77.7496567,41.2998924],[77.7494583,41.2976112],[77.7523117,41.2958603],[77.7576675,41.2978554],[77.7622833,41.3008842],[77.7687454,41.3050385],[77.7686386,41.3068695],[77.7655792,41.3061028],[77.7652512,41.3120499],[77.7635117,41.3164101],[77.7636185,41.3215561],[77.7636566,41.3233871],[77.7643127,41.325779],[77.7619019,41.3266068],[77.7593307,41.3272095],[77.7555695,41.3290825],[77.752121,41.3316345],[77.7470322,41.3353539],[77.7438507,41.3357353],[77.7371292,41.3353386],[77.7328796,41.3357773],[77.7273636,41.3383331],[77.7212982,41.3435059],[77.7169113,41.3490372],[77.7131958,41.3534622],[77.710968,41.3561172],[77.7111816,41.3589783],[77.7133865,41.3629494],[77.7171249,41.3675919],[77.7211151,41.3694916],[77.728363,41.3743172],[77.7320557,41.3764496],[77.7372742,41.3790131],[77.7410812,41.3790855],[77.7479095,41.3783188],[77.7552719,41.3814316],[77.7598801,41.3837738],[77.7649612,41.3869171],[77.7701035,41.3925667],[77.7724533,41.3958588],[77.7740097,41.3977814],[77.7776947,41.3994484],[77.7807617,41.4005547],[77.7863007,41.403347],[77.7929077,41.4065781],[77.8007355,41.4097939],[77.809494,41.4136925],[77.8162842,41.4181747],[77.8206024,41.4208641],[77.8237228,41.4243698],[77.8271332,41.4274101],[77.8337173,41.4290428],[77.841629,41.4291725],[77.8462067,41.4298019],[77.8486481,41.4297676],[77.8542023,41.4262695],[77.8579712,41.4246254],[77.8605728,41.4253922],[77.8679504,41.4287224],[77.8735123,41.4323082],[77.8769684,41.4371758],[77.8770752,41.4420929],[77.8780518,41.4448242],[77.8811722,41.4480934],[77.885025,41.4503288],[77.889061,41.4535904],[77.8912811,41.4575653],[77.893158,41.4598236],[77.8955154,41.4628792],[77.8963165,41.464695],[77.8998718,41.4671631],[77.9041595,41.4682503],[77.9107132,41.4683914],[77.9144363,41.4712029],[77.9161758,41.4741516],[77.9177628,41.4769859],[77.9226303,41.4830933],[77.9259109,41.4868164],[77.931488,41.4906311],[77.9338226,41.4927673],[77.9390488,41.4949837],[77.9433289,41.4956131],[77.9488068,41.4950829],[77.9557571,41.4929237],[77.9649353,41.4881172],[77.9733353,41.4825172],[77.9784164,41.4785614],[77.983223,41.4758644],[77.9896164,41.4692612],[77.9933167,41.4648666],[78,41.459713],[78.0013199,41.4590187],[78.0052948,41.4569283],[78.0057297,41.456665],[78.0095215,41.45438],[78.0102158,41.453907],[78.0138016,41.4514427],[78.017395,41.4489822],[78.0209808,41.4465218],[78.0241318,41.4442139],[78.0276108,41.4416656],[78.0314102,41.4409218],[78.0361099,41.4399986],[78.0371017,41.4401093],[78.0419006,41.4406357],[78.043396,41.4412117],[78.0477219,41.4428749],[78.0499115,41.4437904],[78.0541611,41.4455643],[78.0548477,41.4457741],[78.0593567,41.4471245],[78.0620728,41.4477768],[78.0666962,41.4488869],[78.0692368,41.4502602],[78.0731888,41.4523888],[78.0771332,41.4545174],[78.0787277,41.4562645],[78.0814743,41.4592781],[78.0821686,41.4601936],[78.0845871,41.4633675],[78.0858841,41.4662781],[78.0874252,41.4697418],[78.088089,41.4731636],[78.0893631,41.4763527],[78.0912247,41.4780579],[78.0943069,41.4808807],[78.0951538,41.4811516],[78.0996323,41.4825745],[78.1041031,41.4839973],[78.1063309,41.4842682],[78.1111298,41.4848518],[78.112381,41.4848366],[78.1172409,41.4847984],[78.1220932,41.4847527],[78.1251907,41.4847641],[78.1300583,41.484787],[78.1349106,41.4848061],[78.1397705,41.4848251],[78.1402435,41.4849281],[78.1448975,41.4859772],[78.149559,41.4870224],[78.1521988,41.4864197],[78.1568451,41.4853554],[78.1586761,41.4844551],[78.1627502,41.48246],[78.1668167,41.4804649],[78.1702957,41.4788818],[78.1744537,41.4769897],[78.1786041,41.4750977],[78.1814346,41.4729233],[78.1848297,41.4703064],[78.1882248,41.4676971],[78.1902161,41.4656487],[78.1930847,41.4626999],[78.195961,41.4597511],[78.198822,41.4568024],[78.2016907,41.4538536],[78.2033997,41.4520111],[78.2061768,41.4490128],[78.2091064,41.4463043],[78.2121735,41.44347],[78.2125931,41.4430084],[78.2153702,41.4400101],[78.2181473,41.4370117],[78.2192917,41.4351997],[78.2213745,41.4319038],[78.2234573,41.4286003],[78.223526,41.4285088],[78.2258301,41.425293],[78.2281265,41.4220734],[78.2288666,41.421196],[78.2314606,41.4181061],[78.2340546,41.41502],[78.2367477,41.4137917],[78.2409058,41.4118996],[78.2450562,41.4100075],[78.2466202,41.4073677],[78.2486038,41.4040298],[78.2486649,41.4024239],[78.2488098,41.3987732],[78.2508926,41.3960114],[78.2526245,41.3953362],[78.2569351,41.3936615],[78.2590942,41.3935013],[78.2639236,41.3931351],[78.266777,41.3935356],[78.271553,41.3942032],[78.2752151,41.394165],[78.2800674,41.3941154],[78.2809448,41.3939896],[78.2857132,41.3932915],[78.2904739,41.3925972],[78.2952423,41.3919029],[78.299118,41.3909187],[78.3037186,41.3897552],[78.3044968,41.389473],[78.3088531,41.3878746],[78.3130646,41.386734],[78.3176346,41.385498],[78.3182755,41.3854752],[78.3231201,41.3853188],[78.3279724,41.3851585],[78.3311081,41.3864899],[78.3353348,41.388279],[78.3378067,41.3901787],[78.3412018,41.3927879],[78.3426514,41.3934937],[78.3467331,41.3954697],[78.3491898,41.3955231],[78.3540421,41.3956184],[78.3576736,41.3946686],[78.358551,41.3928299],[78.3587418,41.3927994],[78.3635025,41.3920746],[78.3682556,41.3913498],[78.3722458,41.3915138],[78.3770905,41.3917122],[78.3774109,41.3917656],[78.3821335,41.392601],[78.3868637,41.3934288],[78.3893204,41.3947754],[78.3918457,41.3950615],[78.3966446,41.395607],[78.3968201,41.3965721],[78.3973389,41.3994904],[78.3974686,41.4001923],[78.3972397,41.4030952],[78.3969498,41.4067421],[78.3978119,41.4076347],[78.4006805,41.4105873],[78.401329,41.4107628],[78.405899,41.4119911],[78.4104691,41.4132156],[78.4150696,41.4128304],[78.4198914,41.412426],[78.4208984,41.4123268],[78.4257126,41.4118576],[78.4305267,41.4113884],[78.4345551,41.4116096],[78.4393921,41.4118767],[78.4442368,41.4121399],[78.4470825,41.4123688],[78.4519119,41.4127541],[78.4567337,41.4131393],[78.4604034,41.414566],[78.4647217,41.4162445],[78.468071,41.4164352],[78.4712448,41.4177208],[78.4755173,41.4194527],[78.4797897,41.4211845],[78.4840698,41.4229164],[78.4883423,41.4246483],[78.4922256,41.4263344],[78.4964371,41.4281578],[78.5006409,41.429985],[78.5022354,41.4306488],[78.5064774,41.4324265],[78.5107574,41.434082],[78.5150757,41.4357491],[78.5167236,41.4364357],[78.5209732,41.4381981],[78.5252228,41.4399643],[78.5281448,41.4419861],[78.5317154,41.444458],[78.5322876,41.4449272],[78.5355682,41.4476166],[78.5388565,41.4503098],[78.541275,41.4527855],[78.5441589,41.4557304],[78.5450134,41.4572067],[78.5469589,41.4605522],[78.548912,41.4638977],[78.5498657,41.4657135],[78.5515747,41.4675903],[78.5543137,41.4706078],[78.5570602,41.4736252],[78.5583496,41.4742241],[78.5624771,41.4761505],[78.5666046,41.4780731],[78.5688019,41.4781723],[78.5736542,41.4783897],[78.5784988,41.4786072],[78.582428,41.4774971],[78.5869751,41.4762115],[78.5895538,41.4745903],[78.5932846,41.4722443],[78.5959549,41.4711533],[78.6002197,41.4694138],[78.6050873,41.46912],[78.6064987,41.4696007],[78.6109238,41.4710999],[78.6121368,41.4714966],[78.6166,41.4729462],[78.6210556,41.4743958],[78.6241302,41.4741783],[78.6289673,41.473835],[78.6297379,41.4735489],[78.6341019,41.4719391],[78.6377182,41.4705162],[78.6396637,41.4711113],[78.644165,41.4724884],[78.6464539,41.4735069],[78.6506348,41.4753723],[78.6508331,41.4755745],[78.6537018,41.4785194],[78.6565781,41.4814644],[78.6570435,41.4829941],[78.6581345,41.4865532],[78.6592255,41.4901123],[78.6596375,41.4912491],[78.6609039,41.4947739],[78.6621704,41.4983025],[78.6646194,41.4995461],[78.6686401,41.5015984],[78.6726685,41.503643],[78.6750717,41.5047607],[78.6792068,41.5066833],[78.683342,41.508606],[78.6874695,41.5105286],[78.6901474,41.5118523],[78.6942139,41.513855],[78.6982727,41.5158615],[78.7006302,41.5190125],[78.7030106,41.5221977],[78.7024841,41.5231819],[78.7006836,41.5265732],[78.6979752,41.5279808],[78.6952667,41.5306396],[78.6923218,41.5335464],[78.6928864,41.5360947],[78.6936951,41.5396996],[78.6946793,41.540596],[78.6977768,41.5434113],[78.7008743,41.5462265],[78.7040634,41.5471306],[78.7086105,41.54842],[78.7131653,41.5497131],[78.7132034,41.5497169],[78.7179337,41.5505638],[78.7226639,41.5514069],[78.7227402,41.5514221],[78.727417,41.5524178],[78.7320938,41.5534134],[78.7367783,41.554409],[78.7372055,41.5544319],[78.7420578,41.5547333],[78.7469025,41.5550346],[78.7517471,41.555336],[78.7558823,41.5560226],[78.7606354,41.5568085],[78.760704,41.5568161],[78.7654724,41.5575066],[78.7702484,41.558197],[78.7750244,41.5588875],[78.7790298,41.5587616],[78.7838821,41.558609],[78.7887421,41.5584564],[78.7913742,41.5587616],[78.7961807,41.5593185],[78.8009872,41.5598755],[78.805275,41.5597076],[78.8101273,41.5595131],[78.8130493,41.5605507],[78.8174438,41.5621185],[78.8218384,41.5636826],[78.8239136,41.5650749],[78.8275375,41.5675087],[78.8311615,41.5699425],[78.8320694,41.5704536],[78.8359528,41.5726471],[78.8398438,41.5748405],[78.8400955,41.5750465],[78.8434372,41.5777054],[78.8467712,41.5803604],[78.8501129,41.5830193],[78.853447,41.5856743],[78.8567886,41.5883331],[78.8601227,41.5909882],[78.8601685,41.5910072],[78.8644485,41.5927505],[78.8687363,41.5925789],[78.8735962,41.5923843],[78.8745346,41.5924072],[78.8794022,41.5925217],[78.8814468,41.5934753],[78.8855896,41.5953979],[78.8865585,41.596508],[78.8892288,41.5995598],[78.8918991,41.6026154],[78.8939743,41.60466],[78.8969269,41.607563],[78.8996048,41.6090355],[78.9035416,41.6111908],[78.9074707,41.6133423],[78.9081268,41.6138039],[78.9116669,41.6163025],[78.9152145,41.6188049],[78.9187622,41.6213074],[78.9223099,41.623806],[78.9258575,41.6263084],[78.9260101,41.6264343],[78.9292221,41.6291771],[78.9324341,41.6319199],[78.9329453,41.6322937],[78.9364166,41.6348534],[78.939888,41.637413],[78.9433594,41.6399727],[78.9436111,41.6400681],[78.9479599,41.6417198],[78.952301,41.6433678],[78.9566422,41.6450157],[78.9603577,41.6471825],[78.9641953,41.6494293],[78.9680405,41.6516724],[78.9718781,41.6539154],[78.9721909,41.6540756],[78.9762192,41.6561279],[78.9801941,41.657589],[78.9845657,41.6591949],[78.9888916,41.6594467],[78.9937515,41.659729],[78.9970245,41.6583862],[79.001297,41.6566315],[79.0045547,41.6558228],[79.0091782,41.6546745],[79.0133286,41.6553497],[79.0180893,41.6561241],[79.0182266,41.6562233],[79.0217514,41.6587448],[79.0252686,41.6612625],[79.0258636,41.6622734],[79.0278244,41.6656189],[79.0297852,41.6689606],[79.0306549,41.6703911],[79.0326767,41.6737099],[79.0329666,41.6739464],[79.0362701,41.6766281],[79.0395737,41.6793098],[79.0408783,41.6799088],[79.0450287,41.6818161],[79.0491867,41.6837196],[79.05233,41.6846008],[79.0569,41.6858749],[79.061264,41.6864967],[79.0660553,41.6871719],[79.0708389,41.687851],[79.0756302,41.6885262],[79.0773544,41.6890106],[79.0819168,41.6902847],[79.0864792,41.6915588],[79.0910492,41.6928329],[79.0939713,41.6944427],[79.0979004,41.6966019],[79.0993347,41.6971245],[79.1037216,41.6987152],[79.1081085,41.7003098],[79.1105118,41.7019119],[79.1141434,41.7043419],[79.1177902,41.706768],[79.1200027,41.7090149],[79.1212616,41.7103271],[79.124115,41.7132874],[79.1263351,41.7147026],[79.130043,41.7170715],[79.1332169,41.7183762],[79.1374893,41.7201385],[79.1408005,41.7208366],[79.1454926,41.7218246],[79.1471939,41.7221794],[79.151886,41.7231598],[79.1565781,41.7241402],[79.1593552,41.7241745],[79.1642303,41.7242355],[79.165802,41.7241745],[79.1706696,41.7239876],[79.1755371,41.7238007],[79.1801682,41.7232704],[79.1849823,41.7227173],[79.1873932,41.7222557],[79.1921158,41.7213516],[79.1968384,41.7204437],[79.2001877,41.7199249],[79.2030029,41.7201271],[79.2078552,41.7204742],[79.2102509,41.7213135],[79.2146606,41.7228622],[79.2171631,41.7244148],[79.2181625,41.7254753],[79.2209702,41.7284622],[79.2217712,41.7291183],[79.2250595,41.7318153],[79.2273636,41.7336311],[79.2307129,41.7362823],[79.2319946,41.7372551],[79.2354279,41.7398529],[79.236145,41.7405014],[79.2392578,41.7433128],[79.2423706,41.7461243],[79.2444763,41.7476196],[79.2480164,41.7501335],[79.250206,41.7516937],[79.2529526,41.7543945],[79.2559128,41.7573013],[79.2580719,41.7598457],[79.2606888,41.7629242],[79.2635651,41.7654991],[79.2666931,41.7682991],[79.2691422,41.7697792],[79.2729416,41.772068],[79.274704,41.7731628],[79.27845,41.7754974],[79.282196,41.7778358],[79.2859497,41.7801666],[79.2896957,41.782505],[79.2923889,41.7846909],[79.2936096,41.7856293],[79.2970276,41.7882385],[79.2988434,41.7893639],[79.3026047,41.7916908],[79.3040848,41.7926369],[79.307785,41.7950172],[79.3114853,41.7973976],[79.3139191,41.7994881],[79.3171234,41.8022461],[79.3203278,41.8049965],[79.3205566,41.8052254],[79.3235016,41.808136],[79.3236771,41.8081932],[79.3281479,41.8096466],[79.3314667,41.8082123],[79.332756,41.8069344],[79.3356934,41.8040199],[79.3386383,41.8011017],[79.3415756,41.7981873],[79.3445129,41.7952728],[79.3474503,41.7923584],[79.3495331,41.7907181],[79.3518219,41.7910423],[79.3566132,41.7917213],[79.3594055,41.7928085],[79.3610382,41.7955208],[79.3619995,41.7966881],[79.3645554,41.7997971],[79.3658447,41.80093],[79.3689957,41.8037186],[79.3721466,41.8065033],[79.3747711,41.8086739],[79.3780365,41.8113861],[79.3813095,41.8140945],[79.3837357,41.815815],[79.3872833,41.8183212],[79.3876495,41.8186302],[79.3908997,41.8213577],[79.3941422,41.8240814],[79.3973923,41.8268051],[79.401001,41.8292427],[79.4046173,41.8316917],[79.4085617,41.8335037],[79.4127197,41.8354149],[79.4170609,41.8367004],[79.4177551,41.8368263],[79.4225006,41.8376923],[79.4272385,41.8385544],[79.4274445,41.8385963],[79.4321365,41.8396225],[79.436821,41.8406448],[79.4397659,41.8414764],[79.4443283,41.8427658],[79.4488983,41.8440552],[79.4502716,41.8446426],[79.4545059,41.8464584],[79.4591293,41.8470459],[79.4601746,41.8471909],[79.4649811,41.8478432],[79.4659729,41.8477592],[79.4708252,41.8473511],[79.4756775,41.8469391],[79.4782791,41.8459435],[79.4826279,41.8442764],[79.4854965,41.8413696],[79.4872818,41.8403854],[79.4912109,41.8382225],[79.4946899,41.8364601],[79.4982834,41.8346329],[79.4987259,41.8344078],[79.5025101,41.8337212],[79.5072556,41.832859],[79.5085144,41.832737],[79.5133591,41.8322754],[79.5147552,41.8321571],[79.5196075,41.8317528],[79.5244598,41.8313484],[79.524498,41.8313446],[79.5293579,41.8310318],[79.5342255,41.830719],[79.5377121,41.8311501],[79.5425262,41.8317413],[79.5428238,41.8318253],[79.5474167,41.8330612],[79.5520096,41.8342972],[79.553093,41.8345146],[79.5578079,41.8354645],[79.5625229,41.8364105],[79.564415,41.836792],[79.5691299,41.8377419],[79.5738449,41.8386879],[79.57547,41.8391914],[79.5799866,41.84058],[79.5845032,41.8419724],[79.5890121,41.8433609],[79.5935287,41.8447533],[79.5980453,41.8461418],[79.5991287,41.8464279],[79.6037369,41.8476448],[79.6083374,41.8488579],[79.6123886,41.8502884],[79.616806,41.8518524],[79.6171494,41.8520203],[79.6212234,41.8540344],[79.6227951,41.855423],[79.625946,41.8582115],[79.6267014,41.8616257],[79.6273346,41.862915],[79.6290207,41.8663406],[79.6306992,41.8697662],[79.6310196,41.870575],[79.6324081,41.874073],[79.634697,41.8764763],[79.6375351,41.8794479],[79.6411972,41.8807793],[79.6455917,41.8823776],[79.6499786,41.8839722],[79.6532059,41.8845825],[79.6579437,41.885479],[79.6626816,41.8863716],[79.6674194,41.8872681],[79.6698685,41.8876419],[79.6746521,41.8883743],[79.6794357,41.8891068],[79.684227,41.8898392],[79.6880264,41.8913383],[79.6927567,41.8929062],[79.6970215,41.8934479],[79.7032242,41.8932304],[79.7081604,41.8934937],[79.712944,41.8942223],[79.7177353,41.8949509],[79.7225189,41.8956833],[79.7250671,41.895752],[79.72995,41.8958817],[79.7348328,41.8960152],[79.7372437,41.8966675],[79.7418365,41.8979111],[79.7464371,41.8991547],[79.749321,41.8984947],[79.7539902,41.8974228],[79.7558823,41.894558],[79.7582779,41.8932343],[79.762207,41.8910637],[79.7653503,41.8898201],[79.7691345,41.88974],[79.7733002,41.8901558],[79.7762222,41.8909454],[79.7800522,41.8915443],[79.780098,41.8916054],[79.7826614,41.8947144],[79.7852249,41.8978233],[79.7863541,41.899868],[79.7882156,41.9032402],[79.790329,41.9052734],[79.793335,41.9081535],[79.7938004,41.9086075],[79.7967682,41.9115028],[79.799736,41.914402],[79.8011246,41.9172974],[79.8027725,41.9207344],[79.8041153,41.923027],[79.8060837,41.9263725],[79.8071594,41.9292068],[79.8085022,41.9327164],[79.8096313,41.9357719],[79.8109283,41.9392891],[79.8118362,41.9427528],[79.812767,41.9463348],[79.8134766,41.9475403],[79.8154449,41.9508858],[79.8174057,41.9542274],[79.8193665,41.9569244],[79.8208618,41.9579697],[79.8244324,41.9604645],[79.8271408,41.9619942],[79.8310394,41.9641953],[79.8343506,41.9664001],[79.8379974,41.9688301],[79.8406677,41.9706001],[79.8443222,41.9730263],[79.8462524,41.9753151],[79.8488541,41.978405],[79.849884,41.9798889],[79.8521347,41.9831276],[79.8521118,41.9851952],[79.8520737,41.9888458],[79.8515778,41.9916],[79.8508224,41.993248],[79.8492355,41.9967003],[79.8476486,42.0001526],[79.8468857,42.0016136],[79.8450928,42.0050125],[79.8454056,42.0060005],[79.8465195,42.0095558],[79.8479538,42.0111961],[79.8506241,42.0142517],[79.8545761,42.0159874],[79.8587952,42.0178413],[79.8621826,42.0185127],[79.8669128,42.0194511],[79.8691101,42.0201645],[79.8736038,42.0216179],[79.8780899,42.0230713],[79.8804169,42.0244484],[79.8842468,42.0267181],[79.8880768,42.0289917],[79.8888016,42.0293121],[79.8930054,42.0311813],[79.8972168,42.0330505],[79.8994904,42.0339661],[79.903801,42.0356941],[79.9081192,42.037426],[79.9124222,42.0391541],[79.916832,42.0401611],[79.9215164,42.0412331],[79.9218063,42.0412407],[79.9266968,42.041378],[79.9315872,42.0415115],[79.9364777,42.0416489],[79.9386063,42.0414085],[79.9434509,42.040863],[79.948288,42.0403175],[79.9523849,42.0399666],[79.9572525,42.0395508],[79.9597092,42.0388298],[79.9642715,42.0374947],[79.9688263,42.0361557],[79.973381,42.0348206],[79.9754333,42.035183],[79.9802017,42.0360222],[79.9839706,42.0377541],[79.9868164,42.0395164],[79.9883118,42.0422287],[79.9901733,42.0456047],[79.9904785,42.0465889],[79.9916077,42.0501404],[79.9918442,42.0526581],[79.9921951,42.0562973],[79.9922256,42.0569992],[79.9923935,42.0606461],[79.9925613,42.0642929],[79.9918518,42.0659103],[79.9903336,42.0693779],[79.9901886,42.0696259],[79.988266,42.0729828],[79.9863434,42.0763359],[79.9859314,42.0770569],[79.9840012,42.0804062],[79.9820709,42.0837631],[79.9818268,42.0842018],[79.9799576,42.087574],[79.9780884,42.09095],[79.9771423,42.0930405],[79.9755707,42.0964966],[79.9751968,42.0991058],[79.9746857,42.1027374],[79.9741745,42.1063652],[79.9747238,42.1093521],[79.9753952,42.1129646],[79.97612,42.1147919],[79.9774933,42.1182938],[79.9788742,42.1217957],[79.9798813,42.1230965],[79.9823227,42.1262589],[79.9847717,42.1294212],[79.9851685,42.129879],[79.987854,42.1329346],[79.9905319,42.1359901],[79.9932175,42.1390419],[79.9959717,42.1420593],[79.9987259,42.1450768],[80.0014877,42.148098],[80.0042419,42.1511116],[80.0067215,42.1523132],[80.0108337,42.1543045],[80.014946,42.1562958],[80.0190506,42.158287],[80.0210114,42.1606102],[80.0236206,42.1637001],[80.0262222,42.1667938],[80.0282745,42.1679115],[80.0302887,42.1706734],[80.030983,42.1724472],[80.032692,42.1750755],[80.0360565,42.1780243],[80.0391312,42.1792831],[80.0448914,42.1804123],[80.0504684,42.180851],[80.0532608,42.1804161],[80.0593491,42.1806259],[80.0663757,42.1806908],[80.072464,42.1809006],[80.0749054,42.1804924],[80.0794067,42.1819534],[80.0839005,42.1834106],[80.0884018,42.1848679],[80.0913849,42.1862373],[80.0955658,42.1881485],[80.0997391,42.1900635],[80.1013184,42.1914558],[80.1045914,42.193409],[80.1081924,42.1944389],[80.1125259,42.1946297],[80.1209946,42.1927834],[80.1258011,42.1935005],[80.1261749,42.1936646],[80.1304016,42.1955261],[80.1346207,42.1973839],[80.1374435,42.1990547],[80.1412811,42.2013245],[80.1419983,42.2033615],[80.1438293,42.2046242],[80.1474228,42.2071075],[80.1503754,42.2075539],[80.1551895,42.2082748],[80.1570587,42.2081642],[80.1619492,42.2078705],[80.1647949,42.2077179],[80.169693,42.2074623],[80.1745834,42.2072029],[80.1794815,42.2069473],[80.1823196,42.2065315],[80.1871338,42.2058258],[80.1887589,42.2059555],[80.193634,42.2063408],[80.1964951,42.2067833],[80.2013016,42.2075272],[80.2061005,42.208271],[80.2104874,42.2083511],[80.2153931,42.2084351],[80.2202988,42.208519],[80.2248611,42.2089996],[80.2297211,42.2095108],[80.2337341,42.2104187],[80.2384262,42.211483],[80.2423553,42.2127686],[80.2468491,42.2142372],[80.2495804,42.2156105],[80.2536469,42.2176552],[80.2577133,42.219696],[80.2593079,42.2203064],[80.2636795,42.2219734],[80.2666245,42.2232666],[80.2708511,42.2251244],[80.2750778,42.2269783],[80.276268,42.2276077],[80.2802658,42.2297211],[80.2842712,42.2318344],[80.2852859,42.2328377],[80.2882233,42.2357559],[80.2911682,42.238678],[80.2913361,42.2392578],[80.2923737,42.2428246],[80.2934113,42.2464104],[80.2934418,42.2500572],[80.2934723,42.2537041],[80.2929535,42.255024],[80.2915726,42.2585258],[80.2901917,42.2620277],[80.2890167,42.2647896],[80.2875366,42.2682686],[80.2860489,42.2717476],[80.2843704,42.2735252],[80.2815475,42.2765083],[80.2787247,42.2794952],[80.2769012,42.2816696],[80.2743073,42.2847672],[80.2717133,42.2878647],[80.2691193,42.2909584],[80.2691193,42.2909927],[80.2696075,42.2946243],[80.2700958,42.2982521],[80.2719345,42.3012047],[80.2740021,42.3045158],[80.2751007,42.3051872],[80.2789001,42.3074989],[80.2809143,42.3098602],[80.2817688,42.3110352],[80.2820511,42.3118515],[80.2833023,42.3153763],[80.2831039,42.3159294],[80.281868,42.319458],[80.2805481,42.3205376],[80.2786713,42.3220749],[80.2785568,42.3221283],[80.2744064,42.3240891],[80.2702637,42.326046],[80.2696991,42.3265114],[80.2664032,42.3292198],[80.2645187,42.3308983],[80.2613754,42.3337021],[80.2601776,42.3343773],[80.2562714,42.336586],[80.2543411,42.3372612],[80.2498932,42.3388176],[80.2456741,42.340641],[80.2414246,42.3424759],[80.241066,42.3427086],[80.2373505,42.3450966],[80.2336349,42.3474884],[80.2324066,42.3496132],[80.2304611,42.3529625],[80.2285156,42.3563156],[80.2284012,42.3579407],[80.228157,42.3615837],[80.2294312,42.3649712],[80.230751,42.3684845],[80.2320786,42.371994],[80.233757,42.3747444],[80.2357788,42.378067],[80.2371826,42.3814621],[80.2369919,42.3828812],[80.2365112,42.3865089],[80.2363739,42.3868637],[80.2350845,42.3903809],[80.2337875,42.393898],[80.2337189,42.3940773],[80.2324219,42.3975945],[80.2321014,42.398468],[80.2307892,42.4019814],[80.2306595,42.402153],[80.2282562,42.4053383],[80.225853,42.4085197],[80.2225418,42.4103889],[80.2186279,42.4125977],[80.2176819,42.413269],[80.214119,42.4157867],[80.2105637,42.4183044],[80.2085266,42.4211426],[80.2062225,42.424366],[80.2060242,42.4248161],[80.2045593,42.4282951],[80.2046204,42.4285965],[80.2053909,42.4321976],[80.2061691,42.4357986],[80.2063828,42.4362106],[80.2081528,42.4396095],[80.2099304,42.4430122],[80.2108612,42.446476],[80.2118225,42.4500504],[80.2109909,42.451725],[80.2092896,42.4551468],[80.2089615,42.4560204],[80.2076492,42.4595375],[80.2088013,42.4615784],[80.210701,42.4649429],[80.2123795,42.4666672],[80.215271,42.4696198],[80.2153473,42.4696808],[80.2187576,42.4723129],[80.2221603,42.4749451],[80.2255707,42.4775772],[80.2260666,42.47789],[80.2298126,42.4802551],[80.2335663,42.4826202],[80.2364502,42.484024],[80.2405624,42.4860306],[80.2446747,42.4880333],[80.2457657,42.4884644],[80.2501221,42.4901772],[80.2544708,42.4918861],[80.2548981,42.492012],[80.2594757,42.4933662],[80.2640457,42.4947205],[80.2686234,42.4960747],[80.2699203,42.4972725],[80.2730103,42.5001183],[80.2760925,42.5029602],[80.2752838,42.5050049],[80.2738953,42.508503],[80.2710495,42.5098915],[80.2669373,42.511898],[80.2632751,42.5129776],[80.2586899,42.514328],[80.2541122,42.5156746],[80.2502594,42.5169029],[80.2457352,42.5183449],[80.2412109,42.5197868],[80.2366791,42.5212288],[80.2321548,42.5226707],[80.2308884,42.5227051],[80.2259674,42.5228386],[80.2243652,42.523468],[80.2242126,42.5247917],[80.2218018,42.5277214],[80.2192459,42.530838],[80.2177963,42.5326347],[80.2152634,42.5357628],[80.2140045,42.5371857],[80.2113113,42.5402336],[80.2102356,42.5428581],[80.2088165,42.5463486],[80.2078934,42.5477829],[80.20578,42.551075],[80.2042236,42.553997],[80.2024155,42.5573883],[80.2006149,42.5607796],[80.1998444,42.5615654],[80.1969528,42.564518],[80.1940613,42.5674667],[80.1933365,42.5685654],[80.1911697,42.5718384],[80.1889954,42.5751152],[80.1878433,42.5763512],[80.185051,42.5793533],[80.1831894,42.580864],[80.1798706,42.5835571],[80.1792221,42.5850601],[80.177742,42.5885353],[80.177536,42.589222],[80.1764679,42.5927811],[80.1754074,42.5963402],[80.1743393,42.5998993],[80.174202,42.6010628],[80.1737747,42.6046944],[80.1728516,42.6061287],[80.1707306,42.609417],[80.1685562,42.6111603],[80.1652145,42.613842],[80.1642914,42.6152763],[80.1621704,42.6185684],[80.1616669,42.6196404],[80.1600647,42.6230888],[80.1604462,42.6241913],[80.1616745,42.6277237],[80.162796,42.6306992],[80.1641159,42.6342125],[80.1653061,42.6376266],[80.1665344,42.6411591],[80.1672134,42.6436157],[80.1681976,42.6471901],[80.1691895,42.6507607],[80.1701736,42.6543312],[80.1704483,42.6551323],[80.1716461,42.6586685],[80.1728516,42.6622047],[80.1728821,42.6627121],[80.1730957,42.6663513],[80.1732712,42.6664772],[80.1768188,42.6690178],[80.1808929,42.6710815],[80.1829605,42.67239],[80.1867065,42.6747627],[80.1879044,42.6755981],[80.1914978,42.6781006],[80.1930466,42.6790123],[80.1969147,42.681282],[80.1981049,42.6818237],[80.2023087,42.6837349],[80.20504,42.6846085],[80.2095718,42.686058],[80.2115402,42.6867981],[80.2159348,42.6884575],[80.2203369,42.6901131],[80.2241745,42.6922989],[80.2243347,42.6924324],[80.2276611,42.6951332],[80.2309723,42.6978302],[80.2317657,42.7012405],[80.2309494,42.703289],[80.2295532,42.7067871],[80.2294464,42.7069244],[80.2269211,42.7100563],[80.226799,42.7105217],[80.2258072,42.7140884],[80.2248154,42.717659],[80.2248993,42.7192688],[80.2250748,42.7229118],[80.2255554,42.7245636],[80.2265854,42.7281265],[80.2280121,42.7309875],[80.2297134,42.7344093],[80.2314224,42.7378311],[80.2325821,42.7407837],[80.233963,42.7442856],[80.2353363,42.7477837],[80.2359161,42.7486115],[80.2381821,42.7518501],[80.240448,42.7550888],[80.2427139,42.7583313],[80.2438812,42.7607231],[80.2455521,42.7641525],[80.2472229,42.7675819],[80.2476807,42.7684441],[80.2494736,42.7718391],[80.2512665,42.7752342],[80.253067,42.7786293],[80.2539139,42.7819099],[80.2548447,42.7854919],[80.2557755,42.7890701],[80.2561264,42.7922897],[80.2565231,42.7959251],[80.2569275,42.7995567],[80.2572174,42.8020935],[80.2576294,42.8057251],[80.2580414,42.8093567],[80.257782,42.8119125],[80.2574234,42.8155479],[80.2574158,42.8160362],[80.25737,42.8196793],[80.2584305,42.8209419],[80.2610321,42.8240433],[80.2627716,42.8256226],[80.265892,42.8284531],[80.2678757,42.829567],[80.2718124,42.8317757],[80.2757492,42.8339844],[80.279686,42.8361931],[80.2831192,42.835556],[80.285347,42.8336182],[80.2885437,42.8308372],[80.2913666,42.8299637],[80.2934799,42.8304901],[80.2981644,42.8316612],[80.2992783,42.8322144],[80.3033905,42.8342476],[80.3042679,42.8363152],[80.3055191,42.8368492],[80.3098068,42.8386803],[80.3138809,42.8388405],[80.3188171,42.839035],[80.3192596,42.8390007],[80.3241882,42.8386345],[80.3291092,42.8382645],[80.32901,42.838047],[80.327446,42.8345909],[80.3258743,42.8311348],[80.3265686,42.8286324],[80.3267288,42.8286171],[80.3316269,42.8280945],[80.336525,42.8275719],[80.341423,42.8270493],[80.3463211,42.8265305],[80.3512192,42.826004],[80.3519974,42.8283234],[80.354332,42.8308525],[80.3553925,42.8329163],[80.3587646,42.8347893],[80.3612061,42.8339386],[80.3656769,42.8323746],[80.3665085,42.8312645],[80.3689041,42.8280754],[80.3691788,42.8282204],[80.3732376,42.8302994],[80.3772964,42.832386],[80.3813553,42.8344688],[80.3854218,42.8365517],[80.3894806,42.8386345],[80.3920364,42.8359299],[80.3955154,42.8337898],[80.3993149,42.8314552],[80.4033813,42.8315125],[80.4045105,42.8319206],[80.4089584,42.8335228],[80.4134064,42.835125],[80.4178467,42.836731],[80.4200287,42.8382149],[80.4236603,42.8406906],[80.4236145,42.8411636],[80.4232483,42.8447952],[80.4206924,42.8472748],[80.4200516,42.8486099],[80.418396,42.8520432],[80.4189377,42.8523178],[80.4230118,42.8543892],[80.4277649,42.855442],[80.4325104,42.8564949],[80.4372482,42.8575439],[80.4388428,42.8576202],[80.443779,42.8578568],[80.4469223,42.8565292],[80.4513397,42.8562622],[80.4562759,42.8559647],[80.4579086,42.8561554],[80.4627991,42.8567314],[80.4649506,42.8576736],[80.4666748,42.85989],[80.4691391,42.8630486],[80.4715958,42.8662109],[80.4743576,42.8678474],[80.476738,42.8680992],[80.481636,42.8686218],[80.4865417,42.8691406],[80.4914398,42.8696594],[80.4940567,42.8719635],[80.4972305,42.8747597],[80.4990311,42.8777504],[80.501503,42.8786964],[80.5026093,42.8781738],[80.5067749,42.8762131],[80.5109482,42.8742447],[80.5115738,42.8740921],[80.5162735,42.8729401],[80.5203171,42.8729897],[80.5246429,42.8746452],[80.5264587,42.8765526],[80.5292969,42.8795357],[80.532135,42.8825226],[80.5349731,42.8855057],[80.5376129,42.8847046],[80.5421906,42.8833084],[80.542923,42.8828888],[80.546814,42.8806381],[80.5507126,42.8783875],[80.5508575,42.8786774],[80.5525665,42.8820915],[80.5542831,42.8855095],[80.5567398,42.8858337],[80.561615,42.8864822],[80.5664902,42.8871269],[80.5713654,42.8877716],[80.5711365,42.8912086],[80.5708923,42.8948479],[80.5746918,42.8945923],[80.579628,42.8942642],[80.5814743,42.893837],[80.5862045,42.892746],[80.5871964,42.8927383],[80.5921478,42.8926888],[80.5971069,42.892643],[80.5978394,42.8927994],[80.6026001,42.8938103],[80.6025925,42.8938866],[80.6022491,42.8975182],[80.6018982,42.9011536],[80.6008987,42.9028893],[80.5989609,42.9062462],[80.5970306,42.9095993],[80.5950928,42.9129524],[80.5950089,42.9130783],[80.5928421,42.9163513],[80.5916367,42.917305],[80.5882721,42.9199829],[80.5849075,42.922657],[80.5821686,42.9237747],[80.5778351,42.9255486],[80.5735092,42.9273186],[80.5691757,42.9290924],[80.5644836,42.9299545],[80.5609818,42.9313011],[80.5565948,42.9329948],[80.5522079,42.9346848],[80.5478134,42.9363785],[80.5450287,42.9377213],[80.5408783,42.9397202],[80.5384979,42.9401436],[80.5336838,42.9410019],[80.5326004,42.9409904],[80.5276413,42.9409294],[80.5226898,42.9408684],[80.5177307,42.9408073],[80.5127716,42.9407463],[80.5078125,42.9406853],[80.5037384,42.9415169],[80.4989624,42.9424934],[80.4941864,42.94347],[80.4894104,42.9444427],[80.4846344,42.9454193],[80.4816742,42.9466896],[80.4773865,42.9485245],[80.4759674,42.9496727],[80.4726257,42.9523659],[80.4692841,42.9550552],[80.4659424,42.9577446],[80.4654541,42.957962],[80.4611969,42.9598351],[80.4569473,42.9617043],[80.4526901,42.9635773],[80.4484406,42.9654465],[80.4441833,42.9673195],[80.4399261,42.9691925],[80.4356766,42.9710617],[80.4338684,42.9722519],[80.4301758,42.9746819],[80.4264755,42.9771118],[80.4258499,42.9777603],[80.4229584,42.9807205],[80.4189529,42.9825592],[80.4147491,42.9844933],[80.411972,42.9864578],[80.4084015,42.9889793],[80.4079819,42.9890289],[80.4030762,42.9895935],[80.4004974,42.9913559],[80.3968658,42.9938354],[80.3932343,42.996315],[80.3912964,42.9989586],[80.3889465,43.0021629],[80.3865891,43.0053673],[80.3842392,43.0085754],[80.3833008,43.0098495],[80.3809509,43.0130539],[80.3801575,43.0154915],[80.3789978,43.0190353],[80.3778381,43.0225754],[80.3766861,43.0261154],[80.3755264,43.0296593],[80.3759842,43.0299263],[80.3798752,43.0321922],[80.3820343,43.033226],[80.3861923,43.0352135],[80.3882904,43.0366554],[80.39151,43.0384064],[80.3954926,43.0405769],[80.3994827,43.0427513],[80.4018707,43.0452003],[80.4022751,43.045475],[80.4059219,43.0479431],[80.4095688,43.050415],[80.4132156,43.0528831],[80.4149551,43.0537338],[80.4190826,43.0557556],[80.4232101,43.0577774],[80.4273376,43.0597992],[80.4275742,43.0598793],[80.4320755,43.0614243],[80.4365768,43.0629654],[80.4408875,43.0642853],[80.4454727,43.0656853],[80.4484863,43.0662537],[80.4532928,43.0671616],[80.458107,43.0680695],[80.458168,43.0680656],[80.4631271,43.0679245],[80.4680939,43.0677795],[80.4681625,43.0677719],[80.4730606,43.0671806],[80.4752884,43.0675011],[80.4801636,43.0681953],[80.4850311,43.0688934],[80.487175,43.069622],[80.4916763,43.0711517],[80.4961853,43.0726852],[80.4963837,43.072773],[80.5006638,43.0746155],[80.5044632,43.0763435],[80.5086823,43.0782661],[80.5090485,43.0784302],[80.5133057,43.0803032],[80.5175629,43.0821838],[80.5218353,43.0840683],[80.5257111,43.0863495],[80.5295792,43.0886345],[80.5305176,43.0891113],[80.5345993,43.0911865],[80.5386887,43.0932617],[80.5427704,43.0953331],[80.5430374,43.0955544],[80.5463333,43.098278],[80.5496292,43.1010017],[80.5529327,43.1037216],[80.5536957,43.1043777],[80.5569229,43.1071434],[80.5601578,43.1099091],[80.5619507,43.1115189],[80.565094,43.1143379],[80.5663528,43.1146774],[80.571022,43.1159363],[80.5756836,43.1171989],[80.5803452,43.1184578],[80.5826569,43.1205482],[80.5857849,43.1233749],[80.588913,43.1262054],[80.5912704,43.1289253],[80.5939331,43.132],[80.59655,43.1339798],[80.5978165,43.1347694],[80.6016159,43.1371231],[80.6054001,43.1394806],[80.6091995,43.1418343],[80.612709,43.1420135],[80.6176682,43.1422653],[80.6211472,43.1422577],[80.6261215,43.1422424],[80.6278915,43.1425781],[80.6326981,43.1434975],[80.6375122,43.144413],[80.6390762,43.144619],[80.6439743,43.1452599],[80.6488647,43.1459007],[80.6496964,43.1457672],[80.6545563,43.144989],[80.6594086,43.1442108],[80.6630936,43.1436844],[80.6679688,43.1429901],[80.6728516,43.142292],[80.6777344,43.1415939],[80.6794357,43.1413727],[80.6843338,43.1407356],[80.6892242,43.1400986],[80.6898117,43.1403923],[80.6939163,43.1424522],[80.6980209,43.1445084],[80.7021179,43.1465645],[80.7027893,43.1465721],[80.707756,43.1466217],[80.7080994,43.1462097],[80.7106857,43.1431007],[80.7121658,43.1398315],[80.7137375,43.1363792],[80.7151566,43.1354446],[80.7188644,43.1330185],[80.7220459,43.1330986],[80.7270126,43.1332245],[80.728035,43.1339607],[80.7315826,43.1365128],[80.7336426,43.137989],[80.7371902,43.1405373],[80.7407379,43.1430893],[80.7408829,43.1431236],[80.745575,43.1443291],[80.750267,43.1455345],[80.7540588,43.1455154],[80.7590332,43.1454926],[80.7633209,43.1449623],[80.7634964,43.1449356],[80.7683716,43.1441994],[80.7704849,43.1439781],[80.7754059,43.1434631],[80.7803268,43.1429482],[80.7846756,43.1443062],[80.7892456,43.1457329],[80.7903519,43.1464462],[80.7940826,43.1488495],[80.7946396,43.150013],[80.7961578,43.1518326],[80.7987518,43.1549377],[80.7990112,43.1558609],[80.7995911,43.1593781],[80.8001862,43.1629944],[80.8002243,43.1647758],[80.800293,43.1684151],[80.8003616,43.1720543],[80.8008118,43.1735191],[80.801918,43.1770706],[80.8008041,43.1800385],[80.7994843,43.1835518],[80.7987442,43.1846924],[80.7966156,43.1879845],[80.7948303,43.1897697],[80.7918854,43.1927032],[80.7911987,43.1939087],[80.7892685,43.1972656],[80.7873459,43.2006226],[80.7862625,43.203373],[80.7848969,43.206871],[80.7840805,43.2097626],[80.7830811,43.2133293],[80.7825699,43.2150764],[80.781517,43.2186356],[80.7815323,43.2209396],[80.7815552,43.2245789],[80.7818832,43.2250862],[80.7839737,43.2283897],[80.7841873,43.2302322],[80.7846146,43.2338562],[80.784317,43.2355385],[80.7836761,43.2391472],[80.7828522,43.241024],[80.7813263,43.2444878],[80.779808,43.2479515],[80.7777328,43.2511711],[80.7756119,43.2544632],[80.7734833,43.2577553],[80.7725677,43.2612114],[80.7716141,43.2647858],[80.7706604,43.2683563],[80.7704315,43.2706871],[80.7700729,43.2743187],[80.7704086,43.2754326],[80.7714691,43.2789879],[80.7725296,43.2825432],[80.7735977,43.2860985],[80.7736359,43.2864037],[80.7740784,43.2900276],[80.7745209,43.2936554],[80.774971,43.2972755],[80.7754135,43.3009033],[80.7750778,43.3030281],[80.774498,43.3066444],[80.7732697,43.3076897],[80.7700119,43.3104439],[80.7691193,43.3110619],[80.7654877,43.3135567],[80.7652359,43.3137321],[80.763382,43.3149948],[80.7613373,43.3157806],[80.7569351,43.317482],[80.7556305,43.3176155],[80.7506943,43.3181305],[80.7499084,43.3180275],[80.7449951,43.3173943],[80.7425919,43.3166847],[80.7379684,43.3153229],[80.7356567,43.3147659],[80.7309265,43.3136292],[80.7261887,43.3124886],[80.7233276,43.3124924],[80.7183456,43.3125],[80.7138672,43.3132973],[80.7090302,43.3141594],[80.7055359,43.3153648],[80.7010269,43.3169174],[80.6994095,43.3174477],[80.6948624,43.3189354],[80.6925888,43.3209267],[80.6893921,43.323719],[80.686203,43.3265152],[80.6860504,43.3284149],[80.6857605,43.3320465],[80.6854706,43.3356781],[80.6869202,43.3371582],[80.6898117,43.3401222],[80.6898346,43.3401451],[80.6924133,43.3432579],[80.6949997,43.3463707],[80.6975784,43.3494835],[80.698143,43.3503571],[80.7002563,43.3536568],[80.7023697,43.3569489],[80.704483,43.3602448],[80.7054062,43.3612747],[80.7081375,43.3643188],[80.7108688,43.3673668],[80.7125626,43.3686752],[80.7159958,43.3713188],[80.7194214,43.3739624],[80.720047,43.3744736],[80.7233658,43.3771896],[80.7266846,43.3799095],[80.7282333,43.3815689],[80.731041,43.3845787],[80.7312469,43.3849182],[80.7332611,43.3882446],[80.7352829,43.391571],[80.7373047,43.3949013],[80.7373734,43.3950996],[80.7386475,43.3986168],[80.7399292,43.4021339],[80.7398148,43.4055634],[80.7396393,43.4066162],[80.7390213,43.4102287],[80.7384109,43.4138374],[80.7388229,43.4172935],[80.7392502,43.4209175],[80.7396698,43.4245415],[80.7396927,43.424633],[80.7405243,43.4282188],[80.7413559,43.4318085],[80.7424011,43.4342041],[80.7439041,43.4376717],[80.7448883,43.4389572],[80.7473145,43.4421387],[80.7474213,43.4439621],[80.7485504,43.4453125],[80.7511444,43.4484215],[80.7512665,43.4485817],[80.7537537,43.4517365],[80.7562408,43.4548912],[80.7562637,43.4549713],[80.7574005,43.4585152],[80.7572556,43.4594879],[80.7567291,43.4631042],[80.7564163,43.4642258],[80.755249,43.4671364],[80.7538452,43.4706268],[80.752449,43.4741211],[80.7510529,43.4776115],[80.749649,43.481102],[80.7494049,43.4815941],[80.747673,43.4850044],[80.7459488,43.4884186],[80.7442245,43.4918327],[80.7424927,43.4952469],[80.7407684,43.4986572],[80.7390366,43.5020714],[80.7380066,43.503643],[80.7377777,43.5040932],[80.7360382,43.5075035],[80.7342987,43.5109138],[80.7325592,43.5143204],[80.7308197,43.5177307],[80.7290726,43.5211411],[80.7273331,43.5245514],[80.7255936,43.5279617],[80.7238541,43.5313683],[80.7235413,43.5319748],[80.7217712,43.5353737],[80.7200012,43.5387764],[80.7182312,43.5421791],[80.7164612,43.5455818],[80.7146912,43.5489807],[80.7129211,43.5523834],[80.7111511,43.5557861],[80.7093811,43.559185],[80.7076111,43.5625877],[80.7058411,43.5659866],[80.704071,43.5693893],[80.702301,43.5727921],[80.700531,43.5761948],[80.698761,43.5795937],[80.6983795,43.5807266],[80.6977081,43.5818901],[80.6957703,43.585247],[80.6938324,43.5886002],[80.6928558,43.5892563],[80.6925201,43.5897026],[80.6901474,43.5928993],[80.6877747,43.5961037],[80.6854019,43.5993042],[80.6830292,43.6025047],[80.6806488,43.6057053],[80.6782761,43.6089058],[80.6759033,43.6121101],[80.6735306,43.6153107],[80.6711502,43.6185074],[80.6687775,43.6217079],[80.6664047,43.6249123],[80.6640244,43.6281128],[80.6616516,43.6313133],[80.6592712,43.6345139],[80.6568985,43.6377144],[80.6545181,43.6409149],[80.6521454,43.6441116],[80.649765,43.6473122],[80.6473846,43.6505127],[80.6450119,43.6537132],[80.6439362,43.6559677],[80.6418686,43.6588516],[80.6395569,43.662075],[80.6372375,43.6653023],[80.6349258,43.6685257],[80.6326141,43.6717529],[80.6302948,43.6749763],[80.6279831,43.6781998],[80.6256714,43.681427],[80.6233521,43.6846504],[80.6210403,43.6878738],[80.6187286,43.6910973],[80.6164093,43.6943207],[80.6140976,43.6975479],[80.6117783,43.7007713],[80.6094589,43.7039948],[80.6071472,43.7072182],[80.6048279,43.7104416],[80.6025162,43.713665],[80.6001968,43.7168884],[80.5978775,43.7201118],[80.5955582,43.7233353],[80.5932465,43.7265587],[80.5909271,43.7297821],[80.5886078,43.7330093],[80.5862885,43.7362289],[80.5839691,43.7394524],[80.5816574,43.7426758],[80.5793381,43.7458992],[80.5770187,43.7491226],[80.5746994,43.752346],[80.5723801,43.7555695],[80.5700607,43.7587891],[80.5677414,43.7620163],[80.5654221,43.7652359],[80.5630951,43.7684593],[80.5607758,43.7716827],[80.5584564,43.7749023],[80.5561371,43.7781296],[80.5538177,43.7813492],[80.5514984,43.7845726],[80.5491714,43.787796],[80.5468521,43.7910156],[80.5445328,43.794239],[80.5422058,43.7974625],[80.5398865,43.8006821],[80.5375595,43.8039055],[80.5352402,43.8071251],[80.5329208,43.8103485],[80.5305939,43.8135719],[80.5282669,43.8167915],[80.5286713,43.8174095],[80.5291977,43.8182335],[80.5297318,43.8190575],[80.5302658,43.8199043],[80.5303726,43.8208122],[80.5304794,43.8217163],[80.5305939,43.8226204],[80.5307007,43.8235245],[80.5308075,43.8244324],[80.5309143,43.8253365],[80.5310211,43.8262405],[80.5311279,43.8271446],[80.5312347,43.8280525],[80.5313492,43.8289566],[80.531456,43.8298607],[80.5315628,43.8307686],[80.5316696,43.8316727],[80.5317764,43.8325768],[80.5318832,43.8334846],[80.5319977,43.8343887],[80.5321045,43.8352928],[80.5322113,43.8362007],[80.532196,43.8367577],[80.5321655,43.8376656],[80.5321426,43.8385735],[80.5321121,43.8394814],[80.5320816,43.8403931],[80.5320587,43.8412971],[80.5320282,43.8422089],[80.5320053,43.8431168],[80.5319748,43.8440247],[80.5319519,43.8449326],[80.5319214,43.8458405],[80.5318909,43.8467484],[80.531868,43.8476562],[80.531517,43.848423],[80.5311127,43.8492851],[80.5307159,43.8501472],[80.5303192,43.8510056],[80.5299225,43.8518677],[80.5295258,43.8527298],[80.529129,43.8535919],[80.5287323,43.854454],[80.5283356,43.8553162],[80.5279312,43.8561783],[80.5275345,43.8570404],[80.5271378,43.8579025],[80.526947,43.8586617],[80.5267258,43.8595581],[80.5265045,43.8604507],[80.5262833,43.8613472],[80.526062,43.8622398],[80.5261765,43.8623314],[80.5270462,43.8629875],[80.527916,43.8636436],[80.5275955,43.8644447],[80.5272446,43.8653183],[80.5268936,43.866188],[80.5265503,43.8670616],[80.5257111,43.867527],[80.5247192,43.8680801],[80.5237198,43.8686333],[80.522728,43.8691864],[80.5217285,43.8697395],[80.5214005,43.8704109],[80.5209808,43.8712692],[80.5205536,43.8721237],[80.520134,43.872982],[80.5197144,43.8738365],[80.5197296,43.874073],[80.5198059,43.8749847],[80.5198822,43.8758888],[80.5199661,43.8767929],[80.5200424,43.8777008],[80.5201187,43.8786087],[80.520195,43.8795166],[80.5202713,43.8804207],[80.5203476,43.8813286],[80.5204239,43.8822365],[80.5205002,43.8831444],[80.5205765,43.8840485],[80.5206528,43.8849564],[80.5207291,43.8858643],[80.5208054,43.8867722],[80.5208817,43.8876762],[80.5209579,43.8885841],[80.5210342,43.8894882],[80.5211105,43.8903961],[80.5211868,43.891304],[80.5212631,43.8922119],[80.5213394,43.893116],[80.5213318,43.8933983],[80.5213013,43.8943024],[80.5212784,43.8952103],[80.5212479,43.896122],[80.521225,43.8970299],[80.5211945,43.8979378],[80.5211639,43.8988457],[80.5209427,43.8994904],[80.5206299,43.9003716],[80.5203247,43.9012527],[80.5200195,43.9021339],[80.5197067,43.9030151],[80.5194016,43.9038925],[80.5190964,43.9047737],[80.518898,43.9049988],[80.5182343,43.9057693],[80.5175629,43.9065361],[80.5168915,43.9073067],[80.5162277,43.9080772],[80.5155563,43.908844],[80.5148926,43.9096146],[80.5142212,43.9103813],[80.5135498,43.9111557],[80.512886,43.9119225],[80.5122147,43.9126968],[80.5113678,43.913372],[80.5105286,43.9140434],[80.5096893,43.9147186],[80.5088425,43.9153938],[80.5080032,43.916069],[80.507164,43.9167442],[80.5063248,43.9174156],[80.5054779,43.9180908],[80.5046387,43.918766],[80.5037918,43.9194412],[80.5035172,43.9200325],[80.5031204,43.9208946],[80.5027237,43.9217529],[80.5023193,43.9226151],[80.5019226,43.9234772],[80.5015182,43.9243393],[80.5011215,43.9251976],[80.5007172,43.9260597],[80.5003204,43.9269218],[80.4999237,43.927784],[80.4995193,43.9286423],[80.4991226,43.9295044],[80.4987183,43.9303665],[80.4985886,43.9304352],[80.4975739,43.9309769],[80.4965668,43.9315147],[80.4955521,43.9320564],[80.494545,43.9325943],[80.4940338,43.9327469],[80.4928818,43.9331017],[80.4917221,43.9334526],[80.4905624,43.9338036],[80.4894028,43.9341545],[80.4882431,43.9345055],[80.4870834,43.9348602],[80.4859238,43.9352112],[80.485611,43.9358101],[80.4851608,43.936657],[80.4847107,43.9375038],[80.4842606,43.9383545],[80.4838028,43.9392014],[80.4833527,43.940052],[80.4829025,43.9408989],[80.4834595,43.9415627],[80.484108,43.9423409],[80.4847565,43.943119],[80.4854126,43.9438934],[80.4860611,43.9446716],[80.4867096,43.9454498],[80.4873581,43.946228],[80.4880066,43.9470024],[80.4886551,43.9477806],[80.4893112,43.9485588],[80.4899063,43.9489479],[80.4908371,43.9495583],[80.4917679,43.9501686],[80.4926987,43.9507751],[80.4936371,43.9513855],[80.4945679,43.9519958],[80.4954987,43.9526024],[80.4964371,43.9532089],[80.4973679,43.9538193],[80.4982986,43.9544296],[80.4982986,43.9544754],[80.4983368,43.9553871],[80.4983749,43.9562912],[80.4984055,43.9571991],[80.4984436,43.9581108],[80.4984741,43.9590149],[80.4984436,43.9590378],[80.4975891,43.9597054],[80.4967346,43.9603729],[80.4958801,43.9610405],[80.4956894,43.9611015],[80.494545,43.9614677],[80.4933929,43.9618378],[80.4922409,43.962204],[80.4910889,43.9625702],[80.490799,43.9628258],[80.4900055,43.9635315],[80.489212,43.9642334],[80.4884186,43.9649353],[80.4876251,43.965641],[80.4868317,43.9663429],[80.4860306,43.9670486],[80.4852371,43.9677544],[80.4845886,43.968174],[80.4836502,43.9687805],[80.4827194,43.9693871],[80.481781,43.9699974],[80.4808426,43.9706039],[80.4799118,43.9712105],[80.4789734,43.971817],[80.4780426,43.9724236],[80.4771042,43.9730301],[80.4761658,43.9736366],[80.475235,43.9742432],[80.4740829,43.9745674],[80.472908,43.9748917],[80.4717331,43.9752197],[80.4705582,43.975544],[80.4693832,43.975872],[80.4682159,43.9762001],[80.4678497,43.9764824],[80.4669876,43.9771461],[80.4661331,43.9778099],[80.465271,43.9784737],[80.4644165,43.9791412],[80.463562,43.9798012],[80.4626999,43.9804688],[80.4622803,43.9813156],[80.4618607,43.9821701],[80.4614334,43.9830284],[80.4610138,43.9838829],[80.4609909,43.9846191],[80.4609604,43.985527],[80.4609299,43.9864349],[80.460907,43.9873428],[80.4608765,43.9882507],[80.4608459,43.9891586],[80.4608154,43.9900665],[80.4609146,43.9909554],[80.4610138,43.9918594],[80.461113,43.9927673],[80.4612198,43.9936714],[80.461319,43.9945755],[80.4614182,43.9954834],[80.4615173,43.9963875],[80.4616165,43.9972916],[80.4617157,43.9981956],[80.4618149,43.9991035],[80.4619141,44.0000076],[80.4584656,44.0164986],[80.4517136,44.0419502],[80.4496231,44.0559387],[80.4508286,44.0591507],[80.4504929,44.0600624],[80.4481277,44.0671234],[80.4481125,44.0680389],[80.4474564,44.0689468],[80.4444809,44.0748558],[80.4438248,44.0759926],[80.4341583,44.0832024],[80.4325485,44.0843277],[80.4216309,44.0903816],[80.4193802,44.0915031],[80.417778,44.0923996],[80.4081116,44.0991516],[80.4068069,44.1007385],[80.4041367,44.1068802],[80.4041214,44.1077957],[80.4037857,44.1087036],[80.4038696,44.1196785],[80.4038544,44.120594],[80.4036026,44.1324768],[80.4035568,44.1347618],[80.4035339,44.1359024],[80.4034576,44.1546478],[80.4034271,44.1562462],[80.403389,44.1578484],[80.4016266,44.1811447],[80.4014359,44.1905174],[80.4013977,44.1921158],[80.4013748,44.1932564],[80.4043961,44.2008362],[80.4046707,44.203125],[80.4056091,44.2038193],[80.407692,44.210701],[80.408287,44.2127647],[80.408577,44.2139091],[80.4088669,44.2152863],[80.4096603,44.2230644],[80.4096298,44.2246666],[80.4093933,44.2358627],[80.4093704,44.2367783],[80.408699,44.2386017],[80.4055557,44.2518234],[80.4001694,44.2601891],[80.4001007,44.2631531],[80.4000015,44.2676888],[80.3999023,44.2722282],[80.3997345,44.273262],[80.3990173,44.277771],[80.3983078,44.28228],[80.396759,44.2866249],[80.3952026,44.2910233],[80.3936386,44.2954178],[80.3920746,44.2998161],[80.3905106,44.3042107],[80.3889465,44.308609],[80.3873901,44.3130035],[80.3858261,44.3173981],[80.3842621,44.3217964],[80.3838654,44.3261032],[80.3834534,44.3306313],[80.383049,44.3351593],[80.382637,44.3396835],[80.382225,44.3442116],[80.381813,44.3487396],[80.3814011,44.3532677],[80.3809891,44.3577919],[80.3805771,44.3623199],[80.3801651,44.366848],[80.3797531,44.3713722],[80.3791351,44.3740387],[80.3780899,44.3785133],[80.3770447,44.382988],[80.3759995,44.3874626],[80.3749542,44.3919334],[80.3746948,44.3949471],[80.3743057,44.3994751],[80.3742752,44.3995514],[80.3726883,44.4039421],[80.3710938,44.4083328],[80.3695068,44.4127197],[80.3694534,44.4128609],[80.3677597,44.4172325],[80.3660736,44.4216003],[80.3643799,44.425972],[80.3626862,44.4303436],[80.3610001,44.4347153],[80.3593063,44.4390831],[80.3576202,44.4434547],[80.3559265,44.4478264],[80.3542328,44.452198],[80.3525391,44.4565659],[80.3508453,44.4609375],[80.3496323,44.4642944],[80.3480377,44.4686813],[80.3478241,44.4710884],[80.3474197,44.4756165],[80.347023,44.4801407],[80.3471756,44.4831963],[80.3474121,44.4877319],[80.3493271,44.490448],[80.3521805,44.4944954],[80.3550339,44.4985466],[80.3572769,44.5013046],[80.360466,44.5052261],[80.3636551,44.5091438],[80.3636703,44.5094528],[80.3639755,44.5139809],[80.3642807,44.5185089],[80.3648987,44.5209846],[80.3660202,44.5254478],[80.3671417,44.529911],[80.3682556,44.5343742],[80.3693771,44.5388374],[80.370491,44.5433006],[80.3716125,44.5477638],[80.3724747,44.5494728],[80.3746338,44.5537338],[80.3767929,44.5579987],[80.378952,44.5622597],[80.3811111,44.5665245],[80.3832779,44.5707855],[80.385437,44.5750504],[80.3875961,44.5793114],[80.3880234,44.5811157],[80.3890839,44.5855827],[80.390152,44.5900536],[80.3921585,44.5929184],[80.394989,44.5969734],[80.3978348,44.6010246],[80.3985214,44.6026382],[80.4003906,44.6069679],[80.4002914,44.6076241],[80.3995743,44.6121292],[80.3988571,44.6166306],[80.39814,44.6211357],[80.3973846,44.6220055],[80.3940353,44.6258583],[80.390686,44.6297073],[80.3873367,44.6335602],[80.3839874,44.637413],[80.3806458,44.6412621],[80.3772964,44.6451111],[80.3740921,44.6477814],[80.3699646,44.6512222],[80.3658295,44.6546669],[80.3615189,44.6577148],[80.3570023,44.6609001],[80.3524857,44.6640892],[80.3503723,44.6660767],[80.3465347,44.6696892],[80.3427048,44.6733055],[80.3388672,44.676918],[80.3350296,44.6805305],[80.331192,44.6841431],[80.3273544,44.6877556],[80.3235168,44.6913643],[80.3196793,44.6949768],[80.3158417,44.6985893],[80.3120041,44.702198],[80.3134537,44.7027397],[80.3102798,44.7056046],[80.3063431,44.7091599],[80.304245,44.7095146],[80.2980576,44.710556],[80.2918777,44.7116013],[80.2856903,44.7126427],[80.2795029,44.7136879],[80.2733231,44.7147293],[80.2671356,44.7157707],[80.2609482,44.7168159],[80.2547607,44.7178574],[80.2485809,44.7188988],[80.2423935,44.7199402],[80.2420197,44.7201271],[80.2368469,44.7227554],[80.2316666,44.7253799],[80.2264862,44.7280083],[80.2213058,44.7306328],[80.2161255,44.7332611],[80.2129593,44.7353401],[80.2082825,44.7384109],[80.2036133,44.7414818],[80.1989365,44.7445564],[80.1984329,44.7453651],[80.1958466,44.7495041],[80.1946335,44.7534218],[80.1931229,44.756794],[80.1911774,44.7611084],[80.1908569,44.7632904],[80.1901932,44.7677956],[80.1895294,44.7723007],[80.1893616,44.7725487],[80.186615,44.776638],[80.1835938,44.779705],[80.1799393,44.7834129],[80.1762848,44.7871208],[80.1755829,44.788456],[80.1733398,44.7926941],[80.1710968,44.7969322],[80.1708069,44.7982597],[80.1697998,44.8027344],[80.1688004,44.807209],[80.1706467,44.8101501],[80.173233,44.8142853],[80.175827,44.8184242],[80.1758499,44.8191833],[80.1758499,44.8193283],[80.175972,44.8238602],[80.1760864,44.8283882],[80.1706848,44.8274345],[80.1652069,44.8305931],[80.1680069,44.8316498],[80.1704865,44.8326912],[80.1731949,44.8346634],[80.172699,44.8364677],[80.1701584,44.8393173],[80.1657333,44.84161],[80.1604156,44.843174],[80.1571808,44.8432388],[80.15271,44.8427811],[80.1476669,44.84161],[80.145874,44.8401451],[80.1469193,44.8360748],[80.1478348,44.8333702],[80.1481323,44.83041],[80.1458511,44.8273163],[80.1427841,44.8257828],[80.1378479,44.8234711],[80.1328735,44.8216133],[80.127388,44.8183556],[80.1216278,44.8161659],[80.1175766,44.8140564],[80.1141281,44.8121834],[80.1112518,44.8120155],[80.108017,44.8120956],[80.1040268,44.8132668],[80.0977478,44.8147736],[80.0883026,44.8156624],[80.0812225,44.8155289],[80.0761337,44.8148079],[80.0691376,44.8137589],[80.0656815,44.8128967],[80.0602036,44.8096352],[80.0560303,44.8062096],[80.051857,44.8027878],[80.0470276,44.8027649],[80.0423965,44.8039017],[80.0374908,44.8045616],[80.0304337,44.8041954],[80.0256882,44.8032608],[80.0210648,44.8011856],[80.0161362,44.7988663],[80.0100479,44.7953415],[80.0063095,44.7940025],[80.0018463,44.793541],[79.9960861,44.7962189],[79.9942551,44.7984123],[79.992691,44.8010788],[79.9917755,44.8037796],[79.9908981,44.8092346],[79.9908676,44.8126678],[79.9905853,44.8186073],[79.988121,44.8237457],[79.9844971,44.8276825],[79.9816284,44.8305092],[79.9785309,44.8324089],[79.9746475,44.83564],[79.9676514,44.8377953],[79.9622116,44.8404846],[79.9564056,44.8436165],[79.9485321,44.8480148],[79.9444427,44.85009],[79.9429245,44.8523026],[79.9425507,44.8559456],[79.942543,44.8591537],[79.9445343,44.8617783],[79.9458313,44.8648224],[79.9487915,44.8675003],[79.9514923,44.8694725],[79.9558487,44.8710785],[79.9590759,44.8742256],[79.961113,44.8763962],[79.9585648,44.8792419],[79.9548645,44.8806496],[79.9495163,44.8824272],[79.9438934,44.8837357],[79.9373245,44.8847656],[79.931427,44.8855972],[79.9273071,44.8879013],[79.9223633,44.8919907],[79.9179764,44.8938217],[79.9135895,44.8956528],[79.9096146,44.8965874],[79.9046555,44.8976974],[79.9011154,44.8975105],[79.894928,44.8948898],[79.8904037,44.8948784],[79.8871231,44.8953934],[79.8834229,44.8967972],[79.8802719,44.8991508],[79.8790436,44.9016037],[79.8808441,44.9060555],[79.8815231,44.9088402],[79.8824539,44.9123268],[79.8849945,44.9158974],[79.8885422,44.9190636],[79.8940201,44.9223328],[79.9005585,44.9247437],[79.9059067,44.9261742],[79.9131546,44.9279327],[79.9198608,44.9287453],[79.9300308,44.9304276],[79.9360275,44.9318886],[79.939003,44.9343376],[79.9404526,44.9360161],[79.9421692,44.9381676],[79.941864,44.9411316],[79.9423599,44.9457397],[79.9423065,44.9494019],[79.9450302,44.9543571],[79.9495697,44.9573441],[79.9539566,44.9587212],[79.960022,44.9594994],[79.9664993,44.9593773],[79.9730988,44.9613266],[79.9772949,44.9645271],[79.9833298,44.9687386],[79.9871674,44.972374],[79.9899216,44.9738922],[79.9952087,44.9760017],[80.0027466,44.9782257],[80.0115204,44.9809723],[80.0154953,44.983242],[80.0196533,44.9868965],[80.0225983,44.9897995],[80.0268021,44.9929924],[80.029747,44.9958954],[80.0348511,44.9998245],[80.0419769,45.0061493],[80.0480652,45.0131073],[80.0514908,45.0176392],[80.0529175,45.0227509],[80.0547104,45.0274239],[80.0552368,45.0318031],[80.0561371,45.0357437],[80.0569153,45.0376167],[80.0613174,45.03899],[80.0653687,45.037365],[80.0697021,45.0354233],[80.0737457,45.0346413],[80.0784988,45.0351067],[80.0835419,45.0369263],[80.0866089,45.0386848],[80.0875244,45.0423965],[80.0878067,45.0460777],[80.0895767,45.0477715],[80.0921097,45.0483589],[80.0953293,45.0492935],[80.099205,45.0500183],[80.1041412,45.051075],[80.1092606,45.0517578],[80.1119537,45.0507469],[80.1178589,45.0434914],[80.122345,45.0407448],[80.1273117,45.0396194],[80.1305618,45.0395584],[80.1340103,45.0406494],[80.1360168,45.0432701],[80.1364822,45.0451279],[80.1368332,45.0481224],[80.1369705,45.0531693],[80.1369553,45.0566025],[80.1386642,45.058979],[80.1417465,45.0605125],[80.1450195,45.0602188],[80.1483078,45.0597],[80.1508636,45.0568504],[80.1534119,45.0540047],[80.159729,45.0458488],[80.1644897,45.0435677],[80.1690445,45.0433388],[80.1725845,45.0435219],[80.1766815,45.0414352],[80.1788177,45.0394821],[80.1823273,45.033474],[80.1873093,45.0289154],[80.1913986,45.0268326],[80.1949463,45.0270119],[80.2006531,45.0282135],[80.209671,45.0286674],[80.2184601,45.0281944],[80.2262115,45.0283508],[80.235878,45.0288353],[80.2415237,45.0307198],[80.2460861,45.0336952],[80.2501984,45.0380211],[80.2549973,45.0419273],[80.2565994,45.0454445],[80.2597656,45.0494957],[80.2635574,45.0538063],[80.2678909,45.055851],[80.2725449,45.0579147],[80.2778015,45.0604668],[80.2886887,45.0651283],[80.2962036,45.067791],[80.3077011,45.0695038],[80.3146439,45.0714493],[80.3232193,45.069809],[80.3256149,45.0685501],[80.3263092,45.0646896],[80.3274689,45.0626869],[80.3305588,45.0575714],[80.3330612,45.0517426],[80.3381195,45.0462646],[80.3443604,45.0419884],[80.3478241,45.0396385],[80.3534317,45.0385399],[80.3609085,45.0382156],[80.370018,45.0377464],[80.3799438,45.0389175],[80.3870316,45.0426941],[80.3940735,45.0469322],[80.3989716,45.0499153],[80.4037628,45.0540428],[80.4145889,45.0593758],[80.424263,45.0667152],[80.431221,45.0718575],[80.4363403,45.0759964],[80.4417572,45.0803795],[80.4440155,45.0839233],[80.4447479,45.0899124],[80.4448547,45.0956421],[80.4446869,45.1008987],[80.4455643,45.1052933],[80.4476547,45.1072273],[80.4525986,45.1097527],[80.4573517,45.1108971],[80.4661102,45.1142921],[80.4739456,45.1171875],[80.4801636,45.1200027],[80.4865799,45.127636],[80.490242,45.1301003],[80.4951477,45.1296463],[80.4960938,45.1264877],[80.4970169,45.1235542],[80.4978333,45.1217613],[80.4993134,45.116333],[80.5019073,45.112793],[80.5080185,45.1098785],[80.5155869,45.1086349],[80.5261917,45.1095963],[80.5328674,45.1110535],[80.5398636,45.1125298],[80.5489197,45.1127281],[80.5579987,45.1126976],[80.5622559,45.1122131],[80.5665512,45.1112671],[80.5709991,45.1087303],[80.5758133,45.1057472],[80.5815125,45.1037254],[80.5860443,45.1037064],[80.59272,45.1051636],[80.6010666,45.1060143],[80.6096573,45.1077881],[80.61689,45.1101837],[80.6271286,45.1152382],[80.6361771,45.119091],[80.6459579,45.1220627],[80.6507187,45.1231995],[80.6596909,45.1243019],[80.6689911,45.1254158],[80.6800842,45.1282158],[80.6888809,45.1313667],[80.6958008,45.1337433],[80.7022324,45.1379318],[80.7064056,45.1420135],[80.7121506,45.1466255],[80.718605,45.1505814],[80.7232285,45.1533127],[80.7261963,45.1564217],[80.7250366,45.158432],[80.7229843,45.1597099],[80.7189636,45.161129],[80.7125778,45.1635857],[80.7081528,45.165905],[80.7045975,45.1694031],[80.7042847,45.1728249],[80.7080612,45.1741409],[80.7128296,45.1752739],[80.7173691,45.175251],[80.7245636,45.1746635],[80.7306442,45.1719627],[80.7400589,45.1682701],[80.7459335,45.1641884],[80.7506256,45.158905],[80.7566833,45.152771],[80.7607574,45.1506615],[80.7651443,45.1487999],[80.771019,45.1483765],[80.7777557,45.1491394],[80.7847672,45.1506004],[80.7915039,45.1513596],[80.8005295,45.1519928],[80.8080444,45.1514168],[80.8171844,45.1506805],[80.822876,45.1486435],[80.8276596,45.1458817],[80.8324051,45.1435738],[80.8363724,45.1389427],[80.8406448,45.1345558],[80.8452225,45.1304092],[80.8506851,45.1272202],[80.8569794,45.1256676],[80.8624496,45.1261368],[80.8688507,45.1271057],[80.8753052,45.1273918],[80.8814774,45.1272087],[80.8856964,45.1271667],[80.8896103,45.1268806],[80.8957672,45.1269188],[80.89991,45.1277924],[80.9020081,45.129715],[80.9037094,45.132534],[80.9061432,45.138134],[80.9075623,45.1404877],[80.9102325,45.1433525],[80.9146042,45.1453743],[80.9189301,45.1478539],[80.9246902,45.1524544],[80.9307861,45.1570702],[80.9366455,45.1605301],[80.9438629,45.1633606],[80.9489975,45.1640434],[80.9583435,45.1646805],[80.9673157,45.1659851],[80.973877,45.165123],[80.9788437,45.1639633],[80.9872894,45.159977],[80.995079,45.1598549],[81.0018234,45.1606026],[81.0089569,45.1606827],[81.0163269,45.1616859],[81.0240097,45.1629295],[81.0301056,45.1636505],[81.0367584,45.165535],[81.0414352,45.1677971],[81.0473099,45.1712532],[81.0522919,45.1737518],[81.0548172,45.1745453],[81.0608826,45.1757202],[81.0657349,45.1759262],[81.0737381,45.1771774],[81.0761871,45.1788864],[81.0772934,45.181221],[81.0792542,45.184967],[81.0809479,45.188015],[81.0842361,45.1913567],[81.0866699,45.1932907],[81.0894318,45.1952362],[81.0934296,45.1979218],[81.0978012,45.1999397],[81.1019516,45.2008018],[81.1074829,45.2005768],[81.1125488,45.2021637],[81.1165237,45.2050743],[81.1152878,45.2082291],[81.1133347,45.212265],[81.1104813,45.2153511],[81.108902,45.2180214],[81.108757,45.2200966],[81.1096954,45.2216263],[81.1144791,45.222374],[81.1172409,45.2221298],[81.1225204,45.2214928],[81.1272507,45.2206306],[81.1329346,45.2185783],[81.1413803,45.2145844],[81.1474991,45.2111778],[81.1535492,45.208683],[81.1582489,45.2068176],[81.1630936,45.2070198],[81.1675339,45.2083473],[81.169342,45.2100258],[81.1691208,45.2127647],[81.1683197,45.2145615],[81.1663742,45.2186012],[81.1657486,45.2222366],[81.1665344,45.224556],[81.1696396,45.2262878],[81.1769867,45.2277374],[81.1827393,45.2288895],[81.1913071,45.2313042],[81.1970901,45.2320023],[81.2028961,45.2324677],[81.211853,45.234211],[81.2150269,45.2350273],[81.2178497,45.2362862],[81.2196045,45.2386475],[81.2200546,45.2411842],[81.2218323,45.2433167],[81.2251892,45.2459717],[81.2283325,45.2472458],[81.2319489,45.2467079],[81.2356567,45.2450256],[81.2390747,45.242878],[81.2438278,45.2403259],[81.2475662,45.2381897],[81.2544937,45.2368698],[81.2619934,45.2364883],[81.2688065,45.2365379],[81.2748795,45.2376976],[81.2805786,45.2395287],[81.2878189,45.2423401],[81.2957535,45.2447205],[81.30233,45.2477303],[81.3114853,45.2510757],[81.3177414,45.2540703],[81.3228531,45.2551918],[81.3288727,45.2570343],[81.3346329,45.2581825],[81.3404617,45.2584152],[81.3476181,45.2582397],[81.3541794,45.2573586],[81.3581772,45.2561455],[81.3647766,45.2548065],[81.3715591,45.2553024],[81.3756943,45.256382],[81.3818817,45.2602882],[81.3840485,45.2617493],[81.3880768,45.2641945],[81.3914261,45.2670746],[81.3959808,45.2711449],[81.4001999,45.2754288],[81.4064102,45.2791061],[81.4124374,45.2809448],[81.4188995,45.2814293],[81.4251785,45.2800713],[81.4307938,45.2789192],[81.4338837,45.2767487],[81.4363937,45.2736435],[81.4376297,45.2702599],[81.4408569,45.2662659],[81.4440002,45.2634163],[81.448349,45.2617531],[81.4535675,45.2615013],[81.4590378,45.2621689],[81.4637375,45.2644119],[81.4694138,45.2666931],[81.4747772,45.2687302],[81.4820175,45.2717552],[81.4892197,45.275238],[81.4942856,45.2770348],[81.4996338,45.2793007],[81.5025177,45.2798691],[81.5080032,45.2803078],[81.5137711,45.2814445],[81.5169525,45.2822533],[81.5197372,45.2841911],[81.5224228,45.2872696],[81.5245056,45.2898674],[81.5273514,45.2952347],[81.5306396,45.2990227],[81.5342484,45.3028221],[81.5397949,45.3069229],[81.5422974,45.3081627],[81.5464249,45.3094635],[81.5523148,45.3090019],[81.5565948,45.3082504],[81.5612335,45.3070526],[81.566658,45.308403],[81.569191,45.3078842],[81.5696259,45.3121758],[81.5700378,45.3153954],[81.5702133,45.3174591],[81.5718613,45.3214149],[81.5734406,45.3265038],[81.5734863,45.3301697],[81.574646,45.3320427],[81.5767822,45.3339539],[81.5818558,45.3357468],[81.585968,45.3372765],[81.5935822,45.3398476],[81.6018753,45.3419914],[81.6082611,45.343605],[81.613678,45.3451767],[81.6168137,45.3466682],[81.6218185,45.3493729],[81.6261292,45.3527374],[81.6297836,45.3560753],[81.6322937,45.3573151],[81.6377106,45.3588905],[81.6445236,45.3591423],[81.6540833,45.3574371],[81.6603928,45.3556137],[81.6659927,45.3546753],[81.6699219,45.3543625],[81.6738434,45.3540497],[81.6771317,45.3580627],[81.678215,45.3610764],[81.6812744,45.3637047],[81.6849823,45.3663597],[81.6888428,45.3669548],[81.6933899,45.3671265],[81.6983414,45.3661613],[81.7012939,45.3658104],[81.7056046,45.3645973],[81.7105408,45.3638649],[81.7174683,45.3625145],[81.723877,45.3638954],[81.7273331,45.3656197],[81.7313232,45.368969],[81.7362366,45.3730354],[81.7400131,45.3747749],[81.7443771,45.377449],[81.7465363,45.3791313],[81.7497025,45.3803902],[81.7545547,45.3807907],[81.7581863,45.3800087],[81.762146,45.3792343],[81.7657013,45.3795929],[81.7698059,45.3813438],[81.7715912,45.3836937],[81.772438,45.3855553],[81.7735901,45.3876572],[81.7754364,45.3890953],[81.7805023,45.3911057],[81.7831039,45.391201],[81.7873993,45.390213],[81.7911835,45.3873749],[81.7929688,45.3851509],[81.7966156,45.3795624],[81.8011703,45.3749199],[81.8065186,45.368248],[81.8097305,45.3642464],[81.8182297,45.3590584],[81.8212433,45.3577919],[81.82621,45.3565941],[81.8352051,45.3534851],[81.8442383,45.3499146],[81.8519669,45.3462982],[81.8576736,45.3437538],[81.8657379,45.3399239],[81.8727875,45.3367386],[81.8798981,45.3326416],[81.889946,45.3284187],[81.9003372,45.3237495],[81.9077225,45.3203468],[81.9157715,45.3167381],[81.9230804,45.314476],[81.9313889,45.3117905],[81.9420242,45.3082695],[81.9504547,45.3037567],[81.9595413,45.2990379],[81.9673538,45.2940445],[81.9744492,45.2899399],[81.9788971,45.2866631],[81.9844437,45.2813644],[81.9883499,45.2764626],[81.9942245,45.2711754],[81.9997253,45.2665596],[82.0056,45.2612686],[82.0084839,45.257019],[82.0113602,45.2527695],[82.0132675,45.2484894],[82.0148697,45.243969],[82.0177002,45.240406],[82.0220184,45.2389526],[82.0255203,45.2399864],[82.0282974,45.2421379],[82.0317078,45.2445412],[82.0354156,45.2474098],[82.0382385,45.2488785],[82.0420609,45.2499237],[82.0468903,45.2505417],[82.0533829,45.2505341],[82.0608749,45.2500954],[82.0722122,45.2504768],[82.0796432,45.2509537],[82.0867691,45.2511902],[82.0911026,45.2495041],[82.0937958,45.2479935],[82.0956573,45.2443962],[82.0942154,45.2416],[82.0908127,45.2389717],[82.0871048,45.2361069],[82.0859146,45.2344627],[82.0835495,45.2309532],[82.0821075,45.2281647],[82.0819778,45.2251854],[82.0834503,45.2224884],[82.0852661,45.219574],[82.0874481,45.2159882],[82.0888901,45.2137527],[82.091362,45.2106285],[82.0954132,45.2082481],[82.1007233,45.2063675],[82.106575,45.2061043],[82.1110916,45.2064819],[82.1159058,45.207325],[82.1190948,45.2081184],[82.1225357,45.2100601],[82.1278915,45.2125282],[82.1357803,45.2159882],[82.1415176,45.2175484],[82.1495056,45.2194138],[82.1590576,45.2222404],[82.1648102,45.2235718],[82.1725845,45.2238235],[82.1787033,45.2244797],[82.1873474,45.2263641],[82.1930695,45.2281494],[82.1990891,45.2304001],[82.2061005,45.2324562],[82.213768,45.2343063],[82.2217636,45.2361641],[82.2285538,45.2366104],[82.2363205,45.2368584],[82.2454453,45.2362366],[82.2529221,45.2360153],[82.259697,45.2366905],[82.2676468,45.2392273],[82.27565,45.2410812],[82.287178,45.2435074],[82.2897568,45.2438164],[82.2897339,45.2438889],[82.2940903,45.2424393],[82.2977753,45.2426567],[82.3014526,45.2419205],[82.3069763,45.2408142],[82.3110275,45.240078],[82.3235397,45.2393417],[82.3290634,45.2393417],[82.3320084,45.2389755],[82.3412094,45.2356606],[82.349678,45.2341881],[82.3591309,45.2306862],[82.368576,45.2278404],[82.3802948,45.2254524],[82.3893967,45.2222672],[82.3978958,45.2202034],[82.4111481,45.2165222],[82.4218216,45.2135773],[82.4313965,45.2109985],[82.4428024,45.2076874],[82.4475937,45.2062149],[82.4512711,45.2054787],[82.4549561,45.2043724],[82.4619446,45.20327],[82.4737244,45.2014275],[82.4862442,45.2014275],[82.4921341,45.2010612],[82.5039139,45.2014275],[82.5153198,45.2017975],[82.523056,45.2017975],[82.5311508,45.2025337],[82.5388794,45.20327],[82.5480804,45.2043724],[82.5561829,45.2065811],[82.5650177,45.2084236],[82.5698013,45.2095261],[82.58284,45.2170067],[82.5825653,45.2187042],[82.5819931,45.2216721],[82.5812531,45.2251778],[82.5797806,45.2310677],[82.5781631,45.2388725],[82.5769043,45.2472954],[82.5755386,45.253212],[82.574173,45.2591286],[82.5723495,45.2682304],[82.5705338,45.2732391],[82.5687103,45.278698],[82.5673447,45.2818871],[82.5637054,45.2900772],[82.5591507,45.2987251],[82.55233,45.3105583],[82.5459518,45.3210258],[82.5400391,45.3301277],[82.53685,45.333313],[82.5277481,45.3469658],[82.5154648,45.3624382],[82.5063629,45.3756371],[82.4963455,45.3879242],[82.4836044,45.4047661],[82.4747009,45.4163361],[82.457222,45.4311295],[82.4437714,45.4432297],[82.4074631,45.4687805],[82.3402252,45.5091209],[82.3240891,45.5171928],[82.2866364,45.5350494],[82.2753372,45.5469437],[82.2747803,45.5517349],[82.2727814,45.5628777],[82.2704773,45.5735512],[82.270134,45.5790291],[82.2702866,45.5870399],[82.2697449,45.5957108],[82.2703094,45.6023598],[82.2704544,45.6103706],[82.2720871,45.6156807],[82.271843,45.6248169],[82.2735138,45.6294441],[82.2744598,45.6351929],[82.2758789,45.6386642],[82.2772064,45.6435089],[82.2781982,45.648571],[82.2765198,45.6544647],[82.2751999,45.6599121],[82.2753067,45.6633453],[82.2765884,45.6691017],[82.2765579,45.6748161],[82.2791672,45.6801567],[82.2836456,45.6869278],[82.2839432,45.6879921],[82.2854919,45.6889648],[82.2865677,45.6896057],[82.2983856,45.694561],[82.3006821,45.6952324],[82.3207169,45.704258],[82.3223648,45.705162],[82.3236847,45.7062988],[82.3302841,45.7112885],[82.3312759,45.7124252],[82.3322754,45.7137909],[82.33564,45.7210846],[82.3359985,45.7233658],[82.3358383,45.7364044],[82.3362045,45.7391434],[82.3362274,45.7407455],[82.3353958,45.7519493],[82.3350906,45.7540092],[82.3354263,45.7549248],[82.3338089,45.7629395],[82.3344498,45.7648811],[82.3371277,45.7693062],[82.3393631,45.775547],[82.3411179,45.7842903],[82.341362,45.7909317],[82.3423843,45.8010216],[82.341835,45.8099251],[82.3418808,45.8197556],[82.3407898,45.8268127],[82.3394318,45.8329468],[82.3394775,45.8427773],[82.3370667,45.8500214],[82.3357315,45.8556938],[82.3348923,45.8586426],[82.3312073,45.8651619],[82.3288498,45.8714905],[82.3285522,45.8762856],[82.3302078,45.8813629],[82.3319626,45.8848495],[82.3359756,45.8888626],[82.3390656,45.8974152],[82.3415756,45.9045792],[82.3423615,45.9078064],[82.3431625,45.9108047],[82.3436508,45.9135628],[82.3442612,45.919529],[82.3438263,45.9266014],[82.3424683,45.9327354],[82.3422089,45.9368401],[82.3437119,45.9391747],[82.3452072,45.9415054],[82.3463364,45.9445114],[82.3521194,45.9467468],[82.3594742,45.9499435],[82.3656006,45.9519615],[82.3750153,45.953846],[82.3833923,45.9566116],[82.3924789,45.9584923],[82.3944931,45.9588051],[82.4008026,45.9598007],[82.4052124,45.9601402],[82.411644,45.96064],[82.4149323,45.9610748],[82.4162521,45.9612923],[82.4216232,45.9608383],[82.4280472,45.9602966],[82.431694,45.9625549],[82.4320908,45.963459],[82.43396,45.9677849],[82.4358368,45.9721031],[82.4377136,45.9764214],[82.4395905,45.9807434],[82.4414673,45.9850616],[82.4433441,45.9893837],[82.4452209,45.9937019],[82.4470978,45.9980202],[82.4489746,46.002346],[82.4508514,46.0066643],[82.4527283,46.0109787],[82.4546051,46.0153046],[82.4564819,46.019619],[82.4583664,46.0239372],[82.4602432,46.0282593],[82.4621201,46.0325775],[82.4639969,46.0368996],[82.4658813,46.0412178],[82.4677582,46.045536],[82.4696426,46.0498581],[82.4715195,46.0541725],[82.4716568,46.0562935],[82.4719543,46.0608025],[82.4722595,46.0615005],[82.474144,46.0658188],[82.4760361,46.070137],[82.4779205,46.0744553],[82.479805,46.0787735],[82.4816971,46.0830917],[82.4835815,46.0874062],[82.4854736,46.0917244],[82.4873581,46.0960388],[82.4892502,46.1003532],[82.4911346,46.1046715],[82.4930267,46.1089897],[82.4949188,46.1133041],[82.4968033,46.1176224],[82.4986954,46.1219368],[82.5005875,46.126255],[82.5024796,46.1305656],[82.504364,46.1348839],[82.5062561,46.1391983],[82.5081482,46.1435165],[82.5078506,46.1453476],[82.5094604,46.1476822],[82.5122757,46.1517448],[82.5150909,46.1558113],[82.5179062,46.159874],[82.5207291,46.1639404],[82.5235443,46.1680031],[82.5263596,46.1720657],[82.5291748,46.1761322],[82.5319977,46.1801949],[82.5348129,46.1842575],[82.5376358,46.1883202],[82.540451,46.1923904],[82.5432663,46.1964531],[82.5460892,46.2005157],[82.5489044,46.2045784],[82.5517273,46.2086411],[82.5545502,46.2127037],[82.5573654,46.2167664],[82.5601883,46.220829],[82.5612335,46.2240219],[82.5620804,46.2252235],[82.564949,46.2292671],[82.5678177,46.2333145],[82.5706787,46.2373619],[82.5735474,46.2414131],[82.576416,46.2454567],[82.5792847,46.2495041],[82.5821533,46.2535515],[82.585022,46.2575989],[82.5878906,46.2616463],[82.5907593,46.2656898],[82.5936279,46.2697372],[82.5964966,46.2737846],[82.5993729,46.277832],[82.6022415,46.2818756],[82.6051102,46.285923],[82.6079865,46.2899704],[82.6108551,46.294014],[82.6137314,46.2980614],[82.6166,46.3021049],[82.6194687,46.3061523],[82.622345,46.3101959],[82.6252213,46.3142433],[82.6263428,46.3164406],[82.6285248,46.3206863],[82.6307068,46.3249359],[82.6316147,46.3263168],[82.6343307,46.3304138],[82.6370468,46.3345108],[82.6397629,46.3386116],[82.6424789,46.3427048],[82.645195,46.3468018],[82.6479111,46.3508987],[82.6506271,46.3549957],[82.6533432,46.3590927],[82.6560593,46.3631897],[82.658783,46.3672829],[82.661499,46.3713837],[82.6642151,46.3754768],[82.6669312,46.3795738],[82.6696548,46.3836746],[82.6723709,46.3877678],[82.6750946,46.391861],[82.6778107,46.3959579],[82.6805267,46.4000549],[82.6832504,46.4041519],[82.6859741,46.4082451],[82.6886978,46.4123383],[82.6914139,46.4164352],[82.6941376,46.4205322],[82.6968613,46.4246254],[82.699585,46.4287186],[82.702301,46.4328156],[82.7050247,46.4369087],[82.7077484,46.4410019],[82.7104721,46.4450989],[82.7132034,46.4491959],[82.7159271,46.4532852],[82.7186508,46.4573784],[82.7213745,46.4614754],[82.7240982,46.4655685],[82.7268219,46.4696617],[82.7295532,46.4737549],[82.7322769,46.4778519],[82.7350082,46.481945],[82.7362061,46.4845161],[82.738205,46.4888039],[82.7402039,46.4930954],[82.7402878,46.4933586],[82.7405624,46.494236],[82.7419205,46.498642],[82.741951,46.498745],[82.7432861,46.5030479],[82.7446442,46.5074577],[82.7460098,46.5118599],[82.7473679,46.5162659],[82.7487335,46.5206757],[82.7487488,46.5215912],[82.7504272,46.5258865],[82.752121,46.5302353],[82.7538147,46.534584],[82.7555084,46.5389328],[82.7572021,46.5432892],[82.7589035,46.5476379],[82.7605972,46.5519867],[82.7622986,46.5563354],[82.7639923,46.5606842],[82.765686,46.5650406],[82.7673874,46.5693893],[82.7690811,46.5737381],[82.7691193,46.5753403],[82.7694702,46.5763664],[82.7709808,46.5807495],[82.7724915,46.5851326],[82.7739944,46.5895157],[82.7755051,46.5938988],[82.7770157,46.5982819],[82.7785263,46.6026649],[82.7800369,46.607048],[82.7815399,46.6114273],[82.7830505,46.6158104],[82.7845612,46.6201897],[82.7860718,46.6245728],[82.7875824,46.628952],[82.789093,46.6333351],[82.7906036,46.6377182],[82.7921143,46.6420975],[82.7936249,46.6464806],[82.7951355,46.6508636],[82.7966461,46.6552429],[82.7981644,46.659626],[82.7988739,46.662487],[82.7999802,46.6669235],[82.8000259,46.6689796],[82.800209,46.6695137],[82.801712,46.673893],[82.803215,46.6782761],[82.804718,46.6826591],[82.806221,46.6870384],[82.807724,46.6914215],[82.809227,46.6958084],[82.81073,46.7001839],[82.812233,46.7045708],[82.813736,46.7089539],[82.815239,46.7133331],[82.8167419,46.7177162],[82.8182449,46.7220993],[82.8197479,46.7264824],[82.8212585,46.7308578],[82.8227615,46.7352409],[82.8242645,46.739624],[82.8257675,46.7440033],[82.8272781,46.7483864],[82.8287811,46.7527695],[82.8302841,46.7571449],[82.8317947,46.761528],[82.8332977,46.7659111],[82.8348083,46.7702904],[82.8363113,46.7746696],[82.8376007,46.775589],[82.8421555,46.7788315],[82.8467026,46.7820702],[82.8512497,46.7853088],[82.8558044,46.7885475],[82.8603516,46.7917862],[82.8624268,46.7949638],[82.8626328,46.7958107],[82.8637085,46.8002472],[82.8647766,46.8046913],[82.8658524,46.8091316],[82.8669281,46.8135681],[82.8680038,46.8180084],[82.8690872,46.8224449],[82.870163,46.826889],[82.8717346,46.8305397],[82.8735886,46.8348541],[82.8754501,46.8391724],[82.8761063,46.8406219],[82.878067,46.8449173],[82.8800278,46.849205],[82.8819885,46.8535004],[82.8839493,46.8577957],[82.8859177,46.8620911],[82.8878784,46.8663826],[82.8898392,46.8706779],[82.8917999,46.8749733],[82.8937683,46.8792648],[82.8957291,46.8835602],[82.8976974,46.8878517],[82.8996582,46.8921432],[82.901619,46.8964386],[82.9035873,46.9007339],[82.9055481,46.9050217],[82.9075165,46.909317],[82.9094772,46.9136086],[82.9114456,46.9179039],[82.9134064,46.9221954],[82.9153748,46.926487],[82.9173431,46.9307785],[82.9193039,46.9350739],[82.9212723,46.9393654],[82.9232407,46.9436531],[82.925209,46.9479485],[82.9271774,46.95224],[82.9322357,46.9681702],[82.9327927,46.9802742],[82.9381027,47.0011864],[82.9364777,47.0167618],[82.9456787,47.0202255],[82.9682007,47.0366554],[82.9783249,47.0453529],[82.9858246,47.0552444],[82.9899445,47.0645294],[82.9926071,47.0713272],[82.9976959,47.0938454],[83.0061951,47.1034889],[83.0084839,47.1065369],[83.0096359,47.1096458],[83.0102234,47.1127014],[83.0100403,47.1152191],[83.0095673,47.1184349],[83.0104294,47.1216125],[83.0119629,47.1247673],[83.0134735,47.127697],[83.0157089,47.1312981],[83.0171814,47.1335411],[83.0190125,47.1360054],[83.0212708,47.1400566],[83.0231934,47.1441193],[83.0252151,47.1497765],[83.0274963,47.1542892],[83.0287247,47.1579094],[83.0303268,47.1622086],[83.0309296,47.1665344],[83.0312271,47.1715546],[83.0318832,47.1767921],[83.0318222,47.1813622],[83.0311279,47.1866417],[83.0300827,47.1914673],[83.0287018,47.1965332],[83.0280457,47.2022667],[83.0276184,47.2063942],[83.0282288,47.2109451],[83.0290985,47.214119],[83.0286179,47.2173347],[83.0320969,47.2192955],[83.0396042,47.2211494],[83.0460968,47.2228012],[83.0522232,47.2240028],[83.059021,47.2251854],[83.0651398,47.2263908],[83.0702362,47.2271652],[83.0753021,47.2274818],[83.0833893,47.2277145],[83.0907822,47.2277412],[83.0984802,47.2270699],[83.107193,47.2266006],[83.1139221,47.2266388],[83.1190491,47.228096],[83.1245499,47.2299995],[83.1284027,47.2324066],[83.133873,47.2338524],[83.1389923,47.2350769],[83.152565,47.2369804],[83.15625,47.2366486],[83.1585083,47.2352142],[83.1620331,47.2323723],[83.1656113,47.2304382],[83.1694717,47.2275887],[83.1723709,47.2256775],[83.1769409,47.2234917],[83.1802292,47.2222519],[83.183876,47.2214622],[83.1872177,47.2211418],[83.1912613,47.2212563],[83.1962051,47.2197418],[83.1988373,47.2187538],[83.2023544,47.2159081],[83.2052155,47.2133102],[83.2076797,47.2098122],[83.2091827,47.2070274],[83.2106476,47.2035561],[83.2110977,47.2001152],[83.2119446,47.1975746],[83.2131119,47.1947975],[83.2149963,47.1926842],[83.2175751,47.1910133],[83.2205353,47.1900139],[83.2248535,47.1892014],[83.2285461,47.1890945],[83.2322159,47.1887627],[83.2359085,47.1886559],[83.2392197,47.1878738],[83.2423782,47.1848106],[83.243927,47.1827087],[83.2467957,47.1803398],[83.2487259,47.1789093],[83.2513275,47.1776924],[83.2543182,47.1771507],[83.2586823,47.177021],[83.2636948,47.1766472],[83.2687454,47.1767235],[83.2747955,47.1767769],[83.2811661,47.1765938],[83.2892685,47.177269],[83.2930832,47.1789856],[83.2968445,47.1800156],[83.3028793,47.1798325],[83.3061447,47.1783676],[83.3120499,47.176136],[83.3153381,47.1751251],[83.3213196,47.1740303],[83.3256149,47.1729927],[83.3289413,47.1724358],[83.3329926,47.1727676],[83.33638,47.1731262],[83.3394394,47.1737213],[83.3435211,47.174511],[83.3469238,47.1750984],[83.3527603,47.1769791],[83.3579407,47.1791115],[83.3609924,47.1794777],[83.3649979,47.1791267],[83.3672104,47.177002],[83.3666916,47.1742706],[83.3668137,47.1710701],[83.3676224,47.1680756],[83.3687363,47.1646118],[83.3712234,47.1615639],[83.3738251,47.1603432],[83.3793869,47.1581192],[83.3829269,47.1557274],[83.3863983,47.15242],[83.387207,47.1494255],[83.3883896,47.1471024],[83.3898849,47.1443138],[83.3914413,47.142437],[83.3962173,47.1386375],[83.4017334,47.1357231],[83.4065323,47.1321487],[83.4106674,47.1288261],[83.4125595,47.1269379],[83.414093,47.1248322],[83.4162521,47.1220245],[83.4188461,47.1205711],[83.4227982,47.1195374],[83.4268494,47.1198692],[83.4302902,47.1211357],[83.4344711,47.1232948],[83.439743,47.1267853],[83.4449539,47.1293716],[83.4525146,47.1318779],[83.4569931,47.1335716],[83.4653015,47.1324005],[83.4679108,47.131176],[83.4691391,47.1295357],[83.469635,47.1270103],[83.4708328,47.1249123],[83.4720535,47.1230469],[83.4756851,47.1222458],[83.4799194,47.120285],[83.4825668,47.119751],[83.483017,47.1165314],[83.4825211,47.1142616],[83.4846954,47.1116791],[83.4872971,47.1104546],[83.4959564,47.1095009],[83.5010147,47.1097984],[83.5076523,47.1086769],[83.5122757,47.1076164],[83.5154648,47.1052322],[83.5179901,47.1028633],[83.5205078,47.100502],[83.5232697,47.096756],[83.5247345,47.0937347],[83.5265732,47.0911598],[83.5290909,47.0887985],[83.5312881,47.0866699],[83.5355453,47.0851631],[83.5412216,47.0847549],[83.5525589,47.0837097],[83.5591354,47.0819016],[83.564003,47.0794601],[83.5648727,47.0776062],[83.5646973,47.0750923],[83.5631866,47.0726242],[83.5606842,47.0704193],[83.5595016,47.0679436],[83.5602798,47.0647163],[83.5632324,47.0637093],[83.5679169,47.0635605],[83.5742722,47.0633583],[83.5826874,47.0637741],[83.5896683,47.0628624],[83.6088867,47.0549278],[83.6127243,47.0522919],[83.6156693,47.051281],[83.6190033,47.0509453],[83.6202621,47.0504646],[83.6222687,47.0496941],[83.6272507,47.0490761],[83.6341476,47.0470238],[83.6391144,47.0461769],[83.6458054,47.0459557],[83.6547546,47.0445251],[83.6603699,47.0434227],[83.6680145,47.0424881],[83.6773148,47.0412674],[83.6852264,47.0394058],[83.6921158,47.0373535],[83.6962967,47.0349274],[83.6988068,47.0325546],[83.7010193,47.0306549],[83.7011871,47.0283623],[83.7012939,47.0251579],[83.7020111,47.0212479],[83.7025299,47.0191727],[83.7058716,47.019062],[83.70858,47.0194283],[83.7123413,47.0204506],[83.7157516,47.0212517],[83.7220001,47.0242424],[83.7271652,47.0261269],[83.7330017,47.0279922],[83.7394714,47.029377],[83.7442017,47.0299034],[83.7488785,47.0297508],[83.7525635,47.0296249],[83.7595291,47.0287056],[83.7647781,47.0271568],[83.7733383,47.0250397],[83.7789001,47.0232506],[83.7841187,47.021244],[83.7900009,47.0192146],[83.7939453,47.0181694],[83.7982712,47.0177917],[83.8042068,47.0164452],[83.810173,47.0155602],[83.8151016,47.0142479],[83.818306,47.01231],[83.8217773,47.009449],[83.8242416,47.0066223],[83.8266983,47.0035629],[83.8288345,47.0007439],[83.8306656,46.9983978],[83.8338928,46.996685],[83.8368988,46.996582],[83.8416061,46.9968796],[83.8466568,46.9971619],[83.8516998,46.9974442],[83.8577347,46.997467],[83.8623962,46.9970779],[83.8676529,46.9957504],[83.8698578,46.9938469],[83.8723755,46.991703],[83.8738861,46.9895935],[83.8760376,46.9870033],[83.8786087,46.9855423],[83.8812637,46.9852219],[83.8867264,46.9866295],[83.8907547,46.9867172],[83.8964844,46.9872055],[83.8991394,46.9868851],[83.9026413,46.9844742],[83.9054565,46.9818611],[83.9085846,46.9790115],[83.911438,46.9768524],[83.9168549,46.9732323],[83.9204712,46.9724197],[83.9242172,46.9732056],[83.9290161,46.9746361],[83.9291534,46.9764633],[83.929718,46.9794159],[83.9305801,46.9818993],[83.932457,46.984581],[83.9357071,46.9876633],[83.9408264,46.9888573],[83.9452209,46.9893875],[83.9501953,46.9887581],[83.9538193,46.9879417],[83.9564056,46.9867058],[83.9606247,46.9849586],[83.963562,46.9839363],[83.9682007,46.9833145],[83.9715805,46.983654],[83.9749908,46.9844513],[83.9777527,46.9854927],[83.9812317,46.9871979],[83.9843597,46.9886894],[83.9888153,46.9899025],[83.9938736,46.9904099],[84,46.9908524],[84.0047607,46.9893341],[84.0095291,46.9878082],[84.0142899,46.9862862],[84.0146179,46.9861794],[84.0192719,46.9845047],[84.0232544,46.9830666],[84.0283432,46.9821663],[84.0317535,46.9815598],[84.0366135,46.9801865],[84.040329,46.9791374],[84.0452423,46.9778442],[84.0471802,46.9773331],[84.0519714,46.9758492],[84.0550842,46.974884],[84.0603333,46.9750786],[84.0621033,46.9751472],[84.0672073,46.9742928],[84.0699158,46.9738388],[84.074913,46.9727211],[84.0799103,46.9716072],[84.0821991,46.9710922],[84.0873489,46.9703712],[84.0886383,46.970192],[84.0937958,46.9694901],[84.0989532,46.968792],[84.1018524,46.968399],[84.1070709,46.9679756],[84.1096115,46.9677696],[84.1148682,46.967701],[84.1186676,46.9676552],[84.123703,46.968689],[84.1287308,46.9697266],[84.1295471,46.9698944],[84.1338196,46.9719925],[84.137619,46.9738655],[84.1425476,46.9751129],[84.1471405,46.9762802],[84.1511383,46.9786224],[84.1551208,46.9809685],[84.1554794,46.9811745],[84.158699,46.9840164],[84.1614304,46.9864388],[84.1648254,46.9891891],[84.1664734,46.9905243],[84.1700974,46.9931335],[84.1725082,46.9948769],[84.1769257,46.9968262],[84.1813431,46.9987755],[84.1815796,46.9988785],[84.1866226,46.9998932],[84.1885147,47.0002785],[84.1937714,47.0002975],[84.1955566,47.0003052],[84.2007904,47.0006485],[84.2035599,47.0008316],[84.2087784,47.0012779],[84.212883,47.0016289],[84.2181168,47.0019989],[84.2195587,47.0021057],[84.2247238,47.0027771],[84.22686,47.0030594],[84.2321014,47.0033531],[84.2373428,47.0036469],[84.2385406,47.0037117],[84.2436142,47.002758],[84.2486877,47.0018044],[84.2487488,47.0017891],[84.2538834,47.0010071],[84.2572327,47.0004921],[84.2624359,47.0009995],[84.2676468,47.001503],[84.2685471,47.0015907],[84.2737579,47.0011063],[84.2756424,47.0009308],[84.2807999,47.0002441],[84.2851257,46.9996681],[84.2902298,46.9988174],[84.295311,46.9979706],[84.3005295,46.9984131],[84.3046341,46.9987679],[84.3098145,46.999382],[84.3149948,47],[84.3156052,47.0000725],[84.3208542,47.0002632],[84.3261032,47.0004501],[84.3279724,47.000515],[84.3332138,47.0008163],[84.3384552,47.0011139],[84.3386536,47.0011253],[84.3438873,47.0007362],[84.3491058,47.0003471],[84.3543701,47.0003777],[84.3568192,47.0003891],[84.3620682,47.0002098],[84.3673248,47.0000267],[84.3699265,46.999939],[84.3751831,46.9998322],[84.3804398,46.9997253],[84.3823471,46.9996872],[84.3875656,47.0001488],[84.3927841,47.0006065],[84.39534,47.0008316],[84.4001007,47.0023613],[84.4025421,47.0031433],[84.4069366,47.0051231],[84.4113312,47.007103],[84.4135742,47.0081139],[84.4188156,47.0084076],[84.424057,47.0087051],[84.424263,47.0087166],[84.4295197,47.0087471],[84.4319687,47.0087585],[84.4372253,47.008728],[84.4424896,47.0086937],[84.4433746,47.0086899],[84.4476776,47.0066185],[84.4513626,47.0048447],[84.4549561,47.0022163],[84.4585571,46.9995918],[84.4591599,46.9991531],[84.4626999,46.9964943],[84.464119,46.99543],[84.4687271,46.9936905],[84.4733353,46.9919586],[84.4758377,46.9910164],[84.4805145,46.9893723],[84.4823685,46.9887199],[84.487587,46.9882851],[84.4901276,46.9880676],[84.4950333,46.9867744],[84.4962769,46.9864464],[84.500412,46.9842224],[84.5042953,46.982132],[84.509346,46.9811325],[84.5141525,46.9801788],[84.5190125,46.9815559],[84.5233459,46.9827843],[84.5282974,46.984005],[84.5332413,46.9852219],[84.535202,46.9857063],[84.5400467,46.987114],[84.5414429,46.9875221],[84.5458755,46.98946],[84.5482712,46.9905052],[84.5527954,46.9923325],[84.5544586,46.9930038],[84.5591888,46.9945793],[84.5613327,46.9953003],[84.5662384,46.9966011],[84.5711441,46.9978981],[84.5712051,46.9979172],[84.5764618,46.9980927],[84.5817108,46.9982758],[84.5832443,46.9983253],[84.588501,46.9985008],[84.59375,46.9986763],[84.5949478,46.9987144],[84.600174,46.9991531],[84.6053848,46.9995995],[84.6082764,46.9998436],[84.6135406,46.9998894],[84.6176605,46.9999275],[84.6229019,46.99963],[84.6281433,46.9993362],[84.6304474,46.9992065],[84.6356659,46.9996338],[84.6397781,46.9999695],[84.6448593,47.0009003],[84.6473923,47.0013657],[84.6525955,47.0018768],[84.6543808,47.0020561],[84.6596146,47.0024223],[84.6648483,47.0027847],[84.6667252,47.0029182],[84.6719513,47.0033073],[84.6771851,47.0036964],[84.6777344,47.0037346],[84.6827927,47.0047073],[84.6878586,47.0056839],[84.6906357,47.0062141],[84.6956558,47.0072937],[84.6969147,47.0075645],[84.7018356,47.008831],[84.7061386,47.0099297],[84.7108383,47.0115471],[84.7120361,47.0119553],[84.7167969,47.0134811],[84.72155,47.0150108],[84.7222977,47.0154877],[84.7275009,47.0149574],[84.7327042,47.0144234],[84.7362061,47.0140686],[84.7402802,47.011795],[84.7435455,47.0099754],[84.7453003,47.0088921],[84.746666,47.0084839],[84.7518311,47.0077896],[84.7520828,47.0077591],[84.7544174,47.007843],[84.7560883,47.0079002],[84.7612228,47.0086746],[84.7620468,47.0087967],[84.763382,47.0088463],[84.7650375,47.0091324],[84.7702255,47.0097008],[84.7743378,47.0101471],[84.7795792,47.0099068],[84.7848282,47.0096626],[84.7884445,47.0094986],[84.790451,47.0095673],[84.7957077,47.0096092],[84.800972,47.0096474],[84.8062286,47.0096855],[84.8071823,47.009697],[84.8098373,47.0100174],[84.8149796,47.0107727],[84.8199387,47.0116997],[84.8238449,47.0126228],[84.826004,47.0131378],[84.8280563,47.0134468],[84.8328323,47.0144157],[84.8354645,47.0152321],[84.8387527,47.0158081],[84.842659,47.0165291],[84.8454971,47.0176277],[84.8483124,47.0188942],[84.8510895,47.0199203],[84.8524246,47.0204353],[84.8548889,47.0208473],[84.8571548,47.0214653],[84.8594666,47.0220184],[84.8610611,47.0228157],[84.8644485,47.0245476],[84.8659897,47.0255775],[84.8676376,47.0263977],[84.8697968,47.0279388],[84.872673,47.0286598],[84.8758621,47.0294838],[84.8806229,47.0307961],[84.8838806,47.0317421],[84.8871689,47.0324631],[84.889946,47.0329781],[84.8933334,47.0336952],[84.8976517,47.0346222],[84.9011536,47.0366783],[84.9031067,47.0371933],[84.9064941,47.0380135],[84.9095764,47.0397606],[84.9130783,47.0401726],[84.9156418,47.0412025],[84.9186249,47.0426407],[84.92173,47.0435677],[84.9280853,47.0455208],[84.9321976,47.046032],[84.936615,47.0466499],[84.9428787,47.0475616],[84.9472046,47.0487061],[84.9499817,47.04953],[84.9554291,47.0498352],[84.9603653,47.0505562],[84.9660187,47.0513802],[84.9699249,47.0519943],[84.98452,47.0532303],[84.9897614,47.0536423],[84.9922333,47.0540504],[84.9985046,47.0534363],[85.004158,47.0534363],[85.0098114,47.0536423],[85.0131989,47.0535393],[85.0192642,47.0535393],[85.0230713,47.0529213],[85.0290909,47.0519485],[85.035614,47.0511742],[85.0399323,47.0508652],[85.0450668,47.0504532],[85.0517502,47.0499382],[85.0580215,47.0498352],[85.0655289,47.0497322],[85.0734406,47.049427],[85.0817719,47.0498352],[85.0866013,47.0502472],[85.0908203,47.0505562],[85.1013031,47.0504532],[85.1077118,47.0507545],[85.1136398,47.0508652],[85.1181641,47.0502472],[85.1220703,47.04953],[85.1252518,47.049118],[85.129982,47.0498352],[85.1375885,47.0503502],[85.1440659,47.0505562],[85.1554794,47.0501442],[85.1604156,47.0501442],[85.1682281,47.049118],[85.1721344,47.0488091],[85.1795502,47.0483589],[85.1877594,47.0481911],[85.1974182,47.0477791],[85.2022247,47.0474358],[85.2038422,47.0474777],[85.2052307,47.0475197],[85.2066727,47.0475769],[85.209137,47.0477791],[85.2112961,47.0481911],[85.2143936,47.0494766],[85.2177734,47.0509682],[85.2216492,47.052906],[85.2268219,47.0535545],[85.2291031,47.0539474],[85.2342072,47.054821],[85.2393188,47.0556946],[85.2444229,47.0565681],[85.2459183,47.0565376],[85.2511749,47.0564423],[85.2564392,47.0563469],[85.2595901,47.0569],[85.2646866,47.0577965],[85.2664642,47.058918],[85.2703323,47.0613594],[85.2741928,47.0638008],[85.2743073,47.0639458],[85.2767563,47.0671272],[85.2777405,47.0675201],[85.2822952,47.0693207],[85.2841873,47.0687981],[85.2890701,47.0674515],[85.2907791,47.066555],[85.29496,47.0643654],[85.2969208,47.0627251],[85.3002472,47.0599327],[85.3006287,47.0596504],[85.3042145,47.0570107],[85.3077927,47.0543747],[85.3113708,47.0517387],[85.3149567,47.0491028],[85.3167725,47.0478821],[85.3205338,47.0453606],[85.3230667,47.0451317],[85.3282852,47.0446548],[85.3324509,47.046051],[85.3371735,47.0476418],[85.3394012,47.0487175],[85.3437042,47.0507927],[85.3477554,47.0519409],[85.3526154,47.0533218],[85.3551636,47.0534821],[85.360405,47.0538063],[85.3656464,47.0541306],[85.3687668,47.0541306],[85.3740311,47.0541229],[85.3784866,47.054245],[85.3837433,47.0543823],[85.3846817,47.0544815],[85.3898849,47.0550423],[85.3950806,47.0555992],[85.3996735,47.0565987],[85.4046936,47.0576859],[85.4081116,47.0591698],[85.4125519,47.0610962],[85.4161072,47.0617561],[85.4211884,47.0627022],[85.4233246,47.0626259],[85.4285812,47.0624313],[85.432724,47.0623398],[85.4379883,47.0622215],[85.4382248,47.0622139],[85.4434891,47.0620117],[85.4487381,47.0618172],[85.4509125,47.0616684],[85.4561462,47.0613174],[85.457756,47.0612411],[85.4630127,47.0609779],[85.4682617,47.0607147],[85.4707947,47.0600815],[85.4757385,47.0588455],[85.4770813,47.0584297],[85.4818726,47.0569458],[85.484848,47.0567665],[85.4900894,47.0564575],[85.4953384,47.0561447],[85.4981232,47.0563736],[85.5033493,47.0568008],[85.5081482,47.0568161],[85.5134125,47.0568314],[85.5179062,47.0566292],[85.5231628,47.0563927],[85.5237885,47.0566254],[85.5284042,47.0583534],[85.5330276,47.0600739],[85.5333023,47.0604057],[85.533493,47.0606346],[85.5339127,47.0611534],[85.5364914,47.0642891],[85.5362549,47.0664101],[85.5358582,47.0699997],[85.5357056,47.0712051],[85.5352631,47.074791],[85.5373917,47.0766144],[85.5406647,47.0794296],[85.5407486,47.0805206],[85.5410004,47.0841179],[85.5411148,47.0857811],[85.5412521,47.0877075],[85.5412674,47.0883064],[85.5413437,47.0919075],[85.5414276,47.0955009],[85.5426712,47.0979233],[85.5444107,47.1013145],[85.5458221,47.1037865],[85.5477371,47.1071396],[85.549469,47.1091995],[85.5521088,47.1123123],[85.5523529,47.1125145],[85.5557404,47.1152687],[85.5591278,47.1180191],[85.5600586,47.1187096],[85.5636215,47.121357],[85.5656357,47.1226959],[85.5694199,47.1251984],[85.5715561,47.127388],[85.5744705,47.1303825],[85.5767517,47.1334877],[85.5791092,47.1367073],[85.5798035,47.1378288],[85.5818481,47.14114],[85.5827789,47.1421242],[85.5856323,47.1451454],[85.5879669,47.1474075],[85.591011,47.150341],[85.5937271,47.153038],[85.5967102,47.1560059],[85.5972595,47.1565819],[85.6001358,47.1595955],[85.6030121,47.1626091],[85.6034088,47.162941],[85.60672,47.165741],[85.6100388,47.1685371],[85.6137772,47.1707764],[85.6177368,47.1731491],[85.6217041,47.1755219],[85.6231613,47.1765404],[85.6268539,47.1791039],[85.6281357,47.1802597],[85.6313171,47.1831284],[85.6320877,47.1840248],[85.6347656,47.1871223],[85.6359024,47.1897087],[85.637413,47.1931572],[85.6380081,47.1945686],[85.6394653,47.1980247],[85.6396484,47.1982269],[85.6423874,47.2012978],[85.6451263,47.2043724],[85.6479874,47.2064934],[85.6515579,47.2091408],[85.6551666,47.2114334],[85.6590271,47.2138824],[85.6628876,47.2163353],[85.6669464,47.2186279],[85.6710129,47.2209244],[85.6727066,47.2220268],[85.6765137,47.224514],[85.6791611,47.2270241],[85.6822357,47.2299461],[85.68293,47.2314453],[85.6845169,47.2348747],[85.6860962,47.2383041],[85.686142,47.2387161],[85.6865616,47.2423019],[85.6869812,47.2458839],[85.6875153,47.2483215],[85.6882935,47.2518768],[85.6886749,47.2540588],[85.6892929,47.2576294],[85.6898956,47.2590675],[85.6913605,47.2625198],[85.6928177,47.265976],[85.6939011,47.2687492],[85.6952515,47.2722282],[85.6966019,47.2756996],[85.6967926,47.2769585],[85.697319,47.2805328],[85.6972198,47.282196],[85.6969986,47.2857857],[85.6969223,47.2870026],[85.696701,47.2905922],[85.6949005,47.2931824],[85.6926422,47.2964325],[85.6901932,47.2984314],[85.6868057,47.3011932],[85.6834259,47.3039551],[85.682106,47.3044853],[85.6775513,47.3063049],[85.6755219,47.3095284],[85.6734467,47.3128319],[85.6723785,47.3146667],[85.670433,47.3180084],[85.6712112,47.3193321],[85.673172,47.32267],[85.6738281,47.3239288],[85.6755829,47.3273163],[85.6760788,47.3280411],[85.6783066,47.3312988],[85.6805344,47.3345566],[85.6811447,47.3354836],[85.6833115,47.3387604],[85.6833038,47.3408928],[85.6832962,47.3444862],[85.6834564,47.3455124],[85.6840286,47.3490868],[85.684639,47.3524246],[85.6852875,47.3559914],[85.6864395,47.3576469],[85.6886978,47.3608971],[85.6905975,47.3635521],[85.6929092,47.3667831],[85.6952209,47.3700142],[85.6952438,47.3700981],[85.6961975,47.3736343],[85.6971436,47.3771706],[85.6969833,47.3783798],[85.6965179,47.381958],[85.6948166,47.3839874],[85.6922073,47.3871117],[85.6895981,47.3902359],[85.6888733,47.3917847],[85.6872711,47.3952065],[85.6865387,47.3971596],[85.6852493,47.4006424],[85.6852417,47.4007835],[85.6850204,47.4043732],[85.6847992,47.4079628],[85.684639,47.4105415],[85.6844177,47.4141312],[85.6840439,47.4151802],[85.682785,47.4186668],[85.6822662,47.4219322],[85.681694,47.4255028],[85.6809921,47.4271927],[85.6795578,47.4306488],[85.6781235,47.4341087],[85.6763992,47.4361382],[85.6737518,47.4392471],[85.6715622,47.4406929],[85.6677628,47.443203],[85.663414,47.4452515],[85.6590652,47.4473],[85.6562729,47.4501114],[85.6533051,47.4530869],[85.6486435,47.4547844],[85.6439743,47.4564819],[85.6439056,47.4565582],[85.6412125,47.4596443],[85.6385117,47.462738],[85.6372528,47.4656258],[85.6357574,47.4690704],[85.6355591,47.4695854],[85.6342392,47.4730644],[85.6329193,47.4765434],[85.6323929,47.4772758],[85.6300659,47.4804993],[85.627739,47.4837265],[85.6258621,47.485199],[85.622406,47.4879189],[85.6210556,47.4892921],[85.6181183,47.4922791],[85.615181,47.4952698],[85.6142807,47.4966927],[85.6121826,47.4999886],[85.6114883,47.5011864],[85.6095581,47.5045319],[85.6076279,47.5078735],[85.607399,47.5085716],[85.6062546,47.5120773],[85.6051102,47.5155869],[85.6066208,47.5183792],[85.6084442,47.5217514],[85.61026,47.5251236],[85.6107101,47.5260048],[85.612442,47.5293999],[85.6141815,47.5327911],[85.6144485,47.5336723],[85.6155396,47.5371895],[85.615181,47.5396347],[85.6146469,47.5432053],[85.6141205,47.5467796],[85.6135941,47.550354],[85.6130676,47.5539207],[85.6125412,47.5574951],[85.6120148,47.5610657],[85.6114807,47.56464],[85.6109543,47.5682106],[85.6104279,47.571785],[85.6099014,47.5753555],[85.609375,47.5789299],[85.6088409,47.5825005],[85.6083145,47.586071],[85.6077881,47.5896454],[85.607254,47.5932159],[85.6067276,47.5967903],[85.6062012,47.6003609],[85.6056747,47.6039314],[85.6051407,47.6075058],[85.6046143,47.6110764],[85.6040878,47.6146469],[85.6035538,47.6182213],[85.6030273,47.6217918],[85.6025009,47.6253624],[85.6019669,47.6289368],[85.6014404,47.6325073],[85.600914,47.6360779],[85.6003799,47.6396484],[85.5998535,47.6432228],[85.5993195,47.6467934],[85.598793,47.6503639],[85.598259,47.6539345],[85.5977325,47.657505],[85.5972061,47.6610718],[85.5966721,47.6646423],[85.5961456,47.6682167],[85.5956192,47.6717873],[85.5950851,47.6753578],[85.5945587,47.6789284],[85.5940247,47.6824989],[85.5934982,47.6860695],[85.5929642,47.68964],[85.5924377,47.6932106],[85.5919037,47.6967812],[85.5913773,47.7003517],[85.5908432,47.7039223],[85.5903168,47.7074928],[85.5897827,47.7110634],[85.5892563,47.7146339],[85.5887222,47.7182045],[85.5881958,47.7217751],[85.5876617,47.7253456],[85.5871277,47.7289124],[85.5866013,47.7324829],[85.5860672,47.7360535],[85.5855408,47.739624],[85.5850067,47.7431946],[85.5844727,47.7467651],[85.5839462,47.7503319],[85.5834122,47.7539024],[85.5828857,47.757473],[85.5823517,47.7610435],[85.5818176,47.7646103],[85.5812912,47.7681808],[85.5807571,47.7717476],[85.5802231,47.7753143],[85.5796967,47.7788849],[85.5791626,47.7824554],[85.5786362,47.7860222],[85.5781021,47.7895927],[85.5775681,47.7931633],[85.577034,47.79673],[85.5765076,47.8003006],[85.5759735,47.8038712],[85.5754395,47.8074379],[85.5749054,47.8110085],[85.574379,47.8145752],[85.5738449,47.8181458],[85.5733109,47.8217125],[85.5727768,47.8252831],[85.5722504,47.8288498],[85.5717163,47.8324203],[85.5711823,47.8359871],[85.5706482,47.8395576],[85.5701141,47.8431244],[85.5695877,47.8466911],[85.5690536,47.8502617],[85.5685196,47.8538284],[85.5679855,47.857399],[85.5674515,47.8609657],[85.5669174,47.8645325],[85.566391,47.868103],[85.5658569,47.8716698],[85.5653229,47.8752365],[85.5647888,47.8787994],[85.5642548,47.88237],[85.5637207,47.8859367],[85.5631866,47.8895035],[85.5626526,47.893074],[85.5621262,47.8966408],[85.5615921,47.9002075],[85.561058,47.9037743],[85.560524,47.907341],[85.5599899,47.9109116],[85.5594559,47.9144783],[85.5589218,47.918045],[85.5583878,47.9216118],[85.5578537,47.9251785],[85.5573196,47.9287453],[85.5567856,47.932312],[85.5566559,47.9330673],[85.5564575,47.9342232],[85.5560532,47.9366302],[85.5554504,47.9401932],[85.5548553,47.9437561],[85.5542526,47.9473152],[85.5536499,47.9508781],[85.5530472,47.9544373],[85.5524445,47.9580002],[85.5518417,47.9615593],[85.551239,47.9651222],[85.5506363,47.9686852],[85.5500336,47.9722481],[85.5494308,47.9758072],[85.549469,47.9771614],[85.5495605,47.9807434],[85.5496521,47.9843292],[85.5497437,47.9879112],[85.5462112,47.9881744],[85.5409088,47.988575],[85.5407639,47.9907799],[85.5405273,47.9943619],[85.5402985,47.9979401],[85.5401764,48.0000076],[85.5408401,48.018013],[85.5359955,48.0284195],[85.5341263,48.0324936],[85.5365295,48.0407524],[85.5423813,48.0479355],[85.5434265,48.0517387],[85.5444717,48.0555],[85.5425262,48.0614014],[85.543869,48.0705528],[85.5496826,48.0788727],[85.5581055,48.0817566],[85.5490875,48.0939217],[85.5526047,48.0999184],[85.5485916,48.1064644],[85.5583038,48.1112022],[85.5503311,48.114254],[85.5557175,48.1248512],[85.5544968,48.1298447],[85.5658951,48.1352959],[85.5619659,48.1397896],[85.5620804,48.1455002],[85.5655594,48.1526337],[85.5694885,48.1570396],[85.5775604,48.1603737],[85.5797348,48.1658936],[85.5839691,48.1712151],[85.5870743,48.1792564],[85.588501,48.1865845],[85.5889053,48.1938934],[85.5921249,48.1989708],[85.603714,48.2000847],[85.6065979,48.2051506],[85.6104965,48.2104721],[85.6216812,48.2042694],[85.6235199,48.2100067],[85.626709,48.2159958],[85.6312256,48.2231445],[85.637085,48.2312317],[85.6447525,48.2366104],[85.6537857,48.2422409],[85.6639175,48.2458344],[85.666481,48.2506676],[85.6675797,48.2577629],[85.6728973,48.262188],[85.6754608,48.2670212],[85.6769485,48.2729797],[85.6860352,48.277462],[85.6842422,48.2888451],[85.6880493,48.297123],[85.6974716,48.3018417],[85.6936569,48.3122787],[85.6978455,48.3196487],[85.6959229,48.325325],[85.6953201,48.3323898],[85.7037735,48.335495],[85.7049713,48.3403091],[85.7094955,48.3479118],[85.7172699,48.3512306],[85.7174377,48.3560257],[85.7136993,48.3644066],[85.7226028,48.3650131],[85.7306061,48.3712997],[85.7338486,48.3766022],[85.7412567,48.3806],[85.7479172,48.3864098],[85.7515182,48.3912621],[85.755394,48.3981667],[85.7631073,48.4033127],[85.7735825,48.408268],[85.7782593,48.4119911],[85.7867737,48.4141769],[85.8048553,48.4176521],[85.8267059,48.4216347],[85.8381958,48.4272881],[85.8453751,48.4283066],[85.8549805,48.4289093],[85.8618317,48.4294662],[85.8759537,48.4285316],[85.8897629,48.4266815],[85.8999939,48.4288826],[85.9088516,48.4312935],[85.9243698,48.432888],[85.9295273,48.4333191],[85.9333115,48.4333038],[85.9422607,48.4339485],[85.951561,48.4348145],[85.9618835,48.4349937],[85.9718399,48.4340286],[85.9828491,48.4339714],[85.9948883,48.4343681],[86.0076218,48.4349823],[86.0169067,48.4349327],[86.0289536,48.4355545],[86.0396194,48.4354935],[86.051651,48.4351921],[86.0678101,48.4344139],[86.080864,48.433651],[86.0966797,48.4333229],[86.1073456,48.4334869],[86.1166306,48.4334297],[86.1262512,48.432682],[86.1362076,48.4317055],[86.143425,48.431427],[86.1499557,48.4309235],[86.1581955,48.4304161],[86.1678238,48.4303513],[86.178154,48.4307365],[86.1884689,48.4306602],[86.1966324,48.430584],[86.2045746,48.4307671],[86.2137756,48.4319687],[86.221138,48.4339905],[86.2327805,48.4354935],[86.2392578,48.4373894],[86.2460632,48.4399796],[86.25457,48.4432716],[86.2678375,48.4486694],[86.2769775,48.4542503],[86.28302,48.460022],[86.2876816,48.4660034],[86.2944489,48.470417],[86.3015671,48.4745979],[86.3038712,48.4787331],[86.3040924,48.4837532],[86.3019104,48.4885216],[86.3105469,48.4872475],[86.3146744,48.4872932],[86.3211899,48.4878197],[86.3290558,48.4899559],[86.3372574,48.4920998],[86.3430862,48.4928436],[86.3510742,48.4897308],[86.358963,48.4907265],[86.365097,48.4933014],[86.3688049,48.4965324],[86.3721466,48.5009041],[86.3759537,48.4998016],[86.378418,48.4975433],[86.3829727,48.4937134],[86.3872299,48.4882774],[86.3959885,48.4812927],[86.4040146,48.4761276],[86.4081955,48.4745865],[86.4112244,48.4744987],[86.4153366,48.4751282],[86.421257,48.4765778],[86.4302826,48.4799309],[86.4347916,48.4814873],[86.4392929,48.4828186],[86.4901657,48.5038605],[86.4941177,48.5067139],[86.5842361,48.5413361],[86.5968552,48.5478325],[86.5984421,48.5549202],[86.5979614,48.5622177],[86.5960541,48.5722427],[86.5924835,48.5786018],[86.5968857,48.5827446],[86.6061172,48.5867043],[86.614975,48.5924797],[86.6220932,48.5991554],[86.6278687,48.6039886],[86.6305389,48.6090355],[86.6328201,48.6163559],[86.6368256,48.6236877],[86.64711,48.6274223],[86.6608505,48.6307182],[86.6718826,48.6314926],[86.6835938,48.6327171],[86.6900253,48.6400719],[86.6936264,48.6512756],[86.6983032,48.6608963],[86.7033386,48.6693764],[86.7080765,48.6751137],[86.7197495,48.679306],[86.7255783,48.6818581],[86.7323608,48.6896629],[86.7470703,48.6991234],[86.7593689,48.7078781],[86.7655182,48.7127151],[86.771286,48.7195969],[86.7774124,48.7258034],[86.7787094,48.731514],[86.7789459,48.7388191],[86.7784653,48.7472572],[86.7734985,48.7554398],[86.7647324,48.7631416],[86.7583466,48.7731361],[86.7554626,48.78088],[86.7522278,48.7881584],[86.7524948,48.7931786],[86.7568817,48.8002853],[86.7633438,48.8078537],[86.7778168,48.812748],[86.7936554,48.8187828],[86.8074112,48.8257179],[86.8180237,48.8339996],[86.8175507,48.8428955],[86.8181534,48.8495178],[86.8138351,48.860218],[86.8057861,48.8651848],[86.79879,48.8697052],[86.7907486,48.8737602],[86.7844162,48.879879],[86.7801895,48.8839607],[86.7735367,48.8884811],[86.764473,48.8911591],[86.7546692,48.8967972],[86.7476196,48.9038239],[86.7437057,48.910183],[86.7401581,48.9149513],[86.7361984,48.9235992],[86.7347412,48.9279213],[86.732193,48.9349785],[86.7288895,48.9461365],[86.7280807,48.953434],[86.7279663,48.9600525],[86.7316437,48.9689789],[86.7301102,48.9778671],[86.7257919,48.9869652],[86.7264023,48.991993],[86.7304382,49.0002327],[86.7373123,49.0053024],[86.7421646,49.0109062],[86.7469177,49.0133553],[86.7531357,49.0161362],[86.7679749,49.0233116],[86.7810974,49.0293312],[86.786293,49.031189],[86.7928467,49.0344315],[86.8063126,49.0415878],[86.8264008,49.0478783],[86.8402252,49.0545769],[86.8419037,49.0589256],[86.8443832,49.0808487],[86.8491211,49.0904617],[86.8500214,49.1009674],[86.8568802,49.1089935],[86.8648376,49.1133728],[86.8727798,49.1182137],[86.8741379,49.1209602],[86.8789749,49.1241837],[86.8848648,49.1267242],[86.8938904,49.1297417],[86.9022369,49.1309319],[86.9189835,49.1301079],[86.9357147,49.1297417],[86.9531403,49.1298294],[86.9608002,49.1310081],[86.9691315,49.1340141],[86.9795609,49.1365776],[86.9854584,49.1386604],[86.9927597,49.140976],[87.0014648,49.1419296],[87.0140305,49.1401596],[87.028717,49.135891],[87.0331268,49.1314697],[87.0403442,49.1284027],[87.0441513,49.1274338],[87.0500793,49.127346],[87.0577545,49.1274643],[87.065094,49.1278152],[87.0699921,49.1281967],[87.076683,49.1299324],[87.0812607,49.131012],[87.0840988,49.1323395],[87.0876465,49.1341171],[87.0912323,49.1368065],[87.0958099,49.137886],[87.0989685,49.1385231],[87.1018143,49.1400833],[87.1050491,49.1425514],[87.1072083,49.144577],[87.1146393,49.1472092],[87.1195602,49.1482773],[87.1258545,49.1486435],[87.1311035,49.1490173],[87.137413,49.1496086],[87.145752,49.1487961],[87.1506271,49.148262],[87.1551056,49.1468201],[87.1578522,49.1456375],[87.1602478,49.1442261],[87.1629715,49.1423531],[87.165329,49.1400299],[87.1684036,49.1381531],[87.1743088,49.1376038],[87.1777878,49.1373215],[87.1805878,49.1375046],[87.1841049,49.1381378],[87.1876144,49.1387711],[87.1929169,49.1405144],[87.1971512,49.141819],[87.2006989,49.1433678],[87.2042236,49.1442223],[87.2084351,49.1448441],[87.2139511,49.1431541],[87.2151566,49.1426353],[87.2183838,49.1391068],[87.219162,49.1375237],[87.2199097,49.1363945],[87.2264175,49.1244202],[87.2288055,49.1182938],[87.2350388,49.11409],[87.2355042,49.113533],[87.2382202,49.11166],[87.2465591,49.1108398],[87.2514725,49.1116753],[87.2539597,49.1127777],[87.2564468,49.1138802],[87.2606964,49.1156425],[87.2680359,49.1159782],[87.2736053,49.1156578],[87.2788162,49.1151161],[87.2833176,49.114357],[87.2895584,49.1133347],[87.2923279,49.1128349],[87.2985306,49.1108971],[87.3026505,49.10923],[87.307106,49.1073265],[87.3122864,49.1060982],[87.3211288,49.1044312],[87.32164,49.1043358],[87.3275146,49.103096],[87.3320084,49.1021042],[87.3396378,49.101059],[87.3483124,49.0999947],[87.3576355,49.0977783],[87.3700256,49.0936737],[87.3765259,49.0908165],[87.3837585,49.0886307],[87.3882294,49.0871811],[87.3926544,49.0845871],[87.3984451,49.0812836],[87.4045792,49.0779762],[87.4107437,49.0753517],[87.4169159,49.0729523],[87.423111,49.0710106],[87.4289856,49.0697632],[87.4317474,49.0692596],[87.4348831,49.0692024],[87.4405136,49.0704727],[87.4436798,49.071106],[87.4465332,49.0726547],[87.4473038,49.0744705],[87.4488144,49.0771866],[87.4506454,49.079216],[87.4549103,49.0811958],[87.4584274,49.0818176],[87.4633408,49.0826454],[87.4682159,49.0825577],[87.471405,49.0836411],[87.4781189,49.085804],[87.4809647,49.0871239],[87.4870071,49.0897636],[87.4958191,49.0918846],[87.5048981,49.0921783],[87.5094299,49.0923233],[87.5140076,49.0931511],[87.5161667,49.0947151],[87.5174484,49.1001816],[87.5168533,49.1024818],[87.5159378,49.1054726],[87.5150375,49.1086884],[87.5130768,49.1116982],[87.5082855,49.1138458],[87.5052109,49.1152763],[87.4983597,49.1181488],[87.4950333,49.1218681],[87.4933929,49.1241875],[87.4924316,49.1262665],[87.4900284,49.127224],[87.4870682,49.1311646],[87.4861679,49.134613],[87.4894409,49.1377563],[87.4958267,49.1401558],[87.5021896,49.1418686],[87.5141754,49.144619],[87.5228653,49.1437721],[87.5339508,49.141964],[87.5426331,49.1408844],[87.5516281,49.1391144],[87.5557938,49.1385803],[87.5606232,49.1373444],[87.5661774,49.1367798],[87.5714188,49.1369133],[87.5756454,49.1377449],[87.5802536,49.1392555],[87.5855637,49.1409874],[87.5909119,49.1434021],[87.5944672,49.1447029],[87.6001587,49.14711],[87.6040268,49.1477203],[87.6092911,49.1483078],[87.6131134,49.1480026],[87.6193542,49.1469688],[87.6238708,49.1466484],[87.6280594,49.1465683],[87.6329803,49.1473885],[87.6382904,49.1488838],[87.6442871,49.1501427],[87.6477966,49.150528],[87.6520004,49.1509056],[87.6575699,49.1505661],[87.6628036,49.1504593],[87.6687317,49.1503448],[87.6729355,49.1507149],[87.6764832,49.1517906],[87.6832809,49.1553116],[87.685791,49.1566391],[87.6883698,49.1595573],[87.688179,49.1627655],[87.6890259,49.1659508],[87.6926193,49.1681671],[87.6989746,49.1696434],[87.7042923,49.1711349],[87.7116394,49.1714439],[87.717247,49.1717911],[87.723175,49.1716652],[87.7301788,49.1719818],[87.7368164,49.1720734],[87.7445068,49.1721497],[87.7493744,49.1718178],[87.7528381,49.1710587],[87.756958,49.1696014],[87.7612457,49.1696396],[87.7652969,49.1698189],[87.7696381,49.1706314],[87.7735367,49.1713867],[87.778595,49.1728821],[87.7826843,49.1743279],[87.7880554,49.17696],[87.7908783,49.1775894],[87.7954178,49.177494],[87.8002319,49.1760216],[87.8040161,49.1747971],[87.809494,49.1726227],[87.8139725,49.1713829],[87.8174057,49.170166],[87.8181992,49.169136],[87.8173294,49.1648903],[87.8144608,49.1573029],[87.8134689,49.1559181],[87.8128052,49.154995],[87.8106003,49.1491432],[87.8118057,49.144722],[87.8150711,49.144165],[87.8204803,49.1450615],[87.8298645,49.1458931],[87.8312531,49.1461449],[87.8354263,49.1464424],[87.8411179,49.1431007],[87.8433685,49.1385651],[87.8460312,49.1324387],[87.8471146,49.1313095],[87.8554077,49.1234398],[87.8568268,49.1227798],[87.8636246,49.11763],[87.8679123,49.1147232],[87.8694229,49.1113167],[87.869812,49.1101799],[87.8681641,49.1074142],[87.866127,49.1060104],[87.8616943,49.103199],[87.8613815,49.1022797],[87.8600082,49.1018028],[87.857605,49.1006241],[87.8551407,49.0987434],[87.8549576,49.0984421],[87.8522873,49.0939255],[87.8510742,49.0905151],[87.8505325,49.0868683],[87.8507538,49.0843468],[87.8522491,49.0795097],[87.8535156,49.0769653],[87.8541107,49.0748901],[87.8550491,49.0728149],[87.8549576,49.0709877],[87.8534164,49.0680466],[87.8500671,49.0639992],[87.8468094,49.061554],[87.8431854,49.0588837],[87.8378601,49.0569382],[87.8321075,49.0534019],[87.830162,49.0493279],[87.8299561,49.0452118],[87.8311844,49.0419807],[87.8334503,49.0385017],[87.8357468,49.0357094],[87.8445282,49.0302582],[87.85289,49.030304],[87.8577423,49.0299759],[87.8652725,49.0272942],[87.8714066,49.0246429],[87.8757629,49.021347],[87.8784027,49.0185432],[87.8792725,49.0150948],[87.8798294,49.0123367],[87.8796844,49.0095901],[87.8777084,49.0050583],[87.8775482,49.0018578],[87.8777542,48.9991112],[87.8783417,48.997036],[87.880928,48.9930954],[87.8835678,48.9902878],[87.887558,48.9867706],[87.8922958,48.9841499],[87.8963699,48.9822311],[87.901123,48.9798393],[87.9023895,48.9775238],[87.9029846,48.9754486],[87.9014359,48.9725113],[87.8957214,48.9696617],[87.8914642,48.9679222],[87.8852081,48.9680634],[87.8796234,48.9677277],[87.8757782,48.9673538],[87.8732605,48.9658051],[87.8733826,48.9625206],[87.8755569,48.9603004],[87.8765564,48.9584198],[87.8765106,48.9540977],[87.8749313,48.9508972],[87.8734131,48.9484138],[87.8702087,48.9468842],[87.8651962,48.9440155],[87.8596039,48.9434547],[87.8533401,48.9433594],[87.8471146,48.9439468],[87.8412323,48.9445343],[87.8350525,48.9460373],[87.8298874,48.9470673],[87.8256912,48.9466972],[87.8194199,48.946373],[87.8113327,48.9444847],[87.8073959,48.9422836],[87.8023605,48.9389572],[87.7997589,48.9355812],[87.7978745,48.9326477],[87.7960281,48.930397],[87.7934952,48.9283905],[87.7906265,48.9266243],[87.7856064,48.9235229],[87.7827835,48.9226685],[87.7799759,48.9220428],[87.7765121,48.9223442],[87.7720566,48.9235802],[87.7675781,48.9243584],[87.7631226,48.9255981],[87.7599945,48.925663],[87.7564926,48.9250488],[87.754982,48.9225655],[87.754837,48.9195938],[87.7550507,48.9168434],[87.7552261,48.9134102],[87.7536621,48.9097786],[87.7513733,48.9054794],[87.7468262,48.8977928],[87.7434082,48.8916893],[87.741806,48.8873749],[87.7398529,48.8828392],[87.7390366,48.8803406],[87.7402344,48.8764267],[87.7407608,48.8729858],[87.7430115,48.8692818],[87.7467728,48.8680573],[87.7533264,48.8672371],[87.7613831,48.8686676],[87.7673416,48.8699188],[87.7725906,48.8707237],[87.7774811,48.8713074],[87.78022,48.8705635],[87.7826004,48.8695984],[87.7866745,48.8676796],[87.7889099,48.8637466],[87.7876358,48.8589706],[87.7868118,48.8564682],[87.7865753,48.8516693],[87.7888489,48.8484192],[87.791748,48.8440132],[87.7971039,48.8400078],[87.8008575,48.8387871],[87.8067169,48.8379745],[87.8114929,48.8362732],[87.816185,48.8329697],[87.8191757,48.8303909],[87.8204346,48.8278427],[87.8203201,48.8255577],[87.815712,48.823597],[87.8087769,48.8235207],[87.8035889,48.8238602],[87.7999115,48.8237572],[87.7969818,48.8216095],[87.7962189,48.8200989],[87.7959824,48.8173828],[87.7985992,48.8141289],[87.8022919,48.8117599],[87.806694,48.8096085],[87.809761,48.8083992],[87.8151474,48.8053093],[87.8232117,48.8001022],[87.8286896,48.7988434],[87.8325043,48.7987633],[87.8401794,48.7997398],[87.8460999,48.8002968],[87.8509369,48.7999649],[87.8592224,48.7993279],[87.8647156,48.7982941],[87.8732071,48.7949066],[87.8762131,48.7925529],[87.8798904,48.7899551],[87.884552,48.7861938],[87.888237,48.7838211],[87.8942947,48.7802582],[87.8979874,48.7778893],[87.9016418,48.7748337],[87.905304,48.772007],[87.9083023,48.7696533],[87.9102859,48.7677803],[87.9160156,48.764679],[87.9183273,48.7625694],[87.9209518,48.7597618],[87.924942,48.7564697],[87.928627,48.7541008],[87.9327545,48.7535515],[87.9355469,48.7539482],[87.9408493,48.756115],[87.9417114,48.7593002],[87.9425735,48.7624855],[87.9437408,48.7649727],[87.9470596,48.7687874],[87.9502716,48.770546],[87.9541626,48.7720604],[87.9583511,48.7726517],[87.9641724,48.7713776],[87.9699707,48.7696419],[87.9743958,48.7681694],[87.9804535,48.7648277],[87.9878006,48.7596245],[87.9972305,48.7546043],[88.0070038,48.7510338],[88.015213,48.7488899],[88.0228882,48.7443504],[88.0287552,48.7399902],[88.0353317,48.7354202],[88.0413437,48.7313919],[88.0460358,48.7285385],[88.0476379,48.7262077],[88.0495148,48.7225037],[88.0517502,48.7190208],[88.0530167,48.7169342],[88.055748,48.7161827],[88.0585098,48.7161179],[88.0651398,48.7171059],[88.0721436,48.718544],[88.0805664,48.7206268],[88.0857849,48.7211914],[88.0906296,48.721077],[88.0961838,48.7202148],[88.0972672,48.7168922],[88.0964355,48.7133865],[88.0951691,48.7092972],[88.0927124,48.7024956],[88.0896835,48.6977654],[88.0859985,48.6937332],[88.0815811,48.6888046],[88.0778885,48.6845436],[88.0749664,48.6818657],[88.0710983,48.6805878],[88.0647278,48.6779938],[88.057251,48.6740494],[88.0519104,48.6711998],[88.044754,48.66679],[88.0400009,48.6621017],[88.0373993,48.6587296],[88.0330963,48.6558533],[88.0292206,48.6545715],[88.0232162,48.652195],[88.0209656,48.6488152],[88.0208282,48.6463013],[88.0241089,48.6430244],[88.0294342,48.6392403],[88.0341644,48.6372986],[88.0368042,48.6349487],[88.0377274,48.6328659],[88.0371323,48.6283035],[88.0349121,48.6256104],[88.03022,48.62183],[88.0246048,48.6201324],[88.015831,48.6175919],[88.0094986,48.6158562],[88.0000229,48.6126938],[87.992981,48.6101112],[87.9869308,48.6068192],[87.979805,48.6026344],[87.9729614,48.5972977],[87.9710617,48.5939102],[87.9687958,48.5903015],[87.9682922,48.5873413],[87.9708252,48.5829353],[87.9723053,48.5783272],[87.9755478,48.5743599],[87.9818878,48.5703278],[87.9883041,48.5676613],[87.9943848,48.565239],[88.0022049,48.5629997],[88.0069427,48.5612869],[88.0130386,48.5590858],[88.0195084,48.5575638],[88.0235367,48.5554085],[88.0282059,48.5525589],[88.0332184,48.5494652],[88.0379257,48.5472946],[88.0426865,48.5460396],[88.0502548,48.5456352],[88.0557404,48.5450478],[88.0650024,48.5441437],[88.0719681,48.5453491],[88.0785675,48.5461082],[88.0868225,48.5456848],[88.0929947,48.5450783],[88.0977402,48.5435905],[88.102478,48.5418739],[88.1054764,48.5399742],[88.1077423,48.5374031],[88.1100006,48.5346031],[88.1111145,48.5297737],[88.1128922,48.5244675],[88.1162338,48.5225563],[88.1209259,48.5201569],[88.1240234,48.5200806],[88.1275177,48.5209122],[88.1303864,48.5228996],[88.1328964,48.5246696],[88.1350708,48.5264473],[88.1396103,48.5274811],[88.1433563,48.5267029],[88.1484451,48.5252037],[88.1514282,48.5230751],[88.1557617,48.5204544],[88.1586685,48.5169487],[88.1614914,48.5120735],[88.1640244,48.5081253],[88.1692123,48.5022736],[88.1718597,48.5003777],[88.1772385,48.4979591],[88.1808701,48.4951248],[88.1852646,48.4936447],[88.1904068,48.4932861],[88.1935349,48.4936676],[88.1967239,48.4951897],[88.2027283,48.4977837],[88.2079468,48.4985695],[88.2158432,48.4981461],[88.2220383,48.4979897],[88.2264709,48.4971924],[88.2309189,48.4966202],[88.2350311,48.4962921],[88.2419281,48.4963417],[88.2461014,48.4969215],[88.2491989,48.4968452],[88.2543564,48.4967155],[88.2577591,48.495945],[88.2617569,48.4935532],[88.2657242,48.4907036],[88.2693787,48.4883232],[88.2730789,48.4868546],[88.2784653,48.4846611],[88.2845993,48.4835892],[88.2893448,48.4823265],[88.2964401,48.4798508],[88.3028793,48.4780846],[88.3076096,48.4765892],[88.3184967,48.4742508],[88.3256531,48.4729156],[88.3334656,48.4711151],[88.339859,48.4686584],[88.346283,48.4666595],[88.3536453,48.4630356],[88.3551407,48.4629364],[88.3572159,48.46175],[88.3598175,48.4593391],[88.360466,48.4563866],[88.3599472,48.4536552],[88.3589706,48.4514923],[88.3568344,48.4459686],[88.3556747,48.4453621],[88.3534088,48.4419937],[88.3535614,48.4387817],[88.3550949,48.4357643],[88.3576431,48.4322701],[88.3635483,48.427536],[88.3735199,48.4217796],[88.3811722,48.4174614],[88.3892136,48.4138145],[88.3968506,48.4092598],[88.4039154,48.4067841],[88.408989,48.4052773],[88.4143829,48.4035301],[88.4170914,48.4027748],[88.4207993,48.4015274],[88.4254608,48.3991127],[88.4277267,48.3967628],[88.4296036,48.3937378],[88.4311676,48.3911819],[88.4344025,48.3878899],[88.4380035,48.3850479],[88.4420547,48.3837929],[88.4516678,48.3835297],[88.459549,48.3830872],[88.4647522,48.3838654],[88.4700012,48.3853188],[88.472496,48.3866272],[88.4750824,48.3895302],[88.4809341,48.3950882],[88.4842987,48.3993454],[88.4871445,48.4008675],[88.4913635,48.4023514],[88.4969635,48.403801],[88.5066757,48.4051361],[88.512207,48.4054413],[88.5166397,48.4048615],[88.5213013,48.4024391],[88.5231705,48.3994141],[88.5223541,48.397377],[88.5211105,48.3939819],[88.5180588,48.3892555],[88.5158768,48.3874893],[88.5140076,48.3850212],[88.5110397,48.3816719],[88.5115204,48.3784561],[88.5137482,48.3756485],[88.516655,48.3725967],[88.5204849,48.3679085],[88.5241089,48.3655205],[88.529068,48.3624077],[88.5354691,48.3603973],[88.5416641,48.3604507],[88.547226,48.3614426],[88.5545197,48.3626099],[88.5583649,48.3636475],[88.5621567,48.3637695],[88.5662537,48.3634262],[88.5696716,48.3630981],[88.5719833,48.36166],[88.5741653,48.3581657],[88.5729599,48.3554535],[88.5700531,48.3530235],[88.5684586,48.3496323],[88.5658569,48.3465004],[88.5663605,48.3437424],[88.5703735,48.3420258],[88.5751648,48.3416634],[88.5803528,48.3422012],[88.5837784,48.3421021],[88.5919571,48.3409576],[88.5961609,48.3395348],[88.5999374,48.3366089],[88.6008224,48.3328362],[88.6001282,48.3292809],[88.5988312,48.3252029],[88.5955658,48.3225479],[88.59375,48.3209953],[88.5931396,48.3168945],[88.5908585,48.3135262],[88.5872345,48.3106575],[88.5831833,48.3064232],[88.5800476,48.3003349],[88.5798798,48.297821],[88.5797043,48.2950821],[88.5788116,48.2919006],[88.5769806,48.290123],[88.575119,48.2878876],[88.5748138,48.2830925],[88.5724945,48.2790375],[88.5723419,48.2767525],[88.5729599,48.2703285],[88.5754776,48.2668228],[88.5800323,48.2630386],[88.5835495,48.2590446],[88.5856934,48.2550926],[88.5871735,48.2513885],[88.588974,48.2474518],[88.5901642,48.2446671],[88.5903778,48.2426033],[88.5908966,48.2400703],[88.5910492,48.2370949],[88.5905228,48.2343597],[88.5899887,48.2314034],[88.588623,48.226181],[88.5883865,48.2225227],[88.58815,48.2188683],[88.5879593,48.2159004],[88.5895386,48.2137947],[88.5931931,48.2120895],[88.5982361,48.2105713],[88.6039963,48.2094917],[88.6118011,48.2083511],[88.6175079,48.2065887],[88.624176,48.2036476],[88.6294785,48.2009811],[88.6334076,48.1981163],[88.6343079,48.1962624],[88.6341019,48.1930656],[88.6337891,48.1882706],[88.6336212,48.1857529],[88.6354752,48.1827278],[88.6384506,48.1810417],[88.6384201,48.1805878],[88.6382217,48.1776161],[88.6387405,48.1750832],[88.6389465,48.1730156],[88.6411438,48.1699791],[88.6444626,48.1682816],[88.6481705,48.1674881],[88.654686,48.1675262],[88.6657104,48.1685791],[88.6758652,48.1719398],[88.6821518,48.1738167],[88.6877441,48.1754799],[88.692337,48.177639],[88.6948395,48.1791611],[88.6979752,48.179985],[88.701767,48.1803322],[88.7058105,48.1792946],[88.7090759,48.1769142],[88.7135849,48.1726608],[88.7138977,48.16716],[88.7142868,48.1627998],[88.7144165,48.1595917],[88.7160034,48.1577148],[88.7186127,48.1558075],[88.7209244,48.1545944],[88.7271881,48.1560097],[88.7313919,48.157486],[88.7382889,48.1581955],[88.7406158,48.1572113],[88.7435226,48.1546059],[88.7453079,48.1506615],[88.7470932,48.1467171],[88.7495499,48.1425247],[88.7538223,48.1398811],[88.7587738,48.1372108],[88.7654495,48.1347275],[88.77211,48.1320076],[88.776535,48.1316452],[88.78302,48.1314468],[88.7925339,48.1304703],[88.798851,48.1277618],[88.8017807,48.1256142],[88.804245,48.1216507],[88.8049698,48.1172791],[88.8078003,48.1137619],[88.809845,48.1086617],[88.8130417,48.1053619],[88.8153687,48.1043739],[88.8191223,48.1042595],[88.8225174,48.1039238],[88.8273087,48.1040077],[88.8325119,48.1049957],[88.837059,48.1064568],[88.8429565,48.1076469],[88.8498306,48.10812],[88.8556519,48.1081696],[88.8604431,48.1082458],[88.8676453,48.1084824],[88.871788,48.1090431],[88.8756409,48.1102943],[88.8819733,48.1128426],[88.8868484,48.1140671],[88.895874,48.1158447],[88.9003067,48.1156998],[88.902298,48.1157303],[88.9031601,48.1149101],[88.9086533,48.1126595],[88.9134445,48.1115494],[88.9199142,48.1127357],[88.9243011,48.115963],[88.9266739,48.1175766],[88.9302444,48.1160202],[88.9362183,48.1100121],[88.9387894,48.1042747],[88.9397736,48.0961685],[88.9511337,48.0898399],[88.9564285,48.0873833],[88.9616776,48.0842361],[88.9727478,48.076561],[88.9831848,48.0695877],[88.9917297,48.0649643],[88.9989548,48.0608406],[89.0071945,48.0566864],[89.0123672,48.0526276],[89.0174332,48.0471992],[89.0202332,48.0434456],[89.0231018,48.0406036],[89.0285263,48.0353928],[89.0363388,48.0301056],[89.0410767,48.0249138],[89.0472336,48.0203667],[89.0524826,48.0174446],[89.0581131,48.0147972],[89.0652542,48.0112877],[89.0705719,48.008152],[89.0721588,48.0065002],[89.0730438,48.0046425],[89.0738602,48.0000076],[89.0727005,47.9965096],[89.0722122,47.9950218],[89.0715485,47.9930115],[89.0706635,47.9903488],[89.0758667,47.9895363],[89.0810699,47.9887276],[89.0862656,47.9879112],[89.0873489,47.9877472],[89.0924606,47.986721],[89.09758,47.9856949],[89.0978928,47.98563],[89.1032028,47.9859848],[89.1074448,47.9862671],[89.1127777,47.986496],[89.1170044,47.9866753],[89.1222229,47.9874229],[89.1262283,47.9879951],[89.1311798,47.9893265],[89.1337585,47.9900131],[89.1385498,47.9915886],[89.1399231,47.9920387],[89.1447144,47.9936142],[89.1460876,47.9940605],[89.1511688,47.9951668],[89.1532669,47.9956207],[89.1585922,47.9953537],[89.1634979,47.9951057],[89.1686401,47.9941444],[89.1723404,47.9934502],[89.1772003,47.9919662],[89.1784515,47.9915848],[89.182869,47.9895706],[89.1865845,47.9878769],[89.1910019,47.9858627],[89.1936951,47.9846306],[89.1986542,47.9832916],[89.2015076,47.9825249],[89.2061996,47.9808121],[89.2108917,47.9791031],[89.2123642,47.9785652],[89.2174377,47.9774475],[89.219841,47.9769211],[89.225174,47.9768867],[89.2273407,47.9768715],[89.2325516,47.9776421],[89.2362213,47.9781876],[89.2408905,47.9799232],[89.2455597,47.9816628],[89.2489166,47.9829102],[89.2529831,47.9852295],[89.2570572,47.987545],[89.2592392,47.9887886],[89.264122,47.9902306],[89.2690125,47.9916725],[89.2698593,47.9919205],[89.2751236,47.9925041],[89.2789383,47.9929276],[89.2817078,47.9959908],[89.282547,47.9969215],[89.2829819,48.0000038],[89.2848663,48.0035019],[89.2861557,48.0062752],[89.2874832,48.0092621],[89.2883759,48.011982],[89.290947,48.014183],[89.2941132,48.0154419],[89.3009262,48.0152054],[89.3092117,48.0162849],[89.3175125,48.017601],[89.3230515,48.0185471],[89.3265457,48.0195694],[89.3290558,48.0210838],[89.3316956,48.0241966],[89.3355865,48.0258904],[89.3383865,48.0267067],[89.3418274,48.0270424],[89.3475494,48.0259209],[89.3502197,48.0251427],[89.3567123,48.0251389],[89.3598251,48.0257187],[89.3638077,48.028553],[89.3654327,48.0316963],[89.3685455,48.036396],[89.3701401,48.0393143],[89.3734283,48.0419464],[89.3759613,48.0436859],[89.3781128,48.0449829],[89.3808746,48.0453415],[89.3849869,48.0454216],[89.3882828,48.0439339],[89.3901825,48.0420303],[89.3923264,48.0389786],[89.3953629,48.0342903],[89.398262,48.0321312],[89.4033585,48.0317154],[89.4105301,48.0316887],[89.4205399,48.0329323],[89.4273911,48.0331421],[89.4325943,48.0340958],[89.4425278,48.0344238],[89.4472198,48.0333366],[89.4620209,48.0305099],[89.4680099,48.0284615],[89.4770737,48.0265274],[89.4893875,48.0267601],[89.4962234,48.026741],[89.5044022,48.0305557],[89.510376,48.0326271],[89.5177612,48.0351028],[89.524086,48.037159],[89.5327911,48.0391273],[89.5419846,48.038784],[89.5494232,48.0378189],[89.5548782,48.0376167],[89.5600281,48.0378799],[89.5661163,48.0371971],[89.5730591,48.03442],[89.5780563,48.032856],[89.5834045,48.0273895],[89.5904922,48.0223198],[89.5918121,48.0176888],[89.5955124,48.01297],[89.5971451,48.0080986],[89.5974808,48.0039673],[89.5999985,48],[89.5963669,47.9973717],[89.594986,47.996376],[89.5940094,47.9928513],[89.5930252,47.9893303],[89.5927658,47.9883919],[89.5920258,47.9848404],[89.5916214,47.9829063],[89.5920029,47.979332],[89.592186,47.9776421],[89.5949707,47.9745827],[89.5961838,47.9732552],[89.5990372,47.9702263],[89.601181,47.9679489],[89.6046143,47.9652061],[89.6055298,47.9644737],[89.6094971,47.9620743],[89.6109161,47.961216],[89.6144943,47.9585571],[89.6180725,47.9559021],[89.6199646,47.9544945],[89.6241455,47.9522629],[89.6273804,47.950531],[89.6323013,47.9491501],[89.6358414,47.9481621],[89.6371918,47.9446945],[89.6385422,47.941227],[89.639061,47.9398956],[89.6392059,47.9363098],[89.6392746,47.9343987],[89.6408844,47.9309845],[89.6415558,47.9295692],[89.6422653,47.9260178],[89.6424713,47.924984],[89.6436844,47.9214935],[89.6448975,47.9180031],[89.645668,47.915802],[89.6484222,47.9127388],[89.65065,47.9102631],[89.6556396,47.9089966],[89.6606216,47.9077263],[89.6628342,47.9071655],[89.6681519,47.9068947],[89.6734695,47.9066277],[89.674057,47.9065933],[89.6793213,47.9059982],[89.6828918,47.9055901],[89.6880493,47.9046898],[89.6932144,47.9037857],[89.6954346,47.9034004],[89.7007065,47.9028625],[89.7029114,47.9026337],[89.7081223,47.9018822],[89.7113953,47.9014053],[89.7163773,47.9001274],[89.7213516,47.8988495],[89.7225647,47.8985367],[89.7267761,47.8963432],[89.7309952,47.8941498],[89.7319717,47.8936348],[89.7341843,47.8903732],[89.73526,47.8887939],[89.7372818,47.8854752],[89.738205,47.8839607],[89.7395248,47.8804855],[89.7408371,47.8770103],[89.7410812,47.8763733],[89.741333,47.8727951],[89.7415848,47.869278],[89.7439499,47.8660622],[89.746315,47.8628502],[89.7468491,47.8621292],[89.7492142,47.8589134],[89.7515717,47.8556976],[89.7527771,47.8540535],[89.7531433,47.8504753],[89.7535095,47.8468971],[89.7536011,47.8460388],[89.7549744,47.8425713],[89.7555161,47.8412094],[89.7574768,47.8378754],[89.7594299,47.8345299],[89.7644577,47.8333397],[89.7694855,47.8321533],[89.7736359,47.8311691],[89.778862,47.8318634],[89.7840805,47.8325577],[89.784874,47.8326645],[89.7901077,47.8333359],[89.7953415,47.8340073],[89.7978516,47.8343315],[89.803154,47.8339691],[89.8084488,47.8336105],[89.810379,47.8334808],[89.8155899,47.832737],[89.8188858,47.8322678],[89.8242111,47.8322067],[89.8273849,47.8321686],[89.8327026,47.8319626],[89.8358841,47.8318405],[89.8411713,47.83144],[89.8430099,47.8312988],[89.8481064,47.8302574],[89.8531952,47.829216],[89.8548431,47.8288765],[89.8600235,47.8297195],[89.8627014,47.8301544],[89.8671799,47.8320923],[89.8688889,47.8328323],[89.8728027,47.8352661],[89.8767166,47.8376999],[89.8771973,47.8379974],[89.8823547,47.8388863],[89.8871078,47.8397064],[89.8924332,47.8396416],[89.8945847,47.8396149],[89.8999023,47.8393974],[89.9023972,47.8392944],[89.9075928,47.838501],[89.9105301,47.8380547],[89.9158401,47.8378067],[89.9173203,47.837738],[89.9225845,47.8371811],[89.9271545,47.8367004],[89.9322586,47.8356743],[89.9356079,47.8349991],[89.9408417,47.835659],[89.9455109,47.8362465],[89.9472885,47.8396263],[89.9490738,47.8430099],[89.9505386,47.8457947],[89.9511032,47.8493614],[89.9513702,47.8510475],[89.9506989,47.8546028],[89.9500275,47.8581581],[89.9498978,47.8588486],[89.9505234,47.8624077],[89.9511108,47.865696],[89.952179,47.8692093],[89.9532471,47.8727226],[89.953743,47.8743629],[89.9538422,47.8779488],[89.9538803,47.8791618],[89.9581757,47.881279],[89.9611282,47.8827324],[89.9664536,47.8825493],[89.9716721,47.88237],[89.9769897,47.8825722],[89.9823151,47.8827667],[89.9853058,47.8828812],[89.9905014,47.8820801],[89.995697,47.881279],[90,47.8806152],[90.0168915,47.8803711],[90.025032,47.8748512],[90.0340729,47.8716431],[90.0486374,47.8731422],[90.0611649,47.8871613],[90.0693359,47.8809547],[90.0742798,47.8714714],[90.0869141,47.8646851],[90.0842819,47.8566246],[90.0781403,47.8505287],[90.0736084,47.8335037],[90.0703125,47.8251953],[90.0647125,47.8154564],[90.0667648,47.8027039],[90.0707169,47.792511],[90.0732346,47.7836533],[90.0774536,47.7748375],[90.0857391,47.7661171],[90.1018524,47.7573586],[90.1090698,47.7495308],[90.1189575,47.7424469],[90.1218338,47.7395401],[90.1271057,47.7298355],[90.143074,47.7233505],[90.1647491,47.7247696],[90.19207,47.7219734],[90.2018433,47.7169418],[90.2185974,47.7015495],[90.2439728,47.710125],[90.2556,47.7017021],[90.279274,47.6969719],[90.2885208,47.6953506],[90.2984695,47.6932869],[90.3246155,47.6863174],[90.3353729,47.6815224],[90.3440628,47.6773682],[90.3747101,47.6613388],[90.378624,47.6504517],[90.3507614,47.6443634],[90.3444443,47.6348495],[90.3485718,47.6267128],[90.354332,47.6197472],[90.3694382,47.6017838],[90.3768768,47.595089],[90.3800278,47.5860062],[90.3918228,47.5732307],[90.3956985,47.5559349],[90.3988266,47.5470886],[90.4043045,47.5387421],[90.4229736,47.5304527],[90.4320297,47.5251541],[90.439003,47.5207253],[90.4478302,47.5129128],[90.4515457,47.5056763],[90.4662476,47.4952316],[90.4685059,47.4902496],[90.4684372,47.4625854],[90.4654617,47.4538345],[90.4642334,47.4437447],[90.4551773,47.4277802],[90.453537,47.4195137],[90.4583511,47.4104691],[90.4782028,47.3973923],[90.508728,47.40168],[90.5128479,47.3928452],[90.5199661,47.3847618],[90.5185699,47.3783302],[90.5104904,47.3703918],[90.4981766,47.3591614],[90.5033112,47.342804],[90.4992447,47.3358574],[90.4842529,47.3252678],[90.4832382,47.3245544],[90.4972076,47.3065491],[90.520462,47.2917061],[90.5196838,47.2791138],[90.5267105,47.2653084],[90.5415268,47.2427444],[90.5497742,47.2314796],[90.5555038,47.2238197],[90.5593491,47.2129211],[90.5786972,47.1938705],[90.5890121,47.1810417],[90.5993652,47.1672974],[90.6204605,47.1537628],[90.6330185,47.1352577],[90.6479187,47.1325722],[90.6552353,47.1263161],[90.6503601,47.106781],[90.6684189,47.0927238],[90.6880951,47.0798378],[90.7029648,47.061367],[90.7173691,47.0456352],[90.7321548,47.028759],[90.7400742,47.0236473],[90.7504501,47.0158386],[90.7591858,46.998848],[90.7778168,46.9939308],[90.8084793,46.9981499],[90.8255615,46.998455],[90.8500977,46.987915],[90.8653412,46.9749222],[90.888855,46.9645882],[90.902298,46.954525],[90.9165802,46.939682],[90.9139252,46.9213448],[90.9171143,46.9076767],[90.9240341,46.901619],[90.9335632,46.8882904],[90.9525757,46.8806076],[90.9495392,46.8542595],[90.9444962,46.8459396],[90.9320221,46.8310928],[90.9404068,46.8211708],[90.9538116,46.8108788],[90.9662399,46.7998848],[90.9873047,46.7897186],[90.9890213,46.7700806],[91.0098801,46.7653923],[91.0235519,46.7468605],[91.0344772,46.7299232],[91.0429153,46.7214241],[91.0398102,46.7018471],[91.0360794,46.6848602],[91.0256195,46.6510735],[91.0163651,46.6303406],[91.0131226,46.6092453],[91.0159454,46.5813179],[91.0173645,46.5809288],[91.0227356,46.5776176],[91.035675,46.5770111],[91.0452728,46.575531],[91.0678864,46.5746841],[91.0676498,46.5623322],[91.0656357,46.5533791],[91.0488129,46.5400734],[91.0480576,46.5235939],[91.0359421,46.4998436],[91.0280838,46.4931793],[91.0261459,46.485733],[91.0258026,46.4744759],[91.0157318,46.4610901],[91.0077667,46.4518127],[91.0101395,46.4411011],[90.9912338,46.4224892],[90.9875946,46.4130516],[90.9831924,46.4063454],[90.963562,46.3671837],[90.9535751,46.3594627],[90.9410019,46.3501015],[90.9286346,46.335247],[90.9086838,46.3195763],[90.8971939,46.3185883],[90.8968811,46.3035431],[90.9079971,46.2806358],[90.9209061,46.2625618],[90.9346771,46.2477036],[90.9448776,46.2309532],[90.949646,46.2090759],[90.9570312,46.1877022],[90.9654312,46.1745758],[90.977272,46.1573982],[90.987999,46.1436234],[91.0083694,46.1272659],[91.0121536,46.1136055],[91.0181732,46.1018105],[91.015358,46.0882683],[91.009346,46.0810776],[91.0117874,46.067852],[91.0177536,46.0482826],[91.0183334,46.0411987],[91.016243,46.0256119],[91.0098572,46.0106354],[91.0024796,46.0052528],[90.9944153,46.0005455],[90.9703598,45.9832115],[90.9495392,45.9677582],[90.9233017,45.9478645],[90.8813934,45.9169312],[90.8436966,45.8885765],[90.8131256,45.8553047],[90.7884521,45.8232803],[90.759964,45.7888908],[90.7333679,45.7570419],[90.7108383,45.7227516],[90.6996155,45.6845589],[90.6864243,45.6470146],[90.6786652,45.6130028],[90.6691513,45.5741539],[90.6609802,45.5504265],[90.6632614,45.534687],[90.6653671,45.5075035],[90.6665421,45.4939995],[90.6665955,45.4933472],[90.6790771,45.4752922],[90.6940994,45.4666634],[90.7162933,45.4579468],[90.7403717,45.4506302],[90.7639542,45.439415],[90.769104,45.4244118],[90.7685547,45.4051857],[90.7744141,45.3885956],[90.788559,45.3680458],[90.7979355,45.3526649],[90.8044968,45.3344879],[90.8073349,45.3199005],[90.8021622,45.3021889],[90.8003311,45.2907181],[90.8264236,45.2966919],[90.8374939,45.2962112],[90.8596573,45.285862],[90.8772812,45.2749748],[90.895546,45.2554016],[90.8871002,45.2378616],[90.8681488,45.2151031],[90.862175,45.204113],[90.8804016,45.1908493],[90.9089355,45.1911278],[90.9344788,45.1934128],[90.9575958,45.2002182],[90.9907074,45.2179451],[91.0062485,45.2172699],[91.0292435,45.205143],[91.0381393,45.2037392],[91.0480042,45.205616],[91.0636368,45.2109299],[91.0893784,45.2124405],[91.1125183,45.2093735],[91.1513748,45.2032242],[91.1623917,45.1971779],[91.1645737,45.1898918],[91.1767502,45.1740685],[91.1922379,45.1560059],[91.218605,45.1522903],[91.2281876,45.1464844],[91.2320786,45.1357918],[91.2671661,45.1326523],[91.2886505,45.129303],[91.3158875,45.1285477],[91.33181,45.1269455],[91.3433762,45.1190987],[91.3620529,45.1113548],[91.3745422,45.1076622],[91.3760986,45.1072006],[91.39077,45.1268425],[91.414032,45.1408768],[91.4272537,45.1552315],[91.4494095,45.1507187],[91.4576263,45.1464806],[91.4666519,45.1360741],[91.4848328,45.1225815],[91.4898987,45.1146431],[91.4929962,45.1075897],[91.499855,45.095726],[91.5365982,45.0866318],[91.5511856,45.0730858],[91.5663681,45.0777245],[91.5788956,45.0779953],[91.6053162,45.0693855],[91.6138458,45.0641899],[91.6284027,45.064846],[91.6697998,45.059803],[91.6935349,45.0605392],[91.7135391,45.0614853],[91.7373123,45.0710678],[91.7589417,45.0735779],[91.7973175,45.0799103],[91.8235474,45.0792542],[91.8484802,45.078804],[91.8812027,45.0768204],[91.9044876,45.0777168],[91.9294205,45.0770226],[91.95755,45.0786362],[91.9885941,45.08004],[92.0070343,45.0804176],[92.0374374,45.0815735],[92.0545807,45.0826187],[92.0652618,45.0822411],[92.0856857,45.0801048],[92.1039658,45.0701752],[92.1286926,45.0578537],[92.1491623,45.0488281],[92.174118,45.038784],[92.1954193,45.0312347],[92.2279434,45.0174866],[92.2451859,45.0088997],[92.2586823,45.015152],[92.278389,45.0161781],[92.2999802,45.0215569],[92.3207397,45.0202599],[92.340004,45.0101776],[92.3809052,45.0119057],[92.397049,45.0140419],[92.4225616,45.0162125],[92.4501038,45.009697],[92.4769974,45.0018005],[92.5018692,45.0032654],[92.5263901,45.0088387],[92.5473404,45.0162277],[92.5712509,45.0176735],[92.5851898,45.012455],[92.6113358,45.0180168],[92.6300964,45.0166931],[92.6630554,45.0183716],[92.6843719,45.0227585],[92.7176437,45.029911],[92.7363815,45.0335999],[92.7761154,45.044632],[92.8071671,45.0423775],[92.8294983,45.0375938],[92.8511734,45.0334892],[92.8640976,45.0392151],[92.8815536,45.0435638],[92.9022522,45.0385361],[92.9223099,45.0312157],[92.9317017,45.0163536],[92.952713,45.0126877],[92.9695206,45.0113068],[92.9853516,44.9966621],[93.0070038,45.0030479],[93.0231705,45.0089798],[93.0483856,45.0110092],[93.0668106,45.0112114],[93.0900726,45.0072899],[93.1175461,45.0079308],[93.140831,45.0122299],[93.1721954,45.0139885],[93.2002869,45.0063744],[93.2167282,44.9978676],[93.250946,44.9906807],[93.2774048,44.9837379],[93.3171158,44.9787979],[93.3288422,44.9938469],[93.3527069,44.9875793],[93.3704758,44.9872818],[93.3762207,44.9771957],[93.3923645,44.9759827],[93.4059906,44.9712486],[93.4166336,44.9604759],[93.4325485,44.9549522],[93.4602509,44.9579353],[93.4817276,44.9634438],[93.4978256,44.9583282],[93.5069504,44.9665146],[93.5243301,44.9600182],[93.5443878,44.9497299],[93.5575333,44.9447174],[93.5884323,44.9380531],[93.6068954,44.9291191],[93.6411057,44.9225006],[93.6615829,44.912899],[93.6914825,44.9018974],[93.6976547,44.8944893],[93.7130356,44.8913651],[93.7147675,44.8733177],[93.7396393,44.8584671],[93.7848358,44.8405151],[93.806282,44.8307381],[93.846962,44.8150864],[93.8764267,44.8045425],[93.8968887,44.7952194],[93.9352951,44.7813797],[93.9551468,44.7752495],[93.9851837,44.7628441],[94.0052795,44.7530441],[94.0343246,44.7401772],[94.0602493,44.7335091],[94.0892105,44.7174301],[94.1044693,44.7085762],[94.1295929,44.6950417],[94.1489563,44.6833916],[94.1789932,44.6750488],[94.2036514,44.6711082],[94.219841,44.6622314],[94.2258759,44.6445503],[94.233429,44.6375999],[94.2573776,44.6171875],[94.2722397,44.6074028],[94.2982407,44.5938187],[94.3192139,44.5850906],[94.3422318,44.5683327],[94.3469543,44.5513496],[94.3484573,44.5341759],[94.3534775,44.5165024],[94.3704224,44.514679],[94.3911285,44.5226402],[94.4086456,44.5182877],[94.4544983,44.5101471],[94.4878464,44.4979668],[94.5021744,44.4878159],[94.5289383,44.4670143],[94.5519028,44.4582329],[94.5750275,44.4515724],[94.6017075,44.4441299],[94.6304245,44.430233],[94.6444092,44.4160652],[94.6608658,44.3980598],[94.6789474,44.3834267],[94.6927109,44.3659973],[94.7082825,44.3508568],[94.7238922,44.3374939],[94.7472076,44.3371086],[94.7662201,44.3392372],[94.7667618,44.3392982],[94.789772,44.3393669],[94.7974625,44.3275642],[94.827301,44.3152542],[94.8465881,44.3122025],[94.8879089,44.3038712],[94.9064102,44.2962379],[94.9353027,44.2935486],[94.9498291,44.2834778],[94.969101,44.2687149],[94.9853058,44.2576637],[95.0182648,44.2513237],[95.0375137,44.254158],[95.0730286,44.256897],[95.093895,44.2603798],[95.1249771,44.2630196],[95.1486282,44.2652664],[95.1832047,44.2675018],[95.2001419,44.2680702],[95.2354584,44.2732773],[95.254097,44.2765465],[95.2942657,44.2830086],[95.310524,44.2824287],[95.3431473,44.2840042],[95.3671799,44.2859917],[95.3982315,44.288044],[95.4193344,44.2887115],[95.4285507,44.2802696],[95.4254837,44.2608948],[95.4213104,44.2527542],[95.3960419,44.2363968],[95.3843536,44.2316246],[95.3745499,44.2258949],[95.3640518,44.2037125],[95.3666687,44.1977081],[95.3609848,44.1914291],[95.3536835,44.1691742],[95.3524704,44.1630249],[95.3508835,44.1555138],[95.348877,44.1301689],[95.3501358,44.1221313],[95.350708,44.1129723],[95.3503799,44.0896492],[95.3486481,44.0862541],[95.3473434,44.0778198],[95.3406906,44.0631027],[95.3373566,44.0517387],[95.332695,44.0465813],[95.3256607,44.0300369],[95.3278809,44.022213],[95.3400116,44.0235481],[95.3650208,44.0211639],[95.3754959,44.0209312],[95.3842621,44.0177612],[95.4090729,44.0107994],[95.4552689,44.0063095],[95.5007629,44.0075378],[95.525116,44.0051346],[95.5238953,44.0000076],[95.5286789,43.9938965],[95.5352631,43.9843864],[95.5418777,43.9757881],[95.5475845,43.9681244],[95.5532455,43.9595451],[95.5586014,43.9511986],[95.5642319,43.9419365],[95.5692368,43.9329147],[95.5745468,43.9236565],[95.5818405,43.9164124],[95.585022,43.9092598],[95.5920792,43.896534],[95.5986938,43.8883858],[95.6030884,43.8800621],[95.6089706,43.869648],[95.613739,43.8626862],[95.6178818,43.8559647],[95.6228714,43.8469391],[95.6260376,43.8397827],[95.6319122,43.8293686],[95.6347961,43.8229027],[95.6379166,43.8146057],[95.6407394,43.8067703],[95.6435699,43.7991676],[95.6461105,43.7922516],[95.6468201,43.7867508],[95.6484604,43.7809982],[95.6534119,43.771286],[95.6564865,43.7620735],[95.6594009,43.7565231],[95.6628571,43.7489014],[95.6709518,43.7318039],[95.6762161,43.7223091],[95.6796646,43.7144585],[95.6890182,43.6975594],[95.693428,43.6901436],[95.6950684,43.684391],[95.7058258,43.6637993],[95.7108688,43.6565971],[95.7124557,43.649704],[95.7217026,43.6307449],[95.7264328,43.6237755],[95.727417,43.6175766],[95.7366028,43.597477],[95.7403336,43.5893898],[95.7419739,43.5838623],[95.7537155,43.5646133],[95.7612762,43.5575752],[95.7632446,43.5525017],[95.7725449,43.5422211],[95.7781219,43.5331726],[95.7834702,43.5261879],[95.7857132,43.5201912],[95.7996597,43.5015678],[95.8031235,43.494854],[95.807579,43.4890289],[95.8202438,43.4702072],[95.8243637,43.4641609],[95.8275681,43.4585953],[95.8327942,43.4490967],[95.8382339,43.4443932],[95.841774,43.4392738],[95.8465118,43.4329872],[95.8524704,43.4259834],[95.8558655,43.4178963],[95.8584976,43.4137154],[95.8601608,43.4088745],[95.8631516,43.3989677],[95.8637543,43.3918686],[95.8656769,43.3858757],[95.8666458,43.3799095],[95.8684387,43.3711739],[95.8680267,43.3624954],[95.8695526,43.3549118],[95.8694534,43.3462257],[95.8706131,43.3375092],[95.8731384,43.3310471],[95.8740234,43.3232498],[95.8753204,43.3175011],[95.8757095,43.3124619],[95.8767242,43.3074074],[95.8784027,43.2963905],[95.8793411,43.2897339],[95.8786469,43.2817459],[95.8806076,43.2766724],[95.8846664,43.2697105],[95.8922424,43.2640305],[95.8962479,43.2559319],[95.9018936,43.2493858],[95.9065933,43.2426376],[95.909111,43.2361755],[95.9142838,43.2328415],[95.920639,43.2281075],[95.9278717,43.221981],[95.9351425,43.2167664],[95.9415131,43.2122612],[95.9468918,43.2068634],[95.9548492,43.2027779],[95.9615097,43.1980324],[95.9690704,43.1923523],[95.9772186,43.1859665],[95.9859848,43.1793404],[96,43.1694756],[96.0039062,43.1657066],[96.0100937,43.1596527],[96.0146637,43.1549377],[96.0175552,43.1529388],[96.0223999,43.149147],[96.0259705,43.1457863],[96.0343246,43.1402359],[96.0455399,43.1333733],[96.0510101,43.129364],[96.0575256,43.1226273],[96.062973,43.1193047],[96.0671234,43.1170998],[96.0729141,43.1128693],[96.0809326,43.1077652],[96.0896454,43.1006165],[96.0948105,43.0963669],[96.100914,43.0919113],[96.1073303,43.0876923],[96.1163025,43.0819206],[96.1237183,43.075882],[96.1291809,43.0718727],[96.1330719,43.0680542],[96.1398392,43.0624657],[96.1472244,43.0571175],[96.1542969,43.0517616],[96.1613541,43.0468636],[96.1687317,43.0415115],[96.1738815,43.0374908],[96.1809082,43.0332794],[96.1867294,43.027668],[96.1947632,43.0214119],[96.2040482,43.0151787],[96.2094803,43.0116234],[96.2130127,43.0089417],[96.2206726,43.0042839],[96.2264709,42.9993553],[96.2335358,42.9937668],[96.2402649,42.9888573],[96.2453995,42.9848328],[96.2485962,42.9828339],[96.2540512,42.9785843],[96.2591705,42.9750175],[96.2643051,42.970993],[96.2706985,42.9665337],[96.2758331,42.9625092],[96.2825699,42.9571381],[96.2873611,42.9540215],[96.2966003,42.9482422],[96.303009,42.943325],[96.3100433,42.9384155],[96.3154984,42.9339371],[96.3199921,42.9301262],[96.3235245,42.9272118],[96.326088,42.9251976],[96.3327866,42.920742],[96.3372726,42.91716],[96.3420792,42.9133568],[96.3465652,42.9097748],[96.3500977,42.9066315],[96.3548813,42.9032822],[96.3574219,42.9019547],[96.3599854,42.8999405],[96.3623123,42.8956299],[96.3639832,42.8922234],[96.3654251,42.8865204],[96.3666,42.8794365],[96.367691,42.8746452],[96.3678284,42.8707504],[96.36763,42.8673058],[96.3680344,42.8645668],[96.3685226,42.8593025],[96.369606,42.854969],[96.3692169,42.8480835],[96.3696976,42.8430481],[96.3704834,42.8382492],[96.3712463,42.8341408],[96.3716507,42.8313942],[96.3721466,42.8259048],[96.3742294,42.8195267],[96.3741074,42.8137932],[96.3746033,42.8083],[96.374855,42.800972],[96.3750305,42.7957039],[96.3758545,42.7897568],[96.3769531,42.7847366],[96.3770752,42.7810707],[96.3775787,42.7753525],[96.3783493,42.7710075],[96.3785019,42.7664299],[96.3786469,42.7620773],[96.3799973,42.7588921],[96.3811188,42.7534103],[96.3813095,42.7476845],[96.3821106,42.7424278],[96.3825684,42.737854],[96.3830414,42.7330475],[96.3837509,42.7305374],[96.3832855,42.7269554]]]]},
  17 +"properties":{
  18 +"gid":3,
  19 +"name":"新疆维吾尔自治区"}
  20 +},
  21 +{"type":"Feature",
  22 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.1710434,46.2466812],[123.2185669,46.2694473],[123.239357,46.2701492],[123.288063,46.2492371],[123.3190689,46.2498169],[123.3672638,46.2190399],[123.3932495,46.2380562],[123.4507828,46.2324791],[123.5025024,46.2537804],[123.5670166,46.2269592],[123.6059265,46.2471848],[123.774353,46.2624664],[123.8428497,46.2999573],[123.8963928,46.297554],[123.9001999,46.2559929],[123.9338531,46.2863541],[123.9533463,46.2844124],[123.9433136,46.2384224],[123.9689026,46.2214317],[123.9502792,46.2051048],[123.9626083,46.1939774],[123.9602966,46.1640282],[123.9932709,46.1619263],[124.0031967,46.124958],[123.9860306,46.0988159],[124.006897,46.0852165],[123.9946365,46.0618439],[124.0396881,46.029171],[124.031601,46.0156479],[123.9875793,46.0147324],[124.0069122,45.9876442],[123.967041,45.9689178],[123.9541779,45.9448509],[123.9854202,45.9077759],[124.0295563,45.8885841],[124.0488815,45.8905067],[124.056633,45.8676949],[124.0611191,45.8439484],[124.028183,45.8275642],[124.0565872,45.8014259],[123.9956436,45.7755203],[124.0076904,45.7495308],[124.0708923,45.7400208],[124.0687027,45.7290382],[124.0373001,45.7304878],[124.0498505,45.7175217],[124.0845032,45.716774],[124.1170731,45.6926918],[124.1240005,45.6826668],[124.1143036,45.670517],[124.1392288,45.6573639],[124.1266632,45.6369743],[124.1385117,45.6233139],[124.1672821,45.6158867],[124.2187271,45.6316109],[124.2221909,45.60009],[124.2598038,45.5844421],[124.260643,45.5508499],[124.2867737,45.5392723],[124.3463669,45.5428505],[124.3598175,45.5216293],[124.3449631,45.4909744],[124.3652115,45.4706802],[124.3642807,45.459938],[124.3942795,45.4394302],[124.4511566,45.4578018],[124.4693832,45.4550858],[124.4934998,45.4249458],[124.5312271,45.4103508],[124.5695877,45.4204216],[124.5699081,45.444191],[124.5806503,45.4503632],[124.6502304,45.4261322],[124.6678238,45.4437218],[124.7091293,45.4430046],[124.759613,45.4619102],[124.7793503,45.4346886],[124.8128967,45.4460564],[124.8672028,45.4418335],[124.8792801,45.4500313],[124.8755798,45.4872856],[124.9097214,45.5347328],[124.9243622,45.5308075],[124.9602432,45.4907074],[125.040657,45.4915695],[125.0337067,45.4381218],[125.070282,45.4176369],[125.0751572,45.3824272],[125.0917435,45.3830414],[125.1273804,45.4050484],[125.1890869,45.4008598],[125.2503967,45.4178963],[125.2855225,45.3923187],[125.2917404,45.4208488],[125.3028336,45.4239807],[125.3326797,45.3952255],[125.3472672,45.3926201],[125.365509,45.3954659],[125.4109573,45.4356003],[125.4587173,45.4523926],[125.4393463,45.4836159],[125.4954376,45.4694748],[125.5791397,45.4911804],[125.6091614,45.5124016],[125.687973,45.5076599],[125.684639,45.5019417],[125.6875,45.4952698],[125.6841583,45.4909782],[125.6789169,45.4833527],[125.6865463,45.482399],[125.6932068,45.4814453],[125.7003174,45.4779587],[125.6989365,45.4733429],[125.6932068,45.4719124],[125.6884537,45.4690514],[125.681778,45.467144],[125.6855927,45.4628563],[125.6970291,45.4628563],[125.6998901,45.4595184],[125.7018204,45.4557762],[125.6937027,45.4518929],[125.6927414,45.448555],[125.7027512,45.4418831],[125.6937027,45.4342537],[125.710701,45.4282646],[125.7094269,45.4242439],[125.7036972,45.4213867],[125.7089462,45.4128036],[125.7065735,45.4080391],[125.7089462,45.3965988],[125.6941681,45.3818207],[125.6908264,45.3761024],[125.6922607,45.3718109],[125.6927414,45.3670464],[125.6913071,45.362278],[125.6898804,45.3565598],[125.6903534,45.3522682],[125.6932068,45.3441658],[125.6946487,45.3403549],[125.6951218,45.334156],[125.7041779,45.3332024],[125.7132263,45.3322487],[125.72229,45.3293915],[125.7199097,45.3260536],[125.7180023,45.3208084],[125.72229,45.315567],[125.7332535,45.3065109],[125.7427902,45.2979317],[125.747963,45.2818565],[125.7561264,45.2826767],[125.7661438,45.2860146],[125.7761536,45.2836304],[125.7718735,45.2736206],[125.7709122,45.2679024],[125.7780609,45.2664719],[125.7971268,45.2669487],[125.8004684,45.2607498],[125.8019028,45.2516937],[125.8023834,45.2392998],[125.8042831,45.2345352],[125.8114319,45.2307205],[125.8252487,45.2311974],[125.8328781,45.2335815],[125.8419266,45.2359657],[125.8452682,45.2311974],[125.8509903,45.2245255],[125.8562317,45.2202339],[125.8657684,45.213562],[125.8762512,45.2087936],[125.887207,45.2068863],[125.8981781,45.2054596],[125.9010391,45.1902046],[125.9134369,45.1897278],[125.928688,45.1902046],[125.9386978,45.1911583],[125.9482269,45.1925888],[125.9553833,45.1835327],[125.9725418,45.179718],[125.9606171,45.1663704],[125.9720612,45.1682777],[125.9782562,45.1687546],[125.9897003,45.1725693],[125.9901733,45.1663704],[125.9891205,45.1591644],[126.0001831,45.1649399],[126.0049515,45.1630363],[126.0135269,45.1520729],[126.0192566,45.1525497],[126.027359,45.1620827],[126.0430832,45.1606522],[126.0535736,45.1644669],[126.0750198,45.158268],[126.0802689,45.1520729],[126.0836029,45.1468277],[126.0855103,45.1411095],[126.0921936,45.1415863],[126.1002884,45.1392021],[126.1122131,45.1420631],[126.1212616,45.1406326],[126.1341324,45.1401558],[126.1450882,45.1392021],[126.1470032,45.1339569],[126.1584396,45.1306229],[126.1722717,45.1355515],[126.182663,45.1457062],[126.2012787,45.1444969],[126.2065964,45.1423225],[126.2203827,45.1452217],[126.2278671,45.1374855],[126.2382736,45.13797],[126.2556686,45.1469154],[126.2571182,45.151989],[126.2626801,45.1515083],[126.2646103,45.1546478],[126.2718735,45.1556168],[126.2854004,45.1515083],[126.2921677,45.1457062],[126.2972488,45.1428032],[126.3059464,45.1440125],[126.3081207,45.1546478],[126.3173065,45.1575508],[126.3257675,45.1556168],[126.3332672,45.1546478],[126.3361664,45.1580353],[126.3289108,45.1626282],[126.3322983,45.1693954],[126.3354416,45.1751976],[126.3342285,45.1831741],[126.340271,45.1846237],[126.3485031,45.180275],[126.3523636,45.180275],[126.3605804,45.1904259],[126.3767776,45.1986465],[126.378952,45.2039642],[126.3828201,45.2054138],[126.3951492,45.2165337],[126.4089279,45.2206421],[126.423912,45.2281342],[126.4306793,45.2230606],[126.433342,45.2177429],[126.4393768,45.2184677],[126.4509888,45.2230606],[126.4642792,45.2276535],[126.4715271,45.225235],[126.4797516,45.2228165],[126.4855576,45.2339363],[126.5044098,45.2351456],[126.5215836,45.2281342],[126.5268936,45.2358704],[126.5399475,45.2346611],[126.5450211,45.2380486],[126.5551529,45.2467308],[126.5651093,45.2364578],[126.5789108,45.2338905],[126.5875778,45.234211],[126.6045914,45.2335663],[126.6074829,45.2290726],[126.6171112,45.2261848],[126.6386185,45.2130241],[126.6405487,45.2072449],[126.6511383,45.2021103],[126.6543503,45.1982574],[126.6588364,45.1927986],[126.6659088,45.1911926],[126.6829224,45.1812439],[126.6883774,45.1822052],[126.6909485,45.1809196],[126.7024994,45.1815643],[126.7220764,45.1822052],[126.7291489,45.1693649],[126.733963,45.1684036],[126.7455215,45.1728973],[126.7590027,45.1716118],[126.7821121,45.1517105],[126.7853165,45.1517105],[126.7981567,45.1436844],[126.8052292,45.143364],[126.8122864,45.1501045],[126.8167877,45.1507454],[126.8231964,45.1436844],[126.8382874,45.1484985],[126.8498535,45.1443253],[126.8540192,45.1398315],[126.8638229,45.1351776],[126.8785782,45.1364594],[126.8862762,45.1393509],[126.90522,45.1396713],[126.9183884,45.1403122],[126.9305878,45.1454506],[126.9373169,45.1403122],[126.9514465,45.1435242],[126.9599304,45.1351891],[126.9604187,45.1322708],[126.9555588,45.1312981],[126.9540863,45.1186523],[126.9599304,45.1118431],[126.9618835,45.1069794],[126.9652786,45.1001701],[126.9628525,45.0889854],[126.9628525,45.0816917],[126.9638214,45.070507],[126.9740372,45.061264],[126.9857101,45.0583458],[126.9861908,45.0491066],[126.9915466,45.0486221],[126.9939728,45.0418129],[127.0037003,45.0369492],[127.0037003,45.0330582],[127.0002975,45.0296555],[127.0012665,45.0243034],[127.0265579,45.0102005],[127.0348282,44.9897766],[127.0484467,44.9883156],[127.0435791,44.9810219],[127.0479584,44.9776154],[127.0523376,44.9693489],[127.069603,44.9672813],[127.0880127,44.9437675],[127.0720673,44.9375954],[127.069397,44.9185791],[126.9961472,44.8790855],[126.9827805,44.8208122],[126.9860916,44.7643929],[127.0356674,44.7063866],[127.0191269,44.67939],[127.0370865,44.646965],[127.0238571,44.5948753],[127.0439529,44.5654564],[127.0793762,44.5806046],[127.0877914,44.6115875],[127.1238708,44.6050186],[127.1451263,44.6128578],[127.1555328,44.6429482],[127.2063599,44.6365509],[127.2069702,44.6132431],[127.2238235,44.6182671],[127.2537766,44.5996857],[127.273407,44.6344528],[127.3645401,44.6177521],[127.401123,44.629612],[127.4059372,44.615036],[127.5254898,44.567894],[127.5601425,44.5481377],[127.5347824,44.5206757],[127.4828796,44.5237808],[127.4503174,44.5058174],[127.4687805,44.4950523],[127.4662628,44.4641685],[127.4975128,44.4368515],[127.4740524,44.3984222],[127.5056763,44.3818512],[127.5128098,44.3615837],[127.5291824,44.3567314],[127.611351,44.2800789],[127.6141281,44.2508507],[127.5856323,44.2263451],[127.6153336,44.1873245],[127.6287613,44.183342],[127.6298828,44.1915817],[127.6837692,44.1662598],[127.7013931,44.1949883],[127.7131424,44.1964645],[127.7326202,44.0976753],[127.7496872,44.0831985],[127.7787933,44.0704155],[127.8001785,44.0827026],[127.8287201,44.0847588],[127.8671265,44.063343],[127.9096222,44.0661697],[127.9344864,44.0818825],[127.9968567,44.0960045],[128.0137177,44.1201057],[128.036438,44.1058464],[128.0961914,44.1313248],[128.0425415,44.1828995],[128.0835876,44.1817627],[128.0817261,44.207119],[128.0988007,44.2170372],[128.0899353,44.2421303],[128.0574036,44.2472038],[128.0933228,44.2830582],[128.0580292,44.3054886],[128.0467377,44.3463326],[128.0662842,44.366787],[128.0945587,44.3482018],[128.1185303,44.3435287],[128.1414032,44.3514175],[128.163208,44.33918],[128.1828156,44.358242],[128.1982269,44.4197922],[128.2169495,44.4331322],[128.2498169,44.4387512],[128.2523041,44.4476776],[128.2720642,44.4543839],[128.2904053,44.4814186],[128.3596039,44.5086174],[128.3895111,44.4796791],[128.4298706,44.4621849],[128.4709015,44.3491402],[128.4716949,44.3100624],[128.4489746,44.2590523],[128.4546509,44.1957588],[128.4627686,44.1571541],[128.5153351,44.1190872],[128.567627,44.0348358],[128.5847626,43.9864502],[128.631012,43.9360123],[128.6282654,43.9200096],[128.6468658,43.8905792],[128.6857452,43.8857231],[128.6930084,43.8410339],[128.7337952,43.7965431],[128.7531128,43.7579346],[128.7277374,43.7517204],[128.7240448,43.7366447],[128.738739,43.7269135],[128.769989,43.7259789],[128.8496094,43.5595512],[128.8955688,43.5401306],[128.9294891,43.5533257],[128.9458313,43.5508804],[128.9581299,43.5349617],[128.9820404,43.5340385],[129.0031738,43.5194016],[129.0903168,43.5466499],[129.1452332,43.5666466],[129.190033,43.5697937],[129.2263031,43.5984421],[129.2304993,43.6304474],[129.2058868,43.6850014],[129.2225647,43.7104454],[129.2125549,43.783596],[129.2304688,43.8067322],[129.2606659,43.8130074],[129.2991028,43.7937584],[129.3103027,43.8121567],[129.3526306,43.7974205],[129.3954315,43.813797],[129.4076691,43.8340073],[129.4382629,43.842289],[129.4636841,43.8694077],[129.491394,43.875885],[129.5592957,43.8694077],[129.5944824,43.8819351],[129.657074,43.867466],[129.6993103,43.8819122],[129.7324066,43.8770294],[129.7359619,43.8895607],[129.7747345,43.8932762],[129.7797852,43.9028091],[129.7711639,43.920578],[129.78862,43.9411201],[129.7736969,43.9599113],[129.8091583,43.9682503],[129.8530884,44.0094109],[129.858551,43.9941902],[129.9037781,44.0225792],[129.9381866,44.0295105],[129.9485321,44.0241394],[129.997879,43.995369],[129.9841003,43.9827995],[130.0127716,43.9596062],[130.0029907,43.8810272],[130.0207672,43.8557396],[130.0643463,43.835453],[130.1001892,43.8459892],[130.1135559,43.8732033],[130.1422882,43.879509],[130.1678009,43.9252548],[130.2002106,43.9436111],[130.2431183,43.9464035],[130.2484741,43.9774323],[130.2983398,44.0009575],[130.3045502,44.0282059],[130.3265381,44.0431976],[130.3532257,44.0443993],[130.3575287,43.9984932],[130.3300629,43.9480209],[130.3737793,43.9012871],[130.3633118,43.8781586],[130.4154968,43.7865639],[130.4237976,43.7511139],[130.4542542,43.738987],[130.4485931,43.7173538],[130.4705963,43.670826],[130.5173035,43.6242142],[130.5443878,43.6277122],[130.6229858,43.6272087],[130.6232147,43.5905571],[130.6669312,43.5812569],[130.6744385,43.5664139],[130.736145,43.5516129],[130.8139038,43.5045242],[130.8634186,43.4356689],[130.9218903,43.460022],[131.0026703,43.5011559],[131.0274048,43.4984207],[131.1256256,43.4519119],[131.1313934,43.4409981],[131.1500092,43.418705],[131.1893158,43.4473686],[131.257843,43.4744759],[131.2730713,43.4765587],[131.2809906,43.4770317],[131.2927246,43.4789467],[131.304718,43.4740067],[131.3122711,43.4627876],[131.3069916,43.452858],[131.2984924,43.447155],[131.2963562,43.4371376],[131.2987518,43.4292755],[131.3065948,43.4178123],[131.3087616,43.4060631],[131.3144073,43.3946648],[131.3071747,43.3891525],[131.2870636,43.3835602],[131.2776337,43.3778839],[131.2721863,43.3704834],[131.2666626,43.355751],[131.2665405,43.3424606],[131.2637482,43.3317757],[131.2657471,43.3168182],[131.2652588,43.3023987],[131.2649689,43.2914085],[131.2541504,43.2717896],[131.2504272,43.2613564],[131.2412415,43.2538338],[131.2237396,43.243576],[131.216629,43.2398872],[131.2075348,43.233963],[131.2015533,43.2279472],[131.1970062,43.2191429],[131.1975555,43.2120247],[131.2012024,43.2041283],[131.2086487,43.1970367],[131.2146759,43.1867752],[131.2161865,43.180088],[131.2120514,43.1731033],[131.2126007,43.1659813],[131.2153168,43.1526108],[131.2086182,43.1330986],[131.1904907,43.116436],[131.1834106,43.1129761],[131.1768799,43.1078911],[131.1681976,43.0978279],[131.1676941,43.0882149],[131.1705627,43.0835495],[131.1674347,43.0776825],[131.164978,43.0669823],[131.1512451,43.0733337],[131.140625,43.0736389],[131.1329651,43.0706482],[131.1184692,43.0685387],[131.1162109,43.0614967],[131.1201935,43.0538216],[131.1121826,43.0441933],[131.1031647,43.0391769],[131.0967407,43.0299644],[131.095108,43.0229034],[131.0984802,43.0157051],[131.1116333,42.9983749],[131.1136932,42.9900665],[131.1155548,42.978096],[131.1215668,42.9678421],[131.1342468,42.9654198],[131.1476288,42.9645767],[131.1397552,42.9517365],[131.139328,42.9437256],[131.1440582,42.9385529],[131.1343536,42.9321823],[131.1283722,42.9252472],[131.118988,42.9190979],[131.107666,42.9173546],[131.0904083,42.9155502],[131.0827179,42.9173698],[131.0743866,42.9192085],[131.0446167,42.9227905],[131.0356445,42.9241829],[131.0213928,42.9202232],[131.0150299,42.917881],[131.0147552,42.9061966],[131.0209503,42.8993835],[131.0241241,42.8944817],[131.0341949,42.8838882],[131.0380249,42.8736992],[131.0275269,42.8634491],[131.0171814,42.8623581],[130.9983521,42.8598976],[130.9861145,42.8581657],[130.9737549,42.8603363],[130.9512024,42.870575],[130.9417419,42.8747253],[130.9342194,42.8737831],[130.9163513,42.8719673],[130.9052734,42.8683662],[130.9039917,42.8612976],[130.8944702,42.8578835],[130.8834076,42.8547363],[130.8693848,42.8612938],[130.8608856,42.8594551],[130.8552399,42.8653297],[130.8487244,42.8721504],[130.8388062,42.8797379],[130.8248901,42.882164],[130.8141632,42.8794632],[130.7879944,42.8732605],[130.7848206,42.865551],[130.782608,42.8585014],[130.7735901,42.8390236],[130.7681274,42.8357239],[130.754837,42.8378944],[130.7424316,42.8388977],[130.7294769,42.8350983],[130.7190094,42.831234],[130.7092743,42.8429337],[130.6936646,42.8490524],[130.6819763,42.8523216],[130.6718597,42.8491325],[130.6620178,42.8450203],[130.63974,42.8347931],[130.6292419,42.8297806],[130.6191406,42.8270454],[130.594162,42.8187065],[130.5885468,42.8115082],[130.5788727,42.8108215],[130.5568542,42.8129463],[130.5495148,42.8087692],[130.5464935,42.8037987],[130.54245,42.79702],[130.5359344,42.7900696],[130.5213318,42.783535],[130.5128174,42.780983],[130.5024414,42.7784729],[130.4720154,42.7732162],[130.4614258,42.7654381],[130.4527435,42.7589912],[130.4317627,42.7480087],[130.4266205,42.7440033],[130.4244843,42.7378616],[130.4222565,42.7289772],[130.4058685,42.7314072],[130.3995667,42.7292557],[130.4033813,42.7238998],[130.407486,42.7178497],[130.4167633,42.7091637],[130.4266205,42.7068787],[130.4350128,42.7069206],[130.446991,42.7034416],[130.4539948,42.6927414],[130.4571686,42.6869392],[130.4672394,42.6899147],[130.4804382,42.6932831],[130.4973602,42.6963272],[130.5036621,42.6982422],[130.5323944,42.7014694],[130.5434723,42.6989174],[130.5593719,42.6928139],[130.5748444,42.6841965],[130.5811157,42.6785469],[130.5873871,42.6726685],[130.5947723,42.6640129],[130.5992889,42.6540489],[130.6021271,42.6477928],[130.6067047,42.6392059],[130.6126556,42.6331024],[130.6202087,42.62146],[130.6224518,42.6161346],[130.624588,42.6082916],[130.6279755,42.6011047],[130.6304779,42.5943985],[130.6295776,42.581356],[130.6264954,42.5747871],[130.6212463,42.5682678],[130.6154175,42.5558052],[130.6117401,42.5499382],[130.5951996,42.5544624],[130.5747681,42.5556374],[130.5685425,42.5479927],[130.568512,42.5402031],[130.570282,42.5309944],[130.5706482,42.5110474],[130.571579,42.5039177],[130.578186,42.4991798],[130.5870056,42.4955292],[130.6006165,42.4878693],[130.6013336,42.4748344],[130.5969238,42.4623833],[130.598053,42.4510307],[130.6017151,42.4426956],[130.6111908,42.4387741],[130.6389465,42.4226913],[130.6368713,42.4188194],[130.6357269,42.4197922],[130.6331482,42.4210854],[130.6295929,42.4223824],[130.6271515,42.4231911],[130.6239166,42.4244843],[130.6203613,42.4257774],[130.6174469,42.4269104],[130.6135712,42.4275589],[130.6069336,42.4286919],[130.6027222,42.4288521],[130.5970612,42.4291763],[130.5926971,42.4298248],[130.5868683,42.4306335],[130.5821838,42.430954],[130.5786133,42.430954],[130.5752258,42.4317665],[130.5715027,42.4335442],[130.5692291,42.4353256],[130.5682678,42.437912],[130.5679321,42.4409866],[130.5677795,42.4439011],[130.5676117,42.446003],[130.5676117,42.4485931],[130.5676117,42.4503708],[130.5677795,42.4523125],[130.5677795,42.4536095],[130.5681,42.4547386],[130.5687561,42.4591103],[130.5692291,42.4628296],[130.570694,42.4683304],[130.571991,42.4717293],[130.5736084,42.4767456],[130.5739288,42.4793358],[130.573761,42.4811134],[130.5721436,42.4825706],[130.5702057,42.4830551],[130.566803,42.4841881],[130.5632477,42.4861298],[130.561142,42.487587],[130.558075,42.4903374],[130.5556488,42.4929237],[130.554184,42.4953537],[130.5530548,42.4981041],[130.5520782,42.5021477],[130.5511169,42.5061913],[130.5504608,42.5091057],[130.5498199,42.5120163],[130.5494995,42.5137978],[130.5491638,42.5160637],[130.5483551,42.5176811],[130.547226,42.5196228],[130.5454559,42.5217247],[130.5428619,42.5243149],[130.5415649,42.5270653],[130.5401154,42.5307884],[130.5386505,42.5332146],[130.5370331,42.5361252],[130.5357361,42.5375824],[130.5339661,42.5398483],[130.5318604,42.5432434],[130.5300751,42.5459976],[130.5283051,42.5492325],[130.5273285,42.5511742],[130.5265198,42.5534401],[130.5261993,42.555542],[130.5261993,42.5584526],[130.5261993,42.5616913],[130.5265198,42.5641174],[130.5260315,42.5663834],[130.5253906,42.568161],[130.5247345,42.569458],[130.5240936,42.5702667],[130.5234375,42.5709114],[130.5214996,42.5735016],[130.5187531,42.5757675],[130.5161591,42.5785179],[130.5148621,42.5827255],[130.514389,42.5861206],[130.5147095,42.5880623],[130.5151978,42.5914612],[130.5161591,42.594696],[130.5168152,42.5963173],[130.5181122,42.5998764],[130.5187531,42.6031113],[130.5190735,42.6060219],[130.5190735,42.6094208],[130.5184326,42.6121712],[130.5169678,42.6141129],[130.5145416,42.616539],[130.5108185,42.6192894],[130.5083923,42.6207466],[130.5043488,42.6226883],[130.5012817,42.6239853],[130.4988556,42.624794],[130.4969025,42.624794],[130.4912415,42.6238213],[130.488327,42.6228523],[130.4838104,42.6212311],[130.4771729,42.617836],[130.4736176,42.6147614],[130.4707031,42.6134682],[130.4681091,42.6113625],[130.4650421,42.6082878],[130.4635773,42.6060219],[130.461792,42.6019783],[130.4606628,42.5987434],[130.4605103,42.5956688],[130.4606628,42.5921097],[130.461792,42.589035],[130.465683,42.5830498],[130.4676208,42.5809441],[130.4715118,42.5759277],[130.4734497,42.5731773],[130.4753876,42.569458],[130.477005,42.5644417],[130.477005,42.5615273],[130.4760437,42.5574837],[130.4737701,42.5542488],[130.4707031,42.5518188],[130.4671326,42.5498772],[130.4624481,42.548584],[130.4577484,42.5471268],[130.4533844,42.5463181],[130.4485321,42.5461578],[130.4440002,42.5464821],[130.4373627,42.547451],[130.4334869,42.548748],[130.4297638,42.5511742],[130.4265289,42.5536003],[130.4244232,42.555542],[130.4221649,42.5578079],[130.4207001,42.5600739],[130.4194031,42.5634689],[130.4185944,42.5675163],[130.4181061,42.5713997],[130.4179535,42.5736618],[130.4176331,42.5749588],[130.4177856,42.5756035],[130.4184418,42.5786781],[130.4190826,42.5801353],[130.4205322,42.5824013],[130.4224854,42.5849915],[130.4244232,42.5875778],[130.4271698,42.5911369],[130.4286346,42.5925941],[130.4308929,42.5955048],[130.4333191,42.5979347],[130.4346161,42.5998764],[130.4344482,42.6024628],[130.4333191,42.6044044],[130.4302521,42.6060219],[130.4257202,42.6073189],[130.4218292,42.6081276],[130.4176331,42.6084518],[130.4142303,42.6078033],[130.4090576,42.6066704],[130.4058228,42.6055374],[130.4027405,42.6042442],[130.3972473,42.6014938],[130.392868,42.5997124],[130.3888245,42.5992279],[130.3834839,42.6002007],[130.3820343,42.6008453],[130.3792877,42.6040802],[130.377182,42.6063461],[130.3749084,42.6099052],[130.3726501,42.6145973],[130.3711853,42.6175117],[130.3694153,42.6212311],[130.3671417,42.6259232],[130.3655243,42.6281891],[130.3637543,42.6302948],[130.3608398,42.6328812],[130.3579254,42.6348228],[130.3551788,42.6362801],[130.3503113,42.638382],[130.3451385,42.6401634],[130.3399658,42.6416206],[130.3338165,42.6433983],[130.3296051,42.6445312],[130.3255615,42.646637],[130.3207092,42.6498718],[130.3169861,42.6529465],[130.3124542,42.6569901],[130.3097076,42.6599045],[130.3077698,42.6618462],[130.3059845,42.6632996],[130.3043671,42.6644325],[130.3037262,42.6654053],[130.3009644,42.6683159],[130.2985382,42.6717148],[130.2961121,42.6759224],[130.2935333,42.6801262],[130.2914276,42.6832008],[130.2894745,42.6859512],[130.2872162,42.6885414],[130.2844696,42.6912918],[130.2817078,42.6935577],[130.2783203,42.6958237],[130.275238,42.6976013],[130.2715149,42.699543],[130.2676392,42.7011604],[130.2640839,42.7024574],[130.2601929,42.7035904],[130.2574463,42.7048836],[130.2548523,42.7061768],[130.2530823,42.7069855],[130.2517853,42.7074738],[130.246933,42.7113571],[130.2445068,42.714592],[130.2420807,42.71912],[130.2406158,42.722683],[130.2393188,42.7268867],[130.2380219,42.7306099],[130.2365723,42.7356262],[130.2351227,42.7390251],[130.234314,42.7424202],[130.2338257,42.7466278],[130.2338257,42.7501869],[130.2339783,42.7527771],[130.2341461,42.7545547],[130.2344666,42.756012],[130.2346344,42.7573051],[130.2351227,42.7592468],[130.2354431,42.7615128],[130.2357635,42.7639389],[130.236084,42.7665291],[130.236084,42.7712212],[130.236084,42.7746201],[130.2362518,42.7785034],[130.2362518,42.782547],[130.2367401,42.7878876],[130.2367401,42.7916069],[130.2365723,42.7943573],[130.2359314,42.7996979],[130.2357635,42.80439],[130.2362518,42.8085976],[130.2365723,42.811348],[130.2370605,42.8129654],[130.2375488,42.8147469],[130.2378693,42.8173332],[130.238678,42.8217049],[130.2398071,42.8244553],[130.2409363,42.8268814],[130.241745,42.8286591],[130.2432098,42.830925],[130.2461243,42.8354568],[130.2475739,42.8375587],[130.2488708,42.8411179],[130.25,42.8453255],[130.2503204,42.8498573],[130.2506561,42.8540649],[130.2508087,42.8577843],[130.2522736,42.8631248],[130.2540436,42.8671684],[130.2550201,42.8686256],[130.2568054,42.8708916],[130.2593842,42.8739662],[130.2611694,42.8760681],[130.2631073,42.879303],[130.2648926,42.8820534],[130.26651,42.8877182],[130.2666626,42.893219],[130.2667999,42.8968353],[130.2667542,42.8992119],[130.2667084,42.902317],[130.2595215,42.9037323],[130.2468719,42.9048233],[130.2309113,42.9057655],[130.2155762,42.9060059],[130.1649323,42.9114532],[130.1406708,42.9075279],[130.1328125,42.9080276],[130.1198883,42.9085655],[130.1106415,42.9106445],[130.100708,42.9134178],[130.0951691,42.9201164],[130.1030273,42.9286613],[130.1182709,42.9312019],[130.1187286,42.9381332],[130.1127167,42.9427528],[130.1125336,42.9504128],[130.1126404,42.9541702],[130.1367188,42.9733467],[130.1380005,42.9823456],[130.1351318,42.9827156],[130.1302795,42.9829445],[130.1278534,42.9855042],[130.1147156,42.9917145],[130.1045074,42.9926147],[130.0692596,42.9765968],[130.0333099,42.9718513],[130.0219421,42.9679298],[130.0139618,42.9758759],[130.0098724,42.9759331],[130.006958,42.981987],[129.9968872,42.9881401],[129.9927979,42.9881973],[129.9792786,42.980114],[129.9638672,42.9780693],[129.9548035,42.9834518],[129.948349,43.0113411],[129.9391632,43.01297],[129.9248199,43.0124054],[129.9042358,43.0081673],[129.8907776,43.0023308],[129.8803406,42.9941978],[129.8791809,42.9899559],[129.8780823,42.9859619],[129.8800964,42.984436],[129.9148407,42.9817276],[129.9156952,42.9749565],[129.911499,42.9712524],[129.905304,42.9690781],[129.8683929,42.9705963],[129.8538361,42.9562149],[129.8506012,42.9494934],[129.8504639,42.9434814],[129.8614502,42.9328232],[129.8652954,42.9222527],[129.8601227,42.9200668],[129.8500061,42.9247017],[129.8438721,42.924778],[129.8396912,42.9210739],[129.8401642,42.8977737],[129.8347473,42.885067],[129.8344116,42.8707924],[129.830246,42.8670845],[129.826004,42.8603783],[129.8167572,42.8582344],[129.8093872,42.8485603],[129.809082,42.8357849],[129.8069916,42.8335571],[129.8018188,42.830616],[129.8027191,42.8253441],[129.8026276,42.8215866],[129.8025055,42.81633],[129.8003082,42.8095932],[129.8042755,42.8042831],[129.807251,42.8004913],[129.8070831,42.7934494],[129.8070374,42.7914772],[129.7935028,42.7796173],[129.7810974,42.7730026],[129.7767334,42.7602806],[129.7754669,42.7490234],[129.7606506,42.7251549],[129.7582855,42.7109032],[129.7621918,42.7033424],[129.7722321,42.6964569],[129.7914124,42.6887131],[129.7964172,42.6848946],[129.7963562,42.6818886],[129.7779694,42.6798553],[129.7727814,42.6754112],[129.7693939,42.6673431],[129.7735748,42.6528549],[129.7701416,42.6456108],[129.7625275,42.6505699],[129.7526093,42.6532364],[129.7423248,42.6459923],[129.7449799,42.6398926],[129.7518463,42.6357002],[129.7529907,42.6311264],[129.7502747,42.6253242],[129.749939,42.6174011],[129.7644348,42.6139679],[129.7731934,42.61092],[129.7728119,42.6048203],[129.7579498,42.6006241],[129.7507019,42.5960503],[129.7453613,42.5918579],[129.7360687,42.5811539],[129.7328186,42.5714226],[129.7335968,42.5608902],[129.7434692,42.547245],[129.7370148,42.5315399],[129.7365875,42.5120049],[129.7292633,42.5023232],[129.7359924,42.4849586],[129.7429352,42.4773598],[129.7427368,42.4683418],[129.7384949,42.460125],[129.7302094,42.4527054],[129.7145996,42.4348526],[129.7012787,42.4282379],[129.6790161,42.4314957],[129.6536102,42.4295235],[129.6414185,42.4289055],[129.6374359,42.4319534],[129.6257019,42.4538765],[129.6187286,42.4607124],[129.610611,42.4608002],[129.585083,42.4535522],[129.5809479,42.4490852],[129.5838928,42.4445457],[129.6020966,42.441349],[129.6051025,42.439064],[129.5975647,42.417347],[129.590332,42.4106598],[129.5700073,42.4086151],[129.5586548,42.3982086],[129.5565033,42.391468],[129.5685425,42.3845825],[129.5684814,42.3815765],[129.5491028,42.3757591],[129.5519867,42.3674622],[129.546814,42.3615036],[129.5337219,42.3661461],[129.5197449,42.3809814],[129.5151825,42.3896027],[129.5025024,42.3936615],[129.4837341,42.4129333],[129.4629517,42.4185143],[129.4528046,42.4261208],[129.4451904,42.4382935],[129.4370728,42.4388008],[129.4259186,42.4327164],[129.4086761,42.436264],[129.4023285,42.4492912],[129.3911743,42.4501381],[129.3870392,42.4456673],[129.3857727,42.4306488],[129.3755493,42.4254761],[129.3654175,42.4263153],[129.3593903,42.4301224],[129.3687592,42.4450722],[129.3668671,42.4533539],[129.3496246,42.4542503],[129.3373718,42.4490929],[129.3352356,42.4431],[129.3371735,42.4370689],[129.3561554,42.4181252],[129.3560638,42.4121132],[129.3468475,42.406929],[129.3397522,42.4069862],[129.3357391,42.4100266],[129.3319244,42.4258385],[129.3279419,42.4303818],[129.3195953,42.4300079],[129.313736,42.4297447],[129.3054962,42.4222946],[129.3083496,42.4094963],[129.2971344,42.4058304],[129.2950439,42.4013367],[129.2980347,42.3975563],[129.3121185,42.3906784],[129.3140869,42.3869057],[129.3130493,42.3846588],[129.2958221,42.3855476],[129.2896881,42.3825912],[129.2836151,42.382637],[129.2755737,42.3872108],[129.2674713,42.3880234],[129.2601624,42.3730507],[129.2470398,42.377655],[129.237915,42.3769722],[129.2276459,42.3672752],[129.224411,42.353775],[129.2333984,42.3446922],[129.2535095,42.333271],[129.2544556,42.3287544],[129.2472839,42.3227921],[129.236084,42.3191185],[129.2118378,42.3230515],[129.1986389,42.3216438],[129.1955414,42.3164062],[129.1995087,42.3103638],[129.2146606,42.307251],[129.2278748,42.3109131],[129.233902,42.3078613],[129.2277222,42.3003922],[129.205368,42.2945404],[129.199234,42.2900772],[129.2032318,42.2862892],[129.2194061,42.2846718],[129.2254333,42.28162],[129.2253723,42.2763634],[129.2212524,42.2711296],[129.2079926,42.26371],[129.18573,42.2638664],[129.1796417,42.2624054],[129.169693,42.2544594],[129.173172,42.2414322],[129.1792908,42.2353516],[129.1833191,42.2345734],[129.193573,42.2383957],[129.198349,42.2383957],[129.2015533,42.2359467],[129.1983337,42.2224426],[129.2154236,42.2155571],[129.2153473,42.2095451],[129.2092285,42.2058296],[129.1890411,42.2082291],[129.1858521,42.196228],[129.1817627,42.1932487],[129.158493,42.1911545],[129.1543732,42.1851692],[129.1571045,42.1702156],[129.157135,42.1641083],[129.1436462,42.1641388],[129.1319122,42.1637039],[129.1247406,42.1590576],[129.123703,42.1560593],[129.115509,42.1463432],[129.1058655,42.1411209],[129.094574,42.140255],[129.0819702,42.145031],[129.0772552,42.1578484],[129.0692139,42.1616554],[129.0651398,42.1586723],[129.0639648,42.1444016],[129.0609131,42.1414146],[129.04776,42.1399879],[129.0315399,42.134819],[129.0273743,42.122818],[129.0313721,42.1190376],[129.0384216,42.1174927],[129.0363617,42.1129951],[129.0251312,42.1017838],[129.0059357,42.0996361],[129.0007935,42.0906448],[128.9826202,42.0899887],[128.9634857,42.0938454],[128.9503021,42.0863953],[128.9431458,42.0766602],[128.9440918,42.0706406],[128.9520721,42.0600815],[128.9466858,42.0232849],[128.9406128,42.0210571],[128.9335785,42.0240974],[128.9275208,42.0233727],[128.9143066,42.0106583],[128.8951874,42.0130005],[128.8821564,42.0220757],[128.868042,42.0213852],[128.848938,42.0282288],[128.8338013,42.026783],[128.8177338,42.034359],[128.8026581,42.0411797],[128.7905579,42.0412254],[128.7662964,42.0322876],[128.7602692,42.0345612],[128.7442169,42.0481415],[128.7351532,42.0496712],[128.7240143,42.0436935],[128.7179108,42.0331879],[128.6986847,42.0204659],[128.677475,42.0137596],[128.6532898,42.0145721],[128.6502838,42.0168304],[128.6493225,42.0288582],[128.6412811,42.0333862],[128.6059875,42.0312042],[128.5948639,42.0237083],[128.5917816,42.0079346],[128.5816803,41.9996834],[128.5685577,41.995945],[128.5564728,41.9959679],[128.543396,42.0019951],[128.5323029,42.0005074],[128.5101166,41.9952736],[128.5000458,41.9960365],[128.473877,42.0103378],[128.4587708,42.0156097],[128.4553223,42.0162315],[128.4509888,42.0182915],[128.3450775,42.016716],[128.2742615,42.0243034],[128.1807098,42.0217743],[128.0747986,42.0213776],[128.0583954,42.011261],[128.0433655,42.0021782],[128.0307159,41.9974365],[128.031662,41.9904823],[128.052536,41.9775238],[128.0607452,41.970253],[128.0907745,41.9525528],[128.09552,41.9459114],[128.0895081,41.9199944],[128.0932922,41.9153023],[128.1044312,41.8980446],[128.1054688,41.889782],[128.0906219,41.8296165],[128.1007385,41.8123589],[128.1017914,41.7965775],[128.1078644,41.7845688],[128.118927,41.7800865],[128.1329803,41.7823715],[128.1370544,41.7650948],[128.1401367,41.7448082],[128.1573029,41.7117729],[128.162323,41.7080269],[128.1793823,41.7065544],[128.1874237,41.6998062],[128.1924591,41.6907959],[128.1974792,41.6870461],[128.2065125,41.6863098],[128.2115326,41.6780472],[128.2346039,41.6780815],[128.2476501,41.6690788],[128.2566681,41.6690903],[128.2697144,41.6623421],[128.2667236,41.6458054],[128.2717438,41.6322784],[128.277771,41.6292801],[128.2937927,41.6270409],[128.296814,41.6195259],[128.2888031,41.6142578],[128.287796,41.6089973],[128.2918091,41.6059952],[128.3078308,41.6082611],[128.309845,41.6052551],[128.306839,41.5947304],[128.3118591,41.5849648],[128.3108521,41.578949],[128.3058472,41.5744362],[128.2878418,41.5676613],[128.283844,41.5571327],[128.293869,41.5436134],[128.293869,41.539856],[128.270874,41.5285606],[128.2628937,41.5127678],[128.2409058,41.5022202],[128.2319183,41.4946938],[128.2339478,41.4796677],[128.2279816,41.4616203],[128.2320099,41.4488487],[128.2260132,41.4428253],[128.2190399,41.4405632],[128.2100677,41.430027],[128.2080994,41.4179955],[128.1991272,41.4104652],[128.1831512,41.409687],[128.173172,41.4066658],[128.1641998,41.4006348],[128.1472931,41.3818092],[128.1333313,41.3780212],[128.1273499,41.3787613],[128.1074371,41.3629303],[128.098465,41.3621559],[128.0864716,41.3666344],[128.0854492,41.3726463],[128.1043396,41.3929863],[128.1043243,41.3959923],[128.0983276,41.3982315],[128.0863495,41.396698],[128.0803833,41.3929253],[128.0774384,41.3801384],[128.0734558,41.377121],[128.069458,41.3786125],[128.0574188,41.3921089],[128.0354767,41.3890381],[128.0354462,41.3973045],[128.0383759,41.4100914],[128.0353546,41.4160957],[128.0153961,41.4115219],[128.0063477,41.4235153],[127.9943619,41.4242249],[127.9923477,41.427227],[128.0022736,41.4392853],[128.0002441,41.4445381],[127.9932632,41.4437637],[127.9853668,41.4241943],[127.9814072,41.4181671],[127.9764328,41.4166489],[127.9633408,41.434639],[127.9473267,41.4383354],[127.9452515,41.4518585],[127.9352264,41.4563255],[127.924263,41.4547806],[127.9243393,41.4412537],[127.9193573,41.4397278],[127.9173965,41.4344597],[127.9044571,41.427639],[127.8914719,41.4275856],[127.8834534,41.4320602],[127.8793716,41.4433136],[127.8733673,41.4440384],[127.8664627,41.4334869],[127.8696365,41.4079475],[127.8646774,41.4049187],[127.8556824,41.4056282],[127.8366089,41.4190674],[127.8286209,41.4190254],[127.8256607,41.4145012],[127.8196869,41.4114685],[127.8066101,41.4241791],[127.7986221,41.4241371],[127.7946472,41.4211082],[127.783783,41.4075241],[127.7836533,41.4233055],[127.7796326,41.4255409],[127.758667,41.424675],[127.7556686,41.4246597],[127.7396927,41.4245682],[127.7078171,41.4153633],[127.6838303,41.4182243],[127.6708984,41.4136353],[127.6548004,41.4248047],[127.6487885,41.4262695],[127.6448135,41.4247398],[127.6448364,41.4224854],[127.6589203,41.4128075],[127.6599579,41.4090538],[127.650032,41.4037285],[127.6400528,41.4044189],[127.6259766,41.4118385],[127.6098328,41.4267654],[127.5768967,41.4242783],[127.5498199,41.4338531],[127.5417633,41.4398079],[127.5366287,41.4502945],[127.5413437,41.4728737],[127.5413132,41.4751282],[127.5373001,41.4766045],[127.5174179,41.4681854],[127.5024033,41.4703255],[127.4963608,41.4732857],[127.4863663,41.4732056],[127.4724274,41.468586],[127.4694138,41.4708176],[127.4692764,41.480587],[127.4622726,41.4812813],[127.4573669,41.4744759],[127.4535675,41.4601631],[127.4436417,41.4548225],[127.4366531,41.4547615],[127.42659,41.459938],[127.3996506,41.4567032],[127.3945694,41.4626732],[127.3933868,41.4746857],[127.3883133,41.479908],[127.3593521,41.4781456],[127.3505707,41.4645348],[127.3436203,41.4614677],[127.3255768,41.4650574],[127.2893372,41.4804993],[127.2564011,41.4779205],[127.2463303,41.4823303],[127.2452469,41.4868279],[127.2491989,41.4898758],[127.2750778,41.4968948],[127.2829514,41.5044899],[127.2788391,41.5112114],[127.2632523,41.5137405],[127.2509537,41.5053635],[127.2320633,41.5009079],[127.2259979,41.5069656],[127.230278,41.5201569],[127.2267227,41.5215836],[127.2247086,41.5211105],[127.2126694,41.5203209],[127.2066269,41.5225143],[127.2045135,41.5292587],[127.2014694,41.5314827],[127.1944733,41.5314064],[127.183548,41.526783],[127.1725464,41.5266685],[127.1674881,41.5296211],[127.1643219,41.5386047],[127.1602936,41.5400658],[127.1404877,41.5293274],[127.1315079,41.5277252],[127.1322708,41.5405121],[127.1042709,41.5394478],[127.0982437,41.5408821],[127.0930862,41.5483437],[127.0950089,41.5528755],[127.1110306,41.5523033],[127.1150131,41.5538521],[127.1197662,41.5659294],[127.1346588,41.5728607],[127.14048,41.582695],[127.1504364,41.5858116],[127.1744537,41.5868187],[127.1784134,41.5891151],[127.17733,41.5936165],[127.1372223,41.5961914],[127.1231384,41.5997925],[127.1180573,41.6034927],[127.1187897,41.6177826],[127.1147232,41.6207466],[127.0916672,41.6212387],[127.0865707,41.6256905],[127.090477,41.6309967],[127.1013794,41.6371346],[127.1032562,41.6431656],[127.0972137,41.6453552],[127.0771637,41.6458778],[127.0690536,41.6502953],[127.0567932,41.662178],[127.0427094,41.6642685],[127.0326385,41.6664047],[127.0275192,41.6716042],[127.0333176,41.6821976],[127.0441895,41.6898422],[127.0632629,41.689312],[127.0791092,41.6992683],[127.0769806,41.7052574],[127.0539169,41.7049904],[127.0478363,41.7079277],[127.0475616,41.7214508],[127.0433273,41.731926],[127.0451965,41.7387123],[127.0431213,41.7424469],[127.0380783,41.7438889],[127.03508,41.743103],[127.0019302,41.7442093],[126.9968185,41.7486572],[127.0036087,41.7600174],[127.0034866,41.765274],[127.0004578,41.7667427],[126.9813766,41.76651],[126.9641495,41.7738113],[126.9461517,41.7705803],[126.9330597,41.7719193],[126.9278412,41.7808723],[126.9327011,41.7884521],[126.9435806,41.7961044],[126.9423828,41.8051109],[126.9202271,41.8070831],[126.9002609,41.8015633],[126.8646469,41.7770424],[126.8529968,41.7603493],[126.8447037,41.7286682],[126.8358307,41.7217827],[126.825798,41.7216454],[126.8206863,41.7253342],[126.808197,41.7439537],[126.8031464,41.745388],[126.7981873,41.7430649],[126.7945023,41.7294846],[126.796051,41.706955],[126.7962112,41.7001915],[126.7923126,41.6956253],[126.7853317,41.6940269],[126.7802811,41.6954575],[126.7700882,41.7020798],[126.750473,41.72435],[126.7484436,41.725956],[126.7437363,41.7279358],[126.7397919,41.7299118],[126.734108,41.7331276],[126.7301483,41.7358475],[126.7222366,41.7407913],[126.7180328,41.7437553],[126.7140808,41.7452393],[126.7108688,41.7464752],[126.7041931,41.7482071],[126.6999893,41.748455],[126.6955414,41.7477112],[126.6930695,41.747467],[126.6898575,41.7464752],[126.6868896,41.7452393],[126.6844177,41.7432632],[126.6826935,41.7398033],[126.6831818,41.7358475],[126.6841736,41.7333755],[126.686142,41.7304077],[126.6883698,41.7269478],[126.6903534,41.7244759],[126.6950531,41.720768],[126.6972733,41.7200241],[126.7024612,41.7180481],[126.7069092,41.7170563],[126.7120972,41.7148323],[126.7148209,41.7133484],[126.7160568,41.7118683],[126.7167969,41.7096405],[126.7160568,41.7049446],[126.7148209,41.7029686],[126.713089,41.6995049],[126.7106171,41.6960449],[126.7086411,41.693325],[126.7056732,41.691349],[126.7012329,41.6886292],[126.6994934,41.6876411],[126.6960373,41.6864052],[126.6913376,41.6844254],[126.6878662,41.6817055],[126.6854019,41.6789856],[126.6834335,41.6762695],[126.68293,41.6714134],[126.6820602,41.6693535],[126.6801071,41.6668587],[126.6770706,41.66436],[126.6727295,41.6616478],[126.6693573,41.6611061],[126.6653824,41.6611862],[126.6619186,41.6611862],[126.6588364,41.6606712],[126.6557999,41.6596947],[126.6525269,41.6582222],[126.649559,41.6569862],[126.6448593,41.6567383],[126.6399231,41.6577263],[126.6315079,41.6594582],[126.6275635,41.6609421],[126.623848,41.662426],[126.6196365,41.663662],[126.616188,41.66465],[126.6122284,41.66465],[126.608757,41.664402],[126.6035767,41.662178],[126.6025772,41.6601982],[126.6025772,41.6567383],[126.6033325,41.6525345],[126.6043167,41.6485786],[126.6050568,41.6446266],[126.6048126,41.6414108],[126.6035767,41.6381989],[126.6018372,41.6357269],[126.5998688,41.634243],[126.5973969,41.6317711],[126.5934372,41.6278152],[126.5914612,41.6258354],[126.5899811,41.6231155],[126.5880127,41.6196556],[126.5872574,41.6181717],[126.5852814,41.6164436],[126.584053,41.6156998],[126.5810776,41.6156998],[126.5781174,41.6154518],[126.5751495,41.6152077],[126.5724335,41.6147118],[126.5672379,41.6142159],[126.56427,41.6137238],[126.5595703,41.6124878],[126.5583267,41.6102638],[126.5583267,41.608532],[126.5593338,41.6065559],[126.561058,41.6035881],[126.5620422,41.6013641],[126.5632782,41.5951805],[126.5640335,41.5914726],[126.5660019,41.5857887],[126.568222,41.5815849],[126.569458,41.579113],[126.5716934,41.576889],[126.5744019,41.5744171],[126.5763931,41.5724373],[126.5786133,41.5699654],[126.5798416,41.5670013],[126.5800934,41.5650215],[126.5798416,41.5598297],[126.5788574,41.5578537],[126.5761337,41.5548859],[126.5736618,41.5519218],[126.5702133,41.5496941],[126.5672379,41.5474701],[126.5632782,41.5442581],[126.560318,41.5407944],[126.5585938,41.5383224],[126.5568466,41.5348625],[126.5560226,41.5333328],[126.5553665,41.5321426],[126.5543823,41.5289307],[126.5536423,41.5254669],[126.5519104,41.5202751],[126.5514069,41.5178032],[126.5509186,41.5160751],[126.5501785,41.5131073],[126.5486984,41.5103874],[126.5474625,41.5061874],[126.5467072,41.5024757],[126.5464706,41.4975319],[126.5467072,41.4943199],[126.5467072,41.4903641],[126.5464706,41.4881401],[126.5452271,41.4856682],[126.5420227,41.4829483],[126.5383072,41.4804764],[126.5355911,41.4784966],[126.5323792,41.4752846],[126.5306473,41.4735527],[126.528183,41.4715767],[126.5257034,41.4688568],[126.5222473,41.464901],[126.5210037,41.463665],[126.5182877,41.4599571],[126.5158234,41.4562492],[126.5138397,41.4535294],[126.512352,41.4510574],[126.5086365,41.4461136],[126.5071564,41.4446297],[126.5056763,41.4426537],[126.5031967,41.4394379],[126.5022202,41.4374619],[126.5007324,41.434494],[126.5002365,41.4293022],[126.5012283,41.4263344],[126.5019684,41.4216385],[126.5022202,41.4186707],[126.5027237,41.4159546],[126.5027237,41.4110069],[126.5027237,41.4095268],[126.5027237,41.4080429],[126.5022202,41.405571],[126.5017166,41.4040871],[126.5012283,41.4016151],[126.5017166,41.3986473],[126.5022202,41.3946915],[126.5034637,41.3914795],[126.5049362,41.3882637],[126.5074081,41.3848038],[126.5093918,41.3828278],[126.5113678,41.3813438],[126.5133438,41.3801079],[126.5144577,41.3794327],[126.52771,41.3698769],[126.5309982,41.3594055],[126.525177,41.3532944],[126.511322,41.349308],[126.4794464,41.3472748],[126.4764023,41.3494797],[126.4782867,41.3532715],[126.4988632,41.366394],[126.4986877,41.372406],[126.4956436,41.3746109],[126.4816895,41.3736267],[126.4601364,41.3597298],[126.4334717,41.3502541],[126.431633,41.3449593],[126.4349823,41.3329887],[126.4310837,41.3299141],[126.411171,41.3288193],[126.4032822,41.3256721],[126.3889236,41.3058777],[126.3607864,41.2805672],[126.3489304,41.2450218],[126.3165436,41.2294006],[126.3054428,41.2028847],[126.29776,41.1937218],[126.282959,41.1896896],[126.2845764,41.1701736],[126.2809067,41.1603279],[126.2751083,41.1549606],[126.2593689,41.1494026],[126.2326279,41.1458893],[126.2193069,41.127594],[126.1996078,41.1219521],[126.1830902,41.1103554],[126.1822205,41.1065788],[126.1628113,41.0926666],[126.1451111,41.0870552],[126.1351471,41.0876083],[126.1162262,41.0887337],[126.1094131,41.0848351],[126.1075821,41.0802879],[126.1098785,41.071312],[126.1230392,41.0640564],[126.1272202,41.0581284],[126.1275787,41.0476074],[126.121048,41.03545],[126.1151962,41.0323257],[126.1072464,41.0321655],[126.0921326,41.0386276],[126.0861816,41.0385056],[126.083313,41.0354385],[126.0876465,41.0250015],[126.1001511,41.0079613],[126.0983963,41.0011635],[126.0895767,40.9979782],[126.0684586,41.0058136],[126.0615768,41.0041695],[126.0577621,40.9995804],[126.0621033,40.9891434],[126.0743866,40.9781189],[126.0736923,40.9698334],[126.064003,40.9636192],[126.060051,40.9627876],[126.0531235,40.9626465],[126.046257,40.960247],[126.045723,40.9474525],[126.0303726,40.9328499],[126.0235367,40.9296989],[126.0136414,40.929493],[126.000267,40.9352989],[125.9917068,40.9327888],[125.971817,40.9256325],[125.9661636,40.917244],[125.9727173,40.9114075],[125.9838562,40.9130478],[125.9931564,40.9196129],[126.0000763,40.9227142],[126.0095673,40.918335],[126.0183563,40.9085388],[126.0186234,40.9010277],[126.0148468,40.8988228],[126.0114975,40.8980598],[126.0093918,40.8975792],[126.007431,40.8973351],[126.0047531,40.8970909],[126.0024719,40.8964119],[126.0001602,40.8955307],[125.9974136,40.8943176],[125.9942398,40.8936691],[125.9908066,40.8927765],[125.9883881,40.8925591],[125.98629,40.8928871],[125.9847488,40.8937683],[125.9827576,40.8951378],[125.9788513,40.8970909],[125.9756775,40.8985558],[125.9722519,40.8995323],[125.9683533,40.9000206],[125.9654236,40.8995323],[125.9627304,40.8978233],[125.9612579,40.8961143],[125.9605331,40.893425],[125.959549,40.8907394],[125.9583282,40.8863411],[125.9571075,40.8829231],[125.9549103,40.8804779],[125.9514923,40.8780365],[125.9480667,40.8768158],[125.9441605,40.8765678],[125.9385529,40.8768158],[125.9334106,40.8770599],[125.9280396,40.8775482],[125.9246063,40.8782806],[125.919487,40.8792572],[125.9158173,40.8804779],[125.9110565,40.8836784],[125.9081879,40.8865509],[125.9069138,40.8894234],[125.9067535,40.8929329],[125.907547,40.8964386],[125.9092331,40.8992882],[125.9099579,40.9029541],[125.9094696,40.9053955],[125.9078827,40.9079247],[125.9053192,40.9082451],[125.9029236,40.9060097],[125.9011612,40.90271],[125.8982315,40.9012451],[125.8962784,40.9005127],[125.8935928,40.9007568],[125.8906631,40.9017334],[125.8877335,40.90271],[125.8840637,40.9039307],[125.8799133,40.9051514],[125.8757629,40.9061279],[125.8728333,40.9058838],[125.8703766,40.9044189],[125.868187,40.9019775],[125.8669586,40.8980675],[125.8654938,40.8948936],[125.8640289,40.8926926],[125.8623199,40.8892746],[125.8596268,40.8865852],[125.8554764,40.8831673],[125.8523026,40.8812103],[125.8491287,40.8790131],[125.846199,40.8777924],[125.8439865,40.8773041],[125.8395996,40.8764992],[125.8339767,40.8738823],[125.8298569,40.8717155],[125.8251877,40.8687515],[125.822258,40.8665543],[125.8178635,40.8648415],[125.8127975,40.8638992],[125.8083267,40.8640594],[125.8037033,40.8650169],[125.8000336,40.8677254],[125.7971573,40.8723526],[125.7970963,40.8775482],[125.7948914,40.8814545],[125.79245,40.8834114],[125.7887878,40.886097],[125.7851181,40.8885384],[125.7818527,40.8908577],[125.779007,40.8919601],[125.7765732,40.8924484],[125.7725983,40.8929329],[125.7692413,40.8922043],[125.7653427,40.8890305],[125.7619171,40.8865852],[125.7592163,40.8841438],[125.7560501,40.8804779],[125.752388,40.8770599],[125.7484665,40.8736382],[125.7443237,40.8711967],[125.7401733,40.8689957],[125.7338181,40.8672867],[125.7289429,40.8667984],[125.7235565,40.866066],[125.7162323,40.8648415],[125.7113419,40.8631325],[125.7071915,40.8609352],[125.7062836,40.8599548],[125.7060471,40.8597069],[125.6996231,40.8734512],[125.6998291,40.878212],[125.696312,40.8844185],[125.6840973,40.8933182],[125.6733398,40.8993187],[125.6644363,40.9069786],[125.6536026,40.9177017],[125.6143036,40.908699],[125.5940399,40.8888321],[125.5703201,40.8877449],[125.5613327,40.8990021],[125.5789032,40.9226875],[125.6355362,40.9491882],[125.6431732,40.976593],[125.6680222,40.973011],[125.6719131,41.0189896],[125.6986237,41.0323067],[125.7280884,41.0721283],[125.7229919,41.0893974],[125.6974182,41.0955544],[125.7002335,41.102993],[125.7459335,41.1272583],[125.7609787,41.1485291],[125.7864075,41.1602859],[125.7874069,41.1710358],[125.7305603,41.1848145],[125.7457809,41.2375565],[125.6884232,41.2465134],[125.6639328,41.2751198],[125.6359177,41.2687492],[125.6369171,41.3031616],[125.6184464,41.3247833],[125.6345367,41.3340683],[125.5969772,41.360569],[125.5709763,41.3667145],[125.5648193,41.3897667],[125.5429764,41.3982239],[125.5195389,41.4262772],[125.5309601,41.4652176],[125.5035477,41.4868088],[125.4862823,41.5195999],[125.4935684,41.5327911],[125.4725723,41.5444031],[125.4528198,41.5736351],[125.449173,41.5794907],[125.4439163,41.5886688],[125.4386063,41.5998344],[125.4393311,41.610302],[125.4521332,41.6246681],[125.4498215,41.636528],[125.4445724,41.6457062],[125.4432602,41.652916],[125.447197,41.6627502],[125.446022,41.6699944],[125.42556,41.6732407],[125.4137573,41.6745529],[125.4045868,41.6804504],[125.3953781,41.6867218],[125.377037,41.6843834],[125.3652496,41.6843834],[125.3547592,41.679142],[125.3468933,41.6771736],[125.337059,41.6719284],[125.3255386,41.6733437],[125.3167267,41.6856956],[125.3167267,41.6948738],[125.3200073,41.6988068],[125.3226318,41.7047081],[125.3239365,41.7086411],[125.3239365,41.7145424],[125.3246002,41.7191315],[125.3193588,41.7256889],[125.3252563,41.7296219],[125.3291931,41.7368317],[125.3272171,41.7401123],[125.3272171,41.7479782],[125.3304977,41.7538795],[125.3357468,41.7597771],[125.3304977,41.7630577],[125.3304977,41.7682991],[125.3246002,41.7669907],[125.3160782,41.7722359],[125.3147736,41.7781334],[125.3082123,41.7840347],[125.3062363,41.7932129],[125.2970734,41.7971458],[125.2950974,41.8122253],[125.2885284,41.8188782],[125.2885284,41.8290215],[125.2846222,41.8391647],[125.2861862,41.8532104],[125.2924271,41.8610115],[125.2872314,41.8692627],[125.2859192,41.875164],[125.2878876,41.8823738],[125.2937927,41.8908958],[125.293129,41.9007301],[125.2993164,41.9100304],[125.3055878,41.9151535],[125.3141098,41.9203987],[125.3319931,41.9282188],[125.284523,41.955986],[125.2875671,41.966404],[125.3158112,41.9724045],[125.3528214,42.0011749],[125.4037476,42.0545235],[125.4029007,42.0938454],[125.4412613,42.0984077],[125.4768219,42.1267509],[125.4794693,42.1390266],[125.4452133,42.1565552],[125.4109268,42.1462822],[125.3740463,42.1728745],[125.3538666,42.1752243],[125.3338089,42.1472511],[125.3025131,42.1388702],[125.2920837,42.1575089],[125.3057022,42.1791382],[125.2627335,42.2647781],[125.2844391,42.2832756],[125.2526093,42.3125648],[125.1927338,42.3002129],[125.1654129,42.3102112],[125.1540375,42.3477097],[125.1873703,42.3934708],[125.1647186,42.4296532],[125.1293182,42.440239],[125.1338196,42.4567986],[125.1006088,42.478756],[125.0717468,42.4975204],[125.0816879,42.5085487],[125.05867,42.5378342],[125.0837173,42.5697632],[125.0892563,42.6099243],[125.0713425,42.622448],[125.0373764,42.6143379],[125.0136108,42.6165504],[125.0034027,42.6585655],[124.9693069,42.6754646],[124.9815369,42.6916809],[124.9630127,42.7237282],[124.9830322,42.7285767],[124.9721985,42.7559204],[124.9850693,42.7645302],[124.9669189,42.7940331],[124.9148636,42.8135452],[124.890213,42.7866135],[124.8602676,42.7904434],[124.8426819,42.8625946],[124.8575134,42.961113],[124.8386765,43.0147171],[124.8382187,43.0321846],[124.8582764,43.0332184],[124.8606186,43.0498085],[124.8833771,43.0678749],[124.8823166,43.1278267],[124.7825165,43.1109924],[124.7231369,43.0616302],[124.6863937,43.056282],[124.6803207,43.0266991],[124.6434174,42.9664955],[124.6186218,42.9613228],[124.5817871,42.9089012],[124.533699,42.8762016],[124.4656906,42.8559875],[124.4527893,42.8199348],[124.4370575,42.8612556],[124.3771515,42.8744049],[124.3565292,42.8912697],[124.3660431,42.906044],[124.4112625,42.9221725],[124.4314575,42.9459267],[124.4181137,42.9682541],[124.3661804,42.9679947],[124.331543,42.994812],[124.3385468,43.0094528],[124.4133301,43.0645866],[124.4104767,43.0768623],[124.2842331,43.1590729],[124.2772598,43.214859],[124.2579422,43.2250328],[124.2060318,43.2595291],[124.1586838,43.238121],[124.1137772,43.2471161],[124.0989532,43.2825279],[124.0797729,43.291256],[124.015152,43.2837219],[123.9612198,43.3321991],[123.8978195,43.3624001],[123.8840332,43.3869591],[123.8515472,43.4052811],[123.8523102,43.4602928],[123.7893829,43.4906425],[123.7682571,43.4759865],[123.7155609,43.434864],[123.7049637,43.3815536],[123.6901932,43.3767662],[123.5821686,43.3694954],[123.505867,43.4244232],[123.4786072,43.4688416],[123.4307709,43.4212532],[123.3904266,43.4584808],[123.3211136,43.4910545],[123.3220215,43.5568275],[123.3708725,43.561554],[123.4267731,43.5465622],[123.4316788,43.5533295],[123.4446182,43.565731],[123.4177475,43.5809975],[123.4103394,43.6000214],[123.4513931,43.5843201],[123.4860535,43.5885201],[123.5020676,43.6295204],[123.525032,43.6384315],[123.531311,43.6483192],[123.5140228,43.707325],[123.4958115,43.7360878],[123.4604187,43.7527733],[123.4788666,43.7755852],[123.4714966,43.8005714],[123.4671707,43.8396759],[123.4735336,43.8559837],[123.3400726,44.0294113],[123.3263321,44.0603256],[123.3219376,44.0733147],[123.3502579,44.0836983],[123.3553009,44.1313362],[123.3801498,44.1581459],[123.2975769,44.1871796],[123.2720871,44.2481842],[123.2091827,44.3270302],[123.169693,44.3532982],[123.1339264,44.3558083],[123.1192169,44.4221878],[123.1369705,44.5171432],[123.1006317,44.5134544],[123.0649033,44.4992447],[123.0172577,44.5006409],[122.8665237,44.4004784],[122.7592697,44.372673],[122.7345428,44.3484688],[122.6916428,44.3346977],[122.6720123,44.3114815],[122.5958862,44.2932053],[122.5671234,44.2688866],[122.4792786,44.2336121],[122.4300079,44.2244225],[122.3479919,44.2319412],[122.2625427,44.2612991],[122.2844467,44.2944794],[122.2916031,44.3392525],[122.2888565,44.4652863],[122.2287064,44.4681435],[122.2155685,44.4770164],[122.2042465,44.5424576],[122.1679382,44.5698204],[122.1132584,44.5763969],[122.1190033,44.599411],[122.0933914,44.6366043],[122.0989838,44.7003555],[122.1213837,44.7239723],[122.0830917,44.7338753],[122.0784225,44.7452126],[122.0963898,44.7602654],[122.1424103,44.7500687],[122.1622467,44.7745323],[122.0977173,44.7815781],[122.0837631,44.8000374],[122.0850601,44.8291321],[122.0325165,44.8757782],[122.0277634,44.8960419],[122.0814133,44.9132805],[122.0853577,45.0223198],[122.1113586,45.0624924],[122.1136093,45.1527252],[122.158989,45.1880493],[122.1862717,45.1854324],[122.231987,45.2221031],[122.2334595,45.2651634],[122.1456528,45.2960205],[122.1378403,45.3574219],[122.1658325,45.4012871],[122.1616669,45.4302673],[122.0753098,45.4734688],[122.0147781,45.4890442],[121.9873428,45.541523],[121.960762,45.567234],[121.9619827,45.5901527],[121.9968872,45.6390228],[121.9727173,45.6613579],[121.9663467,45.6932602],[121.9461594,45.706295],[121.8477173,45.716095],[121.8171234,45.7075691],[121.787178,45.6857719],[121.7229233,45.6848526],[121.7107468,45.7058372],[121.6699829,45.7176132],[121.6544724,45.7396507],[121.625267,45.7544594],[121.6316605,45.7635536],[121.6825333,45.7596016],[121.7094269,45.7705879],[121.7440109,45.7913742],[121.7524033,45.8133316],[121.765213,45.8189163],[121.7632828,45.8378677],[121.8060837,45.8792114],[121.8001938,45.8992119],[121.8198929,45.9251022],[121.8191223,45.9472885],[121.7734528,45.9951553],[121.7792206,46.0044556],[121.8380585,46.023056],[121.8644409,46.0003433],[121.899353,46.0050621],[121.9534531,45.9781685],[121.9913025,45.9897957],[121.9983978,45.9638634],[122.0607376,45.9268112],[122.0887375,45.8791313],[122.1526031,45.8640404],[122.1676407,45.8414726],[122.2058487,45.820076],[122.2186508,45.8267555],[122.226181,45.8108864],[122.2461319,45.8030624],[122.2940521,45.8230362],[122.319252,45.8638191],[122.3491287,45.8616676],[122.3606033,45.8694458],[122.3675385,45.9098587],[122.414711,45.9100838],[122.4778366,45.8689346],[122.5152817,45.7938728],[122.5572586,45.7628212],[122.6791687,45.7228317],[122.681282,45.6986084],[122.710968,45.6892624],[122.7176895,45.7131729],[122.7461166,45.7427025],[122.8029938,45.7831993],[122.8030167,45.8346863],[122.8208771,45.8811874],[122.8138275,45.9129524],[122.7799377,46.0674973],[123.0383377,46.0971565],[123.0559921,46.125309],[123.0954285,46.1262894],[123.0975266,46.1713905],[123.1217422,46.1771927],[123.1252975,46.2184219],[123.1704178,46.2320328],[123.1710434,46.2466812]]]]},
  23 +"properties":{
  24 +"gid":4,
  25 +"name":"吉林省"}
  26 +},
  27 +{"type":"Feature",
  28 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.6901932,43.3767662],[123.7049637,43.3815536],[123.7155609,43.434864],[123.7682571,43.4759865],[123.7893829,43.4906425],[123.8523102,43.4602928],[123.8515472,43.4052811],[123.8840332,43.3869591],[123.8978195,43.3624001],[123.9612198,43.3321991],[124.015152,43.2837219],[124.0797729,43.291256],[124.0989532,43.2825279],[124.1137772,43.2471161],[124.1586838,43.238121],[124.2060318,43.2595291],[124.2579422,43.2250328],[124.2772598,43.214859],[124.2842331,43.1590729],[124.4104767,43.0768623],[124.4133301,43.0645866],[124.3385468,43.0094528],[124.331543,42.994812],[124.3661804,42.9679947],[124.4181137,42.9682541],[124.4314575,42.9459267],[124.4112625,42.9221725],[124.3660431,42.906044],[124.3565292,42.8912697],[124.3771515,42.8744049],[124.4370575,42.8612556],[124.4527893,42.8199348],[124.4656906,42.8559875],[124.533699,42.8762016],[124.5817871,42.9089012],[124.6186218,42.9613228],[124.6434174,42.9664955],[124.6803207,43.0266991],[124.6863937,43.056282],[124.7231369,43.0616302],[124.7825165,43.1109924],[124.8823166,43.1278267],[124.8833771,43.0678749],[124.8606186,43.0498085],[124.8582764,43.0332184],[124.8382187,43.0321846],[124.8386765,43.0147171],[124.8575134,42.961113],[124.8426819,42.8625946],[124.8602676,42.7904434],[124.890213,42.7866135],[124.9148636,42.8135452],[124.9669189,42.7940331],[124.9850693,42.7645302],[124.9721985,42.7559204],[124.9830322,42.7285767],[124.9630127,42.7237282],[124.9815369,42.6916809],[124.9693069,42.6754646],[125.0034027,42.6585655],[125.0136108,42.6165504],[125.0373764,42.6143379],[125.0713425,42.622448],[125.0892563,42.6099243],[125.0837173,42.5697632],[125.05867,42.5378342],[125.0816879,42.5085487],[125.0717468,42.4975204],[125.1006088,42.478756],[125.1338196,42.4567986],[125.1293182,42.440239],[125.1647186,42.4296532],[125.1873703,42.3934708],[125.1540375,42.3477097],[125.1654129,42.3102112],[125.1927338,42.3002129],[125.2526093,42.3125648],[125.2844391,42.2832756],[125.2627335,42.2647781],[125.3057022,42.1791382],[125.2920837,42.1575089],[125.3025131,42.1388702],[125.3338089,42.1472511],[125.3538666,42.1752243],[125.3740463,42.1728745],[125.4109268,42.1462822],[125.4452133,42.1565552],[125.4794693,42.1390266],[125.4768219,42.1267509],[125.4412613,42.0984077],[125.4029007,42.0938454],[125.4037476,42.0545235],[125.3528214,42.0011749],[125.3158112,41.9724045],[125.2875671,41.966404],[125.284523,41.955986],[125.3319931,41.9282188],[125.3141098,41.9203987],[125.3055878,41.9151535],[125.2993164,41.9100304],[125.293129,41.9007301],[125.2937927,41.8908958],[125.2878876,41.8823738],[125.2859192,41.875164],[125.2872314,41.8692627],[125.2924271,41.8610115],[125.2861862,41.8532104],[125.2846222,41.8391647],[125.2885284,41.8290215],[125.2885284,41.8188782],[125.2950974,41.8122253],[125.2970734,41.7971458],[125.3062363,41.7932129],[125.3082123,41.7840347],[125.3147736,41.7781334],[125.3160782,41.7722359],[125.3246002,41.7669907],[125.3304977,41.7682991],[125.3304977,41.7630577],[125.3357468,41.7597771],[125.3304977,41.7538795],[125.3272171,41.7479782],[125.3272171,41.7401123],[125.3291931,41.7368317],[125.3252563,41.7296219],[125.3193588,41.7256889],[125.3246002,41.7191315],[125.3239365,41.7145424],[125.3239365,41.7086411],[125.3226318,41.7047081],[125.3200073,41.6988068],[125.3167267,41.6948738],[125.3167267,41.6856956],[125.3255386,41.6733437],[125.337059,41.6719284],[125.3468933,41.6771736],[125.3547592,41.679142],[125.3652496,41.6843834],[125.377037,41.6843834],[125.3953781,41.6867218],[125.4045868,41.6804504],[125.4137573,41.6745529],[125.42556,41.6732407],[125.446022,41.6699944],[125.447197,41.6627502],[125.4432602,41.652916],[125.4445724,41.6457062],[125.4498215,41.636528],[125.4521332,41.6246681],[125.4393311,41.610302],[125.4386063,41.5998344],[125.4439163,41.5886688],[125.449173,41.5794907],[125.4528198,41.5736351],[125.4725723,41.5444031],[125.4935684,41.5327911],[125.4862823,41.5195999],[125.5035477,41.4868088],[125.5309601,41.4652176],[125.5195389,41.4262772],[125.5429764,41.3982239],[125.5648193,41.3897667],[125.5709763,41.3667145],[125.5969772,41.360569],[125.6345367,41.3340683],[125.6184464,41.3247833],[125.6369171,41.3031616],[125.6359177,41.2687492],[125.6639328,41.2751198],[125.6884232,41.2465134],[125.7457809,41.2375565],[125.7305603,41.1848145],[125.7874069,41.1710358],[125.7864075,41.1602859],[125.7609787,41.1485291],[125.7459335,41.1272583],[125.7002335,41.102993],[125.6974182,41.0955544],[125.7229919,41.0893974],[125.7280884,41.0721283],[125.6986237,41.0323067],[125.6719131,41.0189896],[125.6680222,40.973011],[125.6431732,40.976593],[125.6355362,40.9491882],[125.5789032,40.9226875],[125.5613327,40.8990021],[125.5703201,40.8877449],[125.5940399,40.8888321],[125.6143036,40.908699],[125.6536026,40.9177017],[125.6644363,40.9069786],[125.6733398,40.8993187],[125.6840973,40.8933182],[125.696312,40.8844185],[125.6998291,40.878212],[125.6996231,40.8734512],[125.7060471,40.8597069],[125.7042618,40.8577576],[125.6986389,40.8536072],[125.693512,40.8496971],[125.6898422,40.8467636],[125.6854477,40.8431015],[125.6785965,40.8396797],[125.6756668,40.8374825],[125.6727371,40.8350372],[125.6687393,40.8329582],[125.664711,40.8306885],[125.6617508,40.8286858],[125.6544189,40.8252678],[125.6490479,40.8230667],[125.6444092,40.8208694],[125.6412277,40.8194046],[125.639267,40.8176918],[125.6363373,40.8154945],[125.6358566,40.8132973],[125.6358566,40.8113403],[125.6358566,40.8067017],[125.6365891,40.801815],[125.6380463,40.7974167],[125.6412277,40.7947311],[125.6446533,40.7937508],[125.651001,40.7925301],[125.6556473,40.7920418],[125.6595535,40.7905769],[125.6627274,40.7896004],[125.6673737,40.7878876],[125.6710434,40.786911],[125.6756668,40.785202],[125.6798172,40.7823296],[125.6817932,40.7781181],[125.6822662,40.7742081],[125.6820297,40.7695656],[125.6793365,40.7654152],[125.674942,40.7644348],[125.6703033,40.7632141],[125.6644363,40.76297],[125.6561432,40.76297],[125.6507568,40.7632141],[125.6436691,40.7634583],[125.638298,40.7627258],[125.6316986,40.7617493],[125.6280365,40.7610168],[125.623642,40.7602844],[125.6202164,40.759552],[125.6160736,40.7588158],[125.6099625,40.7588158],[125.6055603,40.759552],[125.6021423,40.7597961],[125.5987167,40.7607727],[125.597023,40.7615051],[125.5916672,40.7626839],[125.5876389,40.7659569],[125.5843582,40.7725067],[125.5808334,40.7760315],[125.5755463,40.7770386],[125.5682373,40.7752762],[125.5623169,40.7732315],[125.5559692,40.7705421],[125.5535278,40.7681007],[125.5483475,40.7624321],[125.5460663,40.7573929],[125.5458221,40.752861],[125.5458221,40.7483253],[125.5454636,40.7422066],[125.5430222,40.7358551],[125.5395966,40.7304802],[125.5364227,40.7268143],[125.5325165,40.7231483],[125.527153,40.7207069],[125.5212784,40.7185097],[125.5149307,40.7172852],[125.5075989,40.717041],[125.4997787,40.7177773],[125.4941864,40.7191086],[125.4876404,40.7198639],[125.4808426,40.7193604],[125.4753036,40.7173462],[125.4702225,40.7141113],[125.4672928,40.7119141],[125.4638672,40.7092247],[125.4604492,40.7060509],[125.4580078,40.7038498],[125.4553223,40.7011642],[125.4533615,40.6984749],[125.4518967,40.6962776],[125.4511566,40.6940804],[125.4504318,40.6904144],[125.4504318,40.6879692],[125.4501877,40.6857719],[125.4504318,40.6838188],[125.4501877,40.6806412],[125.448967,40.6759987],[125.4457932,40.6723366],[125.4423676,40.6701355],[125.4355316,40.6691589],[125.4272232,40.6701355],[125.4228287,40.6711159],[125.4172134,40.6716042],[125.4115906,40.6696472],[125.4093933,40.6681824],[125.4067001,40.6640282],[125.4059677,40.6601219],[125.4067001,40.6540146],[125.4076767,40.6510811],[125.4096375,40.6461945],[125.4111023,40.6417999],[125.4125671,40.638134],[125.414032,40.6344681],[125.4135437,40.6315384],[125.4120789,40.6293411],[125.4093933,40.628849],[125.4042587,40.6283607],[125.4008408,40.6281166],[125.3957138,40.6283607],[125.3910675,40.628849],[125.388382,40.6303177],[125.3859406,40.6317825],[125.3834915,40.6334915],[125.3805618,40.6366692],[125.377388,40.6405754],[125.3749466,40.6442413],[125.371521,40.647419],[125.3678589,40.6479073],[125.3602829,40.647419],[125.3571091,40.6471748],[125.3546677,40.6466827],[125.3505173,40.645462],[125.3473434,40.6442413],[125.3439178,40.6430206],[125.3402863,40.6420364],[125.3347473,40.6390114],[125.3292236,40.6369972],[125.3239212,40.6375008],[125.3188934,40.6397667],[125.3143616,40.6432648],[125.3094711,40.645462],[125.3038635,40.6476631],[125.2989731,40.6488838],[125.2938385,40.6498604],[125.2896805,40.6505928],[125.283577,40.6518135],[125.2781982,40.6513252],[125.2747803,40.6508369],[125.2713623,40.6498604],[125.2686768,40.6483955],[125.2655029,40.6447296],[125.264267,40.6405754],[125.2647629,40.6371574],[125.265007,40.6342239],[125.2657394,40.6310501],[125.2652512,40.6259193],[125.263298,40.6227417],[125.2606125,40.6195679],[125.2554932,40.6163902],[125.2506027,40.614193],[125.2457123,40.612484],[125.2410736,40.6107712],[125.2337418,40.6095505],[125.2266464,40.6095505],[125.2205505,40.6097946],[125.2171173,40.6100388],[125.211998,40.6088181],[125.2063828,40.6071091],[125.1995392,40.604908],[125.1939163,40.6027107],[125.1853714,40.6000252],[125.1812134,40.5985565],[125.1734009,40.5968475],[125.1672897,40.5951385],[125.1606979,40.5931816],[125.1540985,40.5907402],[125.1509171,40.5890312],[125.1470108,40.586586],[125.1426163,40.5843887],[125.1396866,40.5829239],[125.1352768,40.5809669],[125.1325989,40.5785255],[125.1306534,40.5768166],[125.1277237,40.5746155],[125.1262512,40.5738831],[125.1215973,40.5707092],[125.118187,40.568264],[125.1132965,40.5646019],[125.1069489,40.560936],[125.1020737,40.5587387],[125.0957108,40.5562935],[125.0893631,40.5545845],[125.0827637,40.5523834],[125.0746994,40.5506744],[125.0666428,40.5484772],[125.0595627,40.5465202],[125.0531998,40.544323],[125.0475769,40.5423698],[125.0385437,40.5391922],[125.0322037,40.5357742],[125.0231628,40.5318642],[125.0182571,40.5296669],[125.013382,40.5272217],[125.0082626,40.5247803],[125.0036087,40.5220909],[125.0011673,40.5196495],[124.99897,40.5164719],[124.997261,40.5130539],[124.9960403,40.5098763],[124.9957962,40.5071907],[124.9957962,40.5042572],[124.9975128,40.5018158],[125.0011673,40.4988823],[125.0048294,40.4969292],[125.0097198,40.4959526],[125.0146027,40.494976],[125.0241318,40.4930191],[125.0282822,40.4920425],[125.0331726,40.4898453],[125.038063,40.4866676],[125.040741,40.4832497],[125.0422134,40.4781189],[125.0422134,40.4720116],[125.0402527,40.4644394],[125.0351334,40.4602852],[125.0302429,40.4583321],[125.0248566,40.4568634],[125.0197372,40.456131],[125.0165634,40.4558868],[125.0143585,40.4558868],[125.0121689,40.4566994],[125.0073929,40.458004],[125.0000229,40.4597397],[124.9935074,40.4619102],[124.9859085,40.4644623],[124.9806137,40.4652176],[124.9738235,40.4649658],[124.9657593,40.4629517],[124.9602127,40.4611893],[124.955307,40.4588699],[124.9498901,40.4571571],[124.9448929,40.4545288],[124.9396896,40.453228],[124.9349136,40.4527931],[124.9305725,40.4523621],[124.9192886,40.4527931],[124.9149475,40.4536629],[124.9106064,40.4545288],[124.9058304,40.4562683],[124.9027863,40.458004],[124.9014969,40.4597397],[124.9001923,40.4640808],[124.9001923,40.4675522],[124.8997574,40.4710236],[124.8993225,40.4749298],[124.8988876,40.4779663],[124.8967209,40.4788361],[124.8941116,40.4788361],[124.8910828,40.4779663],[124.8880386,40.4762306],[124.884903,40.473278],[124.8816299,40.470005],[124.8776016,40.4644623],[124.8748322,40.4591751],[124.8718109,40.455143],[124.8693771,40.4506226],[124.8667679,40.4458504],[124.8637466,40.4417953],[124.8602219,40.4372597],[124.8564529,40.4332314],[124.8507233,40.4284897],[124.8429031,40.4232826],[124.8381271,40.4202423],[124.8324814,40.4159012],[124.8264694,40.4123268],[124.8214264,40.4080429],[124.8171463,40.4045181],[124.8077469,40.3989754],[124.7942886,40.3937683],[124.786911,40.3924675],[124.7825699,40.3915977],[124.7773666,40.3894272],[124.7673798,40.384655],[124.7552338,40.3807487],[124.749588,40.3790092],[124.7452469,40.3768425],[124.7375565,40.3737869],[124.7327728,40.3677444],[124.7297516,40.3619499],[124.7283173,40.3551407],[124.7274475,40.3499298],[124.7274475,40.3447227],[124.726593,40.3382149],[124.7262268,40.3342438],[124.7262268,40.3309708],[124.7257233,40.3284492],[124.7242126,40.325428],[124.7213669,40.322155],[124.7157364,40.3186836],[124.7098465,40.3161087],[124.7030487,40.3130875],[124.6967468,40.3105659],[124.6892014,40.3077965],[124.6824036,40.3055305],[124.6748428,40.3030128],[124.6662827,40.3004913],[124.6574631,40.2984772],[124.6499023,40.2969666],[124.6430969,40.2952042],[124.6365585,40.2941971],[124.631012,40.2929382],[124.625473,40.2921791],[124.6194305,40.2901649],[124.6143875,40.2871437],[124.6101074,40.2841225],[124.6063309,40.2808456],[124.6020203,40.2774506],[124.5977707,40.2748032],[124.5920334,40.2709389],[124.5903015,40.2696381],[124.588562,40.2679024],[124.5850906,40.2639961],[124.5833588,40.2609558],[124.5820465,40.2570496],[124.5816193,40.2535782],[124.5807495,40.2496719],[124.5790176,40.2462006],[124.5759811,40.2435951],[124.5725021,40.2405586],[124.5677338,40.2370872],[124.5629578,40.2340469],[124.5581818,40.2301407],[124.5534134,40.2266693],[124.5494995,40.2240677],[124.5447311,40.2210274],[124.5399628,40.2188568],[124.5351791,40.2171211],[124.5286713,40.2145157],[124.5234604,40.2119141],[124.5173874,40.2093086],[124.5126114,40.2075729],[124.5074005,40.2062721],[124.5039291,40.2036667],[124.5035172,40.2033539],[124.5011597,40.2015152],[124.5000229,40.2006302],[124.4961166,40.197155],[124.4943771,40.1954193],[124.4913406,40.1932487],[124.488739,40.191082],[124.4870071,40.1889114],[124.4857025,40.1867409],[124.4835281,40.1828346],[124.4809265,40.1789284],[124.4796219,40.1776276],[124.476593,40.1758881],[124.4696426,40.1745872],[124.4648666,40.1745872],[124.4592285,40.1732864],[124.4548874,40.1715508],[124.4501114,40.1680756],[124.4470673,40.1650391],[124.4427338,40.1602631],[124.4401321,40.1572266],[124.435791,40.1524544],[124.4305801,40.1485481],[124.426239,40.1455078],[124.4210434,40.1433372],[124.4114838,40.1411667],[124.4054108,40.1372604],[124.4023666,40.1337891],[124.4001999,40.1311836],[124.3975983,40.1272812],[124.3962936,40.1246758],[124.3932571,40.1212044],[124.3915176,40.1185989],[124.3880463,40.1151276],[124.38414,40.1125221],[124.3789291,40.1090508],[124.3750305,40.1060143],[124.3715515,40.1038437],[124.3654785,40.0990677],[124.3607025,40.0934258],[124.3594131,40.0908203],[124.3567963,40.0834427],[124.35289,40.0738945],[124.3524628,40.0639114],[124.3537598,40.0560989],[124.3554993,40.0491562],[124.3581009,40.0426445],[124.3607025,40.0391731],[124.3615723,40.0335312],[124.3620071,40.0278893],[124.3620071,40.0187759],[124.3607025,40.0135651],[124.3585434,40.0096588],[124.3554993,40.0053215],[124.3553467,40.0032272],[124.3542786,40.0004311],[124.3538437,39.9978485],[124.3527679,39.9950485],[124.3514786,39.9905319],[124.3506165,39.9853668],[124.3501892,39.9782677],[124.3508301,39.9700928],[124.3523407,39.9632072],[124.3512573,39.9586868],[124.3486786,39.9537392],[124.3437271,39.9477158],[124.3387833,39.9449196],[124.3338394,39.9425507],[124.3306122,39.9403992],[124.3228607,39.937603],[124.3170471,39.9354515],[124.3125381,39.9330826],[124.3090897,39.9322243],[124.3045731,39.9313622],[124.3002701,39.9305038],[124.2972565,39.9298553],[124.2929535,39.9292107],[124.2897263,39.9292107],[124.286293,39.928997],[124.2843475,39.9294281],[124.2826309,39.9302864],[124.2794037,39.9307175],[124.2744064,39.9314346],[124.2666321,39.9299316],[124.2585602,39.9288864],[124.2490005,39.9278641],[124.2397079,39.9254608],[124.23452,39.9195747],[124.2231522,39.9081459],[124.2170792,39.8967476],[124.2149734,39.8902016],[124.2136917,39.8862495],[124.2147903,39.8768654],[124.2153091,39.8700027],[124.2140427,39.8624649],[124.2086334,39.8576927],[124.2020493,39.8543015],[124.1924667,39.8488693],[124.1805115,39.8439102],[124.1757278,39.8416481],[124.1724319,39.8398399],[124.1727905,39.846241],[124.1725235,39.8483009],[124.1719284,39.8489914],[124.1671906,39.8517609],[124.1599884,39.8458557],[124.1587296,39.8392334],[124.156601,39.8342094],[124.1541977,39.8314781],[124.1502609,39.8296661],[124.1494293,39.8292809],[124.1488113,39.8289948],[124.1431732,39.8301697],[124.1369934,39.8311996],[124.126503,39.8298035],[124.1232986,39.8296967],[124.1145935,39.8294106],[124.105072,39.8306046],[124.0955811,39.8340836],[124.0920181,39.8354721],[124.083992,39.8371124],[124.0786133,39.8348541],[124.0741119,39.8298454],[124.0690079,39.8250656],[124.0636292,39.8216629],[124.0594635,39.8214531],[124.0544205,39.8242226],[124.0496521,39.8237877],[124.0493317,39.8201294],[124.0484009,39.8160172],[124.0456772,39.8114586],[124.0400238,39.8101082],[124.0340881,39.8115082],[124.0284576,39.8149681],[124.0231171,39.8170509],[124.0189438,39.8159256],[124.0224609,39.8088188],[124.0233307,39.8058434],[124.0134964,39.8054276],[124.0096664,39.808876],[124.0031433,39.8121071],[123.9927368,39.8146667],[123.9832382,39.8174515],[123.9737167,39.8184052],[123.9698715,39.8204803],[123.9713821,39.8236771],[123.9728775,39.8255005],[123.9741135,39.8305244],[123.9723434,39.832592],[123.961937,39.8369789],[123.9577866,39.839283],[123.9542236,39.8392944],[123.9479675,39.8386345],[123.9455872,39.8391037],[123.9369736,39.8423347],[123.934288,39.8409767],[123.9256363,39.8378067],[123.9244385,39.8378105],[123.9199905,39.8403397],[123.9128418,39.8399086],[123.9036102,39.8387985],[123.8970566,39.8379097],[123.8914032,39.8372383],[123.8875275,39.8377113],[123.8863602,39.8409157],[123.8827972,39.8445892],[123.8801193,39.843914],[123.8807068,39.8418503],[123.8821793,39.838871],[123.8806763,39.836132],[123.8711472,39.8357086],[123.8646011,39.8364143],[123.8592529,39.8389473],[123.8554001,39.8417053],[123.8607635,39.8423729],[123.8649292,39.8425865],[123.8655319,39.843502],[123.8649673,39.8503647],[123.8636322,39.8542252],[123.86203,39.8570061],[123.8507233,39.8565865],[123.8492126,39.8545303],[123.8471222,39.8527069],[123.8450317,39.8511124],[123.8396835,39.8536453],[123.8358231,39.8536568],[123.836998,39.8520508],[123.8393478,39.8463249],[123.8372574,39.8451881],[123.8319016,39.8447495],[123.8241806,39.8493462],[123.8194199,39.8500443],[123.8116379,39.8489647],[123.8080978,39.8484764],[123.7988434,39.8434677],[123.7919693,39.8373146],[123.7791367,39.8307114],[123.7725983,39.8320999],[123.7687302,39.8321114],[123.7654495,39.8293724],[123.7591934,39.8255005],[123.7478714,39.8252983],[123.7407303,39.8250847],[123.7374573,39.8271523],[123.7338867,39.826931],[123.7270432,39.8248863],[123.7219772,39.8242111],[123.7178116,39.8265038],[123.7166367,39.8294792],[123.719017,39.8310738],[123.727951,39.8310585],[123.7306366,39.832653],[123.7312317,39.8337975],[123.7285538,39.8333435],[123.7220078,39.8354149],[123.7175369,39.8358803],[123.7136765,39.8340607],[123.7071228,39.8315582],[123.7002563,39.830883],[123.6955109,39.8336372],[123.6895828,39.8409653],[123.684227,39.8462334],[123.6806793,39.8505859],[123.6762238,39.8505936],[123.6717529,39.8538017],[123.6693878,39.8581505],[123.6664124,39.860672],[123.6610489,39.8588486],[123.6553879,39.85886],[123.6524124,39.8597755],[123.6503296,39.858181],[123.6497269,39.8565788],[123.6470413,39.8545265],[123.6440735,39.8561325],[123.6431808,39.8581886],[123.6372299,39.8593407],[123.6326828,39.8579712],[123.6274719,39.8564377],[123.6201096,39.8510361],[123.6163635,39.8463287],[123.6155472,39.8441124],[123.6148605,39.8422165],[123.6202164,39.8390083],[123.6249695,39.8335152],[123.6270294,39.8241348],[123.6272964,39.813385],[123.6278763,39.8051529],[123.6293564,39.7985191],[123.6281586,39.792572],[123.624588,39.7914352],[123.6165466,39.791214],[123.6085205,39.7896233],[123.5986862,39.7857437],[123.5924377,39.7807198],[123.5843964,39.7777519],[123.576973,39.7754707],[123.5704269,39.7766228],[123.5650711,39.7766266],[123.5632782,39.7720528],[123.5641708,39.7672501],[123.5623779,39.765419],[123.5570221,39.7610779],[123.5537491,39.7606239],[123.5492935,39.7647438],[123.548111,39.7718315],[123.5498962,39.7777786],[123.5511017,39.7828102],[123.550209,39.7864685],[123.5481262,39.7915001],[123.5445633,39.7926483],[123.5403976,39.7924194],[123.5374222,39.7944794],[123.5341568,39.7969971],[123.525528,39.7965469],[123.5142822,39.7905655],[123.5139236,39.7903748],[123.5073776,39.7896919],[123.4954834,39.7887764],[123.4871368,39.7885513],[123.4811935,39.7883186],[123.4684067,39.7855759],[123.4678116,39.7814598],[123.4695969,39.7752838],[123.4636536,39.7643051],[123.4621735,39.7613335],[123.4645462,39.7574463],[123.4684067,39.7544708],[123.4722672,39.7521858],[123.4728699,39.749897],[123.4675217,39.7464676],[123.4597931,39.7450943],[123.4526596,39.7464638],[123.4461136,39.7428055],[123.4363098,39.735939],[123.4262085,39.7306747],[123.4175873,39.7292976],[123.4089737,39.7286072],[123.404213,39.7343216],[123.4047928,39.7420998],[123.410141,39.749649],[123.4187469,39.7535439],[123.4235229,39.7565193],[123.4255905,39.7626915],[123.4187469,39.7640648],[123.4113083,39.7729797],[123.4080276,39.7791519],[123.4077225,39.7830391],[123.4062271,39.7889862],[123.4074173,39.7942467],[123.4127731,39.8004265],[123.4148483,39.8043137],[123.4154434,39.8111725],[123.4127579,39.8102608],[123.406517,39.806366],[123.399971,39.800415],[123.3952179,39.798584],[123.3889694,39.7983513],[123.3815384,39.7951431],[123.3856964,39.7919464],[123.3889771,39.7864609],[123.3863068,39.7843971],[123.3788834,39.7821045],[123.3744125,39.7846184],[123.3714371,39.7825546],[123.3684692,39.7784348],[123.3571701,39.7765961],[123.3494263,39.7770462],[123.3479538,39.7809334],[123.3431778,39.7829857],[123.3372269,39.7848091],[123.3312836,39.7848015],[123.3268204,39.7838821],[123.3235474,39.7845612],[123.3187866,39.7840996],[123.3122482,39.7804298],[123.3062973,39.7797356],[123.3000565,39.7781258],[123.2947083,39.7788048],[123.2863617,39.7851944],[123.283371,39.7897644],[123.2812729,39.7952499],[123.2744217,39.7993546],[123.2708435,39.8039207],[123.2708282,39.8071251],[123.2687302,39.8107796],[123.2666702,39.8095856],[123.2651672,39.8087158],[123.2687683,39.8000336],[123.2690811,39.7952309],[123.2661209,39.7897377],[123.2610474,39.7924728],[123.2592468,39.7977257],[123.2556686,39.8009224],[123.2488174,39.8034248],[123.2467194,39.8086815],[123.2467117,39.8114281],[123.2434311,39.8139381],[123.2422333,39.8157616],[123.2368698,39.8175812],[123.2342072,39.814373],[123.238678,39.8114128],[123.2398834,39.8082123],[123.2452698,39.7967873],[123.256012,39.7888031],[123.2640533,39.7847023],[123.2715073,39.7776222],[123.273613,39.769165],[123.2709579,39.7627563],[123.2656326,39.7551994],[123.2620773,39.7497025],[123.2513809,39.7476273],[123.2433472,39.7492104],[123.2379913,39.7501183],[123.2313995,39.750618],[123.2296829,39.7480431],[123.2273178,39.7414017],[123.221077,39.7411613],[123.2157288,39.7411499],[123.2103806,39.7397652],[123.2085876,39.7383766],[123.2092133,39.7338181],[123.2071533,39.730381],[123.2006073,39.7303658],[123.2015305,39.723278],[123.2057037,39.718483],[123.2077866,39.7187195],[123.2139969,39.7253647],[123.2196274,39.7324677],[123.2297211,39.73386],[123.2416229,39.731369],[123.2529297,39.7284164],[123.2600708,39.7254562],[123.2624588,39.7208862],[123.2615891,39.715168],[123.2636795,39.7112846],[123.2705383,39.7042046],[123.2732162,39.6994057],[123.2767868,39.6966667],[123.2729416,39.6948318],[123.267662,39.6919785],[123.2565536,39.6929626],[123.2494278,39.6930389],[123.2390671,39.6933975],[123.2313385,39.6963539],[123.2227173,39.6983948],[123.215889,39.6979218],[123.2084732,39.6963043],[123.2075806,39.6942444],[123.2061234,39.6896667],[123.2085114,39.6839561],[123.2115021,39.6791573],[123.2115097,39.6757278],[123.2008438,39.6709023],[123.1969833,39.6718063],[123.1886368,39.6770477],[123.1812134,39.6793175],[123.1749725,39.6781578],[123.1631088,39.6730957],[123.152153,39.6666603],[123.1465302,39.662529],[123.1459503,39.6590958],[123.1444931,39.6540604],[123.1382599,39.6529007],[123.1305466,39.6503601],[123.1269836,39.6519508],[123.1263733,39.6549225],[123.1302109,39.6601944],[123.1358109,39.6691322],[123.1313477,39.6698074],[123.1185608,39.6731987],[123.1078491,39.6772804],[123.0994873,39.6843452],[123.1033325,39.6893921],[123.1045074,39.6919098],[123.1003189,39.6973877],[123.0970688,39.6934891],[123.0944366,39.6857033],[123.0900269,39.6781425],[123.0855789,39.6758385],[123.0823364,39.6703415],[123.077301,39.6696358],[123.0731277,39.6719093],[123.0698395,39.6760178],[123.0647812,39.6778297],[123.0582581,39.6752892],[123.0544128,39.6736755],[123.0472717,39.6745682],[123.0431137,39.6761513],[123.0377731,39.6752167],[123.0372162,39.666523],[123.0360565,39.6633186],[123.0286179,39.6655769],[123.0211334,39.6758423],[123.0165176,39.6787605],[123.0089264,39.6801414],[123.0057831,39.6787949],[123.0029984,39.6776009],[122.996788,39.6741447],[122.9919968,39.67939],[122.9940491,39.6839676],[122.9957733,39.6917534],[122.9915619,39.6995125],[122.9903488,39.7036247],[122.9920807,39.710495],[122.9923477,39.7152977],[122.9910431,39.7144852],[122.9879074,39.7125359],[122.9855728,39.7063522],[122.9865189,39.6992645],[122.9856873,39.6889687],[122.9851379,39.6832466],[122.9878693,39.6754837],[122.9905777,39.6702309],[122.990303,39.6665726],[122.9837875,39.6644859],[122.9793167,39.666069],[122.9727631,39.6694717],[122.9671097,39.6710472],[122.9671402,39.666935],[122.9775772,39.6591988],[122.9856033,39.6569595],[122.9933624,39.6530914],[122.9942703,39.6510353],[122.9865723,39.6480293],[122.9800568,39.6443405],[122.9750519,39.6395187],[122.9727097,39.6353912],[122.9703827,39.6294327],[122.96595,39.6259842],[122.9626923,39.6243706],[122.9581985,39.6298409],[122.9525223,39.6353073],[122.9451065,39.6348152],[122.9344406,39.6315651],[122.9324036,39.6267548],[122.9332962,39.6260719],[122.9238205,39.6235123],[122.899498,39.6215668],[122.8876266,39.6217384],[122.8763733,39.6184807],[122.871048,39.6161652],[122.8666382,39.6113396],[122.8625031,39.6097183],[122.8541718,39.6119614],[122.8553085,39.6179161],[122.8493729,39.6181107],[122.8452225,39.6171761],[122.839653,39.6098289],[122.8414688,39.6052628],[122.8408966,39.6022835],[122.8305435,39.600174],[122.8234024,39.6017342],[122.8154068,39.5998611],[122.8077469,39.5934143],[122.8062973,39.5899734],[122.8001328,39.5844498],[122.7947693,39.5862503],[122.7935715,39.587616],[122.7849884,39.5850487],[122.779068,39.5840988],[122.7797089,39.5792999],[122.7820969,39.5772552],[122.7783127,39.5703735],[122.7714767,39.5712471],[122.7535019,39.5601616],[122.747818,39.5651588],[122.7418671,39.5669518],[122.7347565,39.5653076],[122.7312393,39.5623131],[122.7292023,39.5584106],[122.728653,39.5554314],[122.7283707,39.5529137],[122.7269135,39.5517616],[122.7224579,39.551506],[122.7182693,39.5553665],[122.7167435,39.5597038],[122.708107,39.5626221],[122.7051926,39.5575714],[122.7061386,39.5520859],[122.7064972,39.5463715],[122.7047577,39.5431557],[122.7009583,39.5381012],[122.695343,39.5364609],[122.6903229,39.5348282],[122.6927338,39.5309563],[122.6930618,39.5279846],[122.6921921,39.5266037],[122.6904221,39.5256805],[122.687767,39.5247459],[122.6884003,39.5208626],[122.687233,39.5190239],[122.6819077,39.5185318],[122.6800766,39.5230942],[122.676178,39.5269585],[122.6681671,39.5269051],[122.6660767,39.5294075],[122.6680679,39.5362816],[122.6629868,39.5401344],[122.6600189,39.5405731],[122.6561203,39.5442047],[122.6533432,39.5438118],[122.6502228,39.5418777],[122.6478806,39.5388908],[122.6399384,39.5340309],[122.6381836,39.5319595],[122.6355667,39.52668],[122.6327133,39.5186501],[122.6300964,39.5129166],[122.6307373,39.5094872],[122.6349106,39.5074577],[122.637619,39.5040474],[122.6367569,39.5017548],[122.6355972,39.4992294],[122.6338272,39.4987602],[122.6228485,39.5002823],[122.6199493,39.4949989],[122.6229935,39.4888458],[122.6242065,39.485878],[122.6179962,39.4846916],[122.6123428,39.4869385],[122.6072617,39.4905624],[122.6019363,39.4893799],[122.5987091,39.4870682],[122.5987778,39.4818077],[122.593811,39.4760513],[122.5852737,39.4725571],[122.5814514,39.4697838],[122.5758514,39.467453],[122.5716934,39.4687958],[122.57341,39.4733849],[122.5748596,39.4759102],[122.5750885,39.4814034],[122.5747528,39.4848328],[122.5688095,39.4857025],[122.568718,39.4856377],[122.5682297,39.4854012],[122.5649796,39.4838409],[122.5659332,39.4795036],[122.5653534,39.4781265],[122.5609283,39.4767227],[122.5561981,39.4762268],[122.5500107,39.4732056],[122.5495071,39.4658813],[122.5439377,39.4619484],[122.5371628,39.4593773],[122.5312729,39.4575043],[122.5221634,39.4519386],[122.5189438,39.4491692],[122.5142593,39.4445572],[122.509552,39.442688],[122.5078201,39.4390144],[122.4995422,39.4382591],[122.4969101,39.4359512],[122.4919205,39.4327087],[122.4872131,39.4308395],[122.4827881,39.4294319],[122.4736481,39.4270668],[122.4654007,39.4242516],[122.4607086,39.4210091],[122.4545212,39.4191284],[122.4421234,39.4171906],[122.4323883,39.4148178],[122.424408,39.4140587],[122.4231567,39.4181671],[122.4222336,39.4206772],[122.4150772,39.4238129],[122.4056473,39.4216728],[122.3976288,39.4234314],[122.3934937,39.4236221],[122.38517,39.4253769],[122.3840332,39.4228516],[122.3879623,39.4169388],[122.3847733,39.4123306],[122.3841934,39.4114113],[122.3759918,39.4063034],[122.364563,39.3991089],[122.3587036,39.3956184],[122.3530884,39.3948822],[122.3456421,39.3977852],[122.3374481,39.3919907],[122.3357773,39.3855667],[122.3310471,39.3846054],[122.3222427,39.3815498],[122.3119507,39.3771019],[122.3022232,39.3756332],[122.298172,39.3694153],[122.2944412,39.3625183],[122.2905197,39.3672829],[122.2854767,39.3657303],[122.2834625,39.3646927],[122.2826691,39.3589668],[122.2847672,39.3573875],[122.2881165,39.3516998],[122.2837601,39.3468513],[122.2800217,39.3406372],[122.2745285,39.3328056],[122.2678375,39.326786],[122.2637711,39.3223991],[122.2545929,39.3229942],[122.2474518,39.3261223],[122.2446671,39.333416],[122.2413025,39.3397865],[122.2388687,39.3438797],[122.2352829,39.3465881],[122.2320175,39.3465538],[122.2267227,39.345356],[122.2247086,39.3421326],[122.2316132,39.3360252],[122.2376633,39.328083],[122.2394333,39.3218269],[122.2398605,39.3203239],[122.2461472,39.31604],[122.2523499,39.3158798],[122.2576828,39.3154755],[122.254837,39.3088112],[122.2439728,39.3048096],[122.2372665,39.2987938],[122.2382965,39.2910233],[122.2375336,39.2843781],[122.2316971,39.2799721],[122.2216263,39.2749481],[122.2076569,39.2694244],[122.2083435,39.2639389],[122.2036591,39.2616005],[122.1977234,39.2635956],[122.1949997,39.2669983],[122.1882477,39.2644081],[122.1841202,39.2643661],[122.184288,39.2712326],[122.1786804,39.2709427],[122.1755066,39.2665596],[122.1709595,39.2571297],[122.1663132,39.2529602],[122.161377,39.2481041],[122.158432,39.2478409],[122.1514206,39.2436447],[122.1455536,39.2415199],[122.1387787,39.240757],[122.1328735,39.2404633],[122.1315994,39.2394409],[122.1285095,39.2369804],[122.135643,39.2350044],[122.1371994,39.230217],[122.134613,39.2262955],[122.128418,39.2264557],[122.1207428,39.226368],[122.1131668,39.2207909],[122.108757,39.2134285],[122.1057434,39.2083511],[122.1043396,39.204216],[122.1090698,39.2035828],[122.1149826,39.2031937],[122.1147766,39.1976967],[122.1111069,39.1896477],[122.1094666,39.1825371],[122.1083221,39.1809235],[122.1021423,39.1799355],[122.0929337,39.1834908],[122.080162,39.1879196],[122.0741577,39.1931114],[122.068161,39.1980743],[122.0651474,39.2012405],[122.0623703,39.2002144],[122.0581131,39.1986389],[122.0576706,39.1913147],[122.0681381,39.1841164],[122.08004,39.1785355],[122.0908203,39.1704216],[122.09832,39.1636467],[122.1119232,39.161972],[122.1228333,39.1625519],[122.1333771,39.1661072],[122.1395721,39.1661758],[122.1425781,39.1627769],[122.1488495,39.1584969],[122.1535034,39.15765],[122.1522217,39.1516685],[122.1459427,39.1502724],[122.1348572,39.1496468],[122.1248779,39.1472473],[122.1158905,39.1470795],[122.1089935,39.1456909],[122.1043777,39.1399193],[122.0958786,39.1370735],[122.0903473,39.1333504],[122.0895233,39.1303635],[122.0881195,39.1266861],[122.0822372,39.125473],[122.0757599,39.1235008],[122.0750732,39.1204376],[122.0791626,39.1171989],[122.0789185,39.1146812],[122.0718536,39.1141396],[122.0665283,39.1152191],[122.0589294,39.111927],[122.0547638,39.1143951],[122.0514221,39.1191597],[122.0477829,39.1241531],[122.0432968,39.1273003],[122.0379181,39.1311264],[122.0298996,39.1342354],[122.0242691,39.1353073],[122.0219421,39.1349411],[122.0195694,39.1345634],[122.0241318,39.127758],[122.0272064,39.1211586],[122.0258789,39.1142769],[122.0253601,39.110611],[122.0303879,39.1095276],[122.0348663,39.1068344],[122.0358505,39.1018105],[122.0403671,39.0968323],[122.0425568,39.0902214],[122.0429764,39.0840492],[122.046257,39.0822563],[122.056427,39.0746002],[122.0609512,39.0691605],[122.0613403,39.0641327],[122.0587234,39.0629578],[122.0516129,39.06493],[122.0489197,39.0667305],[122.0421371,39.0671043],[122.031517,39.0676613],[122.0252533,39.0719376],[122.0219727,39.0737267],[122.017807,39.0759621],[122.0078125,39.0749245],[121.9893265,39.0714912],[121.9828873,39.0691261],[121.9811935,39.0661278],[121.9810181,39.059948],[121.9793167,39.0567207],[121.9703369,39.0492859],[121.9675064,39.0437584],[121.9661636,39.0382462],[121.9668579,39.0327682],[121.9663391,39.0295563],[121.9627838,39.0306549],[121.9485474,39.0357437],[121.9413681,39.0409088],[121.9339294,39.0447006],[121.9253006,39.0487061],[121.9172287,39.0543251],[121.9153519,39.0593338],[121.9154587,39.0680313],[121.9085464,39.0743484],[121.9044266,39.07658],[121.9008026,39.0781364],[121.8886719,39.0674515],[121.8843765,39.0612144],[121.8789062,39.0558739],[121.8873215,39.0482101],[121.8944702,39.0444145],[121.9031525,39.0378914],[121.91082,39.0375328],[121.9149933,39.0350723],[121.9174423,39.0307579],[121.9190063,39.0259705],[121.9211731,39.0214233],[121.9194717,39.018425],[121.9146194,39.0151329],[121.9106903,39.0216446],[121.906868,39.0297012],[121.8953934,39.0290909],[121.8895035,39.0294724],[121.8908768,39.0333824],[121.8872223,39.0392838],[121.8856888,39.0422363],[121.8829727,39.0454025],[121.8735275,39.0459633],[121.8682632,39.0447502],[121.8584824,39.0473633],[121.8469772,39.0483513],[121.8390274,39.0482407],[121.8358612,39.0468521],[121.8320312,39.0451698],[121.8271408,39.0400696],[121.8211975,39.0296898],[121.8248672,39.0235596],[121.8328934,39.020237],[121.8421021,39.0164719],[121.8437729,39.0080299],[121.8447189,39.004837],[121.8480682,38.9998512],[121.854599,38.9974213],[121.8616562,38.9972878],[121.8719406,38.9983406],[121.8826523,38.9929962],[121.8872604,38.983902],[121.8927536,38.9750481],[121.8913879,38.9702263],[121.894928,38.9695854],[121.8982468,38.9657402],[121.8945236,38.9613419],[121.8875122,38.9589615],[121.8776398,38.9535675],[121.8688889,38.9502449],[121.8603668,38.94944],[121.8550797,38.9493713],[121.8510437,38.9461098],[121.8474579,38.948349],[121.8473969,38.9508667],[121.8388824,38.9505196],[121.8298187,38.9512901],[121.8281479,38.9570084],[121.8304367,38.9595604],[121.8338699,38.9639549],[121.8332291,38.9662323],[121.8210602,38.9710999],[121.8071213,38.9761696],[121.8026428,38.9793091],[121.8034363,38.9825249],[121.8012314,38.9891281],[121.7978897,38.9934311],[121.7995911,38.9964294],[121.7959137,39.0025558],[121.7925568,39.0077744],[121.7918472,39.0130272],[121.7901993,39.0205574],[121.7857285,39.0227814],[121.779541,39.0231514],[121.7732773,39.026268],[121.7628098,39.0334396],[121.760643,39.037014],[121.7520905,39.0385475],[121.7444534,39.0379791],[121.732872,39.0416985],[121.7278137,39.0439148],[121.7196121,39.0421906],[121.7139893,39.0434837],[121.7177505,39.0460548],[121.7185974,39.0474434],[121.7088089,39.0505028],[121.7031403,39.0536194],[121.6987762,39.050808],[121.6986694,39.0434837],[121.7056122,39.0367241],[121.7118378,39.0349846],[121.7180328,39.0343895],[121.7223129,39.0282745],[121.7171478,39.0224762],[121.720459,39.0193214],[121.7235107,39.0150185],[121.7287674,39.0166969],[121.7364273,39.0163498],[121.7426834,39.0136948],[121.7438812,39.0123405],[121.7373581,39.0021744],[121.7309418,38.999794],[121.7189636,39.0004807],[121.7102737,39.0029221],[121.7071991,39.0079117],[121.7091904,39.0106888],[121.7043991,39.0140495],[121.7013092,39.0199509],[121.6924362,39.0214233],[121.6848068,39.0203934],[121.6792374,39.0196228],[121.6792984,39.017334],[121.6808701,39.013237],[121.6732635,39.0117493],[121.6687775,39.0144272],[121.6725235,39.0179176],[121.675972,39.0207176],[121.674057,39.0268669],[121.6660614,39.0285759],[121.6583862,39.0296021],[121.6540833,39.0249596],[121.6556473,39.0213242],[121.6545715,39.017189],[121.6523666,39.0112038],[121.6515427,39.0091324],[121.6473236,39.0129547],[121.6409378,39.0094261],[121.6425323,39.0044174],[121.6361237,39.0022583],[121.6332626,38.9990082],[121.6341934,38.9969635],[121.643898,38.9971123],[121.6501389,38.9946899],[121.6589737,38.9943695],[121.6645966,38.9930801],[121.6627426,38.9850426],[121.6596909,38.9776726],[121.6527863,38.9711571],[121.6472931,38.9674149],[121.6400375,38.9636383],[121.6404037,38.9608994],[121.6389618,38.9597321],[121.6327362,38.9614677],[121.628952,38.9600372],[121.6290665,38.9552307],[121.6234589,38.9562874],[121.6158066,38.956398],[121.6087799,38.955143],[121.6060333,38.9592209],[121.5981064,38.9581795],[121.5922394,38.957859],[121.5981674,38.9561195],[121.5993805,38.9547653],[121.5982437,38.9533768],[121.5950699,38.9508095],[121.5909271,38.9516602],[121.5871124,38.9513702],[121.5862122,38.9503021],[121.584343,38.9449158],[121.5874329,38.9392433],[121.5933838,38.936821],[121.600647,38.939682],[121.6050262,38.941124],[121.6112289,38.9400749],[121.6112671,38.9384766],[121.6081467,38.9340782],[121.6070328,38.9317703],[121.6074371,38.9274292],[121.6128006,38.9247704],[121.6180115,38.9278221],[121.6194077,38.9305916],[121.6208115,38.9333611],[121.625267,38.9313698],[121.6313629,38.9346695],[121.6360168,38.9363441],[121.6416931,38.9332275],[121.6468735,38.9376564],[121.654541,38.9366302],[121.6601868,38.9339676],[121.6670074,38.9320145],[121.6718063,38.9279671],[121.6804733,38.9223747],[121.692627,38.9182091],[121.7026978,38.9153862],[121.7104568,38.9104652],[121.7123032,38.9070587],[121.7125168,38.8981361],[121.7106934,38.8887291],[121.7091293,38.8804626],[121.7069016,38.8753967],[121.7060471,38.8742409],[121.7006073,38.8699303],[121.6950531,38.8676682],[121.694809,38.8653755],[121.6880035,38.8675613],[121.6846237,38.8707008],[121.6810837,38.8740921],[121.6739426,38.8776474],[121.671608,38.8771553],[121.67173,38.8722687],[121.6717529,38.8714371],[121.6729813,38.8691673],[121.6725388,38.8634377],[121.6711273,38.8608971],[121.6643219,38.862854],[121.6593704,38.8614044],[121.6514664,38.8601379],[121.6462631,38.8587112],[121.6370316,38.8596153],[121.6285095,38.8618431],[121.6131668,38.8643532],[121.6051636,38.8656883],[121.5995789,38.8689003],[121.5926437,38.8743286],[121.5869675,38.8778992],[121.5813293,38.8803291],[121.5748672,38.8799973],[121.5638199,38.8756981],[121.5575104,38.8698769],[121.5520401,38.8656654],[121.542717,38.8627701],[121.5383072,38.8638382],[121.5308304,38.8678398],[121.5302963,38.864212],[121.5334778,38.8602753],[121.5321274,38.8522949],[121.5244064,38.8441582],[121.5189438,38.8390732],[121.5140305,38.8373528],[121.5084076,38.8388596],[121.501503,38.8337097],[121.5002289,38.8263664],[121.5055389,38.8255386],[121.5085526,38.8226128],[121.5059662,38.820282],[121.4990082,38.8174171],[121.4934769,38.8154945],[121.4906998,38.8204842],[121.4900665,38.8220749],[121.4817963,38.8242264],[121.4742584,38.8206673],[121.469017,38.8187447],[121.456337,38.8155518],[121.4482117,38.8173447],[121.4411469,38.8180428],[121.4350281,38.8167915],[121.4277573,38.8141518],[121.4236679,38.8136215],[121.4229889,38.8168144],[121.4231873,38.8200264],[121.4176712,38.8178673],[121.4089279,38.8156548],[121.4056015,38.8190346],[121.4001617,38.8244286],[121.3959122,38.8293915],[121.3936768,38.8254623],[121.3929825,38.8190422],[121.391861,38.8169594],[121.3808899,38.8208885],[121.3692322,38.8233528],[121.362587,38.8244553],[121.3569565,38.8261871],[121.3464432,38.8243942],[121.3394012,38.8240395],[121.3309021,38.8234291],[121.3235474,38.8221626],[121.3213196,38.8198242],[121.3206024,38.8143158],[121.3215714,38.8113556],[121.3187714,38.8067284],[121.3118973,38.8008804],[121.3096466,38.797863],[121.3009872,38.7926712],[121.297142,38.793972],[121.2896881,38.7977295],[121.2804031,38.7945824],[121.2745972,38.7921829],[121.2684174,38.7925262],[121.2615967,38.7946892],[121.2547302,38.798912],[121.246933,38.8044891],[121.2380676,38.8061523],[121.2267227,38.8027306],[121.2227402,38.7987671],[121.2199783,38.7836037],[121.2241135,38.7829971],[121.2293167,38.7851562],[121.2357407,38.788826],[121.2452393,38.7925529],[121.2497101,38.7932892],[121.2492371,38.7862206],[121.2447662,38.7792664],[121.2419434,38.7757835],[121.2340088,38.7683563],[121.2281265,38.7665901],[121.2215118,38.7625771],[121.2137985,38.7560196],[121.2114182,38.7475052],[121.2078705,38.7391968],[121.2043381,38.7305412],[121.1948929,38.7240715],[121.1847763,38.7208443],[121.1761475,38.7202339],[121.1650467,38.7206497],[121.1464233,38.7256432],[121.1375809,38.7270737],[121.1348572,38.729538],[121.1330338,38.7317924],[121.1314163,38.7361069],[121.1288071,38.7445259],[121.1277924,38.7486267],[121.1276627,38.7525177],[121.1257935,38.7561417],[121.1256027,38.7618599],[121.1162872,38.7685432],[121.1136093,38.7698631],[121.1110916,38.7750778],[121.1048584,38.7772408],[121.110527,38.7830772],[121.1151581,38.7854576],[121.1188812,38.7882805],[121.1278305,38.7836494],[121.1367111,38.7813072],[121.1395264,38.7850266],[121.1427307,38.7949333],[121.1365967,38.8028221],[121.132843,38.8105316],[121.1402817,38.8072433],[121.1380234,38.8136101],[121.1311264,38.8178253],[121.1266708,38.8195648],[121.1247482,38.8154068],[121.1215668,38.8139725],[121.1158981,38.8168335],[121.1101379,38.8224411],[121.1099777,38.8272476],[121.1110382,38.8306999],[121.1110992,38.838028],[121.1091385,38.8439407],[121.1047974,38.8509483],[121.1063766,38.8567009],[121.1070023,38.8644981],[121.11129,38.868248],[121.1195068,38.8684082],[121.1205521,38.872551],[121.1237488,38.8735313],[121.1322403,38.8743858],[121.1376266,38.8806686],[121.1379776,38.8880005],[121.1365738,38.895298],[121.134613,38.9012108],[121.1274338,38.8958054],[121.1178436,38.892868],[121.1139603,38.8943939],[121.1115112,38.8975487],[121.1053619,38.8967438],[121.0938797,38.8971977],[121.0909119,38.8982849],[121.0880966,38.9030342],[121.0879288,38.9085236],[121.0857468,38.9119148],[121.0902634,38.9181862],[121.0961075,38.9279137],[121.0982437,38.9345932],[121.1081696,38.9368515],[121.1134415,38.9374161],[121.1166534,38.9381676],[121.1185989,38.9416389],[121.1173019,38.9452744],[121.11866,38.9487343],[121.1271362,38.9502754],[121.1367569,38.9529839],[121.1455078,38.9554443],[121.151947,38.9564857],[121.1590805,38.9541054],[121.1653366,38.9514809],[121.1720734,38.952755],[121.1802063,38.9554329],[121.1829071,38.9541092],[121.1888733,38.9514771],[121.1928635,38.9462891],[121.1992264,38.9402313],[121.2058716,38.9346352],[121.2133636,38.9302025],[121.2172165,38.9335709],[121.2216568,38.9374542],[121.2269363,38.9473991],[121.2327194,38.9507103],[121.2411728,38.9536171],[121.2546005,38.9566154],[121.2671127,38.9611969],[121.2718887,38.9686089],[121.2871017,38.9714088],[121.3000565,38.9707298],[121.306633,38.9676437],[121.3148499,38.9682541],[121.328537,38.9726181],[121.3357773,38.9766388],[121.3420563,38.9831619],[121.342247,38.9865952],[121.3423233,38.994381],[121.3418427,39.0010071],[121.3342133,38.999958],[121.3240128,38.9967957],[121.314209,38.9995956],[121.3104401,39.0075378],[121.3146362,39.0147095],[121.322258,39.0159912],[121.324852,39.0178719],[121.3240585,39.0247231],[121.3327103,39.0308266],[121.3356476,39.0311089],[121.3394089,39.0332375],[121.3363419,39.0373001],[121.3423996,39.0417595],[121.3502579,39.0448723],[121.3610764,39.0475845],[121.3644638,39.0524521],[121.3666229,39.0593567],[121.3733063,39.0624466],[121.3767471,39.0551834],[121.3768768,39.0508385],[121.3713837,39.0477676],[121.3938904,39.0431252],[121.4028778,39.0377922],[121.4028168,39.0297813],[121.4026489,39.0254288],[121.4060135,39.0209084],[121.4119873,39.0175781],[121.4197006,39.0158844],[121.4261627,39.0166779],[121.4289398,39.0222206],[121.4334335,39.0197792],[121.4329224,39.0167961],[121.4347534,39.0145378],[121.4409332,39.0148735],[121.4565125,39.0153656],[121.4777908,39.0228195],[121.4865417,39.0259438],[121.4941788,39.0265274],[121.5029373,39.0291901],[121.5122299,39.0339203],[121.521431,39.0423088],[121.5309296,39.0504761],[121.5407867,39.0559006],[121.5493164,39.0564957],[121.5567169,39.0552444],[121.5655823,39.0540123],[121.5748367,39.0585976],[121.5819092,39.0660667],[121.588707,39.0683098],[121.5958099,39.0695992],[121.60495,39.0692863],[121.6090164,39.0711784],[121.6153107,39.0788307],[121.6232529,39.0794106],[121.6415329,39.0787773],[121.6558533,39.0838013],[121.6663513,39.0878525],[121.6724167,39.0925217],[121.6775436,39.0996933],[121.6860428,39.1016502],[121.6922379,39.1037331],[121.6941605,39.1072655],[121.6925735,39.1115875],[121.6901932,39.1129265],[121.688591,39.117939],[121.6890793,39.1218338],[121.6875229,39.1252441],[121.6850433,39.1300125],[121.6795807,39.1363373],[121.6732864,39.1403618],[121.6658936,39.1413956],[121.6594162,39.1410675],[121.6595383,39.147934],[121.6588135,39.1531868],[121.6541367,39.1512833],[121.6462936,39.147274],[121.6452332,39.154377],[121.6409302,39.1606941],[121.6369934,39.164753],[121.6356888,39.1695366],[121.6363907,39.1766434],[121.6333084,39.1818581],[121.6279678,39.1831474],[121.6244736,39.1814919],[121.6177368,39.1793289],[121.6151123,39.1781425],[121.6071167,39.1714516],[121.5984116,39.1737633],[121.5964966,39.178997],[121.5958023,39.1833344],[121.5857697,39.1869583],[121.5817566,39.1899757],[121.5842896,39.1948242],[121.5867996,39.2003517],[121.5926437,39.202507],[121.5970993,39.2014313],[121.6033401,39.1996994],[121.6097565,39.202774],[121.6148911,39.2097206],[121.6100616,39.2110558],[121.6077423,39.2127724],[121.5956726,39.2112389],[121.5912628,39.2156944],[121.5903473,39.2226067],[121.592041,39.2256088],[121.596489,39.2249908],[121.6026535,39.2264633],[121.6071091,39.2251587],[121.609848,39.2219963],[121.617012,39.2189064],[121.6261597,39.2190475],[121.6269913,39.2211189],[121.6304321,39.2252922],[121.6291809,39.2280197],[121.6314697,39.2308006],[121.6381531,39.2350197],[121.6377563,39.2389069],[121.6326065,39.2438622],[121.6265488,39.2425194],[121.6222534,39.2448463],[121.6137238,39.2435684],[121.6113205,39.2449036],[121.6073532,39.2503319],[121.6024628,39.2562065],[121.5960388,39.2575035],[121.5926971,39.2569695],[121.5886765,39.2609482],[121.5888519,39.2685776],[121.5905228,39.2724953],[121.5963974,39.2737312],[121.6088104,39.2736969],[121.6179962,39.2724686],[121.6197433,39.2738686],[121.622261,39.2789383],[121.6372223,39.2713928],[121.6417313,39.2682571],[121.6479034,39.2699509],[121.6481705,39.2708702],[121.6509933,39.2761765],[121.661911,39.2763443],[121.6751633,39.2781487],[121.6795273,39.2807312],[121.6838608,39.2849121],[121.6872864,39.289772],[121.6940308,39.2917023],[121.7007675,39.2940903],[121.7098236,39.2988014],[121.7153168,39.3034554],[121.7242432,39.3008423],[121.7273026,39.3001442],[121.7279434,39.3070755],[121.7322693,39.3110275],[121.7372131,39.3145332],[121.7415924,39.3168831],[121.7391815,39.3186798],[121.7329636,39.3195038],[121.7249374,39.3209877],[121.7248306,39.3253365],[121.7205124,39.3305283],[121.7189178,39.3373756],[121.7241669,39.3401985],[121.7328262,39.3371239],[121.7399902,39.3340225],[121.7416382,39.3393097],[121.7409973,39.3413582],[121.739769,39.343399],[121.7404938,39.3505058],[121.7386398,39.3534508],[121.7390594,39.3605499],[121.7461166,39.3620262],[121.7522888,39.3637161],[121.7518768,39.3687439],[121.7541504,39.3726654],[121.7574234,39.3722534],[121.7624588,39.3714142],[121.7713699,39.3699379],[121.7764206,39.3690948],[121.7876663,39.3685684],[121.7960129,39.3659401],[121.8052063,39.3644676],[121.8042831,39.3665123],[121.80896,39.3690948],[121.8205032,39.3687973],[121.8297272,39.3661766],[121.83564,39.3662605],[121.8439407,39.3654594],[121.8498917,39.3639374],[121.8563538,39.3660851],[121.8572769,39.3668289],[121.8624496,39.3709717],[121.8653336,39.3744431],[121.8701935,39.3822861],[121.8719482,39.3825798],[121.8733368,39.3827438],[121.8733978,39.384388],[121.8763199,39.3860283],[121.8886719,39.3893967],[121.8984299,39.3895264],[121.9060974,39.39077],[121.919693,39.3918648],[121.925209,39.3960533],[121.9260483,39.3985786],[121.9262085,39.4049911],[121.9263763,39.4104805],[121.9248276,39.4138947],[121.9179382,39.4176941],[121.9116287,39.4219589],[121.9052963,39.4273682],[121.8993835,39.4270592],[121.8945923,39.4295158],[121.8859329,39.4328308],[121.8824234,39.4316559],[121.8809433,39.4311638],[121.8734589,39.4347229],[121.871727,39.4326401],[121.8798294,39.4277191],[121.8872528,39.4266701],[121.8967667,39.4247398],[121.9054337,39.4209633],[121.9117737,39.4157829],[121.9147491,39.4146805],[121.9181671,39.4071732],[121.91819,39.4062576],[121.9137268,39.4040222],[121.9095001,39.4038506],[121.904747,39.4069977],[121.8998413,39.4062462],[121.896637,39.403862],[121.8939133,39.401741],[121.8887482,39.4016991],[121.8845825,39.4043732],[121.8801117,39.4046326],[121.8761826,39.4054756],[121.8720703,39.40382],[121.8691177,39.4037781],[121.8643494,39.4050865],[121.8564377,39.4015503],[121.8475876,39.4002838],[121.8456116,39.3961411],[121.8435822,39.3942833],[121.8371124,39.3928223],[121.8306808,39.3893013],[121.823967,39.3853188],[121.8168793,39.3847618],[121.8079376,39.3873825],[121.7993164,39.3890915],[121.7865906,39.3893738],[121.7771301,39.3892403],[121.7694931,39.3870735],[121.7654266,39.3831253],[121.7601318,39.3823624],[121.7574005,39.385067],[121.7512436,39.3826904],[121.7506866,39.3813133],[121.7485504,39.3840256],[121.7429733,39.388195],[121.7400665,39.3923683],[121.7333221,39.3897552],[121.7279968,39.3896751],[121.7238007,39.3921318],[121.715332,39.3993301],[121.7072067,39.4047012],[121.7026901,39.4080658],[121.6922684,39.4108849],[121.6893997,39.4069519],[121.6891479,39.4053497],[121.6914062,39.3973732],[121.6977768,39.3915176],[121.7046967,39.3868179],[121.7083817,39.3811531],[121.7085266,39.3754311],[121.7052994,39.3742409],[121.7002106,39.3766861],[121.6931534,39.3749771],[121.6887436,39.3742256],[121.6833878,39.3752899],[121.6770935,39.3783989],[121.6718216,39.3762589],[121.6693573,39.3684425],[121.6626434,39.3649101],[121.6561966,39.3625221],[121.646492,39.3603134],[121.6373672,39.358345],[121.631073,39.3621407],[121.6250229,39.3670769],[121.6122665,39.3684807],[121.5598221,39.3715439],[121.5565567,39.3717194],[121.5474167,39.3708878],[121.540062,39.3696251],[121.5353775,39.3677177],[121.5266037,39.3625908],[121.5192719,39.3621674],[121.5128403,39.3637276],[121.5084991,39.3661385],[121.502327,39.3672371],[121.4985123,39.3744392],[121.4984436,39.377182],[121.4982605,39.3835869],[121.4990997,39.3854332],[121.4989319,39.3916054],[121.4898224,39.3924065],[121.4848633,39.3944702],[121.4824066,39.400486],[121.4834137,39.4069099],[121.4850464,39.4121971],[121.486969,39.4174919],[121.4838791,39.422245],[121.4781113,39.4274101],[121.4747467,39.4312439],[121.4725266,39.4364738],[121.4684067,39.4460144],[121.4612503,39.4479523],[121.4530029,39.4464417],[121.4499435,39.4397545],[121.4485397,39.4365273],[121.444191,39.4334793],[121.4402084,39.4379883],[121.4306183,39.4421692],[121.4235229,39.4420509],[121.4182129,39.4410439],[121.4118805,39.4427528],[121.4124603,39.4412727],[121.4120407,39.4393349],[121.4186172,39.4369316],[121.4217224,39.4321785],[121.4292221,39.4286461],[121.4358521,39.4246407],[121.437767,39.4194145],[121.4390488,39.4162292],[121.4356003,39.4125099],[121.4319916,39.4042091],[121.429657,39.3925018],[121.4262772,39.3867226],[121.4198303,39.3843269],[121.4157867,39.380825],[121.418869,39.3767586],[121.4199371,39.370369],[121.4178696,39.3701057],[121.4096222,39.3690453],[121.4038086,39.3652878],[121.4011993,39.363636],[121.3952484,39.3646774],[121.3867111,39.3654366],[121.3802567,39.3717384],[121.3720932,39.3708801],[121.3615036,39.3740349],[121.3579407,39.376152],[121.3519363,39.3790207],[121.3412628,39.3799744],[121.3318863,39.3763771],[121.3251419,39.3746529],[121.3223495,39.378952],[121.3269882,39.3822365],[121.3316574,39.3843803],[121.3344498,39.3899231],[121.3345566,39.3963318],[121.3361435,39.4029961],[121.3434601,39.4056435],[121.344368,39.4047432],[121.3488007,39.4050522],[121.3501968,39.4075928],[121.3518906,39.4105988],[121.3574371,39.4132156],[121.3636322,39.4140091],[121.3629913,39.4155998],[121.3634796,39.4192696],[121.3698502,39.4239578],[121.3771667,39.4268303],[121.3777237,39.428215],[121.37854,39.430748],[121.3784866,39.4323463],[121.3765564,39.4373474],[121.375618,39.4393921],[121.3696976,39.4395142],[121.3613892,39.4398232],[121.3527069,39.4431038],[121.3437881,39.4443207],[121.3325806,39.4429779],[121.3249664,39.4398651],[121.3238983,39.4361839],[121.3236694,39.4338913],[121.3274002,39.428009],[121.3257828,39.4229469],[121.3208084,39.4205666],[121.3144073,39.4167938],[121.3083878,39.4102783],[121.3046799,39.405632],[121.3018112,39.4028358],[121.2952805,39.4034042],[121.2889633,39.4067192],[121.2819138,39.4052162],[121.2829437,39.4004326],[121.2861099,39.3933983],[121.2851715,39.3853683],[121.2807999,39.3832321],[121.2731934,39.3805733],[121.2663116,39.3746758],[121.2597885,39.3737831],[121.2540207,39.3783989],[121.2526627,39.3843117],[121.2466431,39.3839264],[121.2412262,39.3902779],[121.2408295,39.3937035],[121.2472229,39.3977127],[121.2536087,39.4014931],[121.254982,39.4047203],[121.2542572,39.4090576],[121.2492371,39.4144363],[121.2445526,39.4157524],[121.2452927,39.4217033],[121.2484436,39.4249649],[121.2576904,39.4226227],[121.262413,39.4231644],[121.2682571,39.4253349],[121.2696762,39.4276466],[121.2693634,39.4283295],[121.2674408,39.432869],[121.2653503,39.4431267],[121.2693787,39.4468613],[121.2752609,39.4483414],[121.2817535,39.4491501],[121.2900314,39.4495316],[121.2986526,39.4487724],[121.3047638,39.4520874],[121.310257,39.4563026],[121.3136826,39.4607124],[121.3100967,39.4632225],[121.309639,39.4670448],[121.3130798,39.4709969],[121.3165512,39.4738083],[121.3185272,39.4768181],[121.3210297,39.4825821],[121.3273468,39.4891014],[121.3364029,39.4936104],[121.3458786,39.4937782],[121.3513031,39.4906731],[121.3566895,39.4889374],[121.3618393,39.4851379],[121.3684921,39.4806786],[121.3741379,39.4800949],[121.3761292,39.482872],[121.3794403,39.491169],[121.3820572,39.4928131],[121.3879471,39.4942932],[121.3962631,39.4935188],[121.4052429,39.4906998],[121.413681,39.4853554],[121.4269028,39.4789467],[121.4382172,39.4768524],[121.4472198,39.4728851],[121.4533768,39.4645233],[121.4538269,39.4588089],[121.4571686,39.4563522],[121.4622269,39.4555206],[121.4645462,39.4571609],[121.4677124,39.4604187],[121.4682465,39.4627151],[121.4678726,39.4654541],[121.4657898,39.4656448],[121.4607086,39.467392],[121.4531174,39.4738998],[121.4455414,39.47995],[121.448288,39.487545],[121.4490891,39.4907646],[121.4454269,39.4945908],[121.4450912,39.4959564],[121.4422531,39.5020866],[121.4408264,39.5100746],[121.4419327,39.5135231],[121.4531174,39.5159988],[121.4593277,39.5165634],[121.4702377,39.5185776],[121.4788284,39.5187187],[121.4851303,39.5160751],[121.4925613,39.5152855],[121.4957504,39.5178566],[121.5012665,39.5220642],[121.5105667,39.5288506],[121.5162964,39.5360374],[121.5208664,39.5422897],[121.523407,39.5471382],[121.5264969,39.5538216],[121.5292664,39.56073],[121.5323334,39.5681038],[121.5350723,39.5766106],[121.5380936,39.5855827],[121.5415268,39.5902138],[121.5441284,39.5927734],[121.5473633,39.5941963],[121.5527267,39.5929108],[121.5580902,39.592308],[121.5668182,39.5988541],[121.5727081,39.6005516],[121.5815964,39.6009178],[121.5901794,39.6019707],[121.5888138,39.6028671],[121.5874634,39.603756],[121.5826721,39.6052818],[121.5764236,39.6060982],[121.5716171,39.6080818],[121.5669174,39.6103325],[121.5656128,39.6109581],[121.5597229,39.6092644],[121.5523987,39.6052589],[121.5483322,39.6019897],[121.5461273,39.6067619],[121.5472107,39.6106644],[121.5485687,39.6152649],[121.5488281,39.616642],[121.548111,39.6214333],[121.5441437,39.6257172],[121.5428238,39.6302719],[121.5391769,39.6334152],[121.5352936,39.6342697],[121.5335464,39.6328659],[121.5312729,39.640152],[121.5281296,39.6465034],[121.5246735,39.6537704],[121.52845,39.6568069],[121.5338135,39.6564369],[121.5426483,39.6588631],[121.5437698,39.661171],[121.545433,39.6660004],[121.5463715,39.6749382],[121.5431976,39.6826668],[121.5365601,39.6862221],[121.531601,39.6936913],[121.5270233,39.6986465],[121.5230713,39.6905785],[121.5186234,39.6907349],[121.518158,39.6964455],[121.5159302,39.7019005],[121.5119324,39.7066383],[121.5105286,39.7038727],[121.5115891,39.6977119],[121.5114517,39.691761],[121.5059204,39.6875534],[121.5047684,39.6863899],[121.5037384,39.6911774],[121.502449,39.6950455],[121.4989929,39.7020798],[121.4955673,39.707283],[121.4858475,39.7149048],[121.4803314,39.7209892],[121.4756927,39.7277756],[121.4689865,39.7329254],[121.4586487,39.7414436],[121.4593811,39.7471771],[121.4676132,39.7507439],[121.4749832,39.7527008],[121.481163,39.7553177],[121.4866562,39.7608986],[121.4891815,39.766201],[121.491127,39.7710381],[121.4906769,39.7735291],[121.4904327,39.7749176],[121.4897614,39.7776489],[121.4852219,39.7803192],[121.4818192,39.7850647],[121.480423,39.7925949],[121.4719772,39.7963409],[121.4688492,39.8020096],[121.4703827,39.8111839],[121.4833908,39.8139191],[121.4907837,39.8160973],[121.4963608,39.8187065],[121.5059967,39.8254967],[121.5114822,39.8315353],[121.5169067,39.8400879],[121.5260086,39.8448067],[121.5268326,39.8473358],[121.5266266,39.8546562],[121.532753,39.8595581],[121.5350571,39.862339],[121.5375824,39.8680992],[121.5423584,39.8679466],[121.5487366,39.8630142],[121.5565414,39.8610802],[121.5675735,39.860569],[121.5684814,39.8601265],[121.583313,39.862648],[121.5933075,39.8663864],[121.5948105,39.8669472],[121.6072006,39.8714828],[121.615448,39.875042],[121.62397,39.8795204],[121.6292038,39.884861],[121.6323395,39.8899422],[121.6297836,39.8965378],[121.6320724,39.9002304],[121.6376877,39.9021454],[121.644577,39.90065],[121.6469421,39.901371],[121.654747,39.8992043],[121.6627579,39.9006958],[121.6673508,39.9076233],[121.6699371,39.9110947],[121.6743011,39.9155045],[121.6825027,39.9215775],[121.6905136,39.9228363],[121.6957626,39.9274902],[121.7022781,39.9291878],[121.705307,39.9271736],[121.7072372,39.9212532],[121.7129898,39.9181366],[121.7204437,39.9180183],[121.7240829,39.915554],[121.7301102,39.9126663],[121.7363968,39.9116135],[121.7473602,39.9140587],[121.7533875,39.9113998],[121.7549362,39.9089088],[121.7581787,39.9103241],[121.7602081,39.9126396],[121.7666931,39.9157066],[121.7720184,39.9176102],[121.7761078,39.9211006],[121.77388,39.9267845],[121.7780304,39.9277611],[121.7854767,39.9278641],[121.7895737,39.9313507],[121.7904129,39.933651],[121.7819824,39.937191],[121.7858429,39.9379349],[121.78936,39.9404984],[121.7872086,39.9432144],[121.7817688,39.9463387],[121.7834015,39.9527664],[121.784523,39.9559822],[121.7895279,39.9585686],[121.7968903,39.9623299],[121.8084183,39.9668388],[121.8175735,39.9708519],[121.8238297,39.9711647],[121.8354034,39.9738388],[121.8445435,39.9785385],[121.8505936,39.9879951],[121.8589172,39.9887924],[121.8684006,39.9921227],[121.8778305,39.9972763],[121.8840103,40.0000038],[121.8702469,40.010849],[121.8509369,40.008667],[121.8484268,40.0053825],[121.8408585,40.0109329],[121.8358612,40.0137062],[121.8239212,40.0138092],[121.8204727,40.0233955],[121.8431473,40.023632],[121.8541794,40.0251236],[121.8687286,40.02985],[121.8811493,40.03685],[121.8854828,40.0460548],[121.8958664,40.0495949],[121.9041824,40.052887],[121.9154129,40.0603256],[121.9224472,40.0684166],[121.9267273,40.0808296],[121.9242172,40.0888252],[121.9372406,40.0967369],[121.9419403,40.1018219],[121.9521866,40.1156693],[121.9496231,40.1073952],[121.9597015,40.1096268],[121.9632568,40.1153107],[121.9652634,40.1152039],[121.9758072,40.1152],[121.991333,40.11763],[121.9992905,40.1250343],[122.0024872,40.1305618],[122.0113373,40.1388893],[122.0139313,40.1460152],[122.0119629,40.1579132],[122.0064392,40.1468658],[122.0061264,40.1674843],[121.9850616,40.1755447],[121.9879227,40.1840477],[122.0121536,40.1858673],[122.0387115,40.1904526],[122.0476074,40.1967125],[122.0577927,40.1946716],[122.0603867,40.202549],[122.0651321,40.2064819],[122.0793991,40.2143936],[122.0924301,40.2245789],[122.0971375,40.2312622],[122.1048126,40.2391129],[122.1109467,40.2508507],[122.111969,40.2643776],[122.1139679,40.2714958],[122.1030731,40.2792015],[122.100853,40.2892647],[122.1025696,40.294548],[122.104248,40.3035011],[122.1298981,40.3142395],[122.1442337,40.3189316],[122.1495514,40.3249321],[122.1605988,40.3291359],[122.1687012,40.3335114],[122.1703796,40.3388329],[122.183197,40.3448868],[122.1852188,40.3515472],[122.1983566,40.3571396],[122.1985397,40.366993],[122.2086029,40.3787498],[122.2087631,40.390667],[122.2003708,40.4142113],[122.2126236,40.4200249],[122.2225571,40.4171143],[122.2144928,40.4145393],[122.2322006,40.4151192],[122.2449112,40.4159546],[122.2465134,40.424839],[122.2492905,40.4281578],[122.2509537,40.4301376],[122.2553482,40.4404793],[122.2673035,40.4462852],[122.2759933,40.448864],[122.2797318,40.4548645],[122.2807236,40.4564552],[122.2868423,40.4567223],[122.289093,40.4608612],[122.2748566,40.4692497],[122.2785873,40.4853134],[122.2912216,40.4860802],[122.2871933,40.4965973],[122.2753296,40.5093575],[122.2712097,40.5198097],[122.2603989,40.5264473],[122.2488708,40.5350761],[122.243988,40.5410042],[122.2348938,40.5473595],[122.2251434,40.557148],[122.2076111,40.5627556],[122.2041931,40.5723534],[122.1878967,40.5749893],[122.1811981,40.5806694],[122.1742096,40.5858917],[122.1648407,40.5883446],[122.1551285,40.5944595],[122.1450577,40.6046944],[122.1409836,40.6170387],[122.1490021,40.6258087],[122.1510773,40.6285744],[122.1549072,40.6347885],[122.1605225,40.6439972],[122.1646271,40.6529655],[122.1692963,40.6656075],[122.1643372,40.6754227],[122.1495819,40.6771049],[122.1407166,40.6782074],[122.1283112,40.6863823],[122.1177368,40.6881332],[122.1121979,40.6963387],[122.0960693,40.706295],[122.0917282,40.7147408],[122.0808334,40.7174034],[122.074707,40.7237701],[122.0637512,40.7303276],[122.065033,40.7328415],[122.0672836,40.7372322],[122.0661774,40.7371559],[122.055809,40.7364502],[122.0435486,40.7498665],[122.0367966,40.7571449],[122.0295334,40.7586861],[122.0209732,40.7650299],[122.0118179,40.7756004],[122.0105286,40.7770844],[122.0037918,40.7829857],[121.9864578,40.7906227],[121.9814606,40.8013496],[121.9703369,40.7971268],[121.9717102,40.787056],[121.9685974,40.7927551],[121.9610596,40.7922287],[121.9573135,40.79953],[121.9583664,40.8089333],[121.9619064,40.8146973],[121.9818192,40.8171692],[121.9782867,40.8302002],[121.9679489,40.8342323],[121.9793167,40.8435326],[121.9902267,40.8603287],[121.9940109,40.8695297],[121.9744568,40.8631668],[121.9785233,40.8739738],[121.9790268,40.8801651],[121.9714584,40.8807869],[121.9610138,40.8715248],[121.9644165,40.8853073],[121.9643173,40.8921814],[121.9669418,40.8986206],[121.9631271,40.9095879],[121.968338,40.9252205],[121.9595032,40.9288063],[121.9611435,40.9402809],[121.9562073,40.9450493],[121.9655838,40.9460526],[121.9797211,40.9525948],[121.9612427,40.9528885],[121.9726181,40.9612389],[121.9626236,40.9616089],[121.9515228,40.9634056],[121.94841,40.9561539],[121.9155807,40.9810219],[121.9238586,40.9886475],[121.9262314,40.9971809],[121.9167404,40.9884529],[121.8922272,40.9856987],[121.8739319,40.989769],[121.8461533,40.9882736],[121.8453522,40.9876862],[121.8341064,40.9830551],[121.8390427,40.9950218],[121.8389435,41.0005226],[121.8466873,41.0079346],[121.8477783,41.0155106],[121.8391266,41.0071716],[121.8361969,41.0016403],[121.8327866,40.9892311],[121.8249969,40.9834213],[121.8193436,40.9787788],[121.8091888,40.9866943],[121.8194199,40.9909248],[121.8304596,41.0006638],[121.8270264,41.0054436],[121.8202362,40.9962044],[121.8129272,40.9975052],[121.8047867,40.9953575],[121.8149719,41.0021095],[121.8182068,41.0078735],[121.8286896,41.0146294],[121.8425522,41.0195808],[121.8372726,41.0268631],[121.8258972,41.017807],[121.8165131,41.0177116],[121.8136597,41.0078239],[121.8013916,40.9987602],[121.8060837,41.0079765],[121.8005371,41.0125008],[121.8007278,41.0184631],[121.8048096,41.0274429],[121.8121414,41.0412712],[121.8047485,41.0476112],[121.8009567,41.0526161],[121.7963791,41.0573807],[121.7887878,41.0575256],[121.7877502,41.0481186],[121.7893982,41.0412636],[121.7883377,41.0327682],[121.7808838,41.0262718],[121.7729187,41.0303116],[121.7628174,41.0354767],[121.7656403,41.0302353],[121.7721405,41.023201],[121.7641602,41.0123405],[121.7648697,41.0070763],[121.7564468,41.0033188],[121.7538681,40.9957275],[121.7438812,40.9949303],[121.7452316,40.9878387],[121.7417679,40.9788628],[121.7469864,40.9752541],[121.7340164,40.9716721],[121.7276001,40.9750366],[121.7332306,40.9815178],[121.7267914,40.9853439],[121.7178879,40.9912033],[121.7109375,40.9902077],[121.72052,40.98069],[121.7195129,40.9701347],[121.7126236,40.9666176],[121.7136917,40.958149],[121.7195587,40.9524879],[121.7169571,40.9455833],[121.7261429,40.9411011],[121.7333527,40.9390869],[121.7384109,40.9327583],[121.7568283,40.935482],[121.7599869,40.9284134],[121.7603912,40.9231415],[121.7491379,40.9260025],[121.7412186,40.9286613],[121.7317276,40.9340591],[121.7217331,40.9339447],[121.7210236,40.9394379],[121.7143936,40.9379883],[121.7109299,40.9445953],[121.7096863,40.930603],[121.7236328,40.9300728],[121.7222366,40.9231796],[121.7330704,40.9113846],[121.7504807,40.918911],[121.7550964,40.9146042],[121.7488632,40.9090385],[121.750267,40.89851],[121.7390137,40.9018211],[121.7340164,40.9093323],[121.7265091,40.906498],[121.7194672,40.9103165],[121.7171707,40.9040985],[121.7140427,40.9093361],[121.7063065,40.9177284],[121.7012634,40.9126282],[121.6939316,40.916214],[121.6858063,40.9133682],[121.6838074,40.9078445],[121.6785736,40.9123688],[121.6741409,40.9068146],[121.6644135,40.9092216],[121.6553802,40.9065933],[121.6546173,40.8990211],[121.6517563,40.8909645],[121.6423035,40.8803101],[121.637619,40.8873596],[121.6317368,40.8788109],[121.6220474,40.8796082],[121.6211166,40.8663025],[121.6088104,40.8620262],[121.6025772,40.8702011],[121.5999908,40.8781929],[121.6033173,40.892334],[121.5980072,40.8963051],[121.5908737,40.8884087],[121.5916367,40.8806229],[121.5875168,40.8753014],[121.5872192,40.8758278],[121.581543,40.8857651],[121.5835571,40.8920937],[121.5855103,40.8981972],[121.583107,40.9030113],[121.581131,40.8969803],[121.5803833,40.8898659],[121.5764236,40.8767548],[121.5629272,40.8848343],[121.5501785,40.8871956],[121.558197,40.89394],[121.5616531,40.9020081],[121.5631638,40.8887329],[121.5732498,40.8975716],[121.5780869,40.9118423],[121.5698624,40.9142609],[121.5652237,40.919014],[121.5581207,40.911129],[121.5495224,40.9167519],[121.5490494,40.9107857],[121.535759,40.9096985],[121.5413971,40.9143562],[121.5366898,40.9220886],[121.5271225,40.9166908],[121.5296936,40.9238319],[121.5336838,40.9346542],[121.5147934,40.9266167],[121.5111084,40.9421539],[121.5104828,40.9297676],[121.4986877,40.9289284],[121.4941864,40.9403267],[121.4932022,40.9304581],[121.4820328,40.92939],[121.4796219,40.9417381],[121.478363,40.9307175],[121.478302,40.9201736],[121.4631424,40.9211159],[121.4673233,40.9365311],[121.4633331,40.9520607],[121.4586334,40.932972],[121.45327,40.9290047],[121.4535065,40.9189224],[121.4407425,40.908432],[121.4238129,40.9079704],[121.4197006,40.9147911],[121.4097519,40.913044],[121.4045029,40.9177856],[121.3967133,40.914238],[121.3884735,40.9168701],[121.3785095,40.9155846],[121.3729706,40.9194031],[121.3742523,40.9285889],[121.3860092,40.9308167],[121.3918762,40.9380074],[121.3706818,40.9381638],[121.3765717,40.9572716],[121.3652573,40.9490891],[121.3623962,40.942627],[121.3640976,40.935318],[121.3548584,40.9292259],[121.3455582,40.9378014],[121.3452072,40.9279366],[121.3370972,40.924839],[121.3336563,40.9293747],[121.3366928,40.9415665],[121.3410568,40.9480476],[121.3516922,40.9587479],[121.3567429,40.9631767],[121.3575363,40.9755363],[121.3500366,40.9644547],[121.3418121,40.9542503],[121.3316727,40.9481392],[121.3259125,40.936367],[121.328949,40.9478722],[121.3280334,40.9538078],[121.3291702,40.963131],[121.3293228,40.9641724],[121.3153381,40.971962],[121.3207169,40.9619598],[121.318161,40.9552765],[121.3168564,40.9470062],[121.3115463,40.9414253],[121.3024063,40.9435806],[121.3031464,40.9497795],[121.3062134,40.960598],[121.2987366,40.967823],[121.2981491,40.9792747],[121.3043594,40.985096],[121.2941589,40.9812775],[121.2909927,40.9750404],[121.2915878,40.9635887],[121.2966003,40.9572449],[121.2844315,40.9593544],[121.2918472,40.9532776],[121.2805405,40.946003],[121.2744217,40.9367409],[121.283577,40.9338989],[121.2944336,40.9356689],[121.3041916,40.9330635],[121.3130264,40.9311333],[121.3163528,40.9197197],[121.3171234,40.9133148],[121.3004837,40.9130669],[121.2972488,40.9205818],[121.2902908,40.9321671],[121.2902832,40.9209366],[121.2937775,40.9145699],[121.2835388,40.9125824],[121.280632,40.9194145],[121.2708664,40.9224739],[121.2730484,40.9085274],[121.2630768,40.9076881],[121.2598572,40.9147415],[121.2584076,40.9238892],[121.2539368,40.9327583],[121.2598419,40.9383507],[121.2492905,40.9365845],[121.2521515,40.9201241],[121.2415771,40.9195023],[121.2396927,40.9332275],[121.2440033,40.9475861],[121.2314682,40.9349327],[121.2245636,40.9217606],[121.2195435,40.9283295],[121.2222137,40.9412079],[121.2335815,40.9464264],[121.2327805,40.9649811],[121.2226868,40.945797],[121.2161865,40.9397354],[121.2134323,40.952301],[121.2091522,40.9426079],[121.2094879,40.9304619],[121.2021179,40.945015],[121.1978378,40.9355507],[121.1936874,40.9432755],[121.2088165,40.9547462],[121.2205887,40.972744],[121.2065506,40.9602127],[121.1924133,40.9536743],[121.1887436,40.9468651],[121.1853333,40.9387894],[121.1752396,40.9387856],[121.1766281,40.9358978],[121.1807404,40.9295464],[121.1719131,40.9204636],[121.1644669,40.9162178],[121.1534882,40.9082489],[121.1435471,40.8957062],[121.1362381,40.8868752],[121.134613,40.8802032],[121.120842,40.8749313],[121.1105194,40.8761368],[121.0945663,40.8733482],[121.0860901,40.8631172],[121.0810394,40.8497353],[121.0837936,40.8383255],[121.0899429,40.8246727],[121.0770035,40.8226204],[121.0636597,40.8240013],[121.0460205,40.8273621],[121.0335236,40.8310432],[121.0200729,40.8257675],[121.0183334,40.8333015],[121.0264282,40.8355026],[121.0245132,40.8487663],[121.0146637,40.844696],[121.0152893,40.8560715],[121.0087433,40.8500938],[121.0062332,40.862236],[121.0044785,40.8651237],[121.0040436,40.8658295],[121.0033722,40.8577957],[120.9959793,40.8521614],[121.0014114,40.8426285],[121.0043106,40.8369522],[121.0012207,40.8291016],[120.98629,40.8329659],[120.9748764,40.8304672],[120.982399,40.8218918],[120.9706421,40.8207664],[120.9617767,40.8137741],[120.9687729,40.8033104],[120.9586868,40.7969398],[120.9804077,40.7883873],[120.9880905,40.7841682],[120.9788437,40.7805672],[120.9760818,40.7720375],[120.96698,40.7732506],[120.9544373,40.7682076],[120.9539108,40.7757645],[120.9288864,40.7643051],[120.9315567,40.7565613],[120.9330902,40.7559013],[120.9294434,40.7473526],[120.9350967,40.7398911],[120.9231796,40.7397957],[120.9304428,40.7335815],[120.9317169,40.7324944],[120.9310379,40.7251472],[120.9416275,40.7244225],[120.9466019,40.7293282],[120.953743,40.7230377],[120.9660873,40.7241783],[120.9746399,40.730751],[120.9856491,40.7261353],[120.988739,40.7335243],[121.000473,40.7348785],[121.0043335,40.7273827],[121.0127563,40.7282181],[121.0159531,40.7223129],[121.0293274,40.7191086],[121.0252686,40.7135391],[121.0126114,40.7130852],[121.0014114,40.714035],[120.9991989,40.7075768],[120.9863663,40.7126236],[120.9647369,40.7090263],[120.9607925,40.7002449],[120.9540634,40.6937027],[120.9467163,40.69701],[120.9345169,40.6915131],[120.912323,40.6872101],[120.8968277,40.6811905],[120.8812103,40.6790657],[120.868103,40.683403],[120.8511963,40.6835403],[120.8340988,40.6806946],[120.8282776,40.6741638],[120.8273697,40.6669006],[120.8266068,40.6608353],[120.8302383,40.6423378],[120.8228912,40.6366959],[120.8088608,40.6233559],[120.8059082,40.6125259],[120.7967072,40.5992813],[120.7901764,40.6053429],[120.7833328,40.6031456],[120.775177,40.6032143],[120.7806473,40.5930061],[120.7704391,40.5913773],[120.7619629,40.5848427],[120.7552567,40.5691223],[120.7426682,40.5674934],[120.737381,40.5634918],[120.7246933,40.5563583],[120.7028503,40.552021],[120.682869,40.546566],[120.6970291,40.5376892],[120.6889267,40.5368347],[120.6803436,40.5332184],[120.6747131,40.5303535],[120.6894531,40.5306549],[120.6736526,40.526432],[120.6622391,40.5257378],[120.6750565,40.512249],[120.6639481,40.4945984],[120.6586914,40.4816513],[120.6418686,40.4810715],[120.6315231,40.4847527],[120.6306,40.4934425],[120.6217194,40.4811058],[120.6096573,40.4766273],[120.5966873,40.466362],[120.5898438,40.4646111],[120.5863037,40.4546776],[120.5938492,40.4454384],[120.6016235,40.4382706],[120.5959167,40.4363136],[120.5876465,40.4343033],[120.5985336,40.4324722],[120.5928116,40.4245605],[120.5851517,40.4122467],[120.5705032,40.4103241],[120.5633316,40.4172745],[120.5423126,40.4168167],[120.5490875,40.4123802],[120.5385132,40.4059601],[120.5409698,40.3963852],[120.5311737,40.3773766],[120.5440826,40.3776588],[120.555748,40.370575],[120.5697708,40.3731728],[120.5808868,40.3727264],[120.5875473,40.3795166],[120.5950317,40.3801346],[120.5985489,40.3744812],[120.5944977,40.3620148],[120.5808563,40.3571396],[120.5652924,40.3561134],[120.5506516,40.3461685],[120.546051,40.3407936],[120.5385895,40.3397141],[120.5279388,40.3355827],[120.5154572,40.332325],[120.5017014,40.323082],[120.4997177,40.3120346],[120.5006409,40.3035736],[120.5008392,40.2905121],[120.5005569,40.274231],[120.4905472,40.2694244],[120.4772186,40.268261],[120.4709091,40.2677078],[120.490242,40.2616234],[120.4984818,40.2564659],[120.5134201,40.2653999],[120.5018234,40.2411499],[120.4813309,40.2310944],[120.4674911,40.2272568],[120.4748611,40.2170372],[120.4611893,40.2064095],[120.4559631,40.1943741],[120.4461136,40.1936913],[120.4341736,40.1925011],[120.4201965,40.1901169],[120.422493,40.2004852],[120.4292297,40.2040787],[120.4197998,40.2077599],[120.4197235,40.2022552],[120.4091568,40.1965103],[120.4010925,40.1960945],[120.3847504,40.1927338],[120.3762665,40.1874924],[120.3588867,40.1879997],[120.3677292,40.1916466],[120.3784332,40.1935043],[120.3799591,40.2004166],[120.3699493,40.1960526],[120.3610382,40.1942406],[120.352562,40.196331],[120.339592,40.1987762],[120.3441391,40.1899414],[120.3503036,40.1857338],[120.3329391,40.1853218],[120.3198013,40.1845512],[120.3031616,40.1815948],[120.2998123,40.1753578],[120.2968216,40.1679497],[120.2929001,40.161438],[120.2783203,40.1592522],[120.2729187,40.1524696],[120.2596512,40.1475639],[120.2493134,40.1443291],[120.236908,40.1403542],[120.2278595,40.134861],[120.2106934,40.1305351],[120.1994781,40.1268158],[120.1837463,40.1236687],[120.1783981,40.1159706],[120.1521606,40.1070518],[120.140892,40.104702],[120.1275864,40.1011505],[120.1160583,40.0981026],[120.1046295,40.092762],[120.0918503,40.0920296],[120.0806198,40.0860786],[120.0736008,40.0853271],[120.0614395,40.082798],[120.0489807,40.082859],[120.0425415,40.0818787],[120.0342789,40.0780792],[120.0296097,40.0735283],[120.0167313,40.0694885],[120.011261,40.0691833],[120.0036621,40.0696182],[120,40.0697174],[119.992218,40.0647087],[119.9786072,40.0665627],[119.9666672,40.0616074],[119.96064,40.0580063],[119.9506531,40.0530014],[119.9346695,40.0451431],[119.9286423,40.0415382],[119.9169617,40.0425797],[119.9155273,40.0321007],[119.909523,40.0284958],[119.9133224,40.0261497],[119.9140091,40.019371],[119.9098129,40.0127144],[119.9075165,40.006321],[119.9000015,40],[119.8933029,39.9983177],[119.889122,39.9960327],[119.8778076,39.9951286],[119.8593521,39.9921684],[119.8414764,39.9908066],[119.8379288,39.9903412],[119.8482971,40.0330963],[119.841217,40.045887],[119.7701874,40.0454903],[119.7635727,40.0621529],[119.7741089,40.0812798],[119.7484436,40.1049042],[119.7461929,40.1253204],[119.7552414,40.1328316],[119.7376099,40.1916656],[119.6277695,40.2259178],[119.619751,40.2394066],[119.643013,40.2680244],[119.6069107,40.3195763],[119.5922928,40.3330193],[119.5939789,40.3553848],[119.5808105,40.3742752],[119.5946274,40.4056816],[119.5889587,40.4248199],[119.5990829,40.4538116],[119.5449524,40.5081329],[119.5668411,40.5258293],[119.5531235,40.5465622],[119.5245972,40.5473366],[119.4751663,40.531971],[119.4228897,40.5386124],[119.2959213,40.5288353],[119.2499084,40.5418663],[119.2157669,40.5655746],[119.2296982,40.5956459],[119.1791,40.6083069],[119.1435699,40.6004639],[119.1490631,40.6094818],[119.1371078,40.6328583],[119.1729431,40.6617355],[119.1794968,40.6741562],[119.1698685,40.6885643],[119.1524277,40.6892052],[119.1028366,40.6629333],[119.0700378,40.6707802],[119.0497589,40.6607285],[119.0278625,40.6852341],[118.9892197,40.6906738],[118.9636536,40.7067909],[118.9383087,40.7446175],[118.8977737,40.7566986],[118.8915634,40.7755814],[118.8422623,40.7960625],[118.8348694,40.8081055],[118.8736572,40.8758888],[118.8891068,40.9562798],[118.9135971,40.9639854],[118.9496002,40.9485703],[118.9765701,40.9500351],[119.0141068,40.9960785],[119.0072403,41.0058365],[118.9459229,41.0167923],[118.9300079,41.0278854],[118.9259186,41.047184],[118.9621429,41.0749817],[119.0167313,41.0611954],[119.0398178,41.0775986],[119.0672836,41.0822334],[119.0746765,41.1294022],[119.119873,41.1365891],[119.1725006,41.1758308],[119.1824799,41.1961746],[119.1594162,41.2179909],[119.2034073,41.2238045],[119.2418594,41.2693024],[119.2331085,41.3125114],[119.2402267,41.322403],[119.2933273,41.3261299],[119.3037109,41.3471413],[119.309288,41.3291664],[119.3198471,41.327301],[119.3116074,41.3670731],[119.3242035,41.3829994],[119.29879,41.4003258],[119.3424301,41.408844],[119.3647003,41.4295502],[119.3714828,41.4575119],[119.394928,41.4701805],[119.3983765,41.4854126],[119.3909531,41.502758],[119.3569717,41.5267181],[119.3523331,41.5453644],[119.4050598,41.5829048],[119.3282623,41.6134338],[119.3016129,41.6525192],[119.3031082,41.6655197],[119.2919769,41.7035294],[119.3106995,41.731884],[119.2950211,41.7439346],[119.3066711,41.7578278],[119.27948,41.7797661],[119.3181992,41.8497086],[119.3264771,41.9169693],[119.3133926,41.966465],[119.3502274,41.9923096],[119.3742981,42.0406456],[119.3691635,42.0954361],[119.3523788,42.1120911],[119.3168106,42.11549],[119.262558,42.1831322],[119.2348099,42.1899757],[119.2301331,42.2097511],[119.2786865,42.2673531],[119.3201675,42.2764015],[119.3475723,42.3013382],[119.4166336,42.3114929],[119.4580536,42.3312454],[119.4965668,42.3859596],[119.5371323,42.3557053],[119.5522537,42.3113937],[119.5408096,42.2986603],[119.5524521,42.2905769],[119.5584106,42.2986526],[119.6001129,42.2554512],[119.7444534,42.2059402],[119.8358536,42.2133751],[119.846962,42.2077904],[119.85009,42.174305],[119.8318405,42.1332054],[119.8363037,42.1015091],[119.8696976,42.0758247],[119.8790665,42.0499306],[119.8944321,42.0439835],[119.8919067,42.0259895],[119.9206772,42.0066032],[119.9200974,41.9848862],[119.9449234,41.9722443],[119.9486923,41.9183731],[119.9791336,41.9025803],[120.0119934,41.8264351],[120.0340118,41.8137894],[120.0433502,41.774807],[120.0313492,41.7617645],[120.0241318,41.7161598],[120.0656662,41.6952209],[120.0901489,41.6947098],[120.123909,41.7138824],[120.1331635,41.7260056],[120.1211472,41.7702789],[120.1723022,41.8180428],[120.1825867,41.845974],[120.2151566,41.8541183],[120.2587814,41.9018707],[120.2839813,41.9441757],[120.3199463,41.9474678],[120.3309784,41.978363],[120.3771667,41.9877777],[120.4053268,41.9761772],[120.4194107,41.9999428],[120.4688187,42.0198479],[120.4795837,42.0745697],[120.4610977,42.103096],[120.4763031,42.1135559],[120.5546265,42.1456337],[120.5789108,42.1651917],[120.6194382,42.1525383],[120.6912613,42.1960297],[120.7166367,42.2015686],[120.7326202,42.2186356],[120.7850418,42.2163773],[120.8721771,42.2600861],[120.938797,42.2727585],[120.9637833,42.2544022],[121.0247574,42.2469101],[121.1667175,42.3154869],[121.1868973,42.3475723],[121.204422,42.3569908],[121.26577,42.375267],[121.2938538,42.4368057],[121.3255463,42.454277],[121.3741608,42.4538651],[121.39328,42.474926],[121.4159164,42.4757614],[121.4573822,42.4969635],[121.5005417,42.4883232],[121.5393829,42.5059128],[121.5689392,42.5037956],[121.5985565,42.5132217],[121.6086578,42.5084839],[121.6308136,42.4813194],[121.6369934,42.449131],[121.6647568,42.4353943],[121.7021484,42.4428177],[121.7277374,42.4793053],[121.7812805,42.5066109],[121.7957001,42.5116386],[121.8014679,42.4980164],[121.8219223,42.5267792],[121.8441925,42.5250168],[121.8471222,42.538723],[121.8576431,42.5282211],[121.8605881,42.5426102],[121.8941803,42.5637932],[121.8995667,42.5673676],[121.9165115,42.6003036],[121.9086075,42.6144295],[121.9203033,42.6481438],[121.9424515,42.6596642],[121.9402618,42.6773529],[121.9623795,42.6877213],[121.9897766,42.7066994],[122.0151978,42.7041626],[122.0444107,42.7207985],[122.0639038,42.7179031],[122.1257935,42.7006454],[122.1605835,42.6914711],[122.190712,42.6986542],[122.1914673,42.7266083],[122.2616272,42.691227],[122.3311615,42.6725502],[122.3594971,42.6813354],[122.3811111,42.6776505],[122.3908386,42.6872978],[122.3870316,42.7080154],[122.4241562,42.7255287],[122.4474792,42.7619171],[122.3638763,42.7729454],[122.3363571,42.8239784],[122.3590088,42.8443489],[122.4159164,42.8485985],[122.5516891,42.8234901],[122.5764236,42.7908058],[122.6183014,42.7732964],[122.7187271,42.7832222],[122.7735138,42.7561684],[122.7895889,42.7344322],[122.8261032,42.7234039],[122.855423,42.7249374],[122.8769302,42.7635841],[122.8892517,42.7671585],[122.9146881,42.7715263],[122.9525833,42.7569847],[122.9900894,42.7720222],[123.0582504,42.7710648],[123.1023636,42.8042259],[123.2282562,42.8269806],[123.2167816,42.8452072],[123.1704178,42.8529663],[123.1729736,42.9175644],[123.1786499,42.9302444],[123.2119598,42.9455605],[123.2466431,42.9908714],[123.3485031,43.0066414],[123.4289627,43.0353737],[123.4731369,43.0367508],[123.5126419,43.0327606],[123.5286102,43.0067978],[123.5611496,42.9968109],[123.5746307,42.9922523],[123.5841293,43.019928],[123.5836105,43.0320969],[123.6062927,43.0499458],[123.5940475,43.0544701],[123.6021576,43.0746193],[123.619133,43.0960884],[123.6268463,43.1453743],[123.6386871,43.144783],[123.6553574,43.1705894],[123.6660233,43.1956978],[123.6516037,43.2060318],[123.6735611,43.221138],[123.6764603,43.2425995],[123.6582336,43.2624626],[123.6654205,43.2658806],[123.6779633,43.2675133],[123.686142,43.2691498],[123.6926804,43.2713318],[123.698143,43.2773285],[123.6790466,43.2822342],[123.6823196,43.2876854],[123.6910477,43.2909546],[123.6970367,43.2953186],[123.693222,43.3045845],[123.7041321,43.3056755],[123.7095795,43.3067665],[123.7144928,43.3094902],[123.7008591,43.3220291],[123.6922989,43.3250961],[123.6901932,43.3767662]]]]},
  29 +"properties":{
  30 +"gid":5,
  31 +"name":"辽宁省"}
  32 +},
  33 +{"type":"Feature",
  34 +"geometry":{"type":"MultiPolygon","coordinates":[[[[96.3832855,42.7269554],[96.3830795,42.7253265],[96.3907166,42.7265434],[96.3969116,42.7271156],[96.4062119,42.7277451],[96.4195557,42.7282219],[96.4294815,42.7288589],[96.4371948,42.7303772],[96.4405899,42.7311249],[96.4477081,42.7319412],[96.4548492,42.7320709],[96.4641724,42.7322388],[96.4749908,42.7338066],[96.4861374,42.7351494],[96.4929504,42.7359581],[96.5010071,42.7365608],[96.5090561,42.7376175],[96.5192947,42.7380257],[96.5295334,42.7386627],[96.5353928,42.7399101],[96.5415955,42.7404785],[96.5512085,42.7411003],[96.5602112,42.7412529],[96.5701141,42.7427979],[96.5784912,42.7431717],[96.5849915,42.743969],[96.5905838,42.7440605],[96.5967865,42.7443962],[96.6042328,42.7447472],[96.6147919,42.7451553],[96.6237793,42.7459908],[96.6311951,42.7474899],[96.6386261,42.7482986],[96.6463699,42.749115],[96.6569214,42.7497444],[96.6696472,42.7501793],[96.6826782,42.7510757],[96.6966324,42.7522163],[96.705925,42.7532806],[96.7161789,42.7534409],[96.7267151,42.7545242],[96.7338409,42.7553215],[96.7416077,42.7554436],[96.7484589,42.7548637],[96.7580948,42.7547836],[96.7658615,42.7551308],[96.7748642,42.755497],[96.783844,42.7565536],[96.7872543,42.757061],[96.792244,42.7564507],[96.8006516,42.755661],[96.8146362,42.755867],[96.8261414,42.7558098],[96.8332825,42.7559166],[96.84478,42.7560844],[96.8541183,42.7555351],[96.8640823,42.7547607],[96.8727646,42.7555771],[96.8792572,42.756813],[96.8835983,42.7573357],[96.8919983,42.7569962],[96.9016342,42.7569008],[96.9103317,42.7572556],[96.9209061,42.7567139],[96.9302368,42.7566185],[96.9348984,42.7566833],[96.9451675,42.7561378],[96.9532394,42.7564774],[96.9616318,42.7565918],[96.9725113,42.756279],[96.9780884,42.7570457],[96.9852066,42.7585144],[96.9938812,42.7595482],[97.0047073,42.7617569],[97.0130768,42.7627831],[97.020195,42.7640228],[97.0257645,42.7650108],[97.0347214,42.7676468],[97.0443039,42.7700653],[97.053894,42.7720222],[97.0622559,42.7735023],[97.0709229,42.7749901],[97.0826797,42.7774315],[97.0913391,42.7796021],[97.1006241,42.7813225],[97.1105347,42.7832794],[97.1182785,42.7845192],[97.1275635,42.7866936],[97.1356201,42.7879372],[97.1439743,42.7896461],[97.1529312,42.7925034],[97.1603622,42.7939644],[97.1687469,42.794754],[97.8398666,41.6589546],[97.6206894,41.4930344],[97.61203,41.4583549],[97.6886444,41.3707085],[97.9730759,41.0960732],[98.0002365,41.1078949],[98.2083359,40.9638519],[98.2616272,40.9339714],[98.3187637,40.9157639],[98.3347702,40.9130478],[98.3653946,40.8523636],[98.3693466,40.8367844],[98.2562027,40.5271454],[98.2649231,40.5230446],[98.647934,40.5419121],[98.8688889,40.7530365],[99.0370789,40.8046799],[99.1793747,40.8647118],[99.5683365,40.8487892],[99.6775513,40.932785],[100.0158463,40.9064255],[100.1089096,40.8723946],[100.2268372,40.7219238],[100.2398605,40.6006927],[100.019928,40.397049],[99.9068985,40.2121468],[99.6193771,40.0640297],[99.453186,39.8761063],[99.7649384,39.8859749],[100.0130615,39.7400246],[100.2313995,39.6911125],[100.2647171,39.6786118],[100.3023376,39.628067],[100.3089905,39.5572891],[100.3250427,39.5136223],[100.5013809,39.479805],[100.4955215,39.4007034],[100.6239929,39.3943367],[100.8007431,39.4035454],[100.8478928,39.3970604],[100.8563538,39.3152161],[100.828537,39.2122192],[100.8546371,39.1735725],[100.8622665,39.1059227],[100.8395462,39.0820312],[100.8357468,39.0493622],[100.8407135,39.0254784],[100.857048,39.0089569],[100.8725662,39.0068665],[100.9016266,39.037281],[100.9401474,39.0469246],[100.9851837,38.9744911],[101.0158463,38.9572372],[101.1326981,38.9821014],[101.2198563,39.0239258],[101.2232895,39.0018806],[101.1759491,38.9547234],[101.218071,38.9390297],[101.2432785,38.8723679],[101.3089676,38.8612061],[101.331749,38.848835],[101.3402634,38.831028],[101.3214264,38.7936401],[101.3275223,38.782753],[101.3692627,38.7681503],[101.4114914,38.7686348],[101.5304413,38.7255173],[101.5907669,38.6923294],[101.6168823,38.6619644],[101.6760025,38.692421],[101.7471237,38.691185],[101.7611618,38.6749458],[101.7768478,38.664814],[101.8039322,38.6833878],[101.8538666,38.6796303],[101.8638687,38.7244949],[102.0804901,38.8969002],[101.9280777,39.0102501],[101.8152313,39.1021423],[101.9863663,39.1230087],[102.2007828,39.170517],[102.4558029,39.2540398],[102.6074829,39.1816597],[103.0018768,39.1021957],[103.1238098,39.2029762],[103.1727524,39.2127724],[103.2367783,39.2488747],[103.2545166,39.2484474],[103.2539673,39.2645111],[103.361351,39.3460693],[103.8374634,39.458847],[103.9413681,39.4647636],[104.0910568,39.4178162],[104.0525436,39.2974701],[104.2057114,39.0929489],[104.1742096,38.9414635],[104.0319138,38.8911591],[103.876297,38.6451225],[103.412323,38.4075089],[103.4844208,38.3269119],[103.5444489,38.1552849],[103.3622894,38.0907211],[103.3927612,37.9237785],[103.4102402,37.8474388],[103.6689835,37.7857513],[103.8452988,37.6311722],[103.8992462,37.5864792],[104.1781464,37.4081879],[104.2187119,37.4077873],[104.2938538,37.4301186],[104.4170303,37.4081383],[104.4537582,37.4132309],[104.4569016,37.4340553],[104.4742126,37.4414902],[104.5418015,37.4203453],[104.6377182,37.4173889],[104.6676636,37.4081039],[104.6927872,37.4190559],[104.7354584,37.4215546],[104.672348,37.3639526],[104.6846924,37.3511543],[104.7168808,37.3421822],[104.7143936,37.3278313],[104.6822205,37.3221283],[104.6692734,37.3169289],[104.6633606,37.31073],[104.6595764,37.3077164],[104.6588516,37.3039703],[104.658287,37.3011513],[104.6444778,37.2926216],[104.6295471,37.2997437],[104.6202469,37.2994614],[104.6154633,37.2977715],[104.6137772,37.2941093],[104.615181,37.2859383],[104.6154633,37.2808685],[104.6129303,37.2788963],[104.604187,37.2774887],[104.5963364,37.2736549],[104.6262207,37.2263908],[104.6667328,37.1952782],[104.7086334,37.1986771],[104.7850037,37.2490044],[104.8116608,37.2271423],[104.8512802,37.2172966],[104.8488464,37.1972046],[104.8850021,37.1567879],[104.8937378,37.1304855],[104.912178,37.1251373],[104.9215698,37.0945053],[104.9428024,37.084568],[104.9771271,37.0434532],[105.0339584,37.0170135],[105.1326065,36.9926491],[105.1605072,36.9944229],[105.1697693,36.9828339],[105.1871033,36.8888626],[105.1965637,36.8834839],[105.2241669,36.8987846],[105.2725372,36.8719139],[105.2708282,36.8525543],[105.2920532,36.8455429],[105.3081284,36.8093987],[105.3302002,36.7923088],[105.2960205,36.7528954],[105.2324295,36.7399139],[105.2075424,36.7232094],[105.1991272,36.7060165],[105.2240067,36.6511574],[105.2220993,36.6255875],[105.264328,36.5743713],[105.2446213,36.5423813],[105.2822495,36.5203857],[105.318161,36.5327682],[105.3502426,36.5029678],[105.3674469,36.4500961],[105.3908691,36.4222565],[105.3984375,36.3685646],[105.4307327,36.328186],[105.4483185,36.3226318],[105.4717331,36.2936325],[105.4573364,36.2469482],[105.4877167,36.1885796],[105.5046692,36.1476288],[105.4912033,36.1048889],[105.4189911,36.0987968],[105.3649063,36.0568275],[105.3217468,36.0074348],[105.334137,36.0011673],[105.3301163,35.8919907],[105.3925171,35.8563957],[105.3714371,35.8394127],[105.3673019,35.8071175],[105.3842163,35.8014221],[105.403038,35.8222961],[105.4196625,35.8204956],[105.4304428,35.7861595],[105.4515991,35.769474],[105.4519119,35.7534447],[105.4676666,35.7514038],[105.4840393,35.7276077],[105.5513,35.7265205],[105.5628586,35.688282],[105.5887299,35.7233276],[105.6427612,35.7434845],[105.6725998,35.746685],[105.7283096,35.7301636],[105.7482986,35.7342682],[105.7555923,35.7221222],[105.7482529,35.7061005],[105.7322083,35.7022209],[105.7074738,35.7171249],[105.6914062,35.6885071],[105.7158585,35.6761246],[105.7127304,35.6472702],[105.7478485,35.6302948],[105.7915573,35.5697784],[105.8140488,35.5745583],[105.8441467,35.4922829],[105.8653336,35.5341568],[105.891777,35.5522003],[105.9335785,35.5392761],[105.9681168,35.5403328],[105.9955673,35.5251389],[106.0191498,35.5266685],[106.0267029,35.5200043],[106.0131607,35.506073],[106.0176086,35.4982719],[106.0644913,35.5010948],[106.1027832,35.5208817],[106.1134186,35.5164871],[106.0497284,35.4679337],[105.9925537,35.4809418],[105.9375,35.4645996],[105.9013138,35.4644547],[105.8883286,35.4427223],[105.8989029,35.4170456],[105.9095383,35.4126701],[105.9213562,35.4252434],[105.9977036,35.4392395],[106.0224686,35.4584045],[106.0518417,35.4438782],[106.0791397,35.4602699],[106.0841064,35.4467392],[106.0562592,35.4296608],[106.0598602,35.4225464],[106.0836868,35.4210854],[106.1088486,35.3609772],[106.1286621,35.3931961],[106.1749191,35.4362946],[106.1915588,35.4096489],[106.2363968,35.4080658],[106.2493362,35.3395081],[106.2694168,35.3277245],[106.3234329,35.2575684],[106.3618469,35.2353554],[106.3912964,35.2729759],[106.4706268,35.3123207],[106.4985733,35.3590889],[106.4994812,35.3918419],[106.504303,35.4490738],[106.4712601,35.4554863],[106.481041,35.4787827],[106.4433517,35.5266762],[106.4522018,35.5687637],[106.47789,35.5809593],[106.4700165,35.6082687],[106.4391098,35.6941299],[106.4859238,35.7309151],[106.540947,35.7444954],[106.6181564,35.7287941],[106.6409836,35.708004],[106.6825333,35.721859],[106.7233887,35.6839485],[106.7488022,35.6912804],[106.7537766,35.7267342],[106.8129883,35.7140503],[106.8317566,35.7473068],[106.8671722,35.7432976],[106.8735962,35.7780457],[106.8899994,35.7636833],[106.9073029,35.7712936],[106.9128723,35.7861214],[106.894928,35.8096657],[106.9173508,35.8021088],[106.9233475,35.807312],[106.8814926,35.8523941],[106.8728333,35.875843],[106.8497696,35.879734],[106.8468094,35.8893776],[106.9349136,35.9322319],[106.9331512,35.9462166],[106.8917313,35.9498482],[106.8921432,35.9578552],[106.9209824,35.9619141],[106.9434204,35.9882431],[106.9336472,36.0345993],[106.9476624,36.0923042],[106.9304276,36.1086502],[106.9446106,36.1303291],[106.910553,36.1201096],[106.8893204,36.1448441],[106.8769531,36.1817245],[106.8560791,36.2039413],[106.8361511,36.2080421],[106.8239975,36.2306938],[106.8131638,36.2184906],[106.787468,36.2251968],[106.7580872,36.2175751],[106.7108688,36.2326698],[106.6752167,36.269165],[106.6457672,36.2631149],[106.6341019,36.2793388],[106.6182632,36.2651482],[106.6028137,36.2766724],[106.5893784,36.2731018],[106.5642471,36.2928581],[106.5501709,36.2844467],[106.5448074,36.2567558],[106.5164413,36.2725105],[106.5083389,36.2768822],[106.4961166,36.2648354],[106.4678268,36.2984886],[106.4704895,36.309124],[106.5061798,36.2947273],[106.49646,36.3445015],[106.4997482,36.3742027],[106.5131378,36.3858185],[106.4845734,36.3914604],[106.4798965,36.4152069],[106.5165024,36.4547768],[106.5106201,36.4800949],[106.4831085,36.5004616],[106.4413834,36.5011444],[106.3531265,36.5725708],[106.3565369,36.5790977],[106.4269791,36.5590515],[106.4464493,36.5618896],[106.4526367,36.5762939],[106.4372101,36.6245575],[106.4746933,36.6324654],[106.4948273,36.6940842],[106.5144577,36.6941605],[106.5161667,36.7281837],[106.5784378,36.750061],[106.6187363,36.7247238],[106.6424713,36.7216721],[106.6231766,36.7487183],[106.6349411,36.7605019],[106.6324234,36.7877541],[106.6525574,36.8181229],[106.6169891,36.859436],[106.6383667,36.8875427],[106.6244202,36.8940659],[106.6082077,36.8860664],[106.5921402,36.8955116],[106.5511475,36.9419441],[106.5333405,36.9788895],[106.5348969,36.9894905],[106.5447922,36.9849358],[106.5756989,36.9416809],[106.5888138,36.942028],[106.5965881,36.9681778],[106.6327972,36.9620094],[106.6430283,37.0554848],[106.636467,37.0764351],[106.6028595,37.1083832],[106.6046677,37.1341476],[106.6149979,37.1403885],[106.6377411,37.122612],[106.6535416,37.1280746],[106.6681519,37.1132965],[106.6979904,37.125309],[106.7176285,37.1205292],[106.7482529,37.0905342],[106.7607574,37.1073761],[106.7582932,37.1415215],[106.7811966,37.1556358],[106.8878403,37.1040459],[106.8960114,37.1228371],[106.8832626,37.1429596],[106.8936462,37.148262],[106.9586029,37.116272],[107.0119934,37.1108398],[107.0239105,37.1131744],[107.0274429,37.1348343],[107.081871,37.124115],[107.1708527,37.1405144],[107.2332687,37.1032677],[107.2601776,37.1019897],[107.2713928,37.0822525],[107.2732773,37.0138893],[107.28302,37.0062065],[107.29245,36.9311943],[107.3043365,36.9160576],[107.331131,36.9255486],[107.3602829,36.905014],[107.4315033,36.8979111],[107.4802933,36.9061813],[107.5305176,36.8644218],[107.5310669,36.8345985],[107.5407028,36.8265114],[107.5940399,36.8343582],[107.6483612,36.8160362],[107.6769867,36.8319054],[107.6991425,36.812542],[107.7059174,36.8037071],[107.7567902,36.7965202],[107.8712692,36.7591019],[107.8954315,36.7601585],[107.9328766,36.7026634],[107.9435577,36.6585312],[107.9544296,36.6552505],[108.0065994,36.6850357],[108.0192719,36.6544762],[107.9908905,36.6381111],[108.0457611,36.59375],[108.0872421,36.6018982],[108.0899963,36.5868034],[108.1264725,36.5791016],[108.1397934,36.5606804],[108.158577,36.5635796],[108.1928864,36.6297989],[108.2134171,36.6328239],[108.1998367,36.5965347],[108.2117233,36.5712814],[108.2440414,36.5688324],[108.2565384,36.5511284],[108.2575226,36.5628052],[108.2707214,36.5671387],[108.2968216,36.5450058],[108.3018875,36.561058],[108.343399,36.5559998],[108.3656387,36.5156593],[108.381752,36.5140724],[108.426918,36.4358673],[108.4787598,36.4455833],[108.5104294,36.4755249],[108.5579529,36.4387627],[108.6145172,36.4341164],[108.6371765,36.4005966],[108.698143,36.3783951],[108.7140579,36.362278],[108.6870193,36.2923241],[108.679863,36.2821617],[108.6498337,36.2770157],[108.6448135,36.2621269],[108.6602173,36.2149887],[108.7076263,36.1383629],[108.6790695,36.0694275],[108.6838531,36.0213013],[108.6564484,36.0016327],[108.6475677,35.9485321],[108.5761337,35.9481354],[108.5540009,35.9233208],[108.5010071,35.8951263],[108.4984436,35.8693848],[108.5197678,35.8399048],[108.5282364,35.754776],[108.5196533,35.7045441],[108.5275726,35.6826057],[108.5185623,35.6614456],[108.5296936,35.6267929],[108.5526428,35.6026268],[108.617981,35.5522194],[108.6167831,35.5267487],[108.6014175,35.5033112],[108.6247177,35.4060783],[108.6041794,35.3423691],[108.5836105,35.3120956],[108.5456085,35.3098488],[108.4863586,35.2855263],[108.4209366,35.282486],[108.3628235,35.2897606],[108.3418503,35.3091545],[108.2844772,35.2772408],[108.2358322,35.2653313],[108.2243805,35.2944565],[108.1817703,35.3093376],[108.1171265,35.2933846],[108.0847473,35.278389],[108.0504684,35.2587051],[107.9990005,35.2486954],[107.9766998,35.2396622],[107.9461212,35.2469711],[107.9533234,35.2527351],[107.9573593,35.2599411],[107.9541931,35.266571],[107.9412231,35.268013],[107.9308472,35.262249],[107.9198914,35.2559052],[107.9054871,35.2559052],[107.8887711,35.256485],[107.8737793,35.257637],[107.8634033,35.2599411],[107.8524628,35.267437],[107.8409271,35.274353],[107.8144073,35.278389],[107.8000031,35.2824211],[107.7896194,35.289917],[107.787323,35.296257],[107.7827072,35.3031731],[107.7705994,35.305481],[107.7561874,35.306633],[107.7498474,35.3094864],[107.7156601,35.2976913],[107.7340698,35.283638],[107.711731,35.2523918],[107.6492386,35.2492981],[107.6919403,35.199337],[107.7462387,35.0904999],[107.7873077,35.0474014],[107.8512497,35.0057144],[107.8529587,34.9962883],[107.8115234,34.9716263],[107.8016968,34.9568634],[107.7673187,34.9645653],[107.7259521,34.9501419],[107.6762619,34.9479942],[107.6361771,34.9282532],[107.6211395,34.9637871],[107.6009674,34.9597549],[107.5675125,34.9724274],[107.5331497,34.9335442],[107.5276489,34.9123192],[107.4505463,34.9175987],[107.3957138,34.9337425],[107.3638763,34.9186096],[107.3411102,34.9363403],[107.290657,34.9372559],[107.2682419,34.9029541],[107.1962433,34.882576],[107.16745,34.9381599],[107.1147003,34.9509468],[107.0847702,34.9774208],[107.0930099,35.0018425],[107.0838623,35.0214233],[107.0588531,35.0274467],[107.0146027,35.0348206],[106.9943619,35.0604744],[106.9456711,35.0710831],[106.9161606,35.0952225],[106.8862762,35.0950699],[106.8341064,35.0806923],[106.7291107,35.1020584],[106.6992798,35.0851364],[106.6254272,35.0752106],[106.5557938,35.0908737],[106.5420303,35.0838737],[106.5285187,35.0480003],[106.4883118,35.0207939],[106.4888916,34.9419746],[106.5059967,34.9260445],[106.516449,34.8863297],[106.5518494,34.8624725],[106.5666504,34.8165359],[106.5592117,34.7984886],[106.5312195,34.783802],[106.5486908,34.7531967],[106.4965668,34.7446404],[106.4826584,34.7163239],[106.452507,34.7048416],[106.4375763,34.6852341],[106.4413376,34.6705437],[106.46595,34.6589241],[106.4560394,34.6406555],[106.4169235,34.6461868],[106.405632,34.6274643],[106.3775787,34.6269531],[106.3091736,34.5833511],[106.3352127,34.545166],[106.3399887,34.5197029],[106.3697128,34.5234261],[106.3959274,34.5088272],[106.4118576,34.5217896],[106.4621582,34.5303955],[106.5041428,34.5126877],[106.5412521,34.4814796],[106.5665665,34.4890823],[106.5741272,34.4716072],[106.5960083,34.468689],[106.591713,34.4574928],[106.6149063,34.4502068],[106.638588,34.3906593],[106.7124405,34.3609276],[106.7097778,34.3478851],[106.6866837,34.3389206],[106.7004318,34.3101578],[106.6968765,34.2916222],[106.6597672,34.2447281],[106.6270828,34.2619591],[106.5891037,34.2537804],[106.5730972,34.2825546],[106.5223236,34.2934761],[106.4899826,34.2432899],[106.5087585,34.2408638],[106.5279999,34.255619],[106.5472336,34.2442474],[106.5682602,34.171669],[106.5880585,34.1392021],[106.5579681,34.1155968],[106.4976807,34.1064148],[106.5013199,34.0580292],[106.4673309,34.0254936],[106.4734879,33.979847],[106.4207611,33.9135056],[106.41465,33.8789368],[106.4238968,33.8678741],[106.4655228,33.8721809],[106.4854507,33.855999],[106.4899673,33.8399239],[106.4644623,33.821537],[106.4562073,33.794548],[106.4818497,33.7723694],[106.476593,33.7139626],[106.5357132,33.6929092],[106.5715866,33.633503],[106.5819702,33.5807076],[106.5558167,33.5726624],[106.557373,33.5398712],[106.5304031,33.5050087],[106.5139389,33.5039825],[106.4991302,33.5297623],[106.4732666,33.5210037],[106.4528427,33.5344353],[106.4404526,33.6154251],[106.3885803,33.6162186],[106.3436127,33.5882988],[106.3044968,33.6050262],[106.2838974,33.6026154],[106.2334137,33.5657501],[106.1830902,33.548111],[106.1430969,33.5576859],[106.1432037,33.5737267],[106.1047668,33.5702171],[106.1178207,33.5960655],[106.1000671,33.6103439],[106.043251,33.6098633],[106.0267181,33.5961685],[105.9554291,33.6101341],[105.936348,33.5723686],[105.9157104,33.5566025],[105.8959579,33.5557327],[105.8868484,33.5320396],[105.8381882,33.4919052],[105.8271484,33.4582329],[105.8341522,33.4126129],[105.8233871,33.3819199],[105.7289734,33.392807],[105.7051468,33.382515],[105.7513199,33.330677],[105.7438889,33.3006592],[105.7635498,33.2843666],[105.7859573,33.2818184],[105.7922134,33.2618713],[105.8318329,33.2531013],[105.8511887,33.2367935],[105.9134979,33.239872],[105.9587402,33.2095032],[105.9634323,33.1531105],[105.9533081,33.1476364],[105.9294586,33.1944542],[105.8949127,33.15168],[105.8959579,33.1402168],[105.9197388,33.1497879],[105.9279099,33.1442642],[105.9163971,33.1342125],[105.9217911,33.1140289],[105.9106903,33.0604248],[105.9192429,33.008152],[105.8618088,32.9431915],[105.8231583,32.9528885],[105.7315826,32.9073944],[105.6572571,32.8987312],[105.6346588,32.881546],[105.6128922,32.8801689],[105.5870438,32.8790207],[105.5646973,32.9028435],[105.5263138,32.9154243],[105.4953537,32.9107399],[105.4506912,32.9303932],[105.4107132,32.9186478],[105.4015198,32.8895264],[105.3776093,32.8755035],[105.3842163,32.8402252],[105.4079437,32.8157501],[105.4254227,32.7724648],[105.4542389,32.7651749],[105.4591522,32.7493706],[105.4491272,32.7362938],[105.3663712,32.7052155],[105.2940521,32.6571465],[105.2702026,32.6520386],[105.2237396,32.6658745],[105.1932907,32.6197128],[105.1136932,32.5939713],[105.1001205,32.5968933],[105.079567,32.6320915],[105.0395966,32.6470299],[104.8826599,32.5985298],[104.8494568,32.6487236],[104.8289566,32.6626091],[104.8153763,32.6615524],[104.7937469,32.6426811],[104.7307281,32.6394043],[104.6940918,32.675808],[104.6627731,32.664299],[104.6329727,32.6643333],[104.5885925,32.7001762],[104.5678635,32.731163],[104.5309982,32.7248764],[104.4971771,32.7571144],[104.4530029,32.7498207],[104.3536301,32.821701],[104.2971725,32.8332443],[104.2720871,32.8909531],[104.2854691,32.9417496],[104.3638229,32.9455643],[104.3756638,32.9550819],[104.3808136,32.9961586],[104.424118,33.016304],[104.3993378,33.0348511],[104.3574295,33.0302963],[104.3329773,33.0437889],[104.3750916,33.1109238],[104.3481827,33.1608353],[104.3034592,33.3029175],[104.3216095,33.3143425],[104.3423233,33.3005791],[104.3734512,33.3027344],[104.3991165,33.285347],[104.4269791,33.3192863],[104.3711929,33.346489],[104.2931366,33.3346634],[104.264328,33.3934784],[104.2444534,33.4040298],[104.2173767,33.4028053],[104.2153931,33.4410591],[104.1781387,33.4747734],[104.1526337,33.5418549],[104.1715469,33.5906677],[104.1668167,33.6107826],[104.100853,33.6649895],[104.0435867,33.6878738],[103.9686432,33.6722183],[103.8593903,33.6839943],[103.766243,33.6603851],[103.6983566,33.6877632],[103.6804199,33.6796875],[103.6451492,33.6848526],[103.6307831,33.7008972],[103.5865021,33.7143784],[103.562027,33.7038841],[103.5481033,33.6775208],[103.5266724,33.677845],[103.4999237,33.6824265],[103.4803925,33.727932],[103.5263367,33.7711296],[103.526619,33.7933693],[103.5124664,33.8100891],[103.4620132,33.8039398],[103.4292068,33.752243],[103.3472137,33.745018],[103.2428665,33.7909508],[103.2018433,33.7933578],[103.1501465,33.8118134],[103.1492691,33.8328857],[103.1789474,33.9022484],[103.1624374,33.9308052],[103.1267471,33.9358139],[103.1160431,33.963562],[103.1528473,34.0060272],[103.1455307,34.0372734],[103.1223297,34.0599709],[103.1618423,34.0770416],[103.1674423,34.0936546],[103.1250534,34.118248],[103.1280823,34.146965],[103.1070023,34.1783981],[103.078598,34.1860695],[103.0081787,34.1848259],[102.9801712,34.1970673],[102.9718781,34.2149963],[102.9753723,34.2540436],[102.956398,34.2685318],[102.9475937,34.2935562],[102.9213562,34.3094902],[102.862587,34.3127785],[102.8428268,34.2738228],[102.781517,34.2875557],[102.7280807,34.2643089],[102.7168274,34.2291985],[102.6917572,34.2020149],[102.6531067,34.1928368],[102.6390228,34.1691132],[102.6115417,34.1647797],[102.5968933,34.1495171],[102.6541367,34.1151466],[102.6560822,34.0830956],[102.6200867,34.0941467],[102.6049728,34.0843773],[102.555809,34.0932503],[102.4692612,34.0745583],[102.4259033,34.0904083],[102.3855667,33.9813652],[102.3380585,33.9837723],[102.3140335,33.9991798],[102.2895203,33.9911804],[102.2721634,33.9980469],[102.2572098,33.9925919],[102.2403107,33.9595718],[102.2093964,33.9536743],[102.1904373,33.9591064],[102.1839828,33.9483795],[102.192543,33.927063],[102.2575684,33.8426476],[102.2619171,33.8225899],[102.2335968,33.801403],[102.2326584,33.7901421],[102.2967606,33.7829552],[102.317337,33.7553062],[102.2814331,33.7314072],[102.2830734,33.7174644],[102.3001099,33.7103615],[102.3167191,33.7358017],[102.3356171,33.7303467],[102.3099289,33.6764603],[102.3311768,33.616497],[102.3787231,33.6005707],[102.4010925,33.5819016],[102.4385834,33.5773773],[102.4469528,33.5661316],[102.4665375,33.5524063],[102.4714203,33.5411682],[102.4698868,33.5389824],[102.4650726,33.5343285],[102.4504089,33.5362816],[102.4470291,33.5342636],[102.4475403,33.5239716],[102.4554672,33.5026436],[102.4539871,33.4842911],[102.4743195,33.4704018],[102.4763031,33.4654427],[102.474823,33.4624672],[102.4678726,33.4629631],[102.4564667,33.4733772],[102.4500198,33.4708977],[102.4594421,33.4545326],[102.4567566,33.4532166],[102.4450607,33.4560204],[102.4382324,33.4528694],[102.423233,33.4416351],[102.4138107,33.4317169],[102.3952637,33.4223938],[102.3924789,33.4133644],[102.3854218,33.4028893],[102.3697891,33.3984909],[102.3544464,33.3935623],[102.3375397,33.3994675],[102.3248367,33.3989792],[102.3174973,33.4028893],[102.3086624,33.4029465],[102.2942734,33.4133644],[102.2858429,33.4153481],[102.2714615,33.4133644],[102.2605515,33.4193153],[102.2516174,33.4123726],[102.2476501,33.3960037],[102.2402115,33.3910446],[102.2248383,33.3860855],[102.2217331,33.3711281],[102.2154236,33.3583069],[102.2118835,33.3546219],[102.2037888,33.3490639],[102.1850891,33.3424911],[102.1785202,33.3359222],[102.1613464,33.3332138],[102.208107,33.2949333],[102.1992569,33.2216835],[102.1820374,33.2213821],[102.1272812,33.260067],[102.0965424,33.2517891],[102.0971527,33.2383804],[102.0880508,33.2272606],[102.0880508,33.2186699],[102.0728683,33.19561],[102.0503998,33.1972466],[102.0001678,33.2247086],[101.9896164,33.2248611],[101.9537125,33.2399559],[101.9448624,33.2193756],[101.9516907,33.1948586],[101.93293,33.1663475],[101.8639908,33.1084633],[101.8234406,33.1241646],[101.840889,33.1735954],[101.8320236,33.2084808],[101.764183,33.2437248],[101.767128,33.2617378],[101.8184433,33.2673492],[101.8319473,33.2887077],[101.8735504,33.3201942],[101.8816986,33.3809128],[101.9385376,33.445137],[101.9307938,33.4477692],[101.9232635,33.4562683],[101.9266663,33.4677467],[101.9239807,33.4734802],[101.9066315,33.4795113],[101.9005508,33.484848],[101.9028625,33.5066681],[101.8953171,33.5277863],[101.910408,33.5556946],[101.9013519,33.5700226],[101.8907928,33.5775681],[101.882103,33.5764275],[101.8583603,33.5888824],[101.8470535,33.602459],[101.8342209,33.616787],[101.7999573,33.6195374],[101.8053436,33.5661926],[101.774231,33.5480423],[101.7336578,33.5007477],[101.6272125,33.5002327],[101.6169815,33.524826],[101.6173706,33.6077843],[101.5861969,33.6446724],[101.5889282,33.6711807],[101.5575104,33.6691017],[101.5501709,33.6915436],[101.5183411,33.6929054],[101.5005875,33.7028008],[101.4553299,33.6843529],[101.4321289,33.6919861],[101.4240189,33.6636696],[101.3965378,33.6492958],[101.2772522,33.6627998],[101.2406082,33.6823196],[101.1917496,33.668911],[101.1736603,33.6549339],[101.1646729,33.6645584],[101.1666565,33.7201958],[101.185463,33.745842],[101.1811905,33.7952232],[101.1493835,33.8214645],[101.1461334,33.8458366],[101.114563,33.84869],[101.1066284,33.8580551],[101.0570374,33.8574409],[101.0398788,33.8869591],[101.0088577,33.8899994],[100.9883728,33.9033241],[100.9648438,33.9490242],[100.9368134,33.9682426],[100.9272079,33.9972572],[100.9054337,34.0283203],[100.8742828,34.0464516],[100.8760376,34.0663452],[100.8165207,34.1474304],[100.7664337,34.1801605],[100.7857666,34.2058563],[100.8023682,34.2410011],[100.8158112,34.3153992],[100.8719101,34.3377342],[100.897377,34.3797684],[100.9851227,34.3768044],[101.0507126,34.3271179],[101.1456223,34.3252411],[101.1900787,34.2991447],[101.2161179,34.3071899],[101.2263336,34.2989082],[101.2565308,34.2995071],[101.2660675,34.2818336],[101.2885437,34.2747688],[101.2988205,34.2696304],[101.3212967,34.270916],[101.3229218,34.2691231],[101.3270798,34.2632103],[101.3264389,34.257431],[101.3180771,34.2529335],[101.3196106,34.2474403],[101.3489227,34.2542191],[101.353302,34.2531929],[101.3977203,34.238163],[101.4144211,34.2304573],[101.4330368,34.2323837],[101.4561615,34.2221069],[101.4760666,34.2233925],[101.4857025,34.218895],[101.4857025,34.20541],[101.4940567,34.2002716],[101.5088272,34.2015572],[101.5184631,34.2066956],[101.5319366,34.2131157],[101.5370483,34.2126312],[101.5512085,34.2060509],[101.5582733,34.1938477],[101.5773468,34.1972771],[101.5923233,34.1816483],[101.6167221,34.1835747],[101.6366272,34.1688042],[101.6391983,34.1636658],[101.6507568,34.1585274],[101.6554031,34.152626],[101.643692,34.1305046],[101.6507568,34.1212769],[101.6635971,34.1193504],[101.690567,34.1065063],[101.6957092,34.1077919],[101.6944275,34.1180687],[101.7008514,34.1199951],[101.7072678,34.1142159],[101.7066269,34.091095],[101.7188263,34.084671],[101.7226868,34.1007271],[101.7271805,34.0988007],[101.735527,34.0808182],[101.7415695,34.0673409],[101.7713089,34.0655289],[101.8367996,34.1107559],[101.8481293,34.154644],[101.8616333,34.1537704],[101.8736267,34.1313972],[101.8991089,34.1326675],[101.9485474,34.1077347],[101.9652786,34.177803],[101.9847794,34.1689339],[102.001358,34.1801567],[102.0138474,34.1994095],[102.012413,34.2271118],[102.0425415,34.223587],[102.0519028,34.2305374],[102.0571518,34.2853203],[102.0761795,34.2870636],[102.128273,34.2675781],[102.1450272,34.2703857],[102.1813126,34.3589592],[102.2342529,34.3507919],[102.2545929,34.3616638],[102.2386169,34.3871384],[102.2081299,34.3947792],[102.1634827,34.4572792],[102.1524811,34.5097008],[102.1265564,34.5126381],[102.0766602,34.5438766],[102.0006485,34.5390282],[101.9766235,34.5537949],[101.9537125,34.5813332],[101.9271317,34.595459],[101.9115524,34.6752396],[101.8848801,34.6758347],[101.8514023,34.6358452],[101.8262711,34.6269836],[101.7815323,34.6464386],[101.7276611,34.7060242],[101.8202362,34.7362518],[101.8417282,34.7752419],[101.8702164,34.7461853],[101.9143372,34.7429886],[101.9149017,34.792469],[101.9242783,34.8396149],[101.9163666,34.8804245],[101.9857178,34.8968124],[101.976387,34.9246063],[101.9998779,34.9507866],[102.0559769,34.9466743],[102.122673,35.0132103],[102.202713,35.0424805],[102.2185287,35.0587311],[102.279129,35.0585365],[102.3027878,35.1173859],[102.3264084,35.1352005],[102.3368225,35.1620636],[102.3936234,35.1754608],[102.3866119,35.2344093],[102.3484802,35.2510643],[102.3469772,35.28265],[102.2768478,35.3073769],[102.2785492,35.3209457],[102.3029633,35.327095],[102.3115768,35.3426819],[102.2823029,35.3817787],[102.2822189,35.4051476],[102.3084869,35.4360962],[102.3662109,35.4373817],[102.4135132,35.425312],[102.4413071,35.439312],[102.4510727,35.4556007],[102.4964828,35.5323563],[102.535141,35.5653915],[102.5776062,35.5405388],[102.7112732,35.5244637],[102.7387619,35.5658836],[102.7412033,35.6016808],[102.7567673,35.6146355],[102.6839218,35.7614059],[102.6884003,35.8025169],[102.7225571,35.8225174],[102.7776031,35.8634377],[102.8042984,35.8573952],[102.8289032,35.8634377],[102.8547974,35.84729],[102.9048233,35.8515854],[102.9287796,35.8340034],[102.9486465,35.8383217],[102.9535904,35.8688927],[102.9371033,35.9441223],[102.9686508,36.0002747],[102.956871,36.0170517],[102.9666519,36.0406227],[102.8890228,36.0682526],[102.8796234,36.0879402],[102.9327164,36.1076279],[102.9406509,36.1455879],[102.9590836,36.1547165],[102.9907532,36.1997986],[103.0595932,36.2056236],[103.0572433,36.2162971],[103.0298004,36.232193],[103.0243912,36.2377357],[103.0207367,36.2444305],[103.0237808,36.250515],[103.021347,36.2572098],[102.9915314,36.2651215],[102.9750977,36.2766838],[102.9653625,36.2815514],[102.945282,36.2876358],[102.9422379,36.2912865],[102.9191132,36.3046761],[102.9069366,36.3204956],[102.8956833,36.3292084],[102.8409119,36.3394508],[102.8236618,36.3532867],[102.8272934,36.4008904],[102.7967834,36.4022942],[102.7845306,36.4275589],[102.767189,36.4711533],[102.7819595,36.4867592],[102.7802734,36.505291],[102.7374573,36.5471306],[102.7178421,36.617733],[102.6812363,36.6224251],[102.6209412,36.6610985],[102.5957565,36.7166252],[102.5998993,36.7302246],[102.6250916,36.733963],[102.6707764,36.7377586],[102.7173386,36.7647247],[102.7148132,36.7827492],[102.6773605,36.8170776],[102.6630173,36.8256721],[102.64814,36.8339462],[102.6409836,36.8509445],[102.6252365,36.8635063],[102.5759201,36.8783684],[102.5710831,36.8864365],[102.5565567,36.9031029],[102.5544128,36.9165459],[102.5506134,36.923439],[102.5216064,36.933754],[102.5113907,36.9445076],[102.4963303,36.9471855],[102.490509,36.9641991],[102.4658737,36.9645157],[102.4529266,36.9800491],[102.494339,37.0286446],[102.4904785,37.0926132],[102.5201263,37.0972061],[102.5305099,37.1176338],[102.5594101,37.1242409],[102.593399,37.1527786],[102.5897827,37.1668282],[102.5670013,37.1649742],[102.5377884,37.209446],[102.4799271,37.2229156],[102.428627,37.2899284],[102.3829117,37.2930641],[102.359642,37.2812462],[102.3458405,37.3310165],[102.3181381,37.3377876],[102.2938004,37.365715],[102.2429123,37.3855057],[102.2074509,37.4232941],[102.1918869,37.4234467],[102.1987381,37.4068527],[102.1339188,37.4328423],[102.1072311,37.4601212],[102.0838165,37.4551468],[102.0123672,37.474659],[102.0706329,37.5588112],[102.0705109,37.5819206],[102.0611725,37.5890465],[101.9975662,37.6085815],[101.9919968,37.6860847],[101.9652634,37.7192993],[101.9770966,37.7683754],[101.9173889,37.709404],[101.875267,37.6886635],[101.8571396,37.6405716],[101.8407593,37.6097679],[101.8525467,37.5368385],[101.8268814,37.5055504],[101.8073578,37.5070267],[101.792099,37.525753],[101.7467117,37.5337563],[101.7374725,37.5705719],[101.7148666,37.5923309],[101.6439438,37.6038208],[101.5961533,37.6398239],[101.5385971,37.6582909],[101.4655304,37.7231598],[101.4020081,37.7550774],[101.3457031,37.797699],[101.2733994,37.8351326],[101.2057419,37.8480568],[101.1650085,37.8765221],[101.1251984,37.9225807],[101.0263672,37.978405],[100.9506531,38.0068016],[100.912941,37.990612],[100.8627625,38.0311813],[100.8209763,38.0492401],[100.7172623,38.084549],[100.6303787,38.102993],[100.6135101,38.1332817],[100.6185913,38.1725388],[100.5985565,38.2407265],[100.5068665,38.2796021],[100.4852676,38.2848053],[100.4532928,38.2673874],[100.4299164,38.2980614],[100.3944473,38.2935562],[100.3311768,38.319355],[100.3278885,38.3503761],[100.3016129,38.3831596],[100.2641525,38.3669853],[100.258812,38.3717079],[100.2452316,38.4222374],[100.2174835,38.4561882],[100.1111526,38.4910049],[100.1015778,38.4713173],[100.1177521,38.436409],[100.0765381,38.4103088],[100.0887985,38.4060173],[100.0936966,38.3943672],[100.107193,38.3778114],[100.112709,38.3539009],[100.1200714,38.3422508],[100.1409073,38.3312149],[100.1525726,38.3306007],[100.1605377,38.3275375],[100.1574707,38.3042374],[100.158699,38.2925873],[100.1691208,38.2600937],[100.1740265,38.2508965],[100.1807709,38.2374077],[100.1820374,38.2212944],[100.1519165,38.221489],[100.0821228,38.2805405],[100.0484238,38.2827606],[99.9970016,38.3161011],[99.9649963,38.3175659],[99.9358978,38.341404],[99.8293152,38.3684158],[99.7665482,38.406723],[99.7291565,38.4137421],[99.669693,38.4406967],[99.6407242,38.4724693],[99.6044388,38.4874382],[99.5304489,38.5466919],[99.5226517,38.5583],[99.5346451,38.5848503],[99.5057297,38.61269],[99.446373,38.6049461],[99.4128036,38.6628532],[99.3725281,38.6858406],[99.3606262,38.7176666],[99.2859344,38.7676048],[99.2179718,38.7898979],[99.0603714,38.9061584],[99.1059723,38.9511909],[99.079277,38.9532394],[99.0551682,38.9749298],[99.0218582,38.9827957],[99.0050735,38.9594841],[98.9947891,38.9596443],[98.873497,39.0489578],[98.8318176,39.0660515],[98.8181076,39.0838737],[98.7784653,39.0885582],[98.7541122,39.0795097],[98.6681061,38.9961967],[98.6301498,38.9813499],[98.5812378,38.9329758],[98.5455017,38.9535561],[98.4567184,38.9523048],[98.4300079,38.9704628],[98.4299088,38.9972458],[98.4002686,39.0007782],[98.3831177,39.0286598],[98.3162231,39.0398865],[98.2893906,39.0364952],[98.2804031,39.0265121],[98.2868958,38.9916534],[98.2695312,38.954052],[98.2214508,38.9236107],[98.1955719,38.8828735],[98.1296768,38.853466],[98.0874863,38.7960739],[98.0679092,38.8210182],[98.015274,38.85783],[97.9657059,38.8609467],[97.9432831,38.8766747],[97.8754044,38.8979607],[97.8208313,38.9328651],[97.7009048,38.9628258],[97.6842117,39.0066261],[97.4999008,39.0776482],[97.4641647,39.1132393],[97.4259262,39.1245613],[97.400383,39.1459122],[97.3706055,39.1400337],[97.3465347,39.1666298],[97.3143921,39.1639442],[97.2000732,39.1931572],[97.1614075,39.1907349],[97.0750504,39.2073784],[97.0258102,39.202549],[96.9928207,39.1766624],[96.9863892,39.1420937],[96.9598923,39.132225],[96.9454956,39.1125221],[96.950264,39.0871201],[96.9977112,39.0562744],[96.9986725,39.0050049],[96.9819412,38.983242],[96.9902191,38.9541817],[96.9758453,38.9383736],[96.9931946,38.9296951],[96.9577484,38.8790665],[96.9874268,38.861702],[96.9893112,38.8206291],[96.9687805,38.8194618],[96.9934311,38.7756386],[96.976799,38.7316704],[96.9879761,38.7044373],[96.9376526,38.681942],[96.9543991,38.6535797],[96.9392471,38.6212807],[96.990303,38.5988426],[96.9702454,38.547657],[96.9809723,38.5132751],[96.9759674,38.3681183],[96.9727936,38.3479691],[96.9597015,38.3383369],[96.8092499,38.3575172],[96.7338943,38.3877525],[96.7001572,38.4242744],[96.6260834,38.4191895],[96.543602,38.4467583],[96.5142288,38.469738],[96.5263138,38.5295525],[96.5168839,38.5391197],[96.4778671,38.5574646],[96.4236832,38.5686111],[96.3191681,38.6368752],[96.240509,38.6171913],[96.1819687,38.6342812],[96.1399231,38.6717224],[96.0942917,38.6473045],[96.0519791,38.6796722],[96.0496826,38.7368889],[95.9975204,38.7567863],[95.9536362,38.7605286],[95.9397507,38.7700958],[95.8998871,38.7689362],[95.867218,38.8156967],[95.7732468,38.8753586],[95.7608337,38.8532333],[95.6881943,38.8806152],[95.6771088,38.9088669],[95.6535873,38.9140701],[95.6345139,38.9411507],[95.5872421,38.9678078],[95.5858536,38.997406],[95.5700607,39.0127068],[95.5037079,39.0198669],[95.4539413,39.0598221],[95.4179535,39.071003],[95.3809204,39.1003075],[95.3672562,39.1267509],[95.3160248,39.1630096],[95.2913589,39.2025299],[95.2348709,39.1875458],[95.1908493,39.1908226],[95.1573563,39.1762047],[95.091568,39.2044334],[95.0654831,39.1992569],[95.0111923,39.2207794],[94.9704742,39.218174],[94.955101,39.2336082],[94.922966,39.2413521],[94.9025421,39.2202187],[94.854126,39.2342224],[94.8272476,39.2223663],[94.780571,39.2454681],[94.7218933,39.2428856],[94.7059784,39.2619591],[94.630127,39.3070602],[94.5937805,39.2934837],[94.5699463,39.304882],[94.5407104,39.3028564],[94.515625,39.3119736],[94.4747162,39.3034782],[94.402565,39.3053055],[94.3739243,39.3144493],[94.2803116,39.3069077],[94.2530975,39.3395958],[94.2238007,39.3226013],[94.1464462,39.3165588],[94.1414032,39.2889099],[94.0921936,39.2751274],[94.0429001,39.2842293],[94.003624,39.2652435],[93.9513397,39.2722816],[93.8792038,39.2577591],[93.8431549,39.2833519],[93.789978,39.2742958],[93.7652359,39.25737],[93.7018814,39.2547951],[93.6555176,39.2648506],[93.6080856,39.2634506],[93.5853882,39.2822037],[93.5216599,39.2742615],[93.4941788,39.2896004],[93.4536438,39.2303658],[93.43853,39.2224655],[93.3652725,39.2243614],[93.3320847,39.2044296],[93.3012924,39.214016],[93.2550735,39.1838379],[93.2266159,39.1911049],[93.1927261,39.1851082],[93.1481247,39.1635818],[93.1141663,39.1827583],[93.0406952,39.1507874],[93.001915,39.1550674],[92.9754028,39.147377],[92.9505615,39.1710548],[92.9262466,39.2929802],[92.9491425,39.3281746],[92.9437027,39.4562073],[92.8768311,39.5448036],[92.8386459,39.6664886],[92.7641602,39.8797989],[92.9179916,40.1037331],[92.9138107,40.4982986],[93.280632,40.4677353],[93.3415756,40.4691582],[93.3674545,40.4777603],[93.4567871,40.5338821],[93.6467514,40.6191101],[93.8067398,40.8766365],[94.0770111,41.1583252],[94.4174194,41.3918839],[94.6034088,41.5748444],[94.7398987,41.6489716],[94.8479309,41.6827049],[95.0463715,41.7712288],[95.3566742,41.8173485],[95.519928,41.850666],[95.5684509,41.8516388],[95.6668701,41.8285522],[95.8591766,41.8483543],[95.9914017,41.8989449],[95.9984741,41.917942],[96.0221405,41.9368248],[96.0546341,42.0099907],[96.025528,42.1109314],[96.0597458,42.398735],[96.0966415,42.5996666],[96.3599091,42.7096901],[96.3832855,42.7269554]]]]},
  35 +"properties":{
  36 +"gid":6,
  37 +"name":"甘肃省"}
  38 +},
  39 +{"type":"Feature",
  40 +"geometry":{"type":"MultiPolygon","coordinates":[[[[116.9304428,42.4114456],[116.9627228,42.4261703],[116.9877777,42.4260635],[117.0180817,42.4563255],[117.0701294,42.4622459],[117.0917206,42.4840736],[117.1274567,42.4681091],[117.152832,42.4677391],[117.263237,42.4835014],[117.3276062,42.4606514],[117.3672333,42.4603577],[117.4036636,42.4742432],[117.4078293,42.5032349],[117.4054108,42.5151939],[117.3771591,42.5096359],[117.3775635,42.5174026],[117.4560471,42.5766106],[117.5255508,42.6033745],[117.591011,42.6036148],[117.6604233,42.5793343],[117.6769638,42.5856018],[117.6816177,42.6056786],[117.692543,42.6094742],[117.7613373,42.6052513],[117.7963715,42.62117],[117.7947617,42.6106148],[117.785553,42.5962868],[117.7959976,42.5778847],[117.8430023,42.5446548],[117.8696899,42.5061722],[118.0127106,42.3930473],[118.0175171,42.3751526],[118.0022125,42.3444977],[118.0531693,42.2960396],[118.0334473,42.273674],[117.9622726,42.2400932],[118.0268707,42.1969566],[118.0995026,42.1696701],[118.0849228,42.1074638],[118.1484833,42.0788994],[118.1471634,42.0647469],[118.1320572,42.063591],[118.1333008,42.0526009],[118.1084518,42.0435791],[118.1097565,42.034874],[118.1932831,42.0309181],[118.2136765,42.0564461],[118.2060165,42.0789642],[118.232811,42.0906754],[118.2550812,42.0837097],[118.2819366,42.0343666],[118.2311172,42.0207481],[118.2498169,42.0085716],[118.2798691,42.0058212],[118.3002319,41.9776077],[118.2851105,41.943779],[118.2561264,41.9183998],[118.3218918,41.8700371],[118.3303986,41.8470383],[118.2858429,41.7706985],[118.2643967,41.7600632],[118.2364197,41.7769547],[118.2241669,41.8096046],[118.1718674,41.8126755],[118.1492767,41.8047752],[118.1239471,41.7399864],[118.1485367,41.7103653],[118.1526794,41.6737366],[118.2074509,41.6399879],[118.2035065,41.6085014],[118.2195816,41.5828781],[118.2751694,41.562355],[118.305748,41.5643845],[118.2966232,41.5444107],[118.3093414,41.5103722],[118.2890167,41.4830284],[118.2632294,41.4768028],[118.2657471,41.4692192],[118.3206177,41.4486847],[118.3366165,41.4337959],[118.3380203,41.3992462],[118.3552399,41.3845596],[118.3417587,41.3717499],[118.3446121,41.3348923],[118.3736572,41.309948],[118.3930817,41.3089371],[118.4058914,41.3297539],[118.4237366,41.3365402],[118.5219269,41.3531113],[118.6708603,41.3485146],[118.7102966,41.3283119],[118.7487488,41.3234367],[118.7637482,41.3510323],[118.8375931,41.3726234],[118.8388138,41.3405838],[118.8846664,41.2989197],[118.9285965,41.302784],[118.9434204,41.316185],[118.9685135,41.3046608],[119.0389709,41.2950935],[119.1484528,41.2955475],[119.194313,41.2802811],[119.2057571,41.3060799],[119.2331085,41.3125114],[119.2418594,41.2693024],[119.2034073,41.2238045],[119.1594162,41.2179909],[119.1824799,41.1961746],[119.1725006,41.1758308],[119.119873,41.1365891],[119.0746765,41.1294022],[119.0672836,41.0822334],[119.0398178,41.0775986],[119.0167313,41.0611954],[118.9621429,41.0749817],[118.9259186,41.047184],[118.9300079,41.0278854],[118.9459229,41.0167923],[119.0072403,41.0058365],[119.0141068,40.9960785],[118.9765701,40.9500351],[118.9496002,40.9485703],[118.9135971,40.9639854],[118.8891068,40.9562798],[118.8736572,40.8758888],[118.8348694,40.8081055],[118.8422623,40.7960625],[118.8915634,40.7755814],[118.8977737,40.7566986],[118.9383087,40.7446175],[118.9636536,40.7067909],[118.9892197,40.6906738],[119.0278625,40.6852341],[119.0497589,40.6607285],[119.0700378,40.6707802],[119.1028366,40.6629333],[119.1524277,40.6892052],[119.1698685,40.6885643],[119.1794968,40.6741562],[119.1729431,40.6617355],[119.1371078,40.6328583],[119.1490631,40.6094818],[119.1435699,40.6004639],[119.1791,40.6083069],[119.2296982,40.5956459],[119.2157669,40.5655746],[119.2499084,40.5418663],[119.2959213,40.5288353],[119.4228897,40.5386124],[119.4751663,40.531971],[119.5245972,40.5473366],[119.5531235,40.5465622],[119.5668411,40.5258293],[119.5449524,40.5081329],[119.5990829,40.4538116],[119.5889587,40.4248199],[119.5946274,40.4056816],[119.5808105,40.3742752],[119.5939789,40.3553848],[119.5922928,40.3330193],[119.6069107,40.3195763],[119.643013,40.2680244],[119.619751,40.2394066],[119.6277695,40.2259178],[119.7376099,40.1916656],[119.7552414,40.1328316],[119.7461929,40.1253204],[119.7484436,40.1049042],[119.7741089,40.0812798],[119.7635727,40.0621529],[119.7701874,40.0454903],[119.841217,40.045887],[119.8482971,40.0330963],[119.8379288,39.9903412],[119.829277,39.9892082],[119.8132095,39.9841843],[119.8019028,39.9755058],[119.7926788,39.9668198],[119.7885132,39.9597359],[119.7852402,39.9569931],[119.7843475,39.9556236],[119.7819672,39.9537926],[119.7730484,39.9512787],[119.760849,39.9503593],[119.7429962,39.9473839],[119.7290192,39.9460068],[119.7162323,39.9430275],[119.70047,39.9393616],[119.6853027,39.9382057],[119.6701431,39.9363594],[119.6549683,39.9338303],[119.6395187,39.9280968],[119.6312027,39.9241982],[119.6228867,39.9180183],[119.6184464,39.9118423],[119.6131134,39.9074936],[119.6062698,39.9072533],[119.6065521,39.9111404],[119.6077271,39.9134254],[119.607132,39.9152527],[119.6023788,39.9143333],[119.5869217,39.9122505],[119.5768204,39.9097176],[119.5729599,39.9087944],[119.5696869,39.9081039],[119.5655289,39.9069557],[119.5551529,39.9021339],[119.5435715,39.89571],[119.535881,39.8854103],[119.5299683,39.8771706],[119.5270386,39.8682518],[119.5249863,39.8600197],[119.522049,39.8522453],[119.5158463,39.8440018],[119.5128937,39.8410225],[119.5099335,39.8387337],[119.5114288,39.8353081],[119.5161819,39.8355446],[119.5212173,39.8367004],[119.5262833,39.8351135],[119.5262909,39.831913],[119.5263138,39.8259697],[119.5287094,39.8218613],[119.5313873,39.8186684],[119.533493,39.8161583],[119.5329132,39.8118172],[119.5263672,39.8122597],[119.5201263,39.8140717],[119.5127029,39.8158836],[119.5031967,39.8147163],[119.4916306,39.8130875],[119.4800491,39.812603],[119.4661026,39.8111954],[119.4575119,39.8068275],[119.4504013,39.8031502],[119.4456635,39.8006248],[119.4433365,39.7995148],[119.4418106,39.7987823],[119.4373703,39.7967148],[119.4323578,39.7909851],[119.4255524,39.7861671],[119.4190369,39.7827148],[119.4142914,39.7833862],[119.4083405,39.785881],[119.4053497,39.7888412],[119.4014969,39.7872276],[119.399147,39.7849388],[119.4015274,39.7833443],[119.4039078,39.7826691],[119.4101562,39.7801743],[119.4089966,39.7753716],[119.4048615,39.7719307],[119.3974686,39.7671051],[119.3868179,39.7611275],[119.3773727,39.7546959],[119.3699875,39.7482681],[119.3634872,39.7423019],[119.3608475,39.7395515],[119.3593826,39.7377167],[119.3573074,39.7356529],[119.3537903,39.7296982],[119.3493805,39.7237396],[119.3482895,39.7206421],[119.3450165,39.71138],[119.3415298,39.7003975],[119.3374329,39.6932945],[119.3303223,39.6916656],[119.3270569,39.691658],[119.3240967,39.6905022],[119.3273926,39.6861725],[119.324173,39.682045],[119.3164673,39.6797295],[119.3159027,39.6760712],[119.3218536,39.6740379],[119.325119,39.6717644],[119.3257599,39.6655922],[119.3216934,39.6546059],[119.3170166,39.6436157],[119.3105927,39.6307907],[119.3053513,39.6188812],[119.2980194,39.6083374],[119.2957306,39.5978127],[119.2934265,39.5875206],[119.2884293,39.5836105],[119.2813034,39.5874672],[119.2753372,39.5917816],[119.2711792,39.5945091],[119.2652588,39.5942535],[119.2611237,39.5935516],[119.2578735,39.5926208],[119.2513733,39.5907631],[119.2457733,39.5886803],[119.2384033,39.5852203],[119.2363434,39.5824661],[119.2334137,39.5787926],[119.2313614,39.5769539],[119.2248917,39.5718994],[119.2166519,39.5654564],[119.2178802,39.5604324],[119.2190933,39.5583801],[119.222641,39.5572586],[119.2261963,39.5556717],[119.2324295,39.5541039],[119.23806,39.553215],[119.2407303,39.5529976],[119.2436829,39.554615],[119.2471771,39.5598831],[119.2545013,39.5697479],[119.2647934,39.5787086],[119.2727585,39.5821724],[119.2757111,39.5828705],[119.2780838,39.5819664],[119.2813721,39.5783234],[119.2811279,39.5705528],[119.2776489,39.560936],[119.2747803,39.5494919],[119.2707138,39.5391884],[119.2687225,39.5291214],[119.2658386,39.5199661],[119.2623596,39.510807],[119.2594986,39.4986801],[119.2572174,39.4872398],[119.2528534,39.4789925],[119.2481613,39.4741669],[119.2470093,39.4702759],[119.2470322,39.4668503],[119.2485199,39.4661674],[119.250267,39.4680061],[119.252327,39.4705315],[119.2555771,39.4696312],[119.2576904,39.4650688],[119.2586136,39.4611855],[119.2612305,39.4659996],[119.2623825,39.4696617],[119.2659302,39.4694481],[119.2674332,39.4660263],[119.2662964,39.4603043],[119.2566071,39.4518051],[119.2539673,39.4488182],[119.2551804,39.4456253],[119.2581329,39.4456406],[119.2610703,39.4481659],[119.2637177,39.4502335],[119.2663803,39.4491043],[119.2667007,39.4461327],[119.2658386,39.4424744],[119.2643814,39.4404106],[119.2665634,39.4395103],[119.2670364,39.4393158],[119.2720871,39.4372406],[119.2776871,39.4374962],[119.2841873,39.437294],[119.2906876,39.4382362],[119.2951431,39.4352837],[119.2963409,39.4327736],[119.2898712,39.4286308],[119.2848663,39.4256401],[119.2916794,39.4245262],[119.2987671,39.424099],[119.3020172,39.4231987],[119.3035431,39.4188614],[119.3029785,39.413826],[119.2985687,39.411068],[119.2891235,39.4117126],[119.2885437,39.4091949],[119.2850189,39.4057503],[119.2794189,39.4048119],[119.2741089,39.4045601],[119.2747116,39.4022789],[119.2744293,39.4013634],[119.2732773,39.3972397],[119.2715073,39.3967781],[119.266777,39.3967552],[119.2656174,39.3949242],[119.2615128,39.3921623],[119.2585373,39.3935204],[119.2549667,39.3980751],[119.2569809,39.4049416],[119.2560577,39.4095116],[119.2525177,39.4083519],[119.2478409,39.4028435],[119.2416687,39.3989296],[119.2349091,39.3959274],[119.2255096,39.3892517],[119.2193222,39.387619],[119.2131195,39.3882751],[119.2116699,39.3848381],[119.2066727,39.3839035],[119.2022095,39.38731],[119.2021713,39.3914223],[119.199791,39.3934669],[119.1921234,39.392971],[119.188591,39.3915863],[119.1909714,39.3890839],[119.1927567,39.3870316],[119.1945572,39.3840675],[119.196373,39.3801918],[119.1973038,39.3744812],[119.1931915,39.3714905],[119.1858597,39.3664246],[119.1803131,39.3593063],[119.1747513,39.3547058],[119.1703491,39.352169],[119.1688995,39.348732],[119.1656799,39.346199],[119.1627502,39.3436699],[119.1595306,39.3411369],[119.1607285,39.3388596],[119.1575012,39.3370132],[119.1533737,39.3374481],[119.1492462,39.3358231],[119.1439819,39.3319092],[119.1386871,39.3293648],[119.1336975,39.3277397],[119.1313705,39.324295],[119.1343536,39.3204231],[119.1320267,39.3160667],[119.1253128,39.3105431],[119.1212234,39.3064041],[119.1191711,39.3045654],[119.1200714,39.3029709],[119.1180267,39.3002167],[119.1083069,39.2992439],[119.1009293,39.3008041],[119.094162,39.2996178],[119.091507,39.298233],[119.0941925,39.2961922],[119.0971527,39.2948341],[119.1001282,39.2923393],[119.1013412,39.2889175],[119.0969009,39.2904892],[119.0910034,39.2906876],[119.0936966,39.2863579],[119.0934067,39.2856712],[119.0857315,39.2872238],[119.0801163,39.2883339],[119.0765991,39.2871704],[119.0798874,39.2821617],[119.0816803,39.2798843],[119.084671,39.2757874],[119.0832214,39.2737198],[119.0758286,39.2757339],[119.0696182,39.2777557],[119.0666733,39.2772789],[119.0693588,39.2743225],[119.0738068,39.2720642],[119.0767822,39.2691116],[119.0709,39.2677002],[119.0706406,39.2644997],[119.0656433,39.2630997],[119.0603485,39.2619209],[119.0582962,39.2603073],[119.0595016,39.2584877],[119.064537,39.2562332],[119.0704498,39.2544403],[119.0725327,39.2521667],[119.0710831,39.2503281],[119.0628891,39.2445602],[119.0579376,39.2392731],[119.0512314,39.2330551],[119.0406799,39.2281914],[119.0333633,39.2233429],[119.025238,39.2125435],[119.0208893,39.2058868],[119.0135727,39.2030945],[119.0094299,39.2042084],[119.0085068,39.2064896],[119.0102463,39.2094727],[119.0119781,39.2129173],[119.007843,39.2140312],[119.0061035,39.2121925],[119.0001984,39.213295],[118.990799,39.2109451],[118.9876022,39.2074928],[118.982933,39.2042618],[118.9743805,39.2046585],[118.9679108,39.203701],[118.9632416,39.2002373],[118.9559021,39.1985855],[118.9467773,39.1982956],[118.9432526,39.1975822],[118.9420929,39.1964302],[118.9338913,39.1927147],[118.9274673,39.1874084],[118.9204865,39.1816406],[118.9108429,39.1767693],[118.9037933,39.1748886],[118.9031601,39.1783104],[118.9051666,39.1817589],[118.9086685,39.1847534],[118.9095306,39.1863632],[118.9054031,39.1870155],[118.9004364,39.1835518],[118.8960266,39.1835175],[118.8898468,39.182785],[118.8866425,39.1809311],[118.8813629,39.1797485],[118.8804169,39.1843147],[118.8815536,39.1870651],[118.8844376,39.1921196],[118.8811264,39.1966629],[118.8808136,39.1987228],[118.8843231,39.2005768],[118.8898773,39.2035904],[118.8892288,39.2083893],[118.8944931,39.2118568],[118.8997498,39.2146416],[118.9014664,39.2183113],[118.8973465,39.2187386],[118.8906174,39.2152557],[118.8839035,39.2108612],[118.8750763,39.2098808],[118.8692093,39.2082329],[118.8695602,39.2036629],[118.8696365,39.1979485],[118.8682404,39.1924515],[118.8665009,39.1899223],[118.8653717,39.1864853],[118.8666077,39.1819191],[118.8657913,39.1771126],[118.8605499,39.1729546],[118.8546371,39.1742821],[118.8460999,39.1748962],[118.8390503,39.1734695],[118.8308182,39.172718],[118.8255768,39.16856],[118.8180084,39.1627808],[118.8080978,39.1556129],[118.7978287,39.153698],[118.7860794,39.1522293],[118.7752533,39.1477928],[118.7675934,39.1493263],[118.7578583,39.1501541],[118.7472992,39.1480064],[118.7378693,39.148838],[118.728157,39.1489792],[118.7160187,39.1539001],[118.7082977,39.1586342],[118.7029037,39.1652145],[118.7003784,39.1759377],[118.7005463,39.1832542],[118.6966171,39.1903076],[118.695343,39.1969261],[118.6926575,39.1989594],[118.692131,39.1979408],[118.6912308,39.1962013],[118.6912766,39.1932297],[118.6916199,39.1898041],[118.6899338,39.1854439],[118.6873093,39.1835899],[118.6775818,39.184185],[118.6669464,39.1859169],[118.6575089,39.1871986],[118.6469421,39.1852684],[118.6360168,39.1869926],[118.6300888,39.1896782],[118.6244736,39.1916771],[118.6215134,39.1921082],[118.6200333,39.1930084],[118.6144714,39.1908951],[118.6083298,39.1883202],[118.6007538,39.1841278],[118.5893402,39.1796684],[118.5714264,39.1765137],[118.5576706,39.1724854],[118.5456772,39.1675568],[118.5372391,39.1624374],[118.5355682,39.1613083],[118.5334625,39.1598816],[118.5337982,39.1576004],[118.5306168,39.1545944],[118.5233688,39.148571],[118.5158234,39.1425476],[118.5082703,39.137207],[118.4986801,39.1306992],[118.4917068,39.126049],[118.4838333,39.1220779],[118.4768219,39.1173973],[118.4751205,39.1162643],[118.466423,39.1095352],[118.4565277,39.1037102],[118.4457397,39.0987854],[118.4334793,39.0942993],[118.4221268,39.0879974],[118.4133911,39.0837822],[118.4055634,39.0786552],[118.3805084,39.0669289],[118.3715134,39.0613327],[118.3648071,39.0580521],[118.3540192,39.0540352],[118.3406067,39.0486145],[118.3259735,39.0459175],[118.3168793,39.0451202],[118.3092117,39.0466232],[118.3032684,39.0497513],[118.3008423,39.0531502],[118.3048935,39.056633],[118.3077621,39.0598679],[118.3023987,39.0632324],[118.2938309,39.0651855],[118.2847137,39.0657539],[118.2815094,39.0641136],[118.2792206,39.0611115],[118.2774963,39.0590324],[118.2728271,39.0575981],[118.2713165,39.059639],[118.2709427,39.0637512],[118.2670364,39.0673599],[118.262291,39.0695839],[118.2577972,39.073185],[118.2491608,39.0785599],[118.2422409,39.0857887],[118.2373962,39.0921288],[118.2328415,39.0989265],[118.2247162,39.1072845],[118.2203979,39.1161461],[118.2166367,39.1266136],[118.2105408,39.136364],[118.2026672,39.1463203],[118.1959076,39.1588097],[118.1897964,39.1690178],[118.184639,39.175808],[118.1753387,39.1834564],[118.1640015,39.1899338],[118.149353,39.1997948],[118.1414337,39.2037315],[118.1410522,39.2038879],[118.1386185,39.2051353],[118.1347733,39.2052116],[118.1314774,39.2080078],[118.1270218,39.2100029],[118.118721,39.2124023],[118.1089172,39.2154655],[118.0982513,39.2185173],[118.0893402,39.2213593],[118.0786133,39.2269211],[118.0723267,39.2307205],[118.0693283,39.231823],[118.0643311,39.2324333],[118.0628128,39.2321968],[118.0611267,39.2540665],[118.0270615,39.2875175],[118.014183,39.3572655],[117.9703369,39.3717842],[117.9625473,39.3975639],[117.9099579,39.4069481],[117.8686829,39.3888741],[117.8679962,39.4477234],[117.9333572,39.5702248],[117.9298096,39.5801315],[117.8870468,39.596199],[117.8380432,39.5910645],[117.8057404,39.60075],[117.7651367,39.5974312],[117.7443924,39.5877647],[117.734848,39.5519791],[117.7134933,39.5378418],[117.7027283,39.5524063],[117.6862564,39.5593719],[117.6843567,39.5644379],[117.6875305,39.5682373],[117.7033615,39.5676041],[117.7065277,39.570137],[117.6945038,39.5802689],[117.6811981,39.585968],[117.6685333,39.5777359],[117.6603012,39.5758362],[117.6495438,39.5752029],[117.6489029,39.5802689],[117.6495438,39.5872345],[117.6489029,39.5916672],[117.6406708,39.5948334],[117.6362381,39.5979996],[117.6305389,39.5986328],[117.6222763,39.5945816],[117.6178665,39.5992661],[117.6238022,39.6073761],[117.643837,39.6176338],[117.6432037,39.6245995],[117.6457367,39.6264992],[117.6495438,39.6264992],[117.6527023,39.6302986],[117.6514435,39.6340981],[117.6533432,39.6372643],[117.6634674,39.6385307],[117.6660004,39.6435966],[117.6653671,39.6505623],[117.6660004,39.6581612],[117.6672668,39.6644936],[117.6615677,39.6670265],[117.6552429,39.6727257],[117.6552429,39.6803246],[117.6514435,39.6853905],[117.6457367,39.6923561],[117.6470337,39.6987839],[117.6324387,39.7005882],[117.6204071,39.7050209],[117.6083679,39.7050209],[117.6010284,39.7086639],[117.5950699,39.7100906],[117.5925369,39.7138901],[117.5809784,39.724308],[117.5786133,39.7290878],[117.5906372,39.7341537],[117.5947266,39.7392006],[117.5950699,39.7417526],[117.5908203,39.748642],[117.5830383,39.7499847],[117.5779724,39.7544174],[117.5634079,39.7550507],[117.5485764,39.7720795],[117.5552597,39.8219833],[117.5132828,39.8928223],[117.5241928,39.9388962],[117.5553207,39.9954414],[117.5774536,40.0015984],[117.6214828,39.9741287],[117.6445923,39.9703522],[117.711113,39.9867401],[117.7663422,39.9597931],[117.7967529,39.97258],[117.8018036,39.9935532],[117.7803726,40.0208282],[117.7308273,40.0175056],[117.7555237,40.0441971],[117.7578735,40.0571938],[117.7435989,40.0738144],[117.6408463,40.0982399],[117.6420822,40.1320496],[117.5902863,40.1568031],[117.5731277,40.1809845],[117.5596237,40.2135544],[117.5416489,40.2283516],[117.4961929,40.2271729],[117.4638138,40.2400322],[117.4235001,40.2440338],[117.3795471,40.224514],[117.3730087,40.2266769],[117.362793,40.226902],[117.3500519,40.2291756],[117.3422928,40.2323494],[117.3368683,40.2378159],[117.3334579,40.2439499],[117.3277664,40.2553177],[117.3234634,40.2612267],[117.3239288,40.2663116],[117.3177032,40.2738647],[117.3047714,40.2784271],[117.2925873,40.2822304],[117.2817764,40.2910767],[117.2713013,40.3035278],[117.2644577,40.3149338],[117.2576065,40.3263435],[117.2477264,40.3362312],[117.2385864,40.3468781],[117.2385864,40.3544846],[117.2370834,40.362854],[117.2241364,40.3696976],[117.2195816,40.3735008],[117.2167435,40.3792839],[117.2199631,40.3940353],[117.2230072,40.4077263],[117.2298508,40.4275017],[117.2297363,40.4361076],[117.2283325,40.4434738],[117.2245331,40.4510803],[117.2192001,40.4579239],[117.2077866,40.4723778],[117.1994171,40.4860687],[117.1950912,40.4969025],[117.1994171,40.5050812],[117.2085037,40.5128174],[117.2237625,40.5164909],[117.2344131,40.5134468],[117.2443008,40.5134468],[117.249382,40.5168877],[117.2488632,40.5225754],[117.2427826,40.5279007],[117.2351837,40.5339851],[117.2336502,40.5423508],[117.2353363,40.5464668],[117.2997589,40.5773315],[117.3158035,40.5773392],[117.3325272,40.5758171],[117.3738174,40.5648842],[117.3994598,40.5712547],[117.4230423,40.572773],[117.4337997,40.5762749],[117.4390106,40.5788574],[117.4373093,40.5890465],[117.4237976,40.6092834],[117.4207611,40.6138458],[117.4188538,40.6198311],[117.4230423,40.6282959],[117.4361572,40.6496277],[117.4464264,40.6522827],[117.4671631,40.6389465],[117.4756622,40.6364861],[117.4937668,40.6351433],[117.4991989,40.6403923],[117.4960022,40.6653366],[117.489212,40.6708908],[117.4777985,40.6708908],[117.4428177,40.6746941],[117.4093475,40.6792564],[117.3986969,40.6792564],[117.3720779,40.6754532],[117.3408966,40.6663246],[117.3203583,40.6549187],[117.3021088,40.6541557],[117.2853699,40.659481],[117.2633133,40.6708908],[117.2252884,40.6784973],[117.1994171,40.6868629],[117.1834564,40.6899033],[117.1655502,40.6925087],[117.1406631,40.7018013],[116.9942322,40.6929588],[116.9415131,40.7251854],[116.9126511,40.7726135],[116.8916016,40.7795486],[116.8825836,40.7968483],[116.846138,40.832962],[116.7915802,40.8427238],[116.7769623,40.8724785],[116.7155075,40.9009628],[116.7108231,40.9320602],[116.6812592,40.9442291],[116.666893,40.9767113],[116.6852188,41.0201111],[116.6771317,41.0409241],[116.6205902,41.058609],[116.6008606,41.0433159],[116.6098633,41.015419],[116.5894775,40.9788666],[116.53022,40.9882774],[116.4942093,40.9764023],[116.444313,40.9754829],[116.4437027,40.948967],[116.4687424,40.9101143],[116.4593735,40.8925133],[116.3923187,40.9029922],[116.3687363,40.9363441],[116.3539276,40.9395256],[116.3303604,40.9296684],[116.326767,40.900177],[116.4544525,40.7901115],[116.4541397,40.7736549],[116.4221802,40.7635841],[116.3998718,40.7845993],[116.369133,40.770401],[116.3124466,40.7721558],[116.2883682,40.7558899],[116.2445908,40.7873459],[116.2322311,40.7868652],[116.2025833,40.723938],[116.1571732,40.7002716],[116.1542969,40.6662064],[116.1122131,40.6560173],[116.1039505,40.6182785],[115.9796982,40.5793915],[115.9265518,40.6131973],[115.9045715,40.6169701],[115.8707733,40.594162],[115.8200073,40.5881615],[115.8070068,40.5640831],[115.7746277,40.5570259],[115.752243,40.5413399],[115.7327271,40.5110397],[115.731987,40.4954948],[115.770462,40.4907188],[115.7618408,40.4515762],[115.807457,40.4159775],[115.8229828,40.3902473],[115.8664017,40.3582649],[115.9059677,40.3545952],[115.9551315,40.2618179],[115.9160309,40.2501984],[115.8750076,40.2198181],[115.8724976,40.1976357],[115.8383026,40.1780167],[115.8469009,40.1499557],[115.8225021,40.1402168],[115.7895126,40.1560135],[115.7761612,40.1785545],[115.7529831,40.1658363],[115.7552567,40.1475677],[115.7392731,40.1337471],[115.6732788,40.1353455],[115.6349716,40.1179199],[115.606308,40.1188431],[115.5863113,40.0944595],[115.5537262,40.0992165],[115.5104904,40.0748253],[115.4408188,40.0262337],[115.4405899,40.0015526],[115.4165192,39.9528542],[115.4477768,39.9488449],[115.5083237,39.9119682],[115.5102234,39.8852043],[115.5230331,39.8772278],[115.5127716,39.843338],[115.5632401,39.8148308],[115.539093,39.7974167],[115.497551,39.7915802],[115.4776306,39.7990723],[115.4175034,39.7743835],[115.4312363,39.7561264],[115.4805374,39.747364],[115.4844284,39.740284],[115.4672623,39.6702042],[115.4759293,39.6535263],[115.5611572,39.5972366],[115.6733627,39.600666],[115.6855621,39.5617752],[115.7249298,39.5512962],[115.7501068,39.5117302],[115.802742,39.5119896],[115.8311386,39.5474739],[115.9006882,39.5637131],[115.9048615,39.5898018],[115.9190826,39.5980339],[115.9572067,39.567112],[115.9815292,39.590889],[116.004303,39.5794182],[116.1232071,39.5645638],[116.1582031,39.579586],[116.2149277,39.5725861],[116.219162,39.5647202],[116.2306595,39.5562477],[116.2342911,39.5501938],[116.2373199,39.5156975],[116.2439804,39.5041962],[116.2766571,39.4920921],[116.3081284,39.476963],[116.3395767,39.4505768],[116.3668365,39.4521484],[116.3868103,39.4521484],[116.4092026,39.4473076],[116.4334106,39.4424667],[116.4473267,39.4424667],[116.4414368,39.47715],[116.4111023,39.4887352],[116.3974075,39.5139771],[116.4790115,39.5440178],[116.5100403,39.570858],[116.5173721,39.5946198],[116.5994568,39.6291542],[116.6294098,39.6058464],[116.6725998,39.6030464],[116.7088318,39.5876884],[116.7219467,39.5951462],[116.6988373,39.6177406],[116.7347336,39.6216011],[116.7702179,39.595932],[116.7993927,39.6100082],[116.7929535,39.5902786],[116.7943726,39.5746231],[116.7926865,39.5504456],[116.8000565,39.53619],[116.8190002,39.5278053],[116.8143005,39.5070114],[116.8016434,39.4700356],[116.7979431,39.4571953],[116.8164368,39.4458084],[116.844902,39.4322891],[116.8556671,39.4258804],[116.838501,39.4009743],[116.8320923,39.3924332],[116.8263702,39.3789711],[116.8235474,39.3639679],[116.8255463,39.3416672],[116.8328018,39.3383484],[116.8426666,39.3424416],[116.8498764,39.3518677],[116.8594437,39.3599281],[116.8683929,39.3568497],[116.8804932,39.3483086],[116.888237,39.3319855],[116.8876038,39.3212662],[116.8855972,39.3134689],[116.8648376,39.304718],[116.859848,39.2862167],[116.8626938,39.276432],[116.8691025,39.2636223],[116.8859863,39.2404442],[116.8833313,39.2315941],[116.8783493,39.2251892],[116.8626938,39.2187843],[116.8554764,39.2079659],[116.8548737,39.1974335],[116.8584213,39.1888962],[116.864563,39.1648521],[116.9183426,39.1593513],[116.9303894,39.1366539],[116.8978729,39.0731239],[116.8868866,39.0627861],[116.8197403,39.0525894],[116.7568665,39.0304184],[116.704483,38.9268646],[116.7266922,38.8506927],[116.7443619,38.8349915],[116.7274094,38.7913857],[116.7507629,38.7401543],[116.8361893,38.7403946],[116.8730621,38.7006989],[116.9263611,38.6864929],[117.0030975,38.694931],[117.0381088,38.690239],[117.0488663,38.6354027],[117.0957108,38.5907288],[117.1146317,38.5873222],[117.1371994,38.6067619],[117.2266617,38.6277542],[117.2514191,38.609375],[117.23069,38.5798492],[117.2693176,38.5695457],[117.3806763,38.5894623],[117.4499207,38.6174011],[117.5458069,38.6130981],[117.5476837,38.6090126],[117.55233,38.609787],[117.5540237,38.6116486],[117.5539169,38.615078],[117.5587006,38.6115074],[117.5639496,38.602459],[117.5706863,38.592289],[117.5797424,38.5826225],[117.5825882,38.5755844],[117.5838165,38.5737762],[117.5847931,38.5703659],[117.586647,38.5667419],[117.5937271,38.5552063],[117.5992966,38.5447845],[117.6061172,38.531414],[117.6151962,38.5206032],[117.6222229,38.5106659],[117.6273804,38.5038986],[117.6307373,38.4986954],[117.6317215,38.495285],[117.63237,38.4930077],[117.6384277,38.485569],[117.6462479,38.477478],[117.65345,38.4705162],[117.6554718,38.4614029],[117.6605301,38.4482269],[117.666008,38.4403191],[117.6720963,38.4315071],[117.679657,38.4218063],[117.6868668,38.4143829],[117.6921082,38.4046402],[117.6957779,38.3987579],[117.6979065,38.3953667],[117.6998062,38.3903656],[117.7017288,38.3844528],[117.7038803,38.3806],[117.711647,38.3736458],[117.7203217,38.3655624],[117.7286835,38.358387],[117.7355728,38.3518753],[117.7403717,38.3466988],[117.7451324,38.3428917],[117.7557831,38.3371277],[117.7629089,38.3319893],[117.769783,38.3254738],[117.7787323,38.3173904],[117.7882233,38.3113785],[117.7980194,38.3039932],[117.8051682,38.2977066],[117.8052673,38.2940483],[117.801239,38.2926102],[117.7954865,38.290226],[117.7901611,38.2830429],[117.7819672,38.2742081],[117.7751617,38.2683754],[117.7703934,38.2623444],[117.7675171,38.2609215],[117.7649002,38.2608757],[117.7604523,38.2640038],[117.7542572,38.2668724],[117.7507095,38.2690964],[117.7470779,38.2742958],[117.7434464,38.2792664],[117.7412796,38.2840309],[117.73909,38.289257],[117.7353287,38.2885017],[117.7369003,38.2844124],[117.7387772,38.2798691],[117.7394638,38.2762222],[117.7372284,38.2729797],[117.7325668,38.2733574],[117.7281876,38.2739639],[117.7250214,38.2727661],[117.7224274,38.2715759],[117.7223129,38.2712326],[117.7219009,38.2699661],[117.7260284,38.2679787],[117.7321701,38.266716],[117.7400665,38.2652512],[117.7471085,38.2628593],[117.7507095,38.2588005],[117.7517166,38.253788],[117.7504196,38.2485046],[117.744751,38.2433701],[117.7381363,38.2409668],[117.7314911,38.2394791],[117.7276382,38.242157],[117.7231979,38.2450523],[117.7200317,38.2438545],[117.7215805,38.2406769],[117.7239685,38.23843],[117.724617,38.2359276],[117.720871,38.2349434],[117.7147522,38.2352943],[117.710907,38.2377434],[117.7053299,38.2397041],[117.7018967,38.237812],[117.7010727,38.2361984],[117.7002487,38.2343521],[117.7006302,38.2311554],[117.7026596,38.2314224],[117.7046432,38.233284],[117.7090302,38.2322197],[117.7117233,38.2295227],[117.7167587,38.2264099],[117.7197418,38.2234879],[117.7160568,38.2199898],[117.7193909,38.2154732],[117.7203979,38.2109146],[117.7208481,38.205204],[117.7189484,38.2005959],[117.7146912,38.1970901],[117.7121429,38.1949844],[117.7119522,38.1913223],[117.7160263,38.190937],[117.7192001,38.1916771],[117.7228775,38.1951752],[117.7268906,38.1970749],[117.7352676,38.198822],[117.7415771,38.2014503],[117.7415466,38.2028236],[117.7371597,38.2036629],[117.7342529,38.2038383],[117.7324219,38.2067795],[117.7353821,38.2150688],[117.7364502,38.2185173],[117.7409821,38.2224884],[117.7479095,38.2242088],[117.7551117,38.2263908],[117.7619934,38.2297134],[117.768013,38.2330208],[117.7760696,38.2356758],[117.7795563,38.2357368],[117.7759705,38.2288132],[117.7693329,38.2275543],[117.7657166,38.2213135],[117.765831,38.2172012],[117.7679367,38.2147179],[117.7733536,38.2184715],[117.7775726,38.2235756],[117.7909317,38.2238045],[117.7908401,38.2164841],[117.7884369,38.2086639],[117.786171,38.2041779],[117.7889328,38.2029114],[117.7890015,38.2028809],[117.7886734,38.196228],[117.7886734,38.1851768],[117.7920685,38.1770973],[117.7960892,38.1702728],[117.7907867,38.1673203],[117.7827072,38.1673203],[117.770813,38.1634941],[117.764473,38.1609764],[117.7623062,38.1520119],[117.7623062,38.1418114],[117.7593307,38.1345825],[117.7512512,38.1286316],[117.7423172,38.1256523],[117.7325516,38.1167259],[117.7222595,38.1046753],[117.7206421,38.0980186],[117.7193222,38.0928154],[117.7163925,38.0890923],[117.7117233,38.0869637],[117.7066116,38.0848389],[117.7040634,38.0818634],[117.6998062,38.0780373],[117.6917267,38.0754852],[117.6811066,38.0767632],[117.6734467,38.07761],[117.6645203,38.072937],[117.656868,38.0708084],[117.6466675,38.070385],[117.6394424,38.0712357],[117.6300888,38.070385],[117.6194611,38.0708084],[117.6092529,38.0712357],[117.599472,38.072937],[117.5892715,38.0733604],[117.5828934,38.0725098],[117.5782166,38.0708084],[117.5714188,38.0661316],[117.5658875,38.0606041],[117.5654602,38.0563545],[117.5646133,38.0516777],[117.5616379,38.0461502],[117.5569611,38.0393486],[117.548027,38.0321198],[117.5412292,38.0282936],[117.5374069,38.0227661],[117.5352783,38.0180893],[117.5369797,38.0122643],[117.5238037,37.9989586],[117.5208206,37.9900322],[117.5191193,37.983654],[117.5182724,37.9772758],[117.5157166,37.9696236],[117.5118866,37.962822],[117.5063705,37.954319],[117.5012665,37.9466667],[117.4961624,37.940712],[117.4880829,37.9288101],[117.482132,37.921154],[117.4766083,37.913929],[117.4714966,37.9079742],[117.4698029,37.9033012],[117.4676819,37.8994713],[117.4625778,37.891819],[117.457901,37.8850174],[117.4527969,37.8777885],[117.4511032,37.873539],[117.4493866,37.8680115],[117.4468536,37.8637619],[117.4421692,37.8578072],[117.4387665,37.8548317],[117.4319687,37.8488808],[117.4272919,37.846756],[117.4204865,37.8442039],[117.4132614,37.8442039],[117.4056091,37.8433533],[117.3958282,37.8454781],[117.3869019,37.8471794],[117.3754196,37.8484535],[117.3647919,37.8501549],[117.3545914,37.8531303],[117.3443832,37.8552589],[117.3363037,37.8569565],[117.3282318,37.8573837],[117.3222733,37.8561058],[117.3143768,37.85532],[117.30336,37.8516426],[117.2922974,37.8465424],[117.2816772,37.8418655],[117.2752991,37.8397408],[117.2625427,37.8384628],[117.2514877,37.8393135],[117.2391586,37.8397408],[117.2234268,37.8405876],[117.2042999,37.8435669],[117.1962204,37.8439903],[117.1860123,37.8439903],[117.1766586,37.8431396],[117.1690063,37.8405876],[117.16008,37.8388901],[117.1515808,37.8376122],[117.1405334,37.8376122],[117.1325226,37.8400154],[117.1256409,37.8397408],[117.1158676,37.8405876],[117.1065063,37.8414383],[117.1001434,37.844841],[117.0890808,37.8456917],[117.0797272,37.8465424],[117.0720673,37.844841],[117.0610199,37.8418655],[117.0525208,37.8397408],[117.0444412,37.8346367],[117.0395508,37.8327255],[117.0323334,37.8297462],[117.0161667,37.8297462],[117.0077972,37.8318291],[116.9906464,37.8335762],[116.9766235,37.835701],[116.9626007,37.8361244],[116.9489899,37.8374023],[116.9375229,37.8386765],[116.9183807,37.8408012],[116.9022293,37.8433533],[116.8920212,37.8442039],[116.8854523,37.8429565],[116.8811798,37.8427162],[116.8726807,37.8388901],[116.8663025,37.836338],[116.854393,37.8333626],[116.8463211,37.8312378],[116.8378067,37.8291092],[116.8254929,37.8312378],[116.8144302,37.8329353],[116.806778,37.833786],[116.7940216,37.8312378],[116.7872162,37.8257103],[116.7799911,37.8210335],[116.7740402,37.8167801],[116.7672424,37.8116798],[116.7600098,37.8061523],[116.7553329,37.7993507],[116.7527771,37.7857437],[116.7515106,37.7768173],[116.7489471,37.7687378],[116.7468338,37.7606621],[116.7438583,37.7542839],[116.737587,37.749752],[116.7323837,37.7466316],[116.7268524,37.7432289],[116.7187729,37.7394028],[116.7115479,37.7364273],[116.7039032,37.734726],[116.6941071,37.7317505],[116.6873093,37.7279243],[116.6813583,37.7249489],[116.675827,37.7206955],[116.6715775,37.7168694],[116.6673279,37.7113419],[116.6643524,37.7058144],[116.6626511,37.7011414],[116.6605301,37.6960373],[116.6579666,37.6900864],[116.6545715,37.6854095],[116.6516037,37.6807327],[116.6469193,37.6752052],[116.6426697,37.6726532],[116.6375732,37.6692543],[116.6358566,37.6654282],[116.6324692,37.6603241],[116.628212,37.6535225],[116.6243896,37.6467209],[116.6214066,37.6433182],[116.6163101,37.6382179],[116.6120605,37.6331139],[116.6090927,37.6292877],[116.6031265,37.6241875],[116.5980301,37.6203613],[116.5929337,37.6161079],[116.587822,37.6122818],[116.5822983,37.610157],[116.5771866,37.6080322],[116.5716705,37.6054802],[116.5669937,37.6016541],[116.5631638,37.5974007],[116.5567932,37.5914497],[116.5516891,37.5863495],[116.5470123,37.5820961],[116.5410614,37.5786972],[116.5367966,37.5744438],[116.5351028,37.5693436],[116.5317078,37.5655174],[116.5274506,37.5621147],[116.5214996,37.5582886],[116.5164032,37.5548859],[116.5151215,37.551487],[116.5127869,37.54702],[116.5089569,37.542347],[116.5042801,37.5397949],[116.4983292,37.5368195],[116.4932327,37.5359688],[116.4889832,37.5257645],[116.4842987,37.5185356],[116.4775009,37.5159874],[116.4655914,37.5159874],[116.4583664,37.5151367],[116.4519882,37.5121574],[116.4485931,37.5079079],[116.4439087,37.503231],[116.4400864,37.4972801],[116.4371109,37.4900513],[116.4362564,37.4760208],[116.4332809,37.4700699],[116.4285965,37.4683685],[116.3747406,37.5227623],[116.370369,37.5536995],[116.3284683,37.5737457],[116.294693,37.5633812],[116.284523,37.5510674],[116.288063,37.5267754],[116.2718811,37.5192947],[116.2961502,37.495594],[116.2679977,37.4796791],[116.2409973,37.4848099],[116.2256775,37.4722633],[116.2265701,37.425312],[116.2716217,37.415081],[116.2847366,37.4003792],[116.2734528,37.386219],[116.249321,37.3853874],[116.2334595,37.3586807],[116.2198563,37.3586807],[116.2109299,37.3582535],[116.2045517,37.3574028],[116.1973267,37.3569794],[116.1871185,37.35783],[116.1811676,37.3616562],[116.1781921,37.3659058],[116.1752167,37.3705826],[116.1718063,37.3752594],[116.1662903,37.3782349],[116.1592712,37.3784485],[116.1522598,37.3756866],[116.1454468,37.3744087],[116.1399307,37.3714333],[116.1331329,37.3705826],[116.1237717,37.3697319],[116.1169662,37.3676071],[116.1101685,37.3667564],[116.1029434,37.3676071],[116.0944366,37.3680344],[116.0846634,37.3676071],[116.0753021,37.3676071],[116.0697784,37.3667564],[116.0598907,37.3643875],[116.0570221,37.3603783],[116.0531998,37.35783],[116.0468216,37.3561287],[116.0417175,37.3557014],[116.0353394,37.3544273],[116.0293884,37.3518753],[116.0255585,37.3501778],[116.0230103,37.3480492],[116.0196075,37.3455009],[116.009407,37.3433723],[116.0006866,37.3410339],[115.9913406,37.337635],[115.9853821,37.3363571],[115.9805222,37.3345947],[115.9773102,37.3287048],[115.9768829,37.324028],[115.9773102,37.3193512],[115.9764633,37.3134003],[115.9760284,37.3087234],[115.9756088,37.3044739],[115.973053,37.2980957],[115.9696503,37.2929916],[115.9679565,37.2887421],[115.9666672,37.2832146],[115.9654007,37.2793884],[115.9662628,37.2755623],[115.9671021,37.2700348],[115.9688034,37.2640839],[115.9671021,37.2577057],[115.9649811,37.2509041],[115.9628525,37.2453766],[115.9615784,37.2389984],[115.9602966,37.2334709],[115.9588089,37.2290077],[115.9545593,37.2251816],[115.9511566,37.2226295],[115.946907,37.2226295],[115.9405289,37.2217789],[115.9350128,37.2209282],[115.9294662,37.2192307],[115.9235229,37.2154045],[115.9162979,37.2115784],[115.9090729,37.2056236],[115.9044037,37.2005234],[115.9018402,37.1966972],[115.9005737,37.1915932],[115.9001389,37.1886177],[115.9018402,37.1839409],[115.9052429,37.1788406],[115.9073715,37.1750145],[115.9082184,37.1716118],[115.9052429,37.1682129],[115.9014206,37.1652336],[115.8980179,37.1626854],[115.892067,37.1597061],[115.8869629,37.1567307],[115.8822937,37.1537552],[115.8793106,37.1516304],[115.8754807,37.1439781],[115.8767471,37.1371765],[115.8788834,37.1307983],[115.8805771,37.1261215],[115.8814316,37.1197433],[115.8780365,37.1133652],[115.8742065,37.1086884],[115.8720779,37.1048622],[115.869957,37.0984879],[115.8678284,37.0925331],[115.866127,37.0874329],[115.8648529,37.0819054],[115.8644333,37.0763779],[115.8640137,37.0721283],[115.8597488,37.0682983],[115.8520966,37.0589485],[115.8474197,37.0538445],[115.8410492,37.0504456],[115.8342438,37.0457687],[115.829567,37.0432167],[115.8270187,37.0381126],[115.8236237,37.0334396],[115.8202133,37.0304604],[115.8121338,37.0274849],[115.8066101,37.0245094],[115.8061829,37.0147324],[115.8053436,37.0092049],[115.8006592,37.0053787],[115.7934265,37.0024033],[115.7849274,36.9990005],[115.7785492,36.9972992],[115.7751465,36.9913483],[115.7776871,36.9870949],[115.7810974,36.9802933],[115.7845001,36.9743423],[115.7887497,36.9688148],[115.788269,36.9627609],[115.781517,36.9535103],[115.7747192,36.945858],[115.7713165,36.9386292],[115.7662201,36.9301262],[115.7626038,36.9243851],[115.7545166,36.9154587],[115.7472992,36.912056],[115.7426224,36.9073792],[115.7379532,36.9014282],[115.7345428,36.8967514],[115.7302933,36.8920746],[115.7251892,36.8890991],[115.7200928,36.8865471],[115.7149887,36.8861237],[115.7103119,36.8844223],[115.7052078,36.8805962],[115.7001114,36.87677],[115.6962814,36.8691177],[115.6924515,36.8614655],[115.6894836,36.8525352],[115.6882019,36.8453064],[115.6883011,36.8407288],[115.6833115,36.8408432],[115.6803436,36.8382912],[115.6811905,36.8353157],[115.6811905,36.8306389],[115.6833115,36.8242645],[115.6833115,36.818737],[115.6811905,36.8149109],[115.6739578,36.8115082],[115.6624832,36.8115082],[115.651001,36.8102341],[115.64505,36.8085327],[115.63871,36.8047562],[115.6318665,36.7996025],[115.6233673,36.7953529],[115.6148682,36.7915268],[115.6072083,36.7885513],[115.6008377,36.7864227],[115.5957336,36.7847252],[115.5893631,36.7821732],[115.5833969,36.7796211],[115.5787277,36.7787704],[115.5712891,36.7772827],[115.5619431,36.7755814],[115.552803,36.7745209],[115.5476913,36.7745209],[115.5408936,36.7749443],[115.5357895,36.7745209],[115.5294113,36.7740936],[115.5255814,36.7702675],[115.5204773,36.7668686],[115.5166473,36.7655907],[115.5098495,36.7651672],[115.5043335,36.7655907],[115.5009232,36.7689934],[115.4979477,36.7694168],[115.4953995,36.7689934],[115.4898682,36.7664413],[115.48349,36.7634659],[115.4775391,36.7596397],[115.4749908,36.756237],[115.4707413,36.7477341],[115.4693069,36.7429161],[115.4664764,36.7375336],[115.4618073,36.7307281],[115.4562836,36.7256279],[115.4511795,36.7188263],[115.4481964,36.7145729],[115.4456635,36.7094727],[115.4452286,36.7069206],[115.4460831,36.7022438],[115.4448013,36.6967163],[115.4401169,36.6941681],[115.4346008,36.6911888],[115.4307709,36.6911888],[115.4239731,36.6886406],[115.4175873,36.686512],[115.4141922,36.6843872],[115.4112167,36.6814117],[115.4077606,36.6784248],[115.4031372,36.6724854],[115.4001617,36.6686554],[115.3993073,36.6656799],[115.3980331,36.6614304],[115.3954773,36.6576042],[115.3925095,36.657177],[115.3886871,36.6559029],[115.3852768,36.6554756],[115.3835831,36.6529274],[115.3818817,36.6499519],[115.3789062,36.6452751],[115.3771973,36.6410217],[115.3733673,36.6363449],[115.3712463,36.6312447],[115.3678513,36.6274185],[115.3644485,36.6235924],[115.3593369,36.621891],[115.3589172,36.6189156],[115.3589172,36.6163635],[115.3550873,36.6138115],[115.3495712,36.6095619],[115.3448868,36.6065865],[115.3410568,36.6031837],[115.3372421,36.6014824],[115.3334122,36.599781],[115.3325729,36.5938301],[115.3321381,36.5878792],[115.3321381,36.5827751],[115.3329773,36.5768242],[115.3321381,36.5725708],[115.3304367,36.5674706],[115.3300095,36.5636444],[115.3283081,36.5585442],[115.3266068,36.554718],[115.3232117,36.5487633],[115.3202362,36.543663],[115.3172607,36.5402603],[115.3121567,36.5360107],[115.3083267,36.5313339],[115.3040771,36.5275078],[115.2985535,36.5232544],[115.2926025,36.5202789],[115.2896194,36.5160255],[115.2879333,36.5126266],[115.2874985,36.5062485],[115.2849426,36.5011482],[115.2811203,36.4968948],[115.2781372,36.4930687],[115.2768707,36.4866905],[115.2772903,36.4828644],[115.2777176,36.4786148],[115.2815475,36.47649],[115.2845764,36.463253],[115.3030472,36.4573708],[115.3054123,36.4386063],[115.2938766,36.4121323],[115.3339462,36.397892],[115.3425369,36.3844223],[115.3435211,36.3629036],[115.3643875,36.3325424],[115.3551712,36.3105202],[115.4159775,36.3235893],[115.4260864,36.2842445],[115.4644165,36.2578201],[115.4764862,36.2159615],[115.4728699,36.1693611],[115.4339066,36.1349869],[115.3856277,36.1320572],[115.3575974,36.0943871],[115.3234863,36.0866814],[115.3000107,36.0948105],[115.2958298,36.1284485],[115.2720413,36.1365738],[115.240303,36.188839],[115.2113571,36.2005882],[115.1613998,36.191597],[115.1420288,36.2084198],[115.1204987,36.2113571],[115.1036377,36.171772],[115.0612106,36.1753769],[115.0485916,36.1652145],[115.0345764,36.1113434],[115.0348434,36.1073074],[115.0372696,36.1032677],[115.0367279,36.1005783],[115.0345764,36.0992317],[115.0259628,36.101387],[115.02005,36.1005783],[115.0192413,36.0986938],[115.0224686,36.0954666],[115.0235367,36.0935822],[115.0227432,36.0914307],[115.0186996,36.0914307],[115.0141296,36.0911598],[115.0100937,36.0903549],[115.0065918,36.0890083],[115.0030975,36.086586],[115.0012131,36.0855103],[114.9996033,36.0836258],[114.9993286,36.0809364],[115.0003967,36.0787849],[115.0047073,36.0769005],[115.0079269,36.075016],[115.005249,36.0723267],[114.9982529,36.0715179],[114.9920731,36.0707092],[114.9842606,36.0707092],[114.9788666,36.0696335],[114.9748383,36.0690956],[114.9705429,36.0682907],[114.9681168,36.0680199],[114.9648819,36.0701714],[114.961647,36.0736694],[114.9589615,36.0731316],[114.95681,36.0725937],[114.957077,36.0693665],[114.956543,36.0664062],[114.9530487,36.0669441],[114.9503632,36.0666733],[114.9479294,36.067482],[114.9441681,36.067482],[114.9385071,36.0672112],[114.9339371,36.0650597],[114.9285583,36.0620995],[114.9237137,36.0588722],[114.9223709,36.0545654],[114.9220963,36.0521431],[114.9247894,36.0481071],[114.9226379,36.0462227],[114.9175262,36.0464935],[114.914032,36.0464935],[114.9102631,36.0481071],[114.899147,36.0669899],[114.9131775,36.0982437],[114.8955231,36.1347313],[114.7733078,36.1270065],[114.762207,36.1326256],[114.7459869,36.1439476],[114.5923615,36.120121],[114.5313873,36.1682053],[114.4809418,36.1760864],[114.4542084,36.2009506],[114.4114227,36.2056923],[114.4023132,36.2243538],[114.3794632,36.2215424],[114.3424377,36.237545],[114.2778397,36.2392006],[114.2478867,36.2648888],[114.2282791,36.255455],[114.2129669,36.2696648],[114.1878891,36.2518997],[114.1326828,36.2787971],[114.083107,36.2681961],[114.0617828,36.2726746],[114.0327072,36.2928276],[114.0179062,36.3203049],[114.0174484,36.3512115],[113.9998627,36.3402176],[113.9969406,36.3501015],[113.972702,36.3578606],[113.9692535,36.3516083],[113.9893723,36.3360748],[113.983757,36.3153763],[113.9661713,36.3234711],[113.9532394,36.3535194],[113.9412231,36.3517723],[113.9505234,36.3383064],[113.9284134,36.3328094],[113.9140167,36.3319473],[113.9089813,36.3470497],[113.8914566,36.3430977],[113.8599319,36.3535538],[113.8434219,36.3450966],[113.8431091,36.328701],[113.8081284,36.331871],[113.7515564,36.3705635],[113.7235336,36.3559456],[113.7232437,36.3815765],[113.7020111,36.4233093],[113.6639175,36.4251289],[113.6229935,36.4547501],[113.5882034,36.4575958],[113.5756531,36.4838448],[113.5458832,36.5025826],[113.5489502,36.529789],[113.5816727,36.5484467],[113.5818863,36.5627632],[113.5634003,36.5859108],[113.533371,36.5940323],[113.5379333,36.6234055],[113.480278,36.6349869],[113.4688873,36.6467667],[113.501297,36.6966972],[113.5005264,36.7046394],[113.4602737,36.698967],[113.4710693,36.7260933],[113.4928207,36.7403297],[113.529808,36.7322197],[113.5371323,36.7442017],[113.5628662,36.7580261],[113.5936966,36.7528305],[113.6494598,36.7855644],[113.6746063,36.7899437],[113.6699371,36.8554192],[113.6961899,36.8848991],[113.7239609,36.8855324],[113.7344818,36.8536911],[113.7590027,36.8521042],[113.7876434,36.8817825],[113.755249,36.9556656],[113.7885666,36.9945869],[113.7654724,37.0163879],[113.783783,37.0425034],[113.7818375,37.0593605],[113.7623367,37.0620537],[113.751709,37.0751686],[113.7670898,37.1064453],[113.7609329,37.1440926],[113.8256531,37.1670761],[113.8468704,37.2146416],[113.8802795,37.2387352],[113.8981018,37.3151054],[113.9368896,37.3397942],[113.9536667,37.3484726],[113.9556427,37.362381],[113.9676819,37.4025574],[114.0163574,37.4347496],[114.0303879,37.4934349],[114.1149368,37.5955086],[114.1090927,37.6245117],[114.1320267,37.6676826],[114.1299362,37.6899948],[114.0551834,37.7217293],[113.9906235,37.703804],[113.9901581,37.729538],[114.0347366,37.7560005],[114.0374222,37.7766571],[114.0124435,37.7941322],[114.0088806,37.8098831],[113.970787,37.8162346],[113.9506073,37.9108696],[113.9229965,37.9315224],[113.89505,37.9843636],[113.8741913,37.9945869],[113.8730927,38.0634193],[113.8507233,38.0717125],[113.836792,38.0960312],[113.8096085,38.1145172],[113.8310623,38.1438065],[113.8169937,38.1637383],[113.7247314,38.1735039],[113.72966,38.1968346],[113.7029114,38.2110863],[113.6667328,38.2068405],[113.6366119,38.2313538],[113.5763092,38.2285538],[113.5382767,38.2700119],[113.5507431,38.3430138],[113.5187912,38.3824654],[113.5314178,38.4175301],[113.5770111,38.4655266],[113.5548401,38.4852867],[113.5489731,38.5205536],[113.5606537,38.5661125],[113.5999298,38.5923042],[113.6063919,38.645546],[113.7031937,38.6546783],[113.7069092,38.7086601],[113.7564316,38.7007141],[113.7963562,38.7626343],[113.8227463,38.755825],[113.8331223,38.7577896],[113.830101,38.7953339],[113.847229,38.8095741],[113.8491287,38.8283501],[113.7947464,38.8541565],[113.7695618,38.8848915],[113.7608871,38.9588356],[113.7767029,38.9884834],[113.8002014,38.9889145],[113.8720703,39.0434647],[113.8816605,39.0637817],[113.9239502,39.0627594],[113.9553909,39.1000671],[113.9886475,39.0946159],[113.9996567,39.1193504],[114.0441971,39.1348267],[114.0583725,39.0963478],[114.0901566,39.0826225],[114.1020737,39.0512047],[114.1200333,39.0498619],[114.15065,39.0601463],[114.190567,39.0494919],[114.2424622,39.0822601],[114.2739563,39.12183],[114.3221664,39.1089478],[114.3393707,39.0840569],[114.3578568,39.1034508],[114.3540573,39.1317902],[114.3733521,39.1677475],[114.3817291,39.1758614],[114.4115601,39.1705017],[114.4276276,39.1766472],[114.4531937,39.2106018],[114.4511871,39.2229424],[114.4195633,39.2287483],[114.4078369,39.2409706],[114.4117737,39.2971039],[114.4620514,39.3514938],[114.4645462,39.4076042],[114.4905777,39.4374313],[114.4962234,39.4686241],[114.536377,39.5040932],[114.545372,39.547451],[114.5386505,39.5595093],[114.5153427,39.572525],[114.4895401,39.6070251],[114.4257584,39.6131516],[114.4047089,39.6453362],[114.404129,39.7650871],[114.4318008,39.7924232],[114.3915405,39.8617363],[114.3714676,39.8697319],[114.3054733,39.8560867],[114.2691269,39.8739243],[114.2241821,39.8637123],[114.1892471,39.8911858],[114.0886765,39.9126129],[114.0409012,39.9444008],[114.0121613,39.9869881],[113.9653778,39.990078],[113.9349213,40.011528],[113.9081802,40.0049515],[113.904129,40.017601],[113.9404907,40.0262794],[113.9639969,40.0425148],[113.9682465,40.0876923],[113.9881134,40.1268501],[114.0244598,40.0784798],[114.0279083,40.0572929],[114.0727234,40.072216],[114.0883331,40.1034203],[114.0569763,40.1704102],[114.0796967,40.1869049],[114.1220474,40.172493],[114.1867676,40.1937332],[114.2270889,40.1945534],[114.2487793,40.2349968],[114.2866592,40.2288933],[114.3491592,40.2481651],[114.3938599,40.2437515],[114.4445801,40.2581749],[114.5046463,40.3017769],[114.524437,40.3421288],[114.4989929,40.3521957],[114.4643478,40.3483772],[114.4399872,40.3714828],[114.3846207,40.3496513],[114.3408966,40.3680267],[114.3079224,40.3683052],[114.2739716,40.4263954],[114.2627411,40.4853859],[114.2778091,40.5112915],[114.2647476,40.5524178],[114.2764664,40.5894585],[114.2517471,40.6093178],[114.2296066,40.6056747],[114.1952667,40.6250992],[114.2001114,40.6510353],[114.1231995,40.7415924],[114.0973129,40.7664299],[114.097702,40.7806129],[114.0569763,40.7975769],[114.0360794,40.8247948],[114.066658,40.8556366],[113.9754715,40.949501],[113.9663086,40.9814606],[113.8618011,41.067337],[113.8124619,41.09589],[113.8712463,41.1140366],[113.907959,41.1684647],[113.9777832,41.1781158],[113.9900513,41.1906815],[113.9939499,41.2235374],[114.0094223,41.2302055],[113.9761887,41.2622948],[113.9645615,41.2426224],[113.9561386,41.2448425],[113.9412079,41.2698212],[113.9152069,41.2821999],[113.8998108,41.311985],[113.9196167,41.322361],[113.9331818,41.3799591],[113.8677368,41.4070091],[113.8611069,41.4181061],[113.8674622,41.4438286],[113.9171066,41.4785843],[113.9524689,41.4875221],[113.9834137,41.5086555],[114.033287,41.5175629],[114.1031113,41.5111885],[114.14608,41.5204163],[114.2026215,41.5019951],[114.2382736,41.5030098],[114.2453766,41.5166779],[114.2161713,41.5469475],[114.2169876,41.5657425],[114.235878,41.5831032],[114.2225494,41.6045647],[114.2321472,41.6418724],[114.2112808,41.6759872],[114.2157135,41.7285233],[114.2050934,41.7976303],[114.316658,41.9090958],[114.3515472,41.9312439],[114.4149323,41.9463501],[114.4375687,41.939209],[114.4896164,41.964592],[114.4722672,41.999958],[114.4702377,42.0365028],[114.4727783,42.0541534],[114.4920578,42.0677452],[114.4953003,42.103241],[114.5649719,42.1318588],[114.6238098,42.1090508],[114.6691132,42.1184616],[114.7520294,42.1028252],[114.7720718,42.1136398],[114.7775421,42.1523552],[114.8086166,42.165844],[114.865509,42.1197929],[114.8394775,42.1013641],[114.814003,42.061676],[114.817131,42.0470924],[114.846962,42.0093422],[114.8953171,41.9915009],[114.912262,41.9503593],[114.9063034,41.9036369],[114.9407196,41.8341522],[114.9394913,41.8206482],[114.8680573,41.7967987],[114.8935623,41.754406],[114.8966599,41.6874619],[114.8893509,41.6345482],[114.8559113,41.6020699],[114.8614273,41.5886574],[114.8918686,41.60532],[114.9396667,41.6119232],[115.0184479,41.6131897],[115.0538483,41.5999222],[115.076889,41.6230698],[115.0936127,41.6269341],[115.1196365,41.6235886],[115.1570969,41.5979691],[115.1858292,41.5966988],[115.2249908,41.5758781],[115.2539368,41.5787086],[115.2579422,41.6109886],[115.2745209,41.6235085],[115.3009872,41.5938377],[115.3353806,41.6008186],[115.3628693,41.619381],[115.3320007,41.6389618],[115.331398,41.6565552],[115.3070068,41.6704826],[115.3269119,41.705204],[115.4232407,41.7264824],[115.4483032,41.7493439],[115.642067,41.8229408],[115.6836166,41.8609581],[115.7179108,41.8659897],[115.7259369,41.8898201],[115.7593994,41.8868332],[115.8203201,41.9333763],[115.8569107,41.9258118],[115.8902435,41.9403877],[115.9144974,41.9405098],[115.9434814,41.8791656],[115.99263,41.8192711],[115.9913788,41.7756042],[116.0633469,41.7717781],[116.0884171,41.7768936],[116.1006165,41.7897377],[116.0991135,41.8482475],[116.1588135,41.8671761],[116.1897964,41.8624611],[116.2116699,41.929718],[116.2886429,41.9630165],[116.3039474,41.9950409],[116.3208313,42.0035248],[116.3672333,42.0076942],[116.4025726,41.9917259],[116.4047165,41.9695549],[116.3801575,41.9501076],[116.3902893,41.9396019],[116.4473877,41.9437485],[116.490097,41.9775848],[116.5471115,41.9265938],[116.5910187,41.9336472],[116.6290665,41.9292641],[116.667778,41.939949],[116.708252,41.9305077],[116.7285385,41.9357224],[116.7382812,41.9800453],[116.7601395,41.988224],[116.8009262,41.9769135],[116.8256683,42.0033607],[116.8579025,41.9996033],[116.8733902,42.0164642],[116.884903,42.0760841],[116.8783798,42.1085625],[116.8493271,42.1365433],[116.8219681,42.1423416],[116.7949905,42.1609306],[116.7791672,42.1950302],[116.7887573,42.200489],[116.9064407,42.1928024],[116.912262,42.2279816],[116.8880234,42.3242912],[116.9006424,42.3980713],[116.9304428,42.4114456]]]]},
  41 +"properties":{
  42 +"gid":7,
  43 +"name":"河北省"}
  44 +},
  45 +{"type":"Feature",
  46 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.4960022,40.6653366],[117.4991989,40.6403923],[117.4937668,40.6351433],[117.4756622,40.6364861],[117.4671631,40.6389465],[117.4464264,40.6522827],[117.4361572,40.6496277],[117.4230423,40.6282959],[117.4188538,40.6198311],[117.4207611,40.6138458],[117.4237976,40.6092834],[117.4373093,40.5890465],[117.4390106,40.5788574],[117.4337997,40.5762749],[117.4230423,40.572773],[117.3994598,40.5712547],[117.3738174,40.5648842],[117.3325272,40.5758171],[117.3158035,40.5773392],[117.2997589,40.5773315],[117.2353363,40.5464668],[117.2336502,40.5423508],[117.2351837,40.5339851],[117.2427826,40.5279007],[117.2488632,40.5225754],[117.249382,40.5168877],[117.2443008,40.5134468],[117.2344131,40.5134468],[117.2237625,40.5164909],[117.2085037,40.5128174],[117.1994171,40.5050812],[117.1950912,40.4969025],[117.1994171,40.4860687],[117.2077866,40.4723778],[117.2192001,40.4579239],[117.2245331,40.4510803],[117.2283325,40.4434738],[117.2297363,40.4361076],[117.2298508,40.4275017],[117.2230072,40.4077263],[117.2199631,40.3940353],[117.2167435,40.3792839],[117.2195816,40.3735008],[117.2241364,40.3696976],[117.2370834,40.362854],[117.2385864,40.3544846],[117.2385864,40.3468781],[117.2477264,40.3362312],[117.2576065,40.3263435],[117.2644577,40.3149338],[117.2713013,40.3035278],[117.2817764,40.2910767],[117.2925873,40.2822304],[117.3047714,40.2784271],[117.3177032,40.2738647],[117.3239288,40.2663116],[117.3234634,40.2612267],[117.3277664,40.2553177],[117.3334579,40.2439499],[117.3368683,40.2378159],[117.3422928,40.2323494],[117.3500519,40.2291756],[117.362793,40.226902],[117.3730087,40.2266769],[117.3795471,40.224514],[117.380043,40.2181358],[117.3825531,40.2095146],[117.3822632,40.2057495],[117.3796768,40.2026863],[117.3753662,40.19981],[117.3721313,40.1951408],[117.3694763,40.1909981],[117.3703308,40.1879539],[117.3732071,40.1847191],[117.3768005,40.1832809],[117.3796768,40.1804085],[117.3811111,40.1764565],[117.3811111,40.172863],[117.3793488,40.1708069],[117.3732071,40.1699867],[117.3588333,40.1707077],[117.3548279,40.1691742],[117.348053,40.1620827],[117.3426666,40.1516609],[117.3354797,40.141243],[117.3247681,40.1346664],[117.3106766,40.1336975],[117.2990494,40.1309738],[117.2916412,40.1265106],[117.2844467,40.1243553],[117.2794266,40.1182442],[117.2733231,40.1117783],[117.2674332,40.1101723],[117.2603836,40.108902],[117.2265015,40.1070251],[117.2215729,40.1045914],[117.2154617,40.1017151],[117.2050476,40.0930939],[117.1939774,40.0827827],[117.1364899,40.0634842],[117.0562592,40.0618668],[116.9975128,40.0290184],[116.9578629,40.0459785],[116.8348694,40.0435867],[116.7602463,40.0275726],[116.7524414,40.0157127],[116.7719727,39.999115],[116.7560501,39.9654884],[116.7584534,39.9604797],[116.77491,39.9475288],[116.7760773,39.9374466],[116.7744827,39.9270287],[116.7800903,39.8925781],[116.791153,39.8812637],[116.7949677,39.8784447],[116.8032837,39.8767242],[116.8150406,39.8787308],[116.8250732,39.8767242],[116.8368301,39.8612404],[116.8457184,39.8563652],[116.8551788,39.8523521],[116.8649292,39.8514938],[116.8738174,39.848053],[116.8890076,39.83601],[116.9007568,39.8377304],[116.9053497,39.8477669],[116.9117966,39.8386536],[116.9153595,39.8258438],[116.921051,39.8144569],[116.9288788,39.8052025],[116.9381332,39.7959518],[116.945961,39.7824326],[116.9462128,39.7729683],[116.9402695,39.7681961],[116.9352875,39.7689095],[116.9281693,39.7717552],[116.9175034,39.7646408],[116.9020691,39.7591705],[116.901123,39.7539635],[116.9065399,39.7410545],[116.9004135,39.7347488],[116.8911591,39.7290535],[116.8854828,39.720871],[116.88974,39.7020111],[116.8942871,39.6963081],[116.899353,39.6779556],[116.8472595,39.6621475],[116.8280029,39.6201973],[116.7993927,39.6100082],[116.7702179,39.595932],[116.7347336,39.6216011],[116.6988373,39.6177406],[116.7219467,39.5951462],[116.7088318,39.5876884],[116.6725998,39.6030464],[116.6294098,39.6058464],[116.5994568,39.6291542],[116.5173721,39.5946198],[116.5100403,39.570858],[116.4790115,39.5440178],[116.3974075,39.5139771],[116.4111023,39.4887352],[116.4414368,39.47715],[116.4473267,39.4424667],[116.4334106,39.4424667],[116.4092026,39.4473076],[116.3868103,39.4521484],[116.3668365,39.4521484],[116.3395767,39.4505768],[116.3081284,39.476963],[116.2766571,39.4920921],[116.2439804,39.5041962],[116.2373199,39.5156975],[116.2342911,39.5501938],[116.2306595,39.5562477],[116.219162,39.5647202],[116.2149277,39.5725861],[116.1582031,39.579586],[116.1232071,39.5645638],[116.004303,39.5794182],[115.9815292,39.590889],[115.9572067,39.567112],[115.9190826,39.5980339],[115.9048615,39.5898018],[115.9006882,39.5637131],[115.8311386,39.5474739],[115.802742,39.5119896],[115.7501068,39.5117302],[115.7249298,39.5512962],[115.6855621,39.5617752],[115.6733627,39.600666],[115.5611572,39.5972366],[115.4759293,39.6535263],[115.4672623,39.6702042],[115.4844284,39.740284],[115.4805374,39.747364],[115.4312363,39.7561264],[115.4175034,39.7743835],[115.4776306,39.7990723],[115.497551,39.7915802],[115.539093,39.7974167],[115.5632401,39.8148308],[115.5127716,39.843338],[115.5230331,39.8772278],[115.5102234,39.8852043],[115.5083237,39.9119682],[115.4477768,39.9488449],[115.4165192,39.9528542],[115.4405899,40.0015526],[115.4408188,40.0262337],[115.5104904,40.0748253],[115.5537262,40.0992165],[115.5863113,40.0944595],[115.606308,40.1188431],[115.6349716,40.1179199],[115.6732788,40.1353455],[115.7392731,40.1337471],[115.7552567,40.1475677],[115.7529831,40.1658363],[115.7761612,40.1785545],[115.7895126,40.1560135],[115.8225021,40.1402168],[115.8469009,40.1499557],[115.8383026,40.1780167],[115.8724976,40.1976357],[115.8750076,40.2198181],[115.9160309,40.2501984],[115.9551315,40.2618179],[115.9059677,40.3545952],[115.8664017,40.3582649],[115.8229828,40.3902473],[115.807457,40.4159775],[115.7618408,40.4515762],[115.770462,40.4907188],[115.731987,40.4954948],[115.7327271,40.5110397],[115.752243,40.5413399],[115.7746277,40.5570259],[115.8070068,40.5640831],[115.8200073,40.5881615],[115.8707733,40.594162],[115.9045715,40.6169701],[115.9265518,40.6131973],[115.9796982,40.5793915],[116.1039505,40.6182785],[116.1122131,40.6560173],[116.1542969,40.6662064],[116.1571732,40.7002716],[116.2025833,40.723938],[116.2322311,40.7868652],[116.2445908,40.7873459],[116.2883682,40.7558899],[116.3124466,40.7721558],[116.369133,40.770401],[116.3998718,40.7845993],[116.4221802,40.7635841],[116.4541397,40.7736549],[116.4544525,40.7901115],[116.326767,40.900177],[116.3303604,40.9296684],[116.3539276,40.9395256],[116.3687363,40.9363441],[116.3923187,40.9029922],[116.4593735,40.8925133],[116.4687424,40.9101143],[116.4437027,40.948967],[116.444313,40.9754829],[116.4942093,40.9764023],[116.53022,40.9882774],[116.5894775,40.9788666],[116.6098633,41.015419],[116.6008606,41.0433159],[116.6205902,41.058609],[116.6771317,41.0409241],[116.6852188,41.0201111],[116.666893,40.9767113],[116.6812592,40.9442291],[116.7108231,40.9320602],[116.7155075,40.9009628],[116.7769623,40.8724785],[116.7915802,40.8427238],[116.846138,40.832962],[116.8825836,40.7968483],[116.8916016,40.7795486],[116.9126511,40.7726135],[116.9415131,40.7251854],[116.9942322,40.6929588],[117.1406631,40.7018013],[117.1655502,40.6925087],[117.1834564,40.6899033],[117.1994171,40.6868629],[117.2252884,40.6784973],[117.2633133,40.6708908],[117.2853699,40.659481],[117.3021088,40.6541557],[117.3203583,40.6549187],[117.3408966,40.6663246],[117.3720779,40.6754532],[117.3986969,40.6792564],[117.4093475,40.6792564],[117.4428177,40.6746941],[117.4777985,40.6708908],[117.489212,40.6708908],[117.4960022,40.6653366]]]]},
  47 +"properties":{
  48 +"gid":8,
  49 +"name":"北京市"}
  50 +},
  51 +{"type":"Feature",
  52 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.7627487,41.0012016],[121.7730484,41.0053368],[121.7757721,41.0117569],[121.7748566,41.0204697],[121.7869797,41.0181808],[121.7915268,41.0119934],[121.786377,41.0074081],[121.7824478,41.0005264],[121.7742691,40.9922676],[121.7688065,40.9954758],[121.7627487,41.0012016]]]]},
  53 +"properties":{
  54 +"gid":9,
  55 +"name":"辽宁省"}
  56 +},
  57 +{"type":"Feature",
  58 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.7978973,40.9961777],[121.7930603,40.9831085],[121.7854919,40.978981],[121.7833633,40.9847107],[121.790329,40.9904442],[121.7978973,40.9961777]]]]},
  59 +"properties":{
  60 +"gid":10,
  61 +"name":"辽宁省"}
  62 +},
  63 +{"type":"Feature",
  64 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.775177,40.9856224],[121.7612534,40.9824028],[121.7691269,40.9782829],[121.7748871,40.9750748],[121.7649002,40.9684219],[121.7606506,40.9727745],[121.750351,40.9782677],[121.7539673,40.9853783],[121.7551804,40.9917984],[121.7633591,40.9920311],[121.775177,40.9856224]]]]},
  65 +"properties":{
  66 +"gid":11,
  67 +"name":"辽宁省"}
  68 +},
  69 +{"type":"Feature",
  70 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.8686066,40.985775],[121.8715286,40.983345],[121.8687973,40.97509],[121.8657608,40.968441],[121.8554611,40.9689026],[121.8527374,40.9640884],[121.8497086,40.9576683],[121.8421326,40.9606514],[121.8400116,40.9546928],[121.831543,40.9606514],[121.8378983,40.9634018],[121.8472824,40.9656944],[121.8545609,40.9700508],[121.8606186,40.9750938],[121.8666763,40.981739],[121.8686066,40.985775]]]]},
  71 +"properties":{
  72 +"gid":12,
  73 +"name":"辽宁省"}
  74 +},
  75 +{"type":"Feature",
  76 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.8297195,40.9647751],[121.83638,40.9707375],[121.846077,40.9755516],[121.8554688,40.9773865],[121.853653,40.971653],[121.8418427,40.9668427],[121.8354721,40.9647789],[121.8297195,40.9647751]]]]},
  77 +"properties":{
  78 +"gid":13,
  79 +"name":"辽宁省"}
  80 +},
  81 +{"type":"Feature",
  82 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.9039307,40.9700317],[121.9063492,40.9677391],[121.9099808,40.9624634],[121.9093628,40.956501],[121.8990707,40.9562798],[121.8911972,40.9585762],[121.9002914,40.9645309],[121.9039307,40.9700317]]]]},
  83 +"properties":{
  84 +"gid":14,
  85 +"name":"辽宁省"}
  86 +},
  87 +{"type":"Feature",
  88 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.7219009,40.959446],[121.7267303,40.9699936],[121.7330933,40.9674797],[121.7370529,40.9619789],[121.7270432,40.9619713],[121.7219009,40.959446]]]]},
  89 +"properties":{
  90 +"gid":15,
  91 +"name":"辽宁省"}
  92 +},
  93 +{"type":"Feature",
  94 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.7564392,40.9477806],[121.7515869,40.9496155],[121.7446213,40.9553413],[121.7412872,40.9601517],[121.7388535,40.9667969],[121.7506638,40.967495],[121.7585373,40.9617691],[121.7524872,40.9551163],[121.7564392,40.9477806]]]]},
  95 +"properties":{
  96 +"gid":16,
  97 +"name":"辽宁省"}
  98 +},
  99 +{"type":"Feature",
  100 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.7694473,40.9571915],[121.7749023,40.9622383],[121.7818604,40.9652214],[121.7891312,40.9633904],[121.7900467,40.9565163],[121.7803574,40.9489441],[121.7764206,40.9551315],[121.7694473,40.9571915]]]]},
  101 +"properties":{
  102 +"gid":17,
  103 +"name":"辽宁省"}
  104 +},
  105 +{"type":"Feature",
  106 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.8612137,40.9585876],[121.8545532,40.9503365],[121.8527298,40.9443741],[121.8436432,40.9349747],[121.8457565,40.9510231],[121.8515167,40.9558372],[121.8612137,40.9585876]]]]},
  107 +"properties":{
  108 +"gid":18,
  109 +"name":"辽宁省"}
  110 +},
  111 +{"type":"Feature",
  112 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.8157883,40.9578972],[121.8197327,40.9569817],[121.8251724,40.9537735],[121.8294067,40.9487305],[121.8288116,40.9416237],[121.8218536,40.9299316],[121.8182068,40.9349747],[121.8148804,40.9439125],[121.8200302,40.9473534],[121.8157883,40.9517059],[121.8157883,40.9578972]]]]},
  113 +"properties":{
  114 +"gid":19,
  115 +"name":"辽宁省"}
  116 +},
  117 +{"type":"Feature",
  118 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.7279663,40.9493637],[121.7358475,40.9468498],[121.7443237,40.9480057],[121.7434311,40.937458],[121.7363968,40.9410515],[121.7340393,40.9422607],[121.7279663,40.9493637]]]]},
  119 +"properties":{
  120 +"gid":20,
  121 +"name":"辽宁省"}
  122 +},
  123 +{"type":"Feature",
  124 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.9413986,40.9216309],[121.9434967,40.9074173],[121.9326019,40.9060516],[121.9320068,40.915451],[121.9314194,40.9230156],[121.9371796,40.9282837],[121.9414291,40.9349289],[121.9480896,40.9365273],[121.9489822,40.9264412],[121.9501724,40.917038],[121.9413986,40.9216309]]]]},
  125 +"properties":{
  126 +"gid":21,
  127 +"name":"辽宁省"}
  128 +},
  129 +{"type":"Feature",
  130 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.8506012,40.9329109],[121.8548431,40.927639],[121.8645172,40.9269485],[121.8599777,40.9177818],[121.8584671,40.9120483],[121.8581619,40.9058571],[121.8533173,40.9005852],[121.8485184,40.9046097],[121.8448486,40.9076958],[121.8457565,40.9184685],[121.8478775,40.9251175],[121.8506012,40.9329109]]]]},
  131 +"properties":{
  132 +"gid":22,
  133 +"name":"辽宁省"}
  134 +},
  135 +{"type":"Feature",
  136 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.5323029,40.9083748],[121.5342789,40.9076881],[121.5362701,40.903595],[121.5359116,40.9001808],[121.5201797,40.89991],[121.5089569,40.9046898],[121.5101395,40.9115715],[121.5177002,40.9109039],[121.5237808,40.9054222],[121.5297928,40.9042702],[121.5315399,40.9065132],[121.5323029,40.9083748]]]]},
  137 +"properties":{
  138 +"gid":23,
  139 +"name":"辽宁省"}
  140 +},
  141 +{"type":"Feature",
  142 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.8383179,40.8888474],[121.848877,40.884182],[121.8488235,40.8877754],[121.8563995,40.8866348],[121.8609314,40.8829765],[121.8498001,40.8825722],[121.8347168,40.8820229],[121.8357468,40.8863144],[121.8383179,40.8888474]]]]},
  143 +"properties":{
  144 +"gid":24,
  145 +"name":"辽宁省"}
  146 +},
  147 +{"type":"Feature",
  148 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.893837,40.8808594],[121.8989563,40.8684731],[121.9022827,40.859993],[121.8989487,40.8501358],[121.905899,40.8508186],[121.9010468,40.8379822],[121.899231,40.8320274],[121.8998337,40.8251457],[121.8967972,40.817585],[121.8922729,40.8283615],[121.881691,40.8224068],[121.883812,40.8318024],[121.8756638,40.8384552],[121.8865509,40.8483086],[121.8780823,40.8451004],[121.8762665,40.852211],[121.8668976,40.8490028],[121.8693237,40.8595467],[121.861763,40.8529015],[121.858139,40.8636742],[121.8505783,40.8609276],[121.8536072,40.8700981],[121.8620834,40.8749084],[121.8732681,40.879261],[121.8841629,40.8799438],[121.893837,40.8808594]]]]},
  149 +"properties":{
  150 +"gid":25,
  151 +"name":"辽宁省"}
  152 +},
  153 +{"type":"Feature",
  154 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.1231995,40.7415924],[114.2001114,40.6510353],[114.1952667,40.6250992],[114.2296066,40.6056747],[114.2517471,40.6093178],[114.2764664,40.5894585],[114.2647476,40.5524178],[114.2778091,40.5112915],[114.2627411,40.4853859],[114.2739716,40.4263954],[114.3079224,40.3683052],[114.3408966,40.3680267],[114.3846207,40.3496513],[114.4399872,40.3714828],[114.4643478,40.3483772],[114.4989929,40.3521957],[114.524437,40.3421288],[114.5046463,40.3017769],[114.4445801,40.2581749],[114.3938599,40.2437515],[114.3491592,40.2481651],[114.2866592,40.2288933],[114.2487793,40.2349968],[114.2270889,40.1945534],[114.1867676,40.1937332],[114.1220474,40.172493],[114.0796967,40.1869049],[114.0569763,40.1704102],[114.0883331,40.1034203],[114.0727234,40.072216],[114.0279083,40.0572929],[114.0244598,40.0784798],[113.9881134,40.1268501],[113.9682465,40.0876923],[113.9639969,40.0425148],[113.9404907,40.0262794],[113.904129,40.017601],[113.9081802,40.0049515],[113.9349213,40.011528],[113.9653778,39.990078],[114.0121613,39.9869881],[114.0409012,39.9444008],[114.0886765,39.9126129],[114.1892471,39.8911858],[114.2241821,39.8637123],[114.2691269,39.8739243],[114.3054733,39.8560867],[114.3714676,39.8697319],[114.3915405,39.8617363],[114.4318008,39.7924232],[114.404129,39.7650871],[114.4047089,39.6453362],[114.4257584,39.6131516],[114.4895401,39.6070251],[114.5153427,39.572525],[114.5386505,39.5595093],[114.545372,39.547451],[114.536377,39.5040932],[114.4962234,39.4686241],[114.4905777,39.4374313],[114.4645462,39.4076042],[114.4620514,39.3514938],[114.4117737,39.2971039],[114.4078369,39.2409706],[114.4195633,39.2287483],[114.4511871,39.2229424],[114.4531937,39.2106018],[114.4276276,39.1766472],[114.4115601,39.1705017],[114.3817291,39.1758614],[114.3733521,39.1677475],[114.3540573,39.1317902],[114.3578568,39.1034508],[114.3393707,39.0840569],[114.3221664,39.1089478],[114.2739563,39.12183],[114.2424622,39.0822601],[114.190567,39.0494919],[114.15065,39.0601463],[114.1200333,39.0498619],[114.1020737,39.0512047],[114.0901566,39.0826225],[114.0583725,39.0963478],[114.0441971,39.1348267],[113.9996567,39.1193504],[113.9886475,39.0946159],[113.9553909,39.1000671],[113.9239502,39.0627594],[113.8816605,39.0637817],[113.8720703,39.0434647],[113.8002014,38.9889145],[113.7767029,38.9884834],[113.7608871,38.9588356],[113.7695618,38.8848915],[113.7947464,38.8541565],[113.8491287,38.8283501],[113.847229,38.8095741],[113.830101,38.7953339],[113.8331223,38.7577896],[113.8227463,38.755825],[113.7963562,38.7626343],[113.7564316,38.7007141],[113.7069092,38.7086601],[113.7031937,38.6546783],[113.6063919,38.645546],[113.5999298,38.5923042],[113.5606537,38.5661125],[113.5489731,38.5205536],[113.5548401,38.4852867],[113.5770111,38.4655266],[113.5314178,38.4175301],[113.5187912,38.3824654],[113.5507431,38.3430138],[113.5382767,38.2700119],[113.5763092,38.2285538],[113.6366119,38.2313538],[113.6667328,38.2068405],[113.7029114,38.2110863],[113.72966,38.1968346],[113.7247314,38.1735039],[113.8169937,38.1637383],[113.8310623,38.1438065],[113.8096085,38.1145172],[113.836792,38.0960312],[113.8507233,38.0717125],[113.8730927,38.0634193],[113.8741913,37.9945869],[113.89505,37.9843636],[113.9229965,37.9315224],[113.9506073,37.9108696],[113.970787,37.8162346],[114.0088806,37.8098831],[114.0124435,37.7941322],[114.0374222,37.7766571],[114.0347366,37.7560005],[113.9901581,37.729538],[113.9906235,37.703804],[114.0551834,37.7217293],[114.1299362,37.6899948],[114.1320267,37.6676826],[114.1090927,37.6245117],[114.1149368,37.5955086],[114.0303879,37.4934349],[114.0163574,37.4347496],[113.9676819,37.4025574],[113.9556427,37.362381],[113.9536667,37.3484726],[113.9368896,37.3397942],[113.8981018,37.3151054],[113.8802795,37.2387352],[113.8468704,37.2146416],[113.8256531,37.1670761],[113.7609329,37.1440926],[113.7670898,37.1064453],[113.751709,37.0751686],[113.7623367,37.0620537],[113.7818375,37.0593605],[113.783783,37.0425034],[113.7654724,37.0163879],[113.7885666,36.9945869],[113.755249,36.9556656],[113.7876434,36.8817825],[113.7590027,36.8521042],[113.7344818,36.8536911],[113.7239609,36.8855324],[113.6961899,36.8848991],[113.6699371,36.8554192],[113.6746063,36.7899437],[113.6494598,36.7855644],[113.5936966,36.7528305],[113.5628662,36.7580261],[113.5371323,36.7442017],[113.529808,36.7322197],[113.4928207,36.7403297],[113.4710693,36.7260933],[113.4602737,36.698967],[113.5005264,36.7046394],[113.501297,36.6966972],[113.4688873,36.6467667],[113.480278,36.6349869],[113.5379333,36.6234055],[113.533371,36.5940323],[113.5634003,36.5859108],[113.5818863,36.5627632],[113.5816727,36.5484467],[113.5489502,36.529789],[113.5458832,36.5025826],[113.5756531,36.4838448],[113.5882034,36.4575958],[113.6229935,36.4547501],[113.6639175,36.4251289],[113.7020111,36.4233093],[113.7232437,36.3815765],[113.7235336,36.3559456],[113.7300415,36.3246727],[113.7021027,36.296093],[113.6903534,36.2355499],[113.6779404,36.2201729],[113.6958771,36.208847],[113.6656799,36.2001534],[113.6923218,36.1879349],[113.690773,36.1816177],[113.6559067,36.1777992],[113.6509094,36.1658211],[113.6973801,36.149025],[113.697731,36.1311798],[113.6789017,36.1257172],[113.6570435,36.1355934],[113.6471634,36.1234245],[113.6652985,36.113472],[113.6499481,36.1064873],[113.6628571,36.0996132],[113.6784134,36.0640221],[113.6541977,36.0348282],[113.6888733,36.0268707],[113.6889496,36.0183029],[113.674469,36.0149384],[113.69133,36.0025101],[113.6801834,35.9865685],[113.6370392,35.9929924],[113.6337433,35.9698982],[113.6416168,35.9673386],[113.6482468,35.9174194],[113.631218,35.8701515],[113.6506729,35.8368645],[113.6350479,35.8227615],[113.6176529,35.8317833],[113.5719299,35.8217239],[113.5929794,35.7753906],[113.5817032,35.7370033],[113.6185989,35.63657],[113.5960617,35.6300545],[113.5444565,35.6477089],[113.5403137,35.6172905],[113.5003433,35.5662079],[113.4905472,35.5305481],[113.4412766,35.5090141],[113.4005966,35.5121422],[113.3439865,35.4741173],[113.2943497,35.4770126],[113.2932816,35.4252892],[113.2361526,35.4453506],[113.2027664,35.4419937],[113.1838226,35.4226913],[113.1736832,35.4101219],[113.1599426,35.4122047],[113.1629715,35.3925133],[113.1351624,35.3710403],[113.1285172,35.3521729],[113.1200867,35.3393669],[113.0920563,35.3348274],[113.0240173,35.3635025],[113.0041275,35.3612251],[112.9816971,35.3456726],[112.9825211,35.3040085],[112.9921265,35.3029709],[112.9825211,35.2921104],[112.9357605,35.2889099],[112.9217834,35.2499962],[112.8098297,35.2572556],[112.7762909,35.2347832],[112.7690735,35.2089043],[112.7503433,35.2036133],[112.6714096,35.2238426],[112.6469193,35.2675095],[112.6252136,35.2549667],[112.6193771,35.2241783],[112.5724106,35.2169533],[112.4470367,35.2263641],[112.3926315,35.2476578],[112.3525238,35.2204628],[112.2859573,35.218071],[112.2795029,35.2221603],[112.2891083,35.2464714],[112.2809296,35.2544441],[112.2108765,35.2316208],[112.1990585,35.2397919],[112.2028275,35.256752],[112.0523071,35.2786674],[112.0718613,35.2291298],[112.039299,35.1867752],[112.0607529,35.1686172],[112.0484695,35.0865707],[112.055397,35.0646439],[112.0507965,35.0506439],[112.0245209,35.0425186],[112.0109406,35.0629997],[111.9678421,35.0704536],[111.9302902,35.081604],[111.9080429,35.073864],[111.8195267,35.0710411],[111.8067932,35.0631371],[111.7921829,35.0282021],[111.674408,34.9881325],[111.6627808,34.9818306],[111.6699905,34.9473267],[111.6281662,34.9283485],[111.6097336,34.8949509],[111.5853729,34.8846092],[111.5639801,34.8456764],[111.5342636,34.8570213],[111.4909668,34.8308754],[111.4351807,34.8357048],[111.3824005,34.8126144],[111.368988,34.8154182],[111.3431473,34.8269997],[111.3290863,34.8315735],[111.269783,34.8081284],[111.2492294,34.8099251],[111.2186813,34.7928162],[111.1949234,34.8049355],[111.1538086,34.8089561],[111.1309662,34.7889099],[111.0997467,34.7615662],[111.0734177,34.7463074],[111.0202026,34.7383995],[110.9602203,34.6983032],[110.9501266,34.7253952],[110.9315414,34.7349434],[110.9138718,34.7296143],[110.9117432,34.6798897],[110.8954926,34.6619949],[110.7516403,34.6581688],[110.7220306,34.6219215],[110.6766129,34.5963707],[110.540657,34.5915298],[110.4633636,34.6140594],[110.4140472,34.6000099],[110.3811188,34.6055183],[110.3630829,34.6140785],[110.3006287,34.6123085],[110.2894897,34.6209831],[110.264183,34.6751976],[110.2480316,34.6933975],[110.2802124,34.7836342],[110.2834473,34.9096565],[110.2723923,34.9682732],[110.2893219,34.9974861],[110.3221436,35.0190163],[110.3372726,35.0706253],[110.3627319,35.1054993],[110.3562469,35.1342163],[110.3847504,35.2350845],[110.4256134,35.3002472],[110.4363098,35.3167191],[110.4551926,35.3315163],[110.4720535,35.3680229],[110.5160828,35.4052811],[110.5459366,35.5269508],[110.6059875,35.6187248],[110.5967789,35.6617126],[110.5902863,35.6751785],[110.5829163,35.6873283],[110.57901,35.6973114],[110.577713,35.72118],[110.5764084,35.737236],[110.5746689,35.7502556],[110.5720673,35.7576332],[110.5690308,35.7671814],[110.5686035,35.7789001],[110.5686035,35.7914848],[110.5668564,35.7992973],[110.5659866,35.8040733],[110.5629501,35.8097153],[110.5590363,35.816658],[110.5538406,35.8240356],[110.5494995,35.8305435],[110.5494995,35.8361855],[110.5488663,35.8423424],[110.5494995,35.8505096],[110.5503693,35.8609238],[110.5494995,35.8683014],[110.5447235,35.8743782],[110.5351791,35.8748131],[110.5295334,35.8748131],[110.5225906,35.8769798],[110.5173874,35.880455],[110.5139084,35.8852272],[110.5121765,35.8882637],[110.5126114,35.8982468],[110.5135269,35.9082909],[110.5127563,35.9176025],[110.5092621,35.9230347],[110.5057831,35.9296303],[110.5026703,35.936615],[110.5022812,35.943985],[110.5057831,35.949028],[110.5084763,35.9536858],[110.5127563,35.9606705],[110.5131531,35.9657135],[110.5084763,35.9699783],[110.5030594,35.9738617],[110.4983978,35.9804573],[110.4945221,35.9870529],[110.4937363,35.9940338],[110.4929733,36.0006294],[110.4910278,36.0064507],[110.4887009,36.0134315],[110.4859772,36.0235214],[110.4844437,36.0332184],[110.4836578,36.0436935],[110.4828796,36.0506783],[110.4774475,36.0572739],[110.4727936,36.0607681],[110.4662018,36.0669746],[110.4630966,36.0716286],[110.4638672,36.0774498],[110.464653,36.0832672],[110.4638672,36.0918045],[110.4619293,36.0984001],[110.4576569,36.1053848],[110.4502869,36.1131439],[110.4475784,36.1224556],[110.4468002,36.1313782],[110.4448624,36.1368103],[110.4440765,36.1441803],[110.4452515,36.1538811],[110.446022,36.1620293],[110.4464111,36.1693993],[110.449913,36.1787109],[110.4526215,36.1845284],[110.4541702,36.1915131],[110.4530106,36.1992722],[110.4514465,36.2047043],[110.4495163,36.2112999],[110.4495163,36.2175064],[110.4510727,36.2229385],[110.4545593,36.2268181],[110.4588165,36.2299232],[110.4627075,36.2334137],[110.4665833,36.236908],[110.4696884,36.2415619],[110.4696884,36.2466049],[110.4708633,36.2508736],[110.4716263,36.2551422],[110.4716263,36.2617378],[110.4712372,36.26717],[110.4700775,36.2726021],[110.4692993,36.2760925],[110.4673615,36.2780304],[110.4654236,36.2815247],[110.4630966,36.2842407],[110.4619293,36.2892838],[110.4658127,36.2939377],[110.4700775,36.2989845],[110.4700775,36.3044128],[110.4665833,36.307518],[110.4630966,36.309845],[110.4592133,36.312561],[110.4568863,36.3164406],[110.4553375,36.3207092],[110.4545593,36.3253632],[110.4557266,36.3296318],[110.4582138,36.3330345],[110.4607697,36.3373909],[110.4619293,36.340107],[110.4623184,36.3447647],[110.4623184,36.3505821],[110.4615402,36.3564034],[110.4623184,36.360672],[110.4654236,36.362999],[110.4708633,36.3695946],[110.4770584,36.3777428],[110.4813309,36.3897705],[110.4828796,36.3963661],[110.4840469,36.4048996],[110.4832687,36.4126587],[110.48172,36.4196434],[110.4735718,36.4274025],[110.4689178,36.433609],[110.4669724,36.4390411],[110.4696884,36.4452477],[110.479393,36.4522324],[110.4883118,36.4611549],[110.4925766,36.4696922],[110.4945221,36.4801674],[110.4937363,36.491806],[110.4922028,36.4987907],[110.494133,36.5049973],[110.4960709,36.5112038],[110.4968491,36.5162468],[110.4968491,36.5209045],[110.494133,36.5259476],[110.4914169,36.5302162],[110.48909,36.5340958],[110.4863663,36.5375862],[110.4856033,36.542244],[110.4863663,36.5480614],[110.48909,36.5550461],[110.4920883,36.5611687],[110.4952698,36.5648422],[110.4956665,36.5672417],[110.4916687,36.5712433],[110.4892731,36.5744476],[110.4848633,36.5764465],[110.47966,36.5788498],[110.4764633,36.5800476],[110.472847,36.5808487],[110.4692535,36.5836525],[110.4652634,36.5872536],[110.4620514,36.589653],[110.4580536,36.5928574],[110.4544373,36.5976601],[110.4484406,36.6032639],[110.4432373,36.6108665],[110.4388428,36.617672],[110.4332428,36.6244736],[110.4300308,36.6320801],[110.4272308,36.6368828],[110.4212265,36.642086],[110.3892136,36.6620979],[110.3876114,36.6665001],[110.3876114,36.6697006],[110.3880081,36.6741028],[110.3884125,36.6769066],[110.3892136,36.6805077],[110.3912125,36.6833076],[110.395607,36.6837082],[110.3992233,36.6833076],[110.401619,36.6809082],[110.40522,36.6781044],[110.4088211,36.6749039],[110.4120331,36.6709023],[110.4168167,36.6680984],[110.4208298,36.6665001],[110.4244308,36.665699],[110.4284286,36.6669006],[110.4312363,36.668499],[110.431633,36.6741028],[110.4308319,36.6797066],[110.4296265,36.6853104],[110.4308319,36.6901131],[110.4332428,36.6957169],[110.4384384,36.7005196],[110.4408417,36.7037201],[110.4476395,36.7105255],[110.4484406,36.7141266],[110.4496536,36.7185287],[110.4484406,36.7213326],[110.4480362,36.723732],[110.4456406,36.7257347],[110.4432373,36.726532],[110.4392395,36.7253342],[110.4352264,36.7225304],[110.4320374,36.7197304],[110.4300308,36.7161293],[110.4264297,36.7133255],[110.4220276,36.7105255],[110.4180222,36.7097244],[110.4156265,36.7105255],[110.4144211,36.7121239],[110.41362,36.7145271],[110.4156265,36.7181282],[110.4188232,36.720932],[110.4224319,36.7249336],[110.4248276,36.7281342],[110.4268265,36.7313347],[110.4280319,36.7349396],[110.4276276,36.7381401],[110.4264297,36.7429428],[110.4228287,36.7453461],[110.4196167,36.747345],[110.4168167,36.7489471],[110.4112167,36.7501488],[110.4064178,36.7501488],[110.3996124,36.7501488],[110.3924103,36.7501488],[110.387207,36.750946],[110.3824081,36.7517471],[110.3771973,36.7561493],[110.3787994,36.7597542],[110.3836136,36.7605515],[110.3884125,36.7601547],[110.3948135,36.7589531],[110.3992233,36.7597542],[110.4036179,36.7613525],[110.4056168,36.7645569],[110.4056168,36.7677574],[110.4068222,36.771759],[110.4100189,36.7761612],[110.4140167,36.7809639],[110.4172287,36.7865677],[110.420433,36.7917709],[110.423233,36.7961731],[110.4236298,36.7997742],[110.4224319,36.802578],[110.4216309,36.8049774],[110.4176331,36.8065796],[110.4120331,36.8069801],[110.4060211,36.8073807],[110.3996124,36.8085823],[110.3992233,36.8117828],[110.4008179,36.8137856],[110.4064178,36.8169861],[110.4116211,36.8189888],[110.4164276,36.8225899],[110.4200287,36.8257904],[110.4224319,36.8293915],[110.4240265,36.8345947],[110.4236603,36.8385887],[110.4228287,36.8409996],[110.4196167,36.8462029],[110.4144211,36.8490028],[110.41082,36.8514061],[110.4076233,36.8526077],[110.401207,36.8546066],[110.3964233,36.8554077],[110.3920135,36.8558083],[110.3848038,36.8570099],[110.3751984,36.8574104],[110.3743973,36.8598099],[110.3731995,36.8638115],[110.3751984,36.8666153],[110.3804016,36.8686142],[110.3876114,36.8690147],[110.3916092,36.8690147],[110.3960114,36.8694153],[110.4008179,36.8706169],[110.4036179,36.8726196],[110.4060211,36.8766212],[110.4060211,36.881424],[110.4056168,36.8858261],[110.4044189,36.8886261],[110.4032135,36.8918304],[110.4028168,36.8982315],[110.4048233,36.9026337],[110.4068222,36.9078369],[110.4096222,36.9122391],[110.4144211,36.9198456],[110.4184265,36.9254494],[110.4224167,36.9302521],[110.423233,36.9350548],[110.4236298,36.9406586],[110.4228287,36.9454613],[110.4220276,36.950264],[110.4200287,36.956665],[110.4180222,36.9618683],[110.4156265,36.9658699],[110.4100189,36.9734764],[110.4056168,36.9782791],[110.4000168,36.9814796],[110.3940125,36.984684],[110.387207,36.9878845],[110.3796005,36.9910851],[110.3723984,36.9942894],[110.3691864,36.998291],[110.3687973,37.0022926],[110.3695984,37.0058937],[110.3751984,37.0086975],[110.3808136,37.011097],[110.384407,37.0114975],[110.3896103,37.0106964],[110.3948135,37.0098953],[110.3992233,37.0074959],[110.4064178,37.0030937],[110.4152222,36.9974899],[110.4240265,36.9918861],[110.4304428,36.9890862],[110.437233,36.9886856],[110.4416428,36.9890862],[110.4468384,36.9922867],[110.4488373,36.9962883],[110.4504471,37.001091],[110.4500427,37.0066948],[110.4448395,37.0098953],[110.4380264,37.0102959],[110.4300308,37.0102959],[110.4216309,37.0106964],[110.4160233,37.011898],[110.4124222,37.0143013],[110.4116211,37.0163002],[110.4124222,37.0187035],[110.4156265,37.021904],[110.4196167,37.0223045],[110.4216309,37.0235062],[110.4296265,37.024704],[110.434433,37.0239067],[110.4424362,37.0243034],[110.4476395,37.0259056],[110.4532471,37.0279083],[110.4612503,37.0359116],[110.4676514,37.0419159],[110.4744568,37.0483208],[110.47966,37.0539207],[110.4828568,37.059124],[110.4836731,37.0639267],[110.4892731,37.0695305],[110.4956665,37.0743332],[110.5020828,37.0791359],[110.5116806,37.0827408],[110.5180817,37.0855408],[110.5240936,37.0887413],[110.5268936,37.093544],[110.5288925,37.0999489],[110.5296936,37.1063538],[110.5300903,37.1127548],[110.5304871,37.1183586],[110.5312881,37.1239624],[110.5364914,37.1311684],[110.5457001,37.1375694],[110.552269,37.1423111],[110.5585632,37.14674],[110.5655518,37.1530342],[110.5725174,37.159584],[110.5785217,37.1663857],[110.5844269,37.1770439],[110.5911865,37.1826363],[110.5986633,37.1905632],[110.6040192,37.195694],[110.6072769,37.1980247],[110.6124115,37.2033844],[110.6177673,37.209446],[110.6233673,37.2159729],[110.6287308,37.2224998],[110.6343231,37.2292595],[110.6396866,37.2360191],[110.6434174,37.241848],[110.647377,37.2495422],[110.6493607,37.2552376],[110.6497574,37.2612419],[110.6509628,37.2644424],[110.6557617,37.2672462],[110.6625671,37.2672462],[110.6705704,37.2668457],[110.6765671,37.2668457],[110.6801834,37.2660446],[110.6841812,37.2688446],[110.6869812,37.2736473],[110.6861801,37.2772522],[110.685379,37.2804527],[110.6821671,37.2852554],[110.6793671,37.2876587],[110.676178,37.2900581],[110.6737671,37.2940598],[110.6717682,37.2988625],[110.6745834,37.3020668],[110.6793671,37.3056679],[110.6849823,37.3096695],[110.6909866,37.3124733],[110.6945877,37.3152733],[110.6977768,37.3188744],[110.6985931,37.322876],[110.6993866,37.3280792],[110.6993866,37.3312836],[110.6985931,37.3348846],[110.6969833,37.3400879],[110.6909866,37.340889],[110.6857834,37.3416901],[110.6781769,37.3420868],[110.6717682,37.3428879],[110.6633682,37.3428879],[110.6565628,37.3424873],[110.6477585,37.3428879],[110.642952,37.3452911],[110.6381531,37.34729],[110.6337509,37.3496933],[110.6309509,37.3524933],[110.6277466,37.357296],[110.6249466,37.3641014],[110.6249466,37.3697052],[110.6257477,37.3745079],[110.6257477,37.3785095],[110.6277466,37.3825111],[110.6309509,37.3881149],[110.6329498,37.3925171],[110.6349487,37.3953209],[110.6349487,37.3997231],[110.6353531,37.4061241],[110.6353531,37.4121284],[110.6361465,37.4181328],[110.6389465,37.4249344],[110.6421509,37.4269371],[110.6485596,37.4289398],[110.6537628,37.4289398],[110.6573563,37.4285393],[110.6625671,37.4277382],[110.6705704,37.4277382],[110.682579,37.4273376],[110.6889801,37.4273376],[110.6989899,37.4277382],[110.7073898,37.4281387],[110.7157974,37.4301376],[110.7246017,37.4325409],[110.7325974,37.4357414],[110.7362137,37.4385452],[110.7394104,37.4417458],[110.7422104,37.4457474],[110.7434235,37.449749],[110.7462234,37.4561539],[110.7474136,37.460556],[110.7482071,37.4669609],[110.7494202,37.4733658],[110.750618,37.4801674],[110.7530212,37.4849701],[110.7558212,37.4889717],[110.7594223,37.494175],[110.7626266,37.4989777],[110.7630234,37.5053825],[110.7626266,37.5089836],[110.7618332,37.5133858],[110.7610168,37.5177879],[110.7622223,37.5221939],[110.7650223,37.5253944],[110.7694168,37.5277939],[110.7758331,37.5313988],[110.7834396,37.5354004],[110.7858429,37.539402],[110.7866364,37.5434036],[110.7869568,37.5497055],[110.7862396,37.5562134],[110.7834396,37.5614166],[110.7794266,37.5658188],[110.7738266,37.5702209],[110.7698288,37.5770226],[110.7662277,37.5830269],[110.7654266,37.5886307],[110.7658234,37.594635],[110.7658234,37.6014366],[110.7658234,37.6086426],[110.7658234,37.6142464],[110.7642288,37.6170464],[110.7610168,37.6198502],[110.7566223,37.6242523],[110.7546234,37.6286545],[110.757019,37.6314545],[110.7638168,37.6322556],[110.7706299,37.6322556],[110.7774429,37.6330566],[110.7834396,37.6342583],[110.7878418,37.6366577],[110.7914429,37.6398582],[110.7930527,37.6446648],[110.7934418,37.6498642],[110.7926407,37.6534691],[110.7870407,37.6582718],[110.7822266,37.6614723],[110.7762299,37.6650734],[110.768631,37.6702766],[110.7602234,37.6738815],[110.7514191,37.6750793],[110.7426071,37.6766815],[110.7317963,37.679081],[110.7242126,37.6802826],[110.7157974,37.6822853],[110.7101974,37.6854858],[110.7057877,37.6890869],[110.700592,37.6922913],[110.6985931,37.6974945],[110.6981888,37.7026978],[110.7001877,37.7086983],[110.7025909,37.7131004],[110.7077866,37.7167053],[110.7137985,37.7195053],[110.7221985,37.7211075],[110.7310028,37.7231064],[110.7398071,37.7247086],[110.7470169,37.7279091],[110.7494202,37.7323151],[110.7494202,37.7359161],[110.747818,37.7411194],[110.7438126,37.7459221],[110.7386093,37.7523232],[110.7325974,37.7555275],[110.7238007,37.7599297],[110.7121964,37.7663345],[110.7025909,37.7699356],[110.6917801,37.7723351],[110.6809769,37.7771378],[110.6713715,37.7803421],[110.6657715,37.7851448],[110.6609573,37.7899475],[110.6597672,37.7955513],[110.6581573,37.8027534],[110.6565628,37.8091583],[110.6509628,37.816761],[110.6469574,37.8215637],[110.6413574,37.8271675],[110.6365509,37.8319702],[110.6321487,37.837574],[110.6281433,37.8435783],[110.6257477,37.8499794],[110.6233368,37.8551826],[110.6185379,37.861187],[110.6145401,37.8655891],[110.6101379,37.8723946],[110.6057434,37.8787994],[110.6037292,37.8860016],[110.6033325,37.8916054],[110.5997314,37.8980103],[110.5953293,37.9056129],[110.5885162,37.9120178],[110.5829163,37.9176216],[110.5781174,37.9200211],[110.5737228,37.9216232],[110.5637131,37.9252243],[110.5561066,37.927227],[110.5473022,37.9304276],[110.5408936,37.9324303],[110.533287,37.9364319],[110.5268936,37.9396324],[110.5188828,37.943634],[110.5152817,37.9480362],[110.5128784,37.9512405],[110.5124817,37.9564438],[110.5124817,37.9612465],[110.5160828,37.9624443],[110.5188828,37.967247],[110.5220871,37.9732513],[110.5248871,37.9784546],[110.5252838,37.9828568],[110.5240936,37.9868584],[110.5192871,37.9900627],[110.5136795,37.995266],[110.5068665,38.0000687],[110.5024719,38.0044708],[110.497673,38.0100746],[110.4964676,38.0144768],[110.4960709,38.0204811],[110.4960709,38.0248833],[110.497673,38.0320854],[110.4988708,38.0392914],[110.5000763,38.0444946],[110.5008698,38.0484962],[110.5024719,38.053299],[110.5020828,38.0573006],[110.5008698,38.0621033],[110.4996719,38.0689087],[110.4988708,38.0753098],[110.497673,38.080513],[110.4980698,38.0869179],[110.4987869,38.0924797],[110.5016708,38.0957222],[110.506073,38.1009254],[110.5104828,38.1073303],[110.5136795,38.1125336],[110.5176773,38.1189346],[110.5175934,38.1236038],[110.5120773,38.1289406],[110.5084763,38.1365471],[110.5072784,38.1421509],[110.5056763,38.1481514],[110.5036774,38.1541557],[110.5020828,38.1621628],[110.503273,38.1669655],[110.5036774,38.1725655],[110.5036774,38.1797714],[110.5072784,38.190979],[110.5140762,38.1965828],[110.5172806,38.1997833],[110.5577087,38.2097893],[110.5753632,38.297287],[110.6560516,38.301487],[110.6921463,38.3414497],[110.7404633,38.3657455],[110.7694168,38.4334221],[110.78508,38.446537],[110.8158035,38.4483795],[110.8439713,38.4363518],[110.8704605,38.4539413],[110.8737106,38.5117836],[110.9038467,38.5205688],[110.9184799,38.5798531],[110.8945312,38.5906563],[110.8805923,38.6232872],[110.8858871,38.6473236],[110.9112396,38.6716843],[110.9159088,38.7000694],[110.9447327,38.7260857],[110.9564285,38.7777443],[110.9831314,38.7957649],[110.9982605,38.827343],[110.9927368,38.8660278],[111.0167465,38.8810234],[111.0048981,38.9280281],[110.9758606,38.9747238],[110.9974136,39.0030479],[111.0402832,39.0242119],[111.0796967,39.0202675],[111.0979004,39.028553],[111.1362381,39.0673218],[111.1430206,39.0974541],[111.1624832,39.1083984],[111.1721573,39.1309319],[111.1657028,39.1662407],[111.210083,39.2328758],[111.2077713,39.265789],[111.2481232,39.2979202],[111.1811066,39.3125725],[111.1741562,39.3255539],[111.1846924,39.352169],[111.1723328,39.3531265],[111.1524124,39.3343811],[111.1524582,39.3650284],[111.1166306,39.3654213],[111.12146,39.3899994],[111.1626968,39.4172516],[111.1945267,39.4173317],[111.2108612,39.4264374],[111.3311462,39.4182129],[111.3462677,39.424633],[111.3556671,39.4464874],[111.3636703,39.4781303],[111.4258118,39.5091896],[111.4202271,39.5460548],[111.4359131,39.5858459],[111.421463,39.6118851],[111.4337234,39.6166801],[111.4504166,39.6031418],[111.4567032,39.6167068],[111.4348526,39.6320343],[111.4373932,39.639904],[111.4891663,39.6590805],[111.5362473,39.6562462],[111.6029968,39.6354485],[111.6745682,39.6305885],[111.7156067,39.6009636],[111.7485275,39.5929756],[111.7721329,39.5910454],[111.8327026,39.6128159],[111.8513336,39.6094322],[111.9192886,39.6153297],[111.9268188,39.6716728],[111.9514999,39.6966019],[111.9695206,39.7891998],[112.1006012,39.9730949],[112.1775208,40.089695],[112.2145081,40.1279602],[112.2186813,40.1640511],[112.2805328,40.2017365],[112.2825317,40.2248116],[112.2997665,40.2466736],[112.3467865,40.2553673],[112.4045792,40.2893486],[112.4459534,40.2966576],[112.5039368,40.2675095],[112.5579376,40.2566414],[112.6283798,40.2266541],[112.7183533,40.168808],[112.7424927,40.1656342],[112.8398666,40.201107],[112.8657532,40.2614288],[112.8866272,40.324543],[112.9841614,40.354496],[113.240097,40.4092255],[113.2756271,40.3781319],[113.316658,40.3170052],[113.3635712,40.3136139],[113.4808197,40.3317986],[113.5491562,40.3446922],[113.6410828,40.4145393],[113.6628418,40.4201202],[113.6737213,40.4427986],[113.7620468,40.4758034],[113.7879791,40.5167274],[113.8568192,40.4553566],[113.9383621,40.5059547],[113.9635162,40.521019],[114.0047073,40.5145607],[114.0429611,40.5240288],[114.0700073,40.540905],[114.0700302,40.5743217],[114.0347824,40.6091309],[114.0616531,40.6637688],[114.0578537,40.7178879],[114.1231995,40.7415924]]]]},
  155 +"properties":{
  156 +"gid":26,
  157 +"name":"山西省"}
  158 +},
  159 +{"type":"Feature",
  160 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.807663,40.5243073],[120.8123398,40.5191269],[120.8232498,40.5168152],[120.8309097,40.5036697],[120.8422394,40.4974709],[120.8373032,40.4923325],[120.8381271,40.4854736],[120.8254166,40.4875183],[120.8199463,40.4800797],[120.8101501,40.4764481],[120.8004227,40.4799271],[120.7871933,40.4704971],[120.779808,40.4756241],[120.7749863,40.4844704],[120.776413,40.4961891],[120.7941589,40.4960785],[120.7971878,40.5043907],[120.7932434,40.5146294],[120.8005295,40.5124779],[120.807663,40.5243073]]]]},
  161 +"properties":{
  162 +"gid":27,
  163 +"name":"辽宁省"}
  164 +},
  165 +{"type":"Feature",
  166 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.4638138,40.2400322],[117.4961929,40.2271729],[117.5416489,40.2283516],[117.5596237,40.2135544],[117.5731277,40.1809845],[117.5902863,40.1568031],[117.6420822,40.1320496],[117.6408463,40.0982399],[117.7435989,40.0738144],[117.7578735,40.0571938],[117.7555237,40.0441971],[117.7308273,40.0175056],[117.7803726,40.0208282],[117.8018036,39.9935532],[117.7967529,39.97258],[117.7663422,39.9597931],[117.711113,39.9867401],[117.6445923,39.9703522],[117.6214828,39.9741287],[117.5774536,40.0015984],[117.5553207,39.9954414],[117.5241928,39.9388962],[117.5132828,39.8928223],[117.5552597,39.8219833],[117.5485764,39.7720795],[117.5634079,39.7550507],[117.5779724,39.7544174],[117.5830383,39.7499847],[117.5908203,39.748642],[117.5950699,39.7417526],[117.5947266,39.7392006],[117.5906372,39.7341537],[117.5786133,39.7290878],[117.5809784,39.724308],[117.5925369,39.7138901],[117.5950699,39.7100906],[117.6010284,39.7086639],[117.6083679,39.7050209],[117.6204071,39.7050209],[117.6324387,39.7005882],[117.6470337,39.6987839],[117.6457367,39.6923561],[117.6514435,39.6853905],[117.6552429,39.6803246],[117.6552429,39.6727257],[117.6615677,39.6670265],[117.6672668,39.6644936],[117.6660004,39.6581612],[117.6653671,39.6505623],[117.6660004,39.6435966],[117.6634674,39.6385307],[117.6533432,39.6372643],[117.6514435,39.6340981],[117.6527023,39.6302986],[117.6495438,39.6264992],[117.6457367,39.6264992],[117.6432037,39.6245995],[117.643837,39.6176338],[117.6238022,39.6073761],[117.6178665,39.5992661],[117.6222763,39.5945816],[117.6305389,39.5986328],[117.6362381,39.5979996],[117.6406708,39.5948334],[117.6489029,39.5916672],[117.6495438,39.5872345],[117.6489029,39.5802689],[117.6495438,39.5752029],[117.6603012,39.5758362],[117.6685333,39.5777359],[117.6811981,39.585968],[117.6945038,39.5802689],[117.7065277,39.570137],[117.7033615,39.5676041],[117.6875305,39.5682373],[117.6843567,39.5644379],[117.6862564,39.5593719],[117.7027283,39.5524063],[117.7134933,39.5378418],[117.734848,39.5519791],[117.7443924,39.5877647],[117.7651367,39.5974312],[117.8057404,39.60075],[117.8380432,39.5910645],[117.8870468,39.596199],[117.9298096,39.5801315],[117.9333572,39.5702248],[117.8679962,39.4477234],[117.8686829,39.3888741],[117.9099579,39.4069481],[117.9625473,39.3975639],[117.9703369,39.3717842],[118.014183,39.3572655],[118.0270615,39.2875175],[118.0611267,39.2540665],[118.0628128,39.2321968],[118.057869,39.2314262],[118.047287,39.2303581],[118.0287094,39.2312279],[118.0189819,39.2315407],[118.0004425,39.2305756],[117.9872665,39.2274055],[117.9741135,39.2235451],[117.9553833,39.2184601],[117.9383621,39.2161369],[117.9284134,39.2134666],[117.9163971,39.2112198],[117.904129,39.2073669],[117.8918762,39.2026024],[117.8787613,39.1978188],[117.8650284,39.1937065],[117.8589096,39.1913223],[117.8475571,39.1865616],[117.8361969,39.1818047],[117.8266068,39.1772995],[117.8176727,39.1707497],[117.806427,39.161644],[117.7992935,39.1558571],[117.7940598,39.1516037],[117.7828217,39.1431808],[117.7742767,39.1329765],[117.7674789,39.1237144],[117.7606812,39.1144485],[117.751091,39.1103973],[117.7417068,39.1090927],[117.7311325,39.1089096],[117.7278366,39.1081047],[117.724762,39.1055984],[117.7269821,39.0999184],[117.7291565,39.0958405],[117.7340164,39.09021],[117.7373962,39.0854645],[117.7411575,39.0772934],[117.7417068,39.0683861],[117.743103,39.0608597],[117.7435226,39.0565224],[117.7413101,39.0514526],[117.7382431,39.045681],[117.7346268,39.0387573],[117.731987,39.0281944],[117.7328033,39.0204315],[117.7370377,39.0161591],[117.7458496,39.0163116],[117.7526169,39.0157433],[117.7568512,39.011467],[117.7631378,39.0074577],[117.7677765,38.998848],[117.7670364,38.99403],[117.7704315,38.9883728],[117.7705078,38.98563],[117.7673111,38.9844322],[117.7626038,38.9850349],[117.7611771,38.9829521],[117.7570038,38.9856262],[117.7498169,38.9903069],[117.7451172,38.9904556],[117.7399063,38.9876213],[117.7303238,38.994545],[117.72435,38.9976425],[117.7142334,39.0024986],[117.7026672,39.0057259],[117.6932678,39.0060196],[117.6886673,39.0025063],[117.6899567,38.9988708],[117.6906662,38.9945374],[117.6851578,38.9921532],[117.6822662,38.9905014],[117.6872482,38.9848099],[117.6903534,38.9878197],[117.6985016,38.9900322],[117.706192,38.9883461],[117.7137527,38.9813919],[117.7178192,38.9732246],[117.7177887,38.9645271],[117.7144928,38.9573746],[117.7123413,38.9509239],[117.7075424,38.9448853],[117.7026978,38.9402161],[117.6989517,38.9378586],[117.6923065,38.9342995],[117.6859512,38.9314346],[117.6813583,38.9281425],[117.6805573,38.9256096],[117.6780777,38.9205284],[117.6742172,38.9124451],[117.6702576,38.9077911],[117.6625366,38.9012375],[117.6568298,38.8965492],[117.6508331,38.8913994],[117.6471481,38.8874397],[117.6406631,38.8795319],[117.635643,38.8711967],[117.6294479,38.8632965],[117.6252365,38.8572617],[117.6204681,38.8507614],[117.6185379,38.8468323],[117.6209793,38.8439026],[117.6213837,38.8404808],[117.6137695,38.840332],[117.6113892,38.8414307],[117.6061325,38.8408661],[117.5995636,38.8354759],[117.5977325,38.8288002],[117.5985565,38.8212624],[117.5948029,38.8108902],[117.5907516,38.8000526],[117.5860367,38.7917175],[117.5827866,38.7838707],[117.5809174,38.7783432],[117.5779037,38.7723312],[117.5771103,38.7693405],[117.574028,38.7687187],[117.5729828,38.7645836],[117.5708084,38.7588234],[117.5678864,38.7489319],[117.5668335,38.7459641],[117.5633163,38.7360382],[117.5604172,38.7259178],[117.5585938,38.7185631],[117.5574493,38.708477],[117.5536194,38.6999397],[117.5487518,38.6964188],[117.5435486,38.6944885],[117.5380402,38.6930122],[117.5356827,38.6936531],[117.5307312,38.6928711],[117.5349274,38.6895218],[117.5431137,38.6899033],[117.5501785,38.6882095],[117.5535736,38.6825523],[117.5523071,38.6761246],[117.5527191,38.6724739],[117.5513992,38.6678734],[117.5531311,38.6582222],[117.5531616,38.6580696],[117.5541306,38.655117],[117.5561295,38.647377],[117.5545731,38.6411705],[117.552948,38.6367912],[117.550209,38.6310234],[117.5488281,38.6282501],[117.5481033,38.623661],[117.5470581,38.6195259],[117.5460205,38.615387],[117.5458069,38.6130981],[117.4499207,38.6174011],[117.3806763,38.5894623],[117.2693176,38.5695457],[117.23069,38.5798492],[117.2514191,38.609375],[117.2266617,38.6277542],[117.1371994,38.6067619],[117.1146317,38.5873222],[117.0957108,38.5907288],[117.0488663,38.6354027],[117.0381088,38.690239],[117.0030975,38.694931],[116.9263611,38.6864929],[116.8730621,38.7006989],[116.8361893,38.7403946],[116.7507629,38.7401543],[116.7274094,38.7913857],[116.7443619,38.8349915],[116.7266922,38.8506927],[116.704483,38.9268646],[116.7568665,39.0304184],[116.8197403,39.0525894],[116.8868866,39.0627861],[116.8978729,39.0731239],[116.9303894,39.1366539],[116.9183426,39.1593513],[116.864563,39.1648521],[116.8584213,39.1888962],[116.8548737,39.1974335],[116.8554764,39.2079659],[116.8626938,39.2187843],[116.8783493,39.2251892],[116.8833313,39.2315941],[116.8859863,39.2404442],[116.8691025,39.2636223],[116.8626938,39.276432],[116.859848,39.2862167],[116.8648376,39.304718],[116.8855972,39.3134689],[116.8876038,39.3212662],[116.888237,39.3319855],[116.8804932,39.3483086],[116.8683929,39.3568497],[116.8594437,39.3599281],[116.8498764,39.3518677],[116.8426666,39.3424416],[116.8328018,39.3383484],[116.8255463,39.3416672],[116.8235474,39.3639679],[116.8263702,39.3789711],[116.8320923,39.3924332],[116.838501,39.4009743],[116.8556671,39.4258804],[116.844902,39.4322891],[116.8164368,39.4458084],[116.7979431,39.4571953],[116.8016434,39.4700356],[116.8143005,39.5070114],[116.8190002,39.5278053],[116.8000565,39.53619],[116.7926865,39.5504456],[116.7943726,39.5746231],[116.7929535,39.5902786],[116.7993927,39.6100082],[116.8280029,39.6201973],[116.8472595,39.6621475],[116.899353,39.6779556],[116.8942871,39.6963081],[116.9167786,39.7041473],[116.9276581,39.706543],[116.9473801,39.7091293],[116.9438171,39.6863556],[116.9502335,39.667141],[116.9601974,39.6500587],[116.9744263,39.642231],[116.9943466,39.6443672],[117.0100021,39.654232],[117.0306473,39.6536598],[117.0472794,39.6496468],[117.0696411,39.6410446],[117.101181,39.6290016],[117.1238785,39.6208801],[117.15242,39.6267433],[117.1588974,39.6406364],[117.1598206,39.6464996],[117.1608887,39.6589546],[117.1630173,39.6742554],[117.1633835,39.6835098],[117.1623077,39.6952515],[117.1623077,39.7069931],[117.1626663,39.7162437],[117.1605301,39.7265663],[117.1609421,39.733757],[117.1708527,39.7454224],[117.17939,39.7525406],[117.1882935,39.7632141],[117.1934128,39.7711639],[117.1918411,39.7756691],[117.1815338,39.7859879],[117.1633835,39.7980881],[117.158989,39.8035774],[117.1551895,39.8116112],[117.1541214,39.8201485],[117.1578827,39.8248177],[117.1637268,39.8226395],[117.1790314,39.8190804],[117.1893463,39.822998],[117.1964722,39.8251305],[117.2050095,39.8301125],[117.2128372,39.8304672],[117.2195969,39.8315353],[117.2309875,39.8340263],[117.2427292,39.8347397],[117.2487793,39.8343811],[117.252327,39.8336716],[117.2516327,39.8375854],[117.2537994,39.8414116],[117.2554932,39.8467064],[117.2545929,39.8534927],[117.2501602,39.8588142],[117.2437286,39.8616333],[117.2369537,39.8602753],[117.222641,39.8567924],[117.2120667,39.8602753],[117.1994095,39.8638954],[117.1876373,39.8661537],[117.173172,39.8688698],[117.1681976,39.8738441],[117.1659775,39.8790512],[117.1618729,39.8783684],[117.1546326,39.8770103],[117.1510086,39.8792725],[117.1514664,39.8847008],[117.1510086,39.8901253],[117.1487503,39.8932915],[117.1433334,39.8969116],[117.1442337,39.900528],[117.1496582,39.9041481],[117.1532669,39.9082184],[117.1487503,39.9118385],[117.1419678,39.9150009],[117.1360168,39.9174995],[117.1323929,39.9219513],[117.1441193,39.9292374],[117.1437073,39.9324722],[117.1441193,39.9361153],[117.1481705,39.9381409],[117.1497879,39.9409714],[117.1501923,39.9442101],[117.1461487,39.9470444],[117.1562729,39.9514961],[117.1570663,39.9541664],[117.1667862,39.9616127],[117.1732635,39.9664688],[117.1773071,39.9725418],[117.1798401,39.978405],[117.1793365,39.9850883],[117.1797409,39.9911575],[117.1807327,40.0000229],[117.1765289,40.0050125],[117.1791534,40.0102654],[117.181778,40.0136795],[117.1838837,40.0173569],[117.185463,40.0223465],[117.1838837,40.0273361],[117.1807327,40.0333748],[117.1773071,40.0438805],[117.1770477,40.0499229],[117.1784286,40.0538597],[117.1822968,40.0591125],[117.1857071,40.0622635],[117.1886063,40.0625267],[117.192543,40.0630531],[117.1975327,40.0633163],[117.2038269,40.0641022],[117.2080383,40.0648918],[117.2096176,40.0677795],[117.2108307,40.0703354],[117.2101364,40.0743446],[117.2075119,40.0777588],[117.2035828,40.0788116],[117.1983337,40.0795975],[117.1939774,40.0827827],[117.2050476,40.0930939],[117.2154617,40.1017151],[117.2215729,40.1045914],[117.2265015,40.1070251],[117.2603836,40.108902],[117.2674332,40.1101723],[117.2733231,40.1117783],[117.2794266,40.1182442],[117.2844467,40.1243553],[117.2916412,40.1265106],[117.2990494,40.1309738],[117.3106766,40.1336975],[117.3247681,40.1346664],[117.3354797,40.141243],[117.3426666,40.1516609],[117.348053,40.1620827],[117.3548279,40.1691742],[117.3588333,40.1707077],[117.3732071,40.1699867],[117.3793488,40.1708069],[117.3811111,40.172863],[117.3811111,40.1764565],[117.3796768,40.1804085],[117.3768005,40.1832809],[117.3732071,40.1847191],[117.3703308,40.1879539],[117.3694763,40.1909981],[117.3721313,40.1951408],[117.3753662,40.19981],[117.3796768,40.2026863],[117.3822632,40.2057495],[117.3825531,40.2095146],[117.380043,40.2181358],[117.3795471,40.224514],[117.4235001,40.2440338],[117.4638138,40.2400322]]]]},
  167 +"properties":{
  168 +"gid":28,
  169 +"name":"天津市"}
  170 +},
  171 +{"type":"Feature",
  172 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.1939774,40.0827827],[117.1983337,40.0795975],[117.2035828,40.0788116],[117.2075119,40.0777588],[117.2101364,40.0743446],[117.2108307,40.0703354],[117.2096176,40.0677795],[117.2080383,40.0648918],[117.2038269,40.0641022],[117.1975327,40.0633163],[117.192543,40.0630531],[117.1886063,40.0625267],[117.1857071,40.0622635],[117.1822968,40.0591125],[117.1784286,40.0538597],[117.1770477,40.0499229],[117.1773071,40.0438805],[117.1807327,40.0333748],[117.1838837,40.0273361],[117.185463,40.0223465],[117.1838837,40.0173569],[117.181778,40.0136795],[117.1791534,40.0102654],[117.1765289,40.0050125],[117.1807327,40.0000229],[117.1797409,39.9911575],[117.1793365,39.9850883],[117.1798401,39.978405],[117.1773071,39.9725418],[117.1732635,39.9664688],[117.1667862,39.9616127],[117.1570663,39.9541664],[117.1562729,39.9514961],[117.1461487,39.9470444],[117.1501923,39.9442101],[117.1497879,39.9409714],[117.1481705,39.9381409],[117.1441193,39.9361153],[117.1437073,39.9324722],[117.1441193,39.9292374],[117.1323929,39.9219513],[117.1360168,39.9174995],[117.1419678,39.9150009],[117.1487503,39.9118385],[117.1532669,39.9082184],[117.1496582,39.9041481],[117.1442337,39.900528],[117.1433334,39.8969116],[117.1487503,39.8932915],[117.1510086,39.8901253],[117.1514664,39.8847008],[117.1510086,39.8792725],[117.1546326,39.8770103],[117.1618729,39.8783684],[117.1659775,39.8790512],[117.1681976,39.8738441],[117.173172,39.8688698],[117.1876373,39.8661537],[117.1994095,39.8638954],[117.2120667,39.8602753],[117.222641,39.8567924],[117.2369537,39.8602753],[117.2437286,39.8616333],[117.2501602,39.8588142],[117.2545929,39.8534927],[117.2554932,39.8467064],[117.2537994,39.8414116],[117.2516327,39.8375854],[117.252327,39.8336716],[117.2487793,39.8343811],[117.2427292,39.8347397],[117.2309875,39.8340263],[117.2195969,39.8315353],[117.2128372,39.8304672],[117.2050095,39.8301125],[117.1964722,39.8251305],[117.1893463,39.822998],[117.1790314,39.8190804],[117.1637268,39.8226395],[117.1578827,39.8248177],[117.1541214,39.8201485],[117.1551895,39.8116112],[117.158989,39.8035774],[117.1633835,39.7980881],[117.1815338,39.7859879],[117.1918411,39.7756691],[117.1934128,39.7711639],[117.1882935,39.7632141],[117.17939,39.7525406],[117.1708527,39.7454224],[117.1609421,39.733757],[117.1605301,39.7265663],[117.1626663,39.7162437],[117.1623077,39.7069931],[117.1623077,39.6952515],[117.1633835,39.6835098],[117.1630173,39.6742554],[117.1608887,39.6589546],[117.1598206,39.6464996],[117.1588974,39.6406364],[117.15242,39.6267433],[117.1238785,39.6208801],[117.101181,39.6290016],[117.0696411,39.6410446],[117.0472794,39.6496468],[117.0306473,39.6536598],[117.0100021,39.654232],[116.9943466,39.6443672],[116.9744263,39.642231],[116.9601974,39.6500587],[116.9502335,39.667141],[116.9438171,39.6863556],[116.9473801,39.7091293],[116.9276581,39.706543],[116.9167786,39.7041473],[116.8942871,39.6963081],[116.88974,39.7020111],[116.8854828,39.720871],[116.8911591,39.7290535],[116.9004135,39.7347488],[116.9065399,39.7410545],[116.901123,39.7539635],[116.9020691,39.7591705],[116.9175034,39.7646408],[116.9281693,39.7717552],[116.9352875,39.7689095],[116.9402695,39.7681961],[116.9462128,39.7729683],[116.945961,39.7824326],[116.9381332,39.7959518],[116.9288788,39.8052025],[116.921051,39.8144569],[116.9153595,39.8258438],[116.9117966,39.8386536],[116.9053497,39.8477669],[116.9007568,39.8377304],[116.8890076,39.83601],[116.8738174,39.848053],[116.8649292,39.8514938],[116.8551788,39.8523521],[116.8457184,39.8563652],[116.8368301,39.8612404],[116.8250732,39.8767242],[116.8150406,39.8787308],[116.8032837,39.8767242],[116.7949677,39.8784447],[116.791153,39.8812637],[116.7800903,39.8925781],[116.7744827,39.9270287],[116.7760773,39.9374466],[116.77491,39.9475288],[116.7584534,39.9604797],[116.7560501,39.9654884],[116.7719727,39.999115],[116.7524414,40.0157127],[116.7602463,40.0275726],[116.8348694,40.0435867],[116.9578629,40.0459785],[116.9975128,40.0290184],[117.0562592,40.0618668],[117.1364899,40.0634842],[117.1939774,40.0827827]]]]},
  173 +"properties":{
  174 +"gid":29,
  175 +"name":"河北省"}
  176 +},
  177 +{"type":"Feature",
  178 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.9297791,39.8343582],[123.9321671,39.8357239],[123.9342575,39.836628],[123.937233,39.8366165],[123.9384232,39.8359261],[123.9381104,39.8340988],[123.9351273,39.8331947],[123.9306564,39.8336716],[123.9297791,39.8343582]]]]},
  179 +"properties":{
  180 +"gid":30,
  181 +"name":"辽宁省"}
  182 +},
  183 +{"type":"Feature",
  184 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.9547424,39.8285446],[123.9535675,39.8306084],[123.9574509,39.8324203],[123.9619064,39.8308029],[123.9609985,39.8292084],[123.9600983,39.8282967],[123.9553528,39.8290024],[123.9547424,39.8285446]]]]},
  185 +"properties":{
  186 +"gid":31,
  187 +"name":"辽宁省"}
  188 +},
  189 +{"type":"Feature",
  190 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.9342117,39.8297691],[123.9354172,39.8311386],[123.9372101,39.8320427],[123.9425583,39.831337],[123.9431534,39.8304214],[123.942543,39.8279076],[123.9404526,39.8272285],[123.9371796,39.8279266],[123.9345093,39.8290825],[123.9342117,39.8297691]]]]},
  191 +"properties":{
  192 +"gid":32,
  193 +"name":"辽宁省"}
  194 +},
  195 +{"type":"Feature",
  196 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.9618073,39.8168526],[123.9662781,39.8172951],[123.9668579,39.8156891],[123.9662628,39.8140907],[123.96595,39.8134079],[123.9602966,39.813427],[123.9594193,39.8148041],[123.9603119,39.8159447],[123.9618073,39.8168526]]]]},
  197 +"properties":{
  198 +"gid":33,
  199 +"name":"辽宁省"}
  200 +},
  201 +{"type":"Feature",
  202 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.9704132,39.8113289],[123.9707031,39.8122444],[123.9713135,39.8140717],[123.9730988,39.8145218],[123.9772568,39.8131332],[123.9763565,39.8115349],[123.9748611,39.8103943],[123.9718933,39.8108673],[123.9704132,39.8113289]]]]},
  203 +"properties":{
  204 +"gid":34,
  205 +"name":"辽宁省"}
  206 +},
  207 +{"type":"Feature",
  208 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.8018723,39.7876587],[123.803978,39.7926826],[123.8111191,39.793808],[123.8114166,39.7944946],[123.8158875,39.795166],[123.8179626,39.7933311],[123.8194275,39.7894363],[123.8209,39.7860031],[123.8191071,39.783493],[123.8140488,39.7841911],[123.8084183,39.7876396],[123.8054428,39.7855873],[123.8006668,39.7853737],[123.800087,39.7878914],[123.8018723,39.7876587]]]]},
  209 +"properties":{
  210 +"gid":35,
  211 +"name":"辽宁省"}
  212 +},
  213 +{"type":"Feature",
  214 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.5716095,39.7747917],[123.5727997,39.7736435],[123.5716095,39.7718201],[123.5668488,39.7718239],[123.5656662,39.7741089],[123.5662613,39.7757111],[123.5695267,39.7752495],[123.5716095,39.7747917]]]]},
  215 +"properties":{
  216 +"gid":36,
  217 +"name":"辽宁省"}
  218 +},
  219 +{"type":"Feature",
  220 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.5873566,39.7617416],[123.5909271,39.7642555],[123.5948029,39.7653961],[123.596283,39.7637901],[123.5959778,39.7615051],[123.5938873,39.7596779],[123.5903168,39.7592239],[123.5873489,39.7601395],[123.5873566,39.7617416]]]]},
  221 +"properties":{
  222 +"gid":37,
  223 +"name":"辽宁省"}
  224 +},
  225 +{"type":"Feature",
  226 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.2902832,39.7648468],[123.2926636,39.764164],[123.2944565,39.761425],[123.2935715,39.7589035],[123.2917862,39.7582169],[123.2885132,39.7577553],[123.2846527,39.760952],[123.2855301,39.7625504],[123.2902832,39.7648468]]]]},
  227 +"properties":{
  228 +"gid":38,
  229 +"name":"辽宁省"}
  230 +},
  231 +{"type":"Feature",
  232 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.700882,39.7400856],[123.7017975,39.7469482],[123.7065735,39.7521973],[123.709549,39.7542496],[123.7181778,39.7569771],[123.7232437,39.7599411],[123.7294998,39.7624435],[123.7372284,39.7621994],[123.7428665,39.7605858],[123.7482071,39.7569122],[123.750267,39.7521057],[123.7484665,39.7484512],[123.7407532,39.7473259],[123.7336197,39.7509995],[123.7264862,39.7512436],[123.7205276,39.7469101],[123.7163467,39.7432594],[123.7121811,39.7407494],[123.7089081,39.7396126],[123.7053375,39.7396202],[123.7023697,39.7412262],[123.700882,39.7400856]]]]},
  233 +"properties":{
  234 +"gid":39,
  235 +"name":"辽宁省"}
  236 +},
  237 +{"type":"Feature",
  238 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.5421524,39.7583427],[123.5463181,39.76017],[123.5484009,39.7590256],[123.5504837,39.7576523],[123.5501785,39.7560501],[123.5483932,39.753994],[123.5445328,39.7544556],[123.54245,39.7558289],[123.5421524,39.7583427]]]]},
  239 +"properties":{
  240 +"gid":40,
  241 +"name":"辽宁省"}
  242 +},
  243 +{"type":"Feature",
  244 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.3224182,39.7550583],[123.3251038,39.7536888],[123.3251038,39.7504883],[123.3230286,39.7491112],[123.318573,39.7486496],[123.3158875,39.7520752],[123.3167725,39.7532196],[123.3200531,39.7541389],[123.3224182,39.7550583]]]]},
  245 +"properties":{
  246 +"gid":41,
  247 +"name":"辽宁省"}
  248 +},
  249 +{"type":"Feature",
  250 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.4960785,39.6889915],[121.4961929,39.6851044],[121.4953537,39.6832619],[121.4921188,39.6818352],[121.4887772,39.6842957],[121.4898834,39.6875191],[121.4913177,39.6891441],[121.4948807,39.6892014],[121.4960785,39.6889915]]]]},
  251 +"properties":{
  252 +"gid":42,
  253 +"name":"辽宁省"}
  254 +},
  255 +{"type":"Feature",
  256 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.4756927,39.6510696],[121.4779434,39.6470566],[121.4819031,39.6434593],[121.4825897,39.6398125],[121.4846802,39.6391602],[121.4912415,39.6383514],[121.4954681,39.6359062],[121.5009537,39.6309624],[121.5080872,39.6301651],[121.51371,39.6309433],[121.519043,39.6317177],[121.521843,39.6267281],[121.5223236,39.619873],[121.526329,39.6146774],[121.5294189,39.6099243],[121.5313797,39.6033173],[121.5333328,39.5971718],[121.5349197,39.5930824],[121.5355988,39.5901184],[121.5350723,39.5875931],[121.5351028,39.5866776],[121.5289001,39.585434],[121.5236893,39.5805435],[121.5182724,39.5726776],[121.5139084,39.5694046],[121.5045319,39.5651321],[121.4978333,39.5606728],[121.4920502,39.5553169],[121.4843674,39.5542755],[121.4762115,39.5491066],[121.4775238,39.544323],[121.4767303,39.5411072],[121.4665222,39.5349846],[121.4589005,39.5318832],[121.4518738,39.5287933],[121.4453735,39.5282249],[121.4433975,39.5242996],[121.4376526,39.5177994],[121.4268112,39.5134926],[121.4141464,39.5105324],[121.4039764,39.5135612],[121.3964615,39.5173187],[121.3916931,39.5183792],[121.3865433,39.5224113],[121.3813019,39.5289536],[121.3748932,39.5254097],[121.371109,39.5228271],[121.3672638,39.5227585],[121.3626404,39.5283966],[121.3522568,39.5286713],[121.3416672,39.5257416],[121.3355331,39.5231133],[121.3368835,39.5176468],[121.3358231,39.5130501],[121.3278732,39.5113068],[121.3145905,39.5094681],[121.309082,39.505249],[121.3066025,39.4990234],[121.3055878,39.493515],[121.3024673,39.488884],[121.2953186,39.4901237],[121.292717,39.4976311],[121.2903824,39.5062828],[121.2819672,39.5097923],[121.262619,39.5126381],[121.2553482,39.5086365],[121.238327,39.5119591],[121.2289581,39.5141983],[121.2238388,39.5176735],[121.223938,39.5285263],[121.2218018,39.5381927],[121.2228317,39.5432434],[121.2343826,39.5436897],[121.2453003,39.5454941],[121.2572403,39.5525818],[121.262352,39.5597649],[121.2654037,39.5666885],[121.2707596,39.5759354],[121.2813568,39.5786514],[121.2910614,39.5813446],[121.2936325,39.5845909],[121.291687,39.5900497],[121.291481,39.5969086],[121.2946472,39.6001701],[121.3036499,39.5969009],[121.3185501,39.5948792],[121.3276978,39.5964203],[121.3445435,39.5987778],[121.3572617,39.6003761],[121.3744278,39.6018219],[121.3871918,39.6018143],[121.3987885,39.600872],[121.4046707,39.6028023],[121.4113922,39.6065788],[121.4134064,39.6086731],[121.4124069,39.612545],[121.4182968,39.6140175],[121.4263687,39.6120987],[121.4340363,39.6138306],[121.4452515,39.6160812],[121.4481201,39.6195564],[121.4537735,39.6297188],[121.4559631,39.6361656],[121.4540024,39.6425362],[121.4444427,39.6448936],[121.4419098,39.650341],[121.4492722,39.652523],[121.4567337,39.6515045],[121.4630127,39.6500092],[121.4692307,39.650341],[121.472168,39.6513062],[121.4760208,39.651825],[121.4756927,39.6510696]]]]},
  257 +"properties":{
  258 +"gid":43,
  259 +"name":"辽宁省"}
  260 +},
  261 +{"type":"Feature",
  262 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.493927,39.6484642],[121.4991989,39.6510658],[121.502533,39.6488342],[121.5026093,39.6460915],[121.5053329,39.6440773],[121.5091934,39.6441383],[121.5116425,39.6414337],[121.5117035,39.6391449],[121.5102768,39.636837],[121.5037537,39.6369553],[121.5021896,39.639679],[121.4985809,39.6412201],[121.4953003,39.6418495],[121.4936981,39.6461716],[121.4942474,39.6475563],[121.493927,39.6484642]]]]},
  263 +"properties":{
  264 +"gid":44,
  265 +"name":"辽宁省"}
  266 +},
  267 +{"type":"Feature",
  268 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.0239868,39.6465759],[123.0248566,39.650238],[123.0310974,39.650032],[123.0340729,39.6493568],[123.0370483,39.6473083],[123.0379562,39.6447983],[123.0364838,39.6422768],[123.0305634,39.6413383],[123.0255127,39.6415482],[123.0245972,39.6436043],[123.0239868,39.6465759]]]]},
  269 +"properties":{
  270 +"gid":45,
  271 +"name":"辽宁省"}
  272 +},
  273 +{"type":"Feature",
  274 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.0415268,39.6418381],[123.0423889,39.6473312],[123.0474396,39.6468887],[123.0489273,39.6459808],[123.0495377,39.6434669],[123.0453873,39.6418495],[123.0424271,39.6418419],[123.0415268,39.6418381]]]]},
  275 +"properties":{
  276 +"gid":46,
  277 +"name":"辽宁省"}
  278 +},
  279 +{"type":"Feature",
  280 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.5390625,39.6265488],[121.5394135,39.6249542],[121.5391617,39.6228905],[121.5383072,39.6212769],[121.5355835,39.6237488],[121.5358276,39.6253548],[121.538208,39.6253929],[121.5390625,39.6265488]]]]},
  281 +"properties":{
  282 +"gid":47,
  283 +"name":"辽宁省"}
  284 +},
  285 +{"type":"Feature",
  286 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.5297165,39.6209068],[121.5321579,39.61866],[121.5334015,39.616394],[121.5331268,39.6154747],[121.5298462,39.6158791],[121.5274277,39.6176682],[121.5276871,39.6192741],[121.5279617,39.6199646],[121.5297165,39.6209068]]]]},
  287 +"properties":{
  288 +"gid":48,
  289 +"name":"辽宁省"}
  290 +},
  291 +{"type":"Feature",
  292 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.5434113,39.6195297],[121.544342,39.6181717],[121.5447235,39.6152039],[121.5438538,39.6140442],[121.5415268,39.6124039],[121.5388031,39.614193],[121.539032,39.6167107],[121.5401764,39.6183319],[121.5419464,39.6185913],[121.5434113,39.6195297]]]]},
  293 +"properties":{
  294 +"gid":49,
  295 +"name":"辽宁省"}
  296 +},
  297 +{"type":"Feature",
  298 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.5373688,39.612339],[121.5373993,39.6111946],[121.5377579,39.6089134],[121.5365982,39.6079788],[121.533577,39.6097603],[121.5338593,39.6104507],[121.5344315,39.6113777],[121.5346985,39.6122971],[121.5373688,39.612339]]]]},
  299 +"properties":{
  300 +"gid":50,
  301 +"name":"辽宁省"}
  302 +},
  303 +{"type":"Feature",
  304 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.5699234,39.6048508],[121.5693588,39.6036987],[121.5676193,39.6022987],[121.5664062,39.6027374],[121.5652084,39.6036339],[121.5669403,39.6054916],[121.5692978,39.6059837],[121.5699234,39.6048508]]]]},
  305 +"properties":{
  306 +"gid":51,
  307 +"name":"辽宁省"}
  308 +},
  309 +{"type":"Feature",
  310 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.5596466,39.6003418],[121.5579071,39.5991707],[121.5570374,39.5982399],[121.5558701,39.597538],[121.5547028,39.5970612],[121.5540695,39.598423],[121.5555115,39.6000481],[121.5578537,39.6014595],[121.5596466,39.6003418]]]]},
  311 +"properties":{
  312 +"gid":52,
  313 +"name":"辽宁省"}
  314 +},
  315 +{"type":"Feature",
  316 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.1508331,39.5433083],[111.1103973,39.5088425],[111.1046906,39.4873886],[111.0771332,39.4553871],[111.0619431,39.4505501],[111.0551834,39.4206467],[111.0604172,39.4080315],[111.0874405,39.398365],[111.0922318,39.36343],[111.1166306,39.3654213],[111.1524582,39.3650284],[111.1524124,39.3343811],[111.1723328,39.3531265],[111.1846924,39.352169],[111.1741562,39.3255539],[111.1811066,39.3125725],[111.2481232,39.2979202],[111.2077713,39.265789],[111.210083,39.2328758],[111.1657028,39.1662407],[111.1721573,39.1309319],[111.1624832,39.1083984],[111.1430206,39.0974541],[111.1362381,39.0673218],[111.0979004,39.028553],[111.0796967,39.0202675],[111.0402832,39.0242119],[110.9974136,39.0030479],[110.9758606,38.9747238],[111.0048981,38.9280281],[111.0167465,38.8810234],[110.9927368,38.8660278],[110.9982605,38.827343],[110.9831314,38.7957649],[110.9564285,38.7777443],[110.9447327,38.7260857],[110.9159088,38.7000694],[110.9112396,38.6716843],[110.8858871,38.6473236],[110.8805923,38.6232872],[110.8945312,38.5906563],[110.9184799,38.5798531],[110.9038467,38.5205688],[110.8737106,38.5117836],[110.8704605,38.4539413],[110.8439713,38.4363518],[110.8158035,38.4483795],[110.78508,38.446537],[110.7694168,38.4334221],[110.7404633,38.3657455],[110.6921463,38.3414497],[110.6560516,38.301487],[110.5753632,38.297287],[110.5577087,38.2097893],[110.5172806,38.1997833],[110.5140762,38.1965828],[110.5072784,38.190979],[110.5036774,38.1797714],[110.5036774,38.1725655],[110.503273,38.1669655],[110.5020828,38.1621628],[110.5036774,38.1541557],[110.5056763,38.1481514],[110.5072784,38.1421509],[110.5084763,38.1365471],[110.5120773,38.1289406],[110.5175934,38.1236038],[110.5176773,38.1189346],[110.5136795,38.1125336],[110.5104828,38.1073303],[110.506073,38.1009254],[110.5016708,38.0957222],[110.4987869,38.0924797],[110.4980698,38.0869179],[110.497673,38.080513],[110.4988708,38.0753098],[110.4996719,38.0689087],[110.5008698,38.0621033],[110.5020828,38.0573006],[110.5024719,38.053299],[110.5008698,38.0484962],[110.5000763,38.0444946],[110.4988708,38.0392914],[110.497673,38.0320854],[110.4960709,38.0248833],[110.4960709,38.0204811],[110.4964676,38.0144768],[110.497673,38.0100746],[110.5024719,38.0044708],[110.5068665,38.0000687],[110.5136795,37.995266],[110.5192871,37.9900627],[110.5240936,37.9868584],[110.5252838,37.9828568],[110.5248871,37.9784546],[110.5220871,37.9732513],[110.5188828,37.967247],[110.5160828,37.9624443],[110.5124817,37.9612465],[110.5124817,37.9564438],[110.5128784,37.9512405],[110.5152817,37.9480362],[110.5188828,37.943634],[110.5268936,37.9396324],[110.533287,37.9364319],[110.5408936,37.9324303],[110.5473022,37.9304276],[110.5561066,37.927227],[110.5637131,37.9252243],[110.5737228,37.9216232],[110.5781174,37.9200211],[110.5829163,37.9176216],[110.5885162,37.9120178],[110.5953293,37.9056129],[110.5997314,37.8980103],[110.6033325,37.8916054],[110.6037292,37.8860016],[110.6057434,37.8787994],[110.6101379,37.8723946],[110.6145401,37.8655891],[110.6185379,37.861187],[110.6233368,37.8551826],[110.6257477,37.8499794],[110.6281433,37.8435783],[110.6321487,37.837574],[110.6365509,37.8319702],[110.6413574,37.8271675],[110.6469574,37.8215637],[110.6509628,37.816761],[110.6565628,37.8091583],[110.6581573,37.8027534],[110.6597672,37.7955513],[110.6609573,37.7899475],[110.6657715,37.7851448],[110.6713715,37.7803421],[110.6809769,37.7771378],[110.6917801,37.7723351],[110.7025909,37.7699356],[110.7121964,37.7663345],[110.7238007,37.7599297],[110.7325974,37.7555275],[110.7386093,37.7523232],[110.7438126,37.7459221],[110.747818,37.7411194],[110.7494202,37.7359161],[110.7494202,37.7323151],[110.7470169,37.7279091],[110.7398071,37.7247086],[110.7310028,37.7231064],[110.7221985,37.7211075],[110.7137985,37.7195053],[110.7077866,37.7167053],[110.7025909,37.7131004],[110.7001877,37.7086983],[110.6981888,37.7026978],[110.6985931,37.6974945],[110.700592,37.6922913],[110.7057877,37.6890869],[110.7101974,37.6854858],[110.7157974,37.6822853],[110.7242126,37.6802826],[110.7317963,37.679081],[110.7426071,37.6766815],[110.7514191,37.6750793],[110.7602234,37.6738815],[110.768631,37.6702766],[110.7762299,37.6650734],[110.7822266,37.6614723],[110.7870407,37.6582718],[110.7926407,37.6534691],[110.7934418,37.6498642],[110.7930527,37.6446648],[110.7914429,37.6398582],[110.7878418,37.6366577],[110.7834396,37.6342583],[110.7774429,37.6330566],[110.7706299,37.6322556],[110.7638168,37.6322556],[110.757019,37.6314545],[110.7546234,37.6286545],[110.7566223,37.6242523],[110.7610168,37.6198502],[110.7642288,37.6170464],[110.7658234,37.6142464],[110.7658234,37.6086426],[110.7658234,37.6014366],[110.7658234,37.594635],[110.7654266,37.5886307],[110.7662277,37.5830269],[110.7698288,37.5770226],[110.7738266,37.5702209],[110.7794266,37.5658188],[110.7834396,37.5614166],[110.7862396,37.5562134],[110.7869568,37.5497055],[110.7866364,37.5434036],[110.7858429,37.539402],[110.7834396,37.5354004],[110.7758331,37.5313988],[110.7694168,37.5277939],[110.7650223,37.5253944],[110.7622223,37.5221939],[110.7610168,37.5177879],[110.7618332,37.5133858],[110.7626266,37.5089836],[110.7630234,37.5053825],[110.7626266,37.4989777],[110.7594223,37.494175],[110.7558212,37.4889717],[110.7530212,37.4849701],[110.750618,37.4801674],[110.7494202,37.4733658],[110.7482071,37.4669609],[110.7474136,37.460556],[110.7462234,37.4561539],[110.7434235,37.449749],[110.7422104,37.4457474],[110.7394104,37.4417458],[110.7362137,37.4385452],[110.7325974,37.4357414],[110.7246017,37.4325409],[110.7157974,37.4301376],[110.7073898,37.4281387],[110.6989899,37.4277382],[110.6889801,37.4273376],[110.682579,37.4273376],[110.6705704,37.4277382],[110.6625671,37.4277382],[110.6573563,37.4285393],[110.6537628,37.4289398],[110.6485596,37.4289398],[110.6421509,37.4269371],[110.6389465,37.4249344],[110.6361465,37.4181328],[110.6353531,37.4121284],[110.6353531,37.4061241],[110.6349487,37.3997231],[110.6349487,37.3953209],[110.6329498,37.3925171],[110.6309509,37.3881149],[110.6277466,37.3825111],[110.6257477,37.3785095],[110.6257477,37.3745079],[110.6249466,37.3697052],[110.6249466,37.3641014],[110.6277466,37.357296],[110.6309509,37.3524933],[110.6337509,37.3496933],[110.6381531,37.34729],[110.642952,37.3452911],[110.6477585,37.3428879],[110.6565628,37.3424873],[110.6633682,37.3428879],[110.6717682,37.3428879],[110.6781769,37.3420868],[110.6857834,37.3416901],[110.6909866,37.340889],[110.6969833,37.3400879],[110.6985931,37.3348846],[110.6993866,37.3312836],[110.6993866,37.3280792],[110.6985931,37.322876],[110.6977768,37.3188744],[110.6945877,37.3152733],[110.6909866,37.3124733],[110.6849823,37.3096695],[110.6793671,37.3056679],[110.6745834,37.3020668],[110.6717682,37.2988625],[110.6737671,37.2940598],[110.676178,37.2900581],[110.6793671,37.2876587],[110.6821671,37.2852554],[110.685379,37.2804527],[110.6861801,37.2772522],[110.6869812,37.2736473],[110.6841812,37.2688446],[110.6801834,37.2660446],[110.6765671,37.2668457],[110.6705704,37.2668457],[110.6625671,37.2672462],[110.6557617,37.2672462],[110.6509628,37.2644424],[110.6497574,37.2612419],[110.6493607,37.2552376],[110.647377,37.2495422],[110.6434174,37.241848],[110.6396866,37.2360191],[110.6343231,37.2292595],[110.6287308,37.2224998],[110.6233673,37.2159729],[110.6177673,37.209446],[110.6124115,37.2033844],[110.6072769,37.1980247],[110.6040192,37.195694],[110.5986633,37.1905632],[110.5911865,37.1826363],[110.5844269,37.1770439],[110.5785217,37.1663857],[110.5725174,37.159584],[110.5655518,37.1530342],[110.5585632,37.14674],[110.552269,37.1423111],[110.5457001,37.1375694],[110.5364914,37.1311684],[110.5312881,37.1239624],[110.5304871,37.1183586],[110.5300903,37.1127548],[110.5296936,37.1063538],[110.5288925,37.0999489],[110.5268936,37.093544],[110.5240936,37.0887413],[110.5180817,37.0855408],[110.5116806,37.0827408],[110.5020828,37.0791359],[110.4956665,37.0743332],[110.4892731,37.0695305],[110.4836731,37.0639267],[110.4828568,37.059124],[110.47966,37.0539207],[110.4744568,37.0483208],[110.4676514,37.0419159],[110.4612503,37.0359116],[110.4532471,37.0279083],[110.4476395,37.0259056],[110.4424362,37.0243034],[110.434433,37.0239067],[110.4296265,37.024704],[110.4216309,37.0235062],[110.4196167,37.0223045],[110.4156265,37.021904],[110.4124222,37.0187035],[110.4116211,37.0163002],[110.4124222,37.0143013],[110.4160233,37.011898],[110.4216309,37.0106964],[110.4300308,37.0102959],[110.4380264,37.0102959],[110.4448395,37.0098953],[110.4500427,37.0066948],[110.4504471,37.001091],[110.4488373,36.9962883],[110.4468384,36.9922867],[110.4416428,36.9890862],[110.437233,36.9886856],[110.4304428,36.9890862],[110.4240265,36.9918861],[110.4152222,36.9974899],[110.4064178,37.0030937],[110.3992233,37.0074959],[110.3948135,37.0098953],[110.3896103,37.0106964],[110.384407,37.0114975],[110.3808136,37.011097],[110.3751984,37.0086975],[110.3695984,37.0058937],[110.3687973,37.0022926],[110.3691864,36.998291],[110.3723984,36.9942894],[110.3796005,36.9910851],[110.387207,36.9878845],[110.3940125,36.984684],[110.4000168,36.9814796],[110.4056168,36.9782791],[110.4100189,36.9734764],[110.4156265,36.9658699],[110.4180222,36.9618683],[110.4200287,36.956665],[110.4220276,36.950264],[110.4228287,36.9454613],[110.4236298,36.9406586],[110.423233,36.9350548],[110.4224167,36.9302521],[110.4184265,36.9254494],[110.4144211,36.9198456],[110.4096222,36.9122391],[110.4068222,36.9078369],[110.4048233,36.9026337],[110.4028168,36.8982315],[110.4032135,36.8918304],[110.4044189,36.8886261],[110.4056168,36.8858261],[110.4060211,36.881424],[110.4060211,36.8766212],[110.4036179,36.8726196],[110.4008179,36.8706169],[110.3960114,36.8694153],[110.3916092,36.8690147],[110.3876114,36.8690147],[110.3804016,36.8686142],[110.3751984,36.8666153],[110.3731995,36.8638115],[110.3743973,36.8598099],[110.3751984,36.8574104],[110.3848038,36.8570099],[110.3920135,36.8558083],[110.3964233,36.8554077],[110.401207,36.8546066],[110.4076233,36.8526077],[110.41082,36.8514061],[110.4144211,36.8490028],[110.4196167,36.8462029],[110.4228287,36.8409996],[110.4236603,36.8385887],[110.4240265,36.8345947],[110.4224319,36.8293915],[110.4200287,36.8257904],[110.4164276,36.8225899],[110.4116211,36.8189888],[110.4064178,36.8169861],[110.4008179,36.8137856],[110.3992233,36.8117828],[110.3996124,36.8085823],[110.4060211,36.8073807],[110.4120331,36.8069801],[110.4176331,36.8065796],[110.4216309,36.8049774],[110.4224319,36.802578],[110.4236298,36.7997742],[110.423233,36.7961731],[110.420433,36.7917709],[110.4172287,36.7865677],[110.4140167,36.7809639],[110.4100189,36.7761612],[110.4068222,36.771759],[110.4056168,36.7677574],[110.4056168,36.7645569],[110.4036179,36.7613525],[110.3992233,36.7597542],[110.3948135,36.7589531],[110.3884125,36.7601547],[110.3836136,36.7605515],[110.3787994,36.7597542],[110.3771973,36.7561493],[110.3824081,36.7517471],[110.387207,36.750946],[110.3924103,36.7501488],[110.3996124,36.7501488],[110.4064178,36.7501488],[110.4112167,36.7501488],[110.4168167,36.7489471],[110.4196167,36.747345],[110.4228287,36.7453461],[110.4264297,36.7429428],[110.4276276,36.7381401],[110.4280319,36.7349396],[110.4268265,36.7313347],[110.4248276,36.7281342],[110.4224319,36.7249336],[110.4188232,36.720932],[110.4156265,36.7181282],[110.41362,36.7145271],[110.4144211,36.7121239],[110.4156265,36.7105255],[110.4180222,36.7097244],[110.4220276,36.7105255],[110.4264297,36.7133255],[110.4300308,36.7161293],[110.4320374,36.7197304],[110.4352264,36.7225304],[110.4392395,36.7253342],[110.4432373,36.726532],[110.4456406,36.7257347],[110.4480362,36.723732],[110.4484406,36.7213326],[110.4496536,36.7185287],[110.4484406,36.7141266],[110.4476395,36.7105255],[110.4408417,36.7037201],[110.4384384,36.7005196],[110.4332428,36.6957169],[110.4308319,36.6901131],[110.4296265,36.6853104],[110.4308319,36.6797066],[110.431633,36.6741028],[110.4312363,36.668499],[110.4284286,36.6669006],[110.4244308,36.665699],[110.4208298,36.6665001],[110.4168167,36.6680984],[110.4120331,36.6709023],[110.4088211,36.6749039],[110.40522,36.6781044],[110.401619,36.6809082],[110.3992233,36.6833076],[110.395607,36.6837082],[110.3912125,36.6833076],[110.3892136,36.6805077],[110.3884125,36.6769066],[110.3880081,36.6741028],[110.3876114,36.6697006],[110.3876114,36.6665001],[110.3892136,36.6620979],[110.4212265,36.642086],[110.4272308,36.6368828],[110.4300308,36.6320801],[110.4332428,36.6244736],[110.4388428,36.617672],[110.4432373,36.6108665],[110.4484406,36.6032639],[110.4544373,36.5976601],[110.4580536,36.5928574],[110.4620514,36.589653],[110.4652634,36.5872536],[110.4692535,36.5836525],[110.472847,36.5808487],[110.4764633,36.5800476],[110.47966,36.5788498],[110.4848633,36.5764465],[110.4892731,36.5744476],[110.4916687,36.5712433],[110.4956665,36.5672417],[110.4952698,36.5648422],[110.4920883,36.5611687],[110.48909,36.5550461],[110.4863663,36.5480614],[110.4856033,36.542244],[110.4863663,36.5375862],[110.48909,36.5340958],[110.4914169,36.5302162],[110.494133,36.5259476],[110.4968491,36.5209045],[110.4968491,36.5162468],[110.4960709,36.5112038],[110.494133,36.5049973],[110.4922028,36.4987907],[110.4937363,36.491806],[110.4945221,36.4801674],[110.4925766,36.4696922],[110.4883118,36.4611549],[110.479393,36.4522324],[110.4696884,36.4452477],[110.4669724,36.4390411],[110.4689178,36.433609],[110.4735718,36.4274025],[110.48172,36.4196434],[110.4832687,36.4126587],[110.4840469,36.4048996],[110.4828796,36.3963661],[110.4813309,36.3897705],[110.4770584,36.3777428],[110.4708633,36.3695946],[110.4654236,36.362999],[110.4623184,36.360672],[110.4615402,36.3564034],[110.4623184,36.3505821],[110.4623184,36.3447647],[110.4619293,36.340107],[110.4607697,36.3373909],[110.4582138,36.3330345],[110.4557266,36.3296318],[110.4545593,36.3253632],[110.4553375,36.3207092],[110.4568863,36.3164406],[110.4592133,36.312561],[110.4630966,36.309845],[110.4665833,36.307518],[110.4700775,36.3044128],[110.4700775,36.2989845],[110.4658127,36.2939377],[110.4619293,36.2892838],[110.4630966,36.2842407],[110.4654236,36.2815247],[110.4673615,36.2780304],[110.4692993,36.2760925],[110.4700775,36.2726021],[110.4712372,36.26717],[110.4716263,36.2617378],[110.4716263,36.2551422],[110.4708633,36.2508736],[110.4696884,36.2466049],[110.4696884,36.2415619],[110.4665833,36.236908],[110.4627075,36.2334137],[110.4588165,36.2299232],[110.4545593,36.2268181],[110.4510727,36.2229385],[110.4495163,36.2175064],[110.4495163,36.2112999],[110.4514465,36.2047043],[110.4530106,36.1992722],[110.4541702,36.1915131],[110.4526215,36.1845284],[110.449913,36.1787109],[110.4464111,36.1693993],[110.446022,36.1620293],[110.4452515,36.1538811],[110.4440765,36.1441803],[110.4448624,36.1368103],[110.4468002,36.1313782],[110.4475784,36.1224556],[110.4502869,36.1131439],[110.4576569,36.1053848],[110.4619293,36.0984001],[110.4638672,36.0918045],[110.464653,36.0832672],[110.4638672,36.0774498],[110.4630966,36.0716286],[110.4662018,36.0669746],[110.4727936,36.0607681],[110.4774475,36.0572739],[110.4828796,36.0506783],[110.4836578,36.0436935],[110.4844437,36.0332184],[110.4859772,36.0235214],[110.4887009,36.0134315],[110.4910278,36.0064507],[110.4929733,36.0006294],[110.4937363,35.9940338],[110.4945221,35.9870529],[110.4983978,35.9804573],[110.5030594,35.9738617],[110.5084763,35.9699783],[110.5131531,35.9657135],[110.5127563,35.9606705],[110.5084763,35.9536858],[110.5057831,35.949028],[110.5022812,35.943985],[110.5026703,35.936615],[110.5057831,35.9296303],[110.5092621,35.9230347],[110.5127563,35.9176025],[110.5135269,35.9082909],[110.5126114,35.8982468],[110.5121765,35.8882637],[110.5139084,35.8852272],[110.5173874,35.880455],[110.5225906,35.8769798],[110.5295334,35.8748131],[110.5351791,35.8748131],[110.5447235,35.8743782],[110.5494995,35.8683014],[110.5503693,35.8609238],[110.5494995,35.8505096],[110.5488663,35.8423424],[110.5494995,35.8361855],[110.5494995,35.8305435],[110.5538406,35.8240356],[110.5590363,35.816658],[110.5629501,35.8097153],[110.5659866,35.8040733],[110.5668564,35.7992973],[110.5686035,35.7914848],[110.5686035,35.7789001],[110.5690308,35.7671814],[110.5720673,35.7576332],[110.5746689,35.7502556],[110.5764084,35.737236],[110.577713,35.72118],[110.57901,35.6973114],[110.5829163,35.6873283],[110.5902863,35.6751785],[110.5967789,35.6617126],[110.6059875,35.6187248],[110.5459366,35.5269508],[110.5160828,35.4052811],[110.4720535,35.3680229],[110.4551926,35.3315163],[110.4363098,35.3167191],[110.4256134,35.3002472],[110.3847504,35.2350845],[110.3562469,35.1342163],[110.3627319,35.1054993],[110.3372726,35.0706253],[110.3221436,35.0190163],[110.2893219,34.9974861],[110.2723923,34.9682732],[110.2834473,34.9096565],[110.2802124,34.7836342],[110.2480316,34.6933975],[110.264183,34.6751976],[110.2894897,34.6209831],[110.3006287,34.6123085],[110.3630829,34.6140785],[110.3811188,34.6055183],[110.3641281,34.5797462],[110.3682632,34.5718155],[110.4069214,34.5773201],[110.4053574,34.555069],[110.3691788,34.5396614],[110.3547897,34.5196609],[110.4079437,34.4218025],[110.4246216,34.4106865],[110.4754028,34.4151878],[110.472847,34.3789444],[110.4951172,34.3367805],[110.4456711,34.2950211],[110.4225998,34.2890549],[110.4365616,34.2471886],[110.4791336,34.2386551],[110.5017319,34.2219238],[110.5277328,34.2217484],[110.5566483,34.1961975],[110.5771103,34.1961327],[110.6363373,34.1729736],[110.6359482,34.1567001],[110.6182632,34.1268196],[110.5824585,34.1027756],[110.580513,34.0335617],[110.5890121,34.0252457],[110.6162033,34.030117],[110.6414337,34.0047073],[110.6440506,33.9790993],[110.6711807,33.9541779],[110.6624222,33.9416428],[110.6216431,33.9312592],[110.6191177,33.9124298],[110.5958405,33.907177],[110.5876007,33.8964806],[110.5936203,33.8778152],[110.6029282,33.8596649],[110.6202087,33.8519745],[110.6550369,33.8569794],[110.6995773,33.8385582],[110.7285538,33.8040352],[110.7720795,33.8018341],[110.8035812,33.752224],[110.817627,33.7288704],[110.8272171,33.6747513],[110.8605881,33.6581421],[110.8762817,33.6338959],[110.9253387,33.6264687],[110.9867935,33.5924149],[111.0019989,33.5631065],[110.9955368,33.5455971],[111.018837,33.5095444],[111.0216064,33.4711075],[111.0151825,33.4524498],[110.991127,33.4376373],[111.0204315,33.3769455],[111.0237732,33.3380585],[110.9947586,33.3256874],[111.002327,33.3054199],[110.9806213,33.2977448],[110.9776611,33.2596741],[110.9550629,33.2556419],[110.9080734,33.2081413],[110.8600464,33.2160339],[110.8198776,33.2050362],[110.8097534,33.1835556],[110.8127136,33.1526833],[110.7401581,33.1488762],[110.7166824,33.1276016],[110.7146225,33.1014519],[110.6972198,33.0990715],[110.6700363,33.125824],[110.6459427,33.1595039],[110.618721,33.1459312],[110.5960464,33.1564941],[110.5888672,33.2090454],[110.5662766,33.2553368],[110.5285797,33.2545967],[110.5226364,33.2322578],[110.4790268,33.2087097],[110.4556808,33.184639],[110.4123383,33.1720657],[110.3618317,33.1801682],[110.2272034,33.1609802],[110.1597595,33.21101],[110.0258789,33.193676],[110.0011597,33.2134743],[109.9631271,33.2068214],[109.9241409,33.2274017],[109.8470688,33.2497559],[109.7936935,33.2362442],[109.7127991,33.2352753],[109.6879501,33.2561569],[109.6476822,33.250721],[109.6386032,33.2733879],[109.6114197,33.2760887],[109.5958099,33.2344131],[109.5324783,33.2454948],[109.509201,33.2395668],[109.493187,33.2090988],[109.43367,33.1537781],[109.4633713,33.1420288],[109.5172272,33.1405754],[109.5554428,33.1276665],[109.5713272,33.1122971],[109.5873489,33.1216736],[109.5970764,33.1102562],[109.6283569,33.1200485],[109.6830368,33.1185455],[109.6991501,33.1038513],[109.7863235,33.0717735],[109.7823105,33.002243],[109.7570267,32.9120445],[109.7872772,32.8819008],[109.8164368,32.8898087],[109.8443909,32.8994102],[109.8571396,32.9164619],[109.9090271,32.9049416],[109.9286804,32.8882446],[109.9763565,32.8875847],[110.0178986,32.8753052],[110.1340332,32.8122902],[110.1246033,32.7735405],[110.1543732,32.7691879],[110.1589737,32.7528],[110.1492462,32.6920967],[110.2013016,32.6351013],[110.1798096,32.6194916],[110.1599274,32.5959015],[110.1485596,32.5951805],[110.1187592,32.6187706],[110.0848236,32.6191216],[110.0789566,32.5827866],[110.0125427,32.5491257],[109.9907074,32.552948],[109.9661865,32.5798416],[109.939888,32.5791931],[109.9056931,32.5950623],[109.8120728,32.5796204],[109.75,32.5926628],[109.7216568,32.6104698],[109.6200027,32.5999336],[109.6111298,32.5834236],[109.6319275,32.5434418],[109.6132889,32.5271187],[109.5734406,32.5127296],[109.5607529,32.4835091],[109.5478973,32.4794807],[109.5367203,32.4466324],[109.5219727,32.4356804],[109.5213928,32.4022102],[109.4977264,32.3909988],[109.5078125,32.3346977],[109.4904175,32.3025856],[109.5237808,32.2726059],[109.5455627,32.2271729],[109.5879364,32.2217178],[109.598999,32.2080498],[109.5841293,32.1521988],[109.6175232,32.1050186],[109.5795593,32.0395927],[109.5840378,32.0142899],[109.6264877,31.964571],[109.6231537,31.9400597],[109.5897064,31.9256916],[109.5802002,31.9027939],[109.6027527,31.8839626],[109.6334229,31.8133259],[109.599762,31.8060608],[109.5870667,31.7911892],[109.5936584,31.7545109],[109.5766068,31.7331676],[109.4545898,31.7209568],[109.4328537,31.7287693],[109.3890228,31.7127476],[109.3135376,31.7143612],[109.2788925,31.7235222],[109.2770233,31.7436924],[109.2555389,31.7718754],[109.2719421,31.7858639],[109.2708664,31.8042011],[109.1969299,31.8238583],[109.1937027,31.8476944],[109.1710815,31.8740253],[109.1274796,31.8925304],[109.0805893,31.9323196],[109.0280228,31.9679737],[108.9789581,31.9871044],[108.8835602,31.9966736],[108.8093567,32.0543213],[108.7525024,32.0697708],[108.7403107,32.1099052],[108.664093,32.111805],[108.6404266,32.137085],[108.6092072,32.1510887],[108.5807724,32.1796265],[108.5308228,32.1949959],[108.5145493,32.2120438],[108.5026474,32.2439232],[108.476059,32.2720451],[108.4637985,32.2736549],[108.420723,32.2644844],[108.3941422,32.2710457],[108.3713608,32.2619362],[108.3463516,32.2641945],[108.3229828,32.2408371],[108.2341232,32.278656],[108.2135925,32.2679977],[108.184639,32.2285805],[108.1545792,32.2441254],[108.1292801,32.2222557],[108.0720291,32.2403564],[108.0542831,32.2240524],[108.0216522,32.222496],[108.014183,32.1777191],[107.9915009,32.1540909],[107.9730072,32.1491852],[107.9010696,32.2053413],[107.8639526,32.2007637],[107.8460464,32.2086601],[107.7922974,32.2628098],[107.752861,32.3292885],[107.7068405,32.3275719],[107.674469,32.3884048],[107.6373291,32.4087372],[107.5935898,32.4140434],[107.5285263,32.3859787],[107.5077515,32.3885994],[107.4850464,32.4274521],[107.4588165,32.4292297],[107.4628906,32.4552956],[107.4398422,32.4794769],[107.4349136,32.5283699],[107.4012833,32.5412445],[107.3730927,32.5409698],[107.3520966,32.5084953],[107.2974319,32.4845123],[107.2593536,32.4055099],[107.2105103,32.4283905],[107.1804504,32.4730148],[107.1224136,32.4845161],[107.0754623,32.5444489],[107.0909271,32.5614471],[107.1030273,32.6027832],[107.094368,32.6514778],[107.0830078,32.6699486],[107.0581589,32.6775818],[107.0549316,32.711998],[107.0119476,32.7246437],[106.9780197,32.7094421],[106.9536285,32.71315],[106.9069901,32.7005882],[106.8920364,32.7183952],[106.8573303,32.7224197],[106.829422,32.7084923],[106.7817993,32.701622],[106.7783737,32.7298431],[106.7618866,32.7364159],[106.7284088,32.7314529],[106.6711502,32.6927719],[106.625061,32.675972],[106.5950165,32.6615486],[106.5585098,32.6735268],[106.5283279,32.6693993],[106.4908905,32.6453819],[106.45298,32.6541252],[106.4344864,32.623085],[106.413269,32.6163483],[106.3905487,32.6236],[106.3744888,32.6493645],[106.3515472,32.6639442],[106.3155212,32.674469],[106.2867126,32.6693573],[106.2701263,32.6678429],[106.2352905,32.6927719],[106.1755371,32.6928291],[106.0932465,32.7390099],[106.0586472,32.7732849],[106.0927734,32.7999725],[106.0907135,32.8190002],[106.0539627,32.8654327],[106.0417328,32.868454],[106.0053635,32.8305321],[105.9589233,32.8478546],[105.9237518,32.8266335],[105.8786163,32.8290291],[105.8394165,32.81604],[105.8231125,32.8217964],[105.8140182,32.7695618],[105.7895203,32.7510338],[105.7490463,32.7694168],[105.6207733,32.7016449],[105.5925217,32.6998062],[105.579483,32.7222633],[105.5569229,32.7321053],[105.5601578,32.7696915],[105.5283279,32.8024445],[105.5212097,32.8475838],[105.4917908,32.8752861],[105.4953537,32.9107399],[105.5263138,32.9154243],[105.5646973,32.9028435],[105.5870438,32.8790207],[105.6128922,32.8801689],[105.6346588,32.881546],[105.6572571,32.8987312],[105.7315826,32.9073944],[105.8231583,32.9528885],[105.8618088,32.9431915],[105.9192429,33.008152],[105.9106903,33.0604248],[105.9217911,33.1140289],[105.9163971,33.1342125],[105.9279099,33.1442642],[105.9197388,33.1497879],[105.8959579,33.1402168],[105.8949127,33.15168],[105.9294586,33.1944542],[105.9533081,33.1476364],[105.9634323,33.1531105],[105.9587402,33.2095032],[105.9134979,33.239872],[105.8511887,33.2367935],[105.8318329,33.2531013],[105.7922134,33.2618713],[105.7859573,33.2818184],[105.7635498,33.2843666],[105.7438889,33.3006592],[105.7513199,33.330677],[105.7051468,33.382515],[105.7289734,33.392807],[105.8233871,33.3819199],[105.8341522,33.4126129],[105.8271484,33.4582329],[105.8381882,33.4919052],[105.8868484,33.5320396],[105.8959579,33.5557327],[105.9157104,33.5566025],[105.936348,33.5723686],[105.9554291,33.6101341],[106.0267181,33.5961685],[106.043251,33.6098633],[106.1000671,33.6103439],[106.1178207,33.5960655],[106.1047668,33.5702171],[106.1432037,33.5737267],[106.1430969,33.5576859],[106.1830902,33.548111],[106.2334137,33.5657501],[106.2838974,33.6026154],[106.3044968,33.6050262],[106.3436127,33.5882988],[106.3885803,33.6162186],[106.4404526,33.6154251],[106.4528427,33.5344353],[106.4732666,33.5210037],[106.4991302,33.5297623],[106.5139389,33.5039825],[106.5304031,33.5050087],[106.557373,33.5398712],[106.5558167,33.5726624],[106.5819702,33.5807076],[106.5715866,33.633503],[106.5357132,33.6929092],[106.476593,33.7139626],[106.4818497,33.7723694],[106.4562073,33.794548],[106.4644623,33.821537],[106.4899673,33.8399239],[106.4854507,33.855999],[106.4655228,33.8721809],[106.4238968,33.8678741],[106.41465,33.8789368],[106.4207611,33.9135056],[106.4734879,33.979847],[106.4673309,34.0254936],[106.5013199,34.0580292],[106.4976807,34.1064148],[106.5579681,34.1155968],[106.5880585,34.1392021],[106.5682602,34.171669],[106.5472336,34.2442474],[106.5279999,34.255619],[106.5087585,34.2408638],[106.4899826,34.2432899],[106.5223236,34.2934761],[106.5730972,34.2825546],[106.5891037,34.2537804],[106.6270828,34.2619591],[106.6597672,34.2447281],[106.6968765,34.2916222],[106.7004318,34.3101578],[106.6866837,34.3389206],[106.7097778,34.3478851],[106.7124405,34.3609276],[106.638588,34.3906593],[106.6149063,34.4502068],[106.591713,34.4574928],[106.5960083,34.468689],[106.5741272,34.4716072],[106.5665665,34.4890823],[106.5412521,34.4814796],[106.5041428,34.5126877],[106.4621582,34.5303955],[106.4118576,34.5217896],[106.3959274,34.5088272],[106.3697128,34.5234261],[106.3399887,34.5197029],[106.3352127,34.545166],[106.3091736,34.5833511],[106.3775787,34.6269531],[106.405632,34.6274643],[106.4169235,34.6461868],[106.4560394,34.6406555],[106.46595,34.6589241],[106.4413376,34.6705437],[106.4375763,34.6852341],[106.452507,34.7048416],[106.4826584,34.7163239],[106.4965668,34.7446404],[106.5486908,34.7531967],[106.5312195,34.783802],[106.5592117,34.7984886],[106.5666504,34.8165359],[106.5518494,34.8624725],[106.516449,34.8863297],[106.5059967,34.9260445],[106.4888916,34.9419746],[106.4883118,35.0207939],[106.5285187,35.0480003],[106.5420303,35.0838737],[106.5557938,35.0908737],[106.6254272,35.0752106],[106.6992798,35.0851364],[106.7291107,35.1020584],[106.8341064,35.0806923],[106.8862762,35.0950699],[106.9161606,35.0952225],[106.9456711,35.0710831],[106.9943619,35.0604744],[107.0146027,35.0348206],[107.0588531,35.0274467],[107.0838623,35.0214233],[107.0930099,35.0018425],[107.0847702,34.9774208],[107.1147003,34.9509468],[107.16745,34.9381599],[107.1962433,34.882576],[107.2682419,34.9029541],[107.290657,34.9372559],[107.3411102,34.9363403],[107.3638763,34.9186096],[107.3957138,34.9337425],[107.4505463,34.9175987],[107.5276489,34.9123192],[107.5331497,34.9335442],[107.5675125,34.9724274],[107.6009674,34.9597549],[107.6211395,34.9637871],[107.6361771,34.9282532],[107.6762619,34.9479942],[107.7259521,34.9501419],[107.7673187,34.9645653],[107.8016968,34.9568634],[107.8115234,34.9716263],[107.8529587,34.9962883],[107.8512497,35.0057144],[107.7873077,35.0474014],[107.7462387,35.0904999],[107.6919403,35.199337],[107.6492386,35.2492981],[107.711731,35.2523918],[107.7340698,35.283638],[107.7156601,35.2976913],[107.7498474,35.3094864],[107.7561874,35.306633],[107.7705994,35.305481],[107.7827072,35.3031731],[107.787323,35.296257],[107.7896194,35.289917],[107.8000031,35.2824211],[107.8144073,35.278389],[107.8409271,35.274353],[107.8524628,35.267437],[107.8634033,35.2599411],[107.8737793,35.257637],[107.8887711,35.256485],[107.9054871,35.2559052],[107.9198914,35.2559052],[107.9308472,35.262249],[107.9412231,35.268013],[107.9541931,35.266571],[107.9573593,35.2599411],[107.9533234,35.2527351],[107.9461212,35.2469711],[107.9766998,35.2396622],[107.9990005,35.2486954],[108.0504684,35.2587051],[108.0847473,35.278389],[108.1171265,35.2933846],[108.1817703,35.3093376],[108.2243805,35.2944565],[108.2358322,35.2653313],[108.2844772,35.2772408],[108.3418503,35.3091545],[108.3628235,35.2897606],[108.4209366,35.282486],[108.4863586,35.2855263],[108.5456085,35.3098488],[108.5836105,35.3120956],[108.6041794,35.3423691],[108.6247177,35.4060783],[108.6014175,35.5033112],[108.6167831,35.5267487],[108.617981,35.5522194],[108.5526428,35.6026268],[108.5296936,35.6267929],[108.5185623,35.6614456],[108.5275726,35.6826057],[108.5196533,35.7045441],[108.5282364,35.754776],[108.5197678,35.8399048],[108.4984436,35.8693848],[108.5010071,35.8951263],[108.5540009,35.9233208],[108.5761337,35.9481354],[108.6475677,35.9485321],[108.6564484,36.0016327],[108.6838531,36.0213013],[108.6790695,36.0694275],[108.7076263,36.1383629],[108.6602173,36.2149887],[108.6448135,36.2621269],[108.6498337,36.2770157],[108.679863,36.2821617],[108.6870193,36.2923241],[108.7140579,36.362278],[108.698143,36.3783951],[108.6371765,36.4005966],[108.6145172,36.4341164],[108.5579529,36.4387627],[108.5104294,36.4755249],[108.4787598,36.4455833],[108.426918,36.4358673],[108.381752,36.5140724],[108.3656387,36.5156593],[108.343399,36.5559998],[108.3018875,36.561058],[108.2968216,36.5450058],[108.2707214,36.5671387],[108.2575226,36.5628052],[108.2565384,36.5511284],[108.2440414,36.5688324],[108.2117233,36.5712814],[108.1998367,36.5965347],[108.2134171,36.6328239],[108.1928864,36.6297989],[108.158577,36.5635796],[108.1397934,36.5606804],[108.1264725,36.5791016],[108.0899963,36.5868034],[108.0872421,36.6018982],[108.0457611,36.59375],[107.9908905,36.6381111],[108.0192719,36.6544762],[108.0065994,36.6850357],[107.9544296,36.6552505],[107.9435577,36.6585312],[107.9328766,36.7026634],[107.8954315,36.7601585],[107.8712692,36.7591019],[107.7567902,36.7965202],[107.7059174,36.8037071],[107.6991425,36.812542],[107.6769867,36.8319054],[107.6483612,36.8160362],[107.5940399,36.8343582],[107.5407028,36.8265114],[107.5310669,36.8345985],[107.5305176,36.8644218],[107.4802933,36.9061813],[107.4315033,36.8979111],[107.3602829,36.905014],[107.331131,36.9255486],[107.3043365,36.9160576],[107.29245,36.9311943],[107.28302,37.0062065],[107.2732773,37.0138893],[107.2713928,37.0822525],[107.2800522,37.09758],[107.2692108,37.1327057],[107.3106232,37.1073799],[107.3274002,37.119194],[107.3339996,37.146183],[107.3098984,37.1941299],[107.272789,37.2266579],[107.2730408,37.236763],[107.2972107,37.2333527],[107.3049927,37.250267],[107.2544022,37.3176346],[107.2548676,37.3656158],[107.2778473,37.4365578],[107.2792892,37.4813461],[107.3404999,37.5181541],[107.3603516,37.5550423],[107.3586426,37.5731392],[107.3105164,37.5937614],[107.3004608,37.6114616],[107.340538,37.6186905],[107.3769913,37.6503906],[107.3752213,37.6891479],[107.4252472,37.6834526],[107.4706497,37.6973953],[107.4837112,37.713932],[107.4940414,37.7650757],[107.5792084,37.7829132],[107.624527,37.7816391],[107.6448517,37.8198624],[107.6517487,37.8743706],[107.6843796,37.8857117],[107.7524567,37.8333588],[107.8116074,37.8345337],[107.9661713,37.7918777],[108.0084534,37.723938],[108.0144119,37.665905],[108.0524368,37.649437],[108.0791168,37.6501122],[108.1253281,37.6209984],[108.1478577,37.6170464],[108.2524872,37.6666489],[108.3016434,37.6352386],[108.318718,37.635231],[108.3390503,37.6628723],[108.364212,37.6725349],[108.4372177,37.669426],[108.5235825,37.6904335],[108.5712967,37.6853752],[108.5730362,37.6691704],[108.5603104,37.6563187],[108.5826569,37.6504478],[108.6851196,37.6593132],[108.7122269,37.6897316],[108.7495117,37.6822777],[108.7838364,37.6869469],[108.7699203,37.7623138],[108.7886276,37.7731857],[108.7953873,37.7898216],[108.7789688,37.8225327],[108.7767487,37.9430046],[108.7857208,37.9645691],[108.8220825,37.9863777],[108.7973938,38.0055389],[108.7943573,38.023201],[108.842041,38.0162697],[108.8733368,37.9930305],[108.8793564,37.9673615],[108.9114838,37.9562569],[108.9378433,37.9213181],[108.971283,37.9427948],[109.0208435,38.0077095],[109.0462265,38.0231781],[109.0519791,38.0861511],[109.0097198,38.107338],[108.9295731,38.18116],[108.9655991,38.2742844],[108.9696732,38.3382454],[109.016777,38.3750114],[109.0549316,38.4516525],[109.1286621,38.480793],[109.1479874,38.5551033],[109.2144699,38.5747414],[109.2677002,38.6257782],[109.3211212,38.6139488],[109.3409271,38.6182365],[109.3245316,38.7057991],[109.3426208,38.7131882],[109.3946304,38.712925],[109.4209671,38.8035622],[109.5100403,38.8306084],[109.552063,38.807209],[109.5626373,38.8097534],[109.5895233,38.8694878],[109.6421967,38.9022293],[109.6753235,38.936451],[109.6746674,38.9498444],[109.7136002,39.0656357],[109.7639771,39.0669441],[109.8712463,39.0992241],[109.8942184,39.1172638],[109.8998871,39.1447449],[109.9199371,39.1655083],[109.9528198,39.1872482],[109.9869537,39.1963501],[110.0080872,39.2155342],[110.044548,39.2211227],[110.0797272,39.2284012],[110.2039185,39.2832031],[110.2075729,39.2944641],[110.1726074,39.3703308],[110.1636581,39.3803864],[110.1467438,39.380394],[110.1243973,39.3876801],[110.1079712,39.4288635],[110.1431427,39.4612236],[110.1623764,39.4656639],[110.1858673,39.4527664],[110.2388382,39.442894],[110.2805786,39.3771324],[110.3349762,39.3367157],[110.3528137,39.3368454],[110.3690033,39.3236542],[110.3841476,39.3129883],[110.4175873,39.3325005],[110.4164429,39.3454781],[110.4050064,39.3492851],[110.4138489,39.3613243],[110.4481964,39.3757019],[110.4954224,39.3656578],[110.5054321,39.3824463],[110.5162506,39.3835144],[110.5504303,39.3587189],[110.5663376,39.3377609],[110.56427,39.3079643],[110.5913925,39.2841225],[110.6085663,39.2517776],[110.6153336,39.2487526],[110.643898,39.2717857],[110.6892776,39.266861],[110.7144089,39.2857552],[110.7329102,39.3500557],[110.8721771,39.4964142],[110.9573669,39.5255203],[111.0237503,39.5654411],[111.0437469,39.556324],[111.0883026,39.5552406],[111.1257172,39.5823364],[111.1470795,39.5675659],[111.1508331,39.5433083]]]]},
  317 +"properties":{
  318 +"gid":53,
  319 +"name":"陕西省"}
  320 +},
  321 +{"type":"Feature",
  322 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.2504501,39.5707588],[121.2497101,39.565712],[121.2413635,39.5577774],[121.2370529,39.5533485],[121.2341537,39.5510063],[121.2290726,39.5522881],[121.2316132,39.5566788],[121.2376175,39.5636559],[121.2428207,39.5678711],[121.2456818,39.5713577],[121.2471466,39.5720711],[121.2492065,39.572567],[121.2504501,39.5707588]]]]},
  323 +"properties":{
  324 +"gid":54,
  325 +"name":"辽宁省"}
  326 +},
  327 +{"type":"Feature",
  328 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.9768066,39.5583229],[122.9771423,39.5532951],[122.9748077,39.5477943],[122.9766006,39.5459709],[122.9837112,39.5466881],[122.9867096,39.5412064],[122.9879532,39.5343513],[122.9932709,39.5352859],[122.9953384,39.5364418],[122.9956131,39.5414734],[122.9925919,39.5487823],[122.9931412,39.5542755],[123.0023422,39.5533943],[123.0139236,39.5504684],[123.0249329,39.5459328],[123.0294189,39.5386314],[123.0303421,39.5326843],[123.0247726,39.522831],[123.0150604,39.5127296],[123.0050507,39.5028534],[122.9982834,39.4959641],[122.9920578,39.4954834],[122.986412,39.4984322],[122.9793167,39.4961166],[122.9698334,39.4972191],[122.9668427,39.5017815],[122.9676666,39.508419],[122.9641037,39.5120659],[122.9637527,39.5180092],[122.9563293,39.5200348],[122.9477463,39.5186272],[122.9444809,39.5192986],[122.9447327,39.526619],[122.950882,39.5353394],[122.9591599,39.5383492],[122.9656372,39.5436401],[122.9659195,39.5470695],[122.9682465,39.5530281],[122.9741364,39.5580826],[122.9768066,39.5583229]]]]},
  329 +"properties":{
  330 +"gid":55,
  331 +"name":"辽宁省"}
  332 +},
  333 +{"type":"Feature",
  334 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.0962677,39.5095825],[123.1001205,39.5107384],[123.1033783,39.5102921],[123.1069489,39.5087013],[123.1069565,39.5052719],[123.1054916,39.503437],[123.0989685,39.5038719],[123.0971832,39.506382],[123.0974731,39.5079842],[123.0962677,39.5095825]]]]},
  335 +"properties":{
  336 +"gid":56,
  337 +"name":"辽宁省"}
  338 +},
  339 +{"type":"Feature",
  340 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.4035568,39.5078316],[121.4062881,39.5055923],[121.4054718,39.5030594],[121.4043808,39.4998398],[121.4017105,39.4997902],[121.3989487,39.5031776],[121.4006271,39.5064087],[121.401207,39.5071068],[121.4035568,39.5078316]]]]},
  341 +"properties":{
  342 +"gid":57,
  343 +"name":"辽宁省"}
  344 +},
  345 +{"type":"Feature",
  346 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.0580673,39.5057945],[123.062233,39.503521],[123.0581284,39.4961853],[123.0587463,39.4916153],[123.0602493,39.4881897],[123.0608521,39.4854469],[123.059082,39.4842949],[123.0528412,39.4874763],[123.0516281,39.4922752],[123.0527725,39.4989128],[123.0542297,39.5037231],[123.0571671,39.5069351],[123.0580673,39.5057945]]]]},
  347 +"properties":{
  348 +"gid":58,
  349 +"name":"辽宁省"}
  350 +},
  351 +{"type":"Feature",
  352 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.0843124,39.4750023],[123.0890579,39.4736481],[123.0899811,39.4672432],[123.0849686,39.4637947],[123.084053,39.4685974],[123.0834427,39.4733963],[123.0840225,39.4743156],[123.0843124,39.4750023]]]]},
  353 +"properties":{
  354 +"gid":59,
  355 +"name":"辽宁省"}
  356 +},
  357 +{"type":"Feature",
  358 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.0565872,39.4538612],[123.0663834,39.4525223],[123.0731964,39.450489],[123.0817871,39.4491463],[123.0880127,39.4487076],[123.0927734,39.4459763],[123.0948563,39.4409523],[123.0942764,39.4393501],[123.0868912,39.4361229],[123.0827637,39.4345055],[123.082489,39.4301605],[123.0792465,39.4267197],[123.0733337,39.4271545],[123.0700531,39.431488],[123.0673828,39.4328537],[123.0602722,39.4326019],[123.0560989,39.4385338],[123.0545731,39.4456215],[123.0521774,39.4501877],[123.0551224,39.4531708],[123.0565872,39.4538612]]]]},
  359 +"properties":{
  360 +"gid":60,
  361 +"name":"辽宁省"}
  362 +},
  363 +{"type":"Feature",
  364 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.4580612,39.4245605],[121.4628525,39.4225807],[121.4686127,39.4176445],[121.4734726,39.4131508],[121.4770966,39.4102364],[121.4780731,39.4077339],[121.477211,39.4063454],[121.4703903,39.4069176],[121.465889,39.4091301],[121.4593964,39.4085655],[121.4564285,39.4087448],[121.4571991,39.4128761],[121.4582901,39.4163284],[121.4558563,39.4183464],[121.4536819,39.4221992],[121.4548264,39.4235916],[121.4580612,39.4245605]]]]},
  365 +"properties":{
  366 +"gid":61,
  367 +"name":"辽宁省"}
  368 +},
  369 +{"type":"Feature",
  370 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.4320374,39.3978844],[122.4311829,39.3962746],[122.4303665,39.3910065],[122.4280472,39.3877831],[122.4227066,39.3888779],[122.4226608,39.3916245],[122.42379,39.3952942],[122.4246674,39.3959923],[122.4279327,39.3962479],[122.4320374,39.3978844]]]]},
  371 +"properties":{
  372 +"gid":62,
  373 +"name":"辽宁省"}
  374 +},
  375 +{"type":"Feature",
  376 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.7429886,39.3816566],[121.7466888,39.3753052],[121.7491531,39.3712234],[121.7492065,39.3691635],[121.7469025,39.3666115],[121.7416229,39.364933],[121.7356567,39.3664513],[121.7322922,39.3714333],[121.731308,39.375309],[121.732399,39.3789864],[121.7353134,39.3810883],[121.7373734,39.3813477],[121.740921,39.3813972],[121.7429886,39.3816566]]]]},
  377 +"properties":{
  378 +"gid":63,
  379 +"name":"辽宁省"}
  380 +},
  381 +{"type":"Feature",
  382 +"geometry":{"type":"MultiPolygon","coordinates":[[[[106.8099289,39.307766],[106.7961807,39.3003807],[106.8025436,39.2789612],[106.7884827,39.2520638],[106.7930679,39.2272835],[106.8002472,39.2168999],[106.8529816,39.1392136],[106.8438416,39.0982246],[106.9230194,39.08255],[106.9670792,39.0429344],[106.9643631,38.9577408],[106.7994766,38.8175812],[106.7381287,38.7341576],[106.6996231,38.7251701],[106.6897278,38.7095451],[106.6762314,38.6676636],[106.6894073,38.5803146],[106.6153488,38.4388771],[106.5056305,38.3630028],[106.490448,38.3373451],[106.4946976,38.3128967],[106.5575638,38.2629089],[106.7174377,38.2091484],[106.809967,38.1579361],[106.8286438,38.1629753],[106.9796829,38.1249542],[107.0171432,38.1232719],[107.0741806,38.1417542],[107.1071472,38.1360435],[107.1362534,38.1580162],[107.1672974,38.1577568],[107.2585602,38.0981369],[107.3286285,38.0905914],[107.356987,38.0452423],[107.4282303,37.9968071],[107.4009171,37.96278],[107.4088593,37.9487],[107.492897,37.9229622],[107.5228271,37.8971176],[107.5687866,37.8965683],[107.6517487,37.8743706],[107.6448517,37.8198624],[107.624527,37.7816391],[107.5792084,37.7829132],[107.4940414,37.7650757],[107.4837112,37.713932],[107.4706497,37.6973953],[107.4252472,37.6834526],[107.3752213,37.6891479],[107.3769913,37.6503906],[107.340538,37.6186905],[107.3004608,37.6114616],[107.3105164,37.5937614],[107.3586426,37.5731392],[107.3603516,37.5550423],[107.3404999,37.5181541],[107.2792892,37.4813461],[107.2778473,37.4365578],[107.2548676,37.3656158],[107.2544022,37.3176346],[107.3049927,37.250267],[107.2972107,37.2333527],[107.2730408,37.236763],[107.272789,37.2266579],[107.3098984,37.1941299],[107.3339996,37.146183],[107.3274002,37.119194],[107.3106232,37.1073799],[107.2692108,37.1327057],[107.2800522,37.09758],[107.2713928,37.0822525],[107.2601776,37.1019897],[107.2332687,37.1032677],[107.1708527,37.1405144],[107.081871,37.124115],[107.0274429,37.1348343],[107.0239105,37.1131744],[107.0119934,37.1108398],[106.9586029,37.116272],[106.8936462,37.148262],[106.8832626,37.1429596],[106.8960114,37.1228371],[106.8878403,37.1040459],[106.7811966,37.1556358],[106.7582932,37.1415215],[106.7607574,37.1073761],[106.7482529,37.0905342],[106.7176285,37.1205292],[106.6979904,37.125309],[106.6681519,37.1132965],[106.6535416,37.1280746],[106.6377411,37.122612],[106.6149979,37.1403885],[106.6046677,37.1341476],[106.6028595,37.1083832],[106.636467,37.0764351],[106.6430283,37.0554848],[106.6327972,36.9620094],[106.5965881,36.9681778],[106.5888138,36.942028],[106.5756989,36.9416809],[106.5447922,36.9849358],[106.5348969,36.9894905],[106.5333405,36.9788895],[106.5511475,36.9419441],[106.5921402,36.8955116],[106.6082077,36.8860664],[106.6244202,36.8940659],[106.6383667,36.8875427],[106.6169891,36.859436],[106.6525574,36.8181229],[106.6324234,36.7877541],[106.6349411,36.7605019],[106.6231766,36.7487183],[106.6424713,36.7216721],[106.6187363,36.7247238],[106.5784378,36.750061],[106.5161667,36.7281837],[106.5144577,36.6941605],[106.4948273,36.6940842],[106.4746933,36.6324654],[106.4372101,36.6245575],[106.4526367,36.5762939],[106.4464493,36.5618896],[106.4269791,36.5590515],[106.3565369,36.5790977],[106.3531265,36.5725708],[106.4413834,36.5011444],[106.4831085,36.5004616],[106.5106201,36.4800949],[106.5165024,36.4547768],[106.4798965,36.4152069],[106.4845734,36.3914604],[106.5131378,36.3858185],[106.4997482,36.3742027],[106.49646,36.3445015],[106.5061798,36.2947273],[106.4704895,36.309124],[106.4678268,36.2984886],[106.4961166,36.2648354],[106.5083389,36.2768822],[106.5164413,36.2725105],[106.5448074,36.2567558],[106.5501709,36.2844467],[106.5642471,36.2928581],[106.5893784,36.2731018],[106.6028137,36.2766724],[106.6182632,36.2651482],[106.6341019,36.2793388],[106.6457672,36.2631149],[106.6752167,36.269165],[106.7108688,36.2326698],[106.7580872,36.2175751],[106.787468,36.2251968],[106.8131638,36.2184906],[106.8239975,36.2306938],[106.8361511,36.2080421],[106.8560791,36.2039413],[106.8769531,36.1817245],[106.8893204,36.1448441],[106.910553,36.1201096],[106.9446106,36.1303291],[106.9304276,36.1086502],[106.9476624,36.0923042],[106.9336472,36.0345993],[106.9434204,35.9882431],[106.9209824,35.9619141],[106.8921432,35.9578552],[106.8917313,35.9498482],[106.9331512,35.9462166],[106.9349136,35.9322319],[106.8468094,35.8893776],[106.8497696,35.879734],[106.8728333,35.875843],[106.8814926,35.8523941],[106.9233475,35.807312],[106.9173508,35.8021088],[106.894928,35.8096657],[106.9128723,35.7861214],[106.9073029,35.7712936],[106.8899994,35.7636833],[106.8735962,35.7780457],[106.8671722,35.7432976],[106.8317566,35.7473068],[106.8129883,35.7140503],[106.7537766,35.7267342],[106.7488022,35.6912804],[106.7233887,35.6839485],[106.6825333,35.721859],[106.6409836,35.708004],[106.6181564,35.7287941],[106.540947,35.7444954],[106.4859238,35.7309151],[106.4391098,35.6941299],[106.4700165,35.6082687],[106.47789,35.5809593],[106.4522018,35.5687637],[106.4433517,35.5266762],[106.481041,35.4787827],[106.4712601,35.4554863],[106.504303,35.4490738],[106.4994812,35.3918419],[106.4985733,35.3590889],[106.4706268,35.3123207],[106.3912964,35.2729759],[106.3618469,35.2353554],[106.3234329,35.2575684],[106.2694168,35.3277245],[106.2493362,35.3395081],[106.2363968,35.4080658],[106.1915588,35.4096489],[106.1749191,35.4362946],[106.1286621,35.3931961],[106.1088486,35.3609772],[106.0836868,35.4210854],[106.0598602,35.4225464],[106.0562592,35.4296608],[106.0841064,35.4467392],[106.0791397,35.4602699],[106.0518417,35.4438782],[106.0224686,35.4584045],[105.9977036,35.4392395],[105.9213562,35.4252434],[105.9095383,35.4126701],[105.8989029,35.4170456],[105.8883286,35.4427223],[105.9013138,35.4644547],[105.9375,35.4645996],[105.9925537,35.4809418],[106.0497284,35.4679337],[106.1134186,35.5164871],[106.1027832,35.5208817],[106.0644913,35.5010948],[106.0176086,35.4982719],[106.0131607,35.506073],[106.0267029,35.5200043],[106.0191498,35.5266685],[105.9955673,35.5251389],[105.9681168,35.5403328],[105.9335785,35.5392761],[105.891777,35.5522003],[105.8653336,35.5341568],[105.8441467,35.4922829],[105.8140488,35.5745583],[105.7915573,35.5697784],[105.7478485,35.6302948],[105.7127304,35.6472702],[105.7158585,35.6761246],[105.6914062,35.6885071],[105.7074738,35.7171249],[105.7322083,35.7022209],[105.7482529,35.7061005],[105.7555923,35.7221222],[105.7482986,35.7342682],[105.7283096,35.7301636],[105.6725998,35.746685],[105.6427612,35.7434845],[105.5887299,35.7233276],[105.5628586,35.688282],[105.5513,35.7265205],[105.4840393,35.7276077],[105.4676666,35.7514038],[105.4519119,35.7534447],[105.4515991,35.769474],[105.4304428,35.7861595],[105.4196625,35.8204956],[105.403038,35.8222961],[105.3842163,35.8014221],[105.3673019,35.8071175],[105.3714371,35.8394127],[105.3925171,35.8563957],[105.3301163,35.8919907],[105.334137,36.0011673],[105.3217468,36.0074348],[105.3649063,36.0568275],[105.4189911,36.0987968],[105.4912033,36.1048889],[105.5046692,36.1476288],[105.4877167,36.1885796],[105.4573364,36.2469482],[105.4717331,36.2936325],[105.4483185,36.3226318],[105.4307327,36.328186],[105.3984375,36.3685646],[105.3908691,36.4222565],[105.3674469,36.4500961],[105.3502426,36.5029678],[105.318161,36.5327682],[105.2822495,36.5203857],[105.2446213,36.5423813],[105.264328,36.5743713],[105.2220993,36.6255875],[105.2240067,36.6511574],[105.1991272,36.7060165],[105.2075424,36.7232094],[105.2324295,36.7399139],[105.2960205,36.7528954],[105.3302002,36.7923088],[105.3081284,36.8093987],[105.2920532,36.8455429],[105.2708282,36.8525543],[105.2725372,36.8719139],[105.2241669,36.8987846],[105.1965637,36.8834839],[105.1871033,36.8888626],[105.1697693,36.9828339],[105.1605072,36.9944229],[105.1326065,36.9926491],[105.0339584,37.0170135],[104.9771271,37.0434532],[104.9428024,37.084568],[104.9215698,37.0945053],[104.912178,37.1251373],[104.8937378,37.1304855],[104.8850021,37.1567879],[104.8488464,37.1972046],[104.8512802,37.2172966],[104.8116608,37.2271423],[104.7850037,37.2490044],[104.7086334,37.1986771],[104.6667328,37.1952782],[104.6262207,37.2263908],[104.5963364,37.2736549],[104.604187,37.2774887],[104.6129303,37.2788963],[104.6154633,37.2808685],[104.615181,37.2859383],[104.6137772,37.2941093],[104.6154633,37.2977715],[104.6202469,37.2994614],[104.6295471,37.2997437],[104.6444778,37.2926216],[104.658287,37.3011513],[104.6588516,37.3039703],[104.6595764,37.3077164],[104.6633606,37.31073],[104.6692734,37.3169289],[104.6822205,37.3221283],[104.7143936,37.3278313],[104.7168808,37.3421822],[104.6846924,37.3511543],[104.672348,37.3639526],[104.7354584,37.4215546],[104.6927872,37.4190559],[104.6676636,37.4081039],[104.6377182,37.4173889],[104.5418015,37.4203453],[104.4742126,37.4414902],[104.4569016,37.4340553],[104.4537582,37.4132309],[104.4170303,37.4081383],[104.2938538,37.4301186],[104.3106308,37.4537811],[104.3416214,37.4564476],[104.3750534,37.4818306],[104.3961029,37.4697571],[104.4047012,37.4850349],[104.4094467,37.5155869],[104.4809265,37.5183182],[104.5661926,37.5383835],[104.6873169,37.5052261],[104.7511368,37.5148163],[104.8022614,37.5385551],[104.9824066,37.5438347],[105.0277634,37.5644798],[105.1070633,37.6330681],[105.2182999,37.6763954],[105.3108292,37.701458],[105.3684464,37.707489],[105.4073563,37.7082176],[105.4478607,37.6959],[105.6001129,37.7015038],[105.6363297,37.7780838],[105.6794128,37.7715149],[105.7633286,37.8057976],[105.8044968,37.8749046],[105.7956238,37.9396019],[105.8359909,38.0036163],[105.7717972,38.0954399],[105.7637787,38.1211243],[105.7710571,38.1863556],[105.789917,38.2140732],[105.8407364,38.2421379],[105.859108,38.2689095],[105.8562088,38.3025703],[105.8265228,38.3477631],[105.8224869,38.4250183],[105.8361282,38.4426804],[105.830368,38.4693604],[105.8551331,38.5257263],[105.8489532,38.5716782],[105.8672867,38.5949974],[105.8464279,38.6312981],[105.8825073,38.6960487],[105.9024963,38.7791061],[105.9808731,38.8557091],[105.9838333,38.8725548],[105.9667664,38.9085312],[106.0192871,38.9544525],[106.075531,38.9800262],[106.0930328,39.0181961],[106.0829163,39.0445213],[106.0918732,39.0838127],[106.1414413,39.1523056],[106.1662369,39.1624413],[106.1850967,39.1434822],[106.2465591,39.1307907],[106.280571,39.1455269],[106.2910309,39.1671638],[106.2754669,39.2612839],[106.2826614,39.2713547],[106.3981476,39.2906151],[106.4572906,39.2857857],[106.506279,39.3059387],[106.5522537,39.3454208],[106.590683,39.3640785],[106.7227631,39.3719711],[106.7492371,39.3808784],[106.7979431,39.3652992],[106.8099289,39.307766]]]]},
  383 +"properties":{
  384 +"gid":64,
  385 +"name":"宁夏回族自治区"}
  386 +},
  387 +{"type":"Feature",
  388 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.4789429,39.3548927],[121.4839401,39.3558884],[121.4865875,39.3563919],[121.4883728,39.3561935],[121.4884262,39.3541336],[121.4875565,39.3529739],[121.4858475,39.3511162],[121.4841003,39.3499451],[121.4808197,39.3510323],[121.4810791,39.3521805],[121.4789429,39.3548927]]]]},
  389 +"properties":{
  390 +"gid":65,
  391 +"name":"辽宁省"}
  392 +},
  393 +{"type":"Feature",
  394 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.3258896,39.337883],[122.3302536,39.3427315],[122.3385162,39.3432693],[122.3414993,39.3416939],[122.3421326,39.338726],[122.3374634,39.335022],[122.3307037,39.3331261],[122.3271484,39.3333206],[122.3259277,39.335598],[122.3258896,39.337883]]]]},
  395 +"properties":{
  396 +"gid":66,
  397 +"name":"辽宁省"}
  398 +},
  399 +{"type":"Feature",
  400 +"geometry":{"type":"MultiPolygon","coordinates":[[[[96.9893112,38.8206291],[96.9874268,38.861702],[96.9577484,38.8790665],[96.9931946,38.9296951],[96.9758453,38.9383736],[96.9902191,38.9541817],[96.9819412,38.983242],[96.9986725,39.0050049],[96.9977112,39.0562744],[96.950264,39.0871201],[96.9454956,39.1125221],[96.9598923,39.132225],[96.9863892,39.1420937],[96.9928207,39.1766624],[97.0258102,39.202549],[97.0750504,39.2073784],[97.1614075,39.1907349],[97.2000732,39.1931572],[97.3143921,39.1639442],[97.3465347,39.1666298],[97.3706055,39.1400337],[97.400383,39.1459122],[97.4259262,39.1245613],[97.4641647,39.1132393],[97.4999008,39.0776482],[97.6842117,39.0066261],[97.7009048,38.9628258],[97.8208313,38.9328651],[97.8754044,38.8979607],[97.9432831,38.8766747],[97.9657059,38.8609467],[98.015274,38.85783],[98.0679092,38.8210182],[98.0874863,38.7960739],[98.1296768,38.853466],[98.1955719,38.8828735],[98.2214508,38.9236107],[98.2695312,38.954052],[98.2868958,38.9916534],[98.2804031,39.0265121],[98.2893906,39.0364952],[98.3162231,39.0398865],[98.3831177,39.0286598],[98.4002686,39.0007782],[98.4299088,38.9972458],[98.4300079,38.9704628],[98.4567184,38.9523048],[98.5455017,38.9535561],[98.5812378,38.9329758],[98.6301498,38.9813499],[98.6681061,38.9961967],[98.7541122,39.0795097],[98.7784653,39.0885582],[98.8181076,39.0838737],[98.8318176,39.0660515],[98.873497,39.0489578],[98.9947891,38.9596443],[99.0050735,38.9594841],[99.0218582,38.9827957],[99.0551682,38.9749298],[99.079277,38.9532394],[99.1059723,38.9511909],[99.0603714,38.9061584],[99.2179718,38.7898979],[99.2859344,38.7676048],[99.3606262,38.7176666],[99.3725281,38.6858406],[99.4128036,38.6628532],[99.446373,38.6049461],[99.5057297,38.61269],[99.5346451,38.5848503],[99.5226517,38.5583],[99.5304489,38.5466919],[99.6044388,38.4874382],[99.6407242,38.4724693],[99.669693,38.4406967],[99.7291565,38.4137421],[99.7665482,38.406723],[99.8293152,38.3684158],[99.9358978,38.341404],[99.9649963,38.3175659],[99.9970016,38.3161011],[100.0484238,38.2827606],[100.0821228,38.2805405],[100.1519165,38.221489],[100.1820374,38.2212944],[100.1807709,38.2374077],[100.1740265,38.2508965],[100.1691208,38.2600937],[100.158699,38.2925873],[100.1574707,38.3042374],[100.1605377,38.3275375],[100.1525726,38.3306007],[100.1409073,38.3312149],[100.1200714,38.3422508],[100.112709,38.3539009],[100.107193,38.3778114],[100.0936966,38.3943672],[100.0887985,38.4060173],[100.0765381,38.4103088],[100.1177521,38.436409],[100.1015778,38.4713173],[100.1111526,38.4910049],[100.2174835,38.4561882],[100.2452316,38.4222374],[100.258812,38.3717079],[100.2641525,38.3669853],[100.3016129,38.3831596],[100.3278885,38.3503761],[100.3311768,38.319355],[100.3944473,38.2935562],[100.4299164,38.2980614],[100.4532928,38.2673874],[100.4852676,38.2848053],[100.5068665,38.2796021],[100.5985565,38.2407265],[100.6185913,38.1725388],[100.6135101,38.1332817],[100.6303787,38.102993],[100.7172623,38.084549],[100.8209763,38.0492401],[100.8627625,38.0311813],[100.912941,37.990612],[100.9506531,38.0068016],[101.0263672,37.978405],[101.1251984,37.9225807],[101.1650085,37.8765221],[101.2057419,37.8480568],[101.2733994,37.8351326],[101.3457031,37.797699],[101.4020081,37.7550774],[101.4655304,37.7231598],[101.5385971,37.6582909],[101.5961533,37.6398239],[101.6439438,37.6038208],[101.7148666,37.5923309],[101.7374725,37.5705719],[101.7467117,37.5337563],[101.792099,37.525753],[101.8073578,37.5070267],[101.8268814,37.5055504],[101.8525467,37.5368385],[101.8407593,37.6097679],[101.8571396,37.6405716],[101.875267,37.6886635],[101.9173889,37.709404],[101.9770966,37.7683754],[101.9652634,37.7192993],[101.9919968,37.6860847],[101.9975662,37.6085815],[102.0611725,37.5890465],[102.0705109,37.5819206],[102.0706329,37.5588112],[102.0123672,37.474659],[102.0838165,37.4551468],[102.1072311,37.4601212],[102.1339188,37.4328423],[102.1987381,37.4068527],[102.1918869,37.4234467],[102.2074509,37.4232941],[102.2429123,37.3855057],[102.2938004,37.365715],[102.3181381,37.3377876],[102.3458405,37.3310165],[102.359642,37.2812462],[102.3829117,37.2930641],[102.428627,37.2899284],[102.4799271,37.2229156],[102.5377884,37.209446],[102.5670013,37.1649742],[102.5897827,37.1668282],[102.593399,37.1527786],[102.5594101,37.1242409],[102.5305099,37.1176338],[102.5201263,37.0972061],[102.4904785,37.0926132],[102.494339,37.0286446],[102.4529266,36.9800491],[102.4658737,36.9645157],[102.490509,36.9641991],[102.4963303,36.9471855],[102.5113907,36.9445076],[102.5216064,36.933754],[102.5506134,36.923439],[102.5544128,36.9165459],[102.5565567,36.9031029],[102.5710831,36.8864365],[102.5759201,36.8783684],[102.6252365,36.8635063],[102.6409836,36.8509445],[102.64814,36.8339462],[102.6630173,36.8256721],[102.6773605,36.8170776],[102.7148132,36.7827492],[102.7173386,36.7647247],[102.6707764,36.7377586],[102.6250916,36.733963],[102.5998993,36.7302246],[102.5957565,36.7166252],[102.6209412,36.6610985],[102.6812363,36.6224251],[102.7178421,36.617733],[102.7374573,36.5471306],[102.7802734,36.505291],[102.7819595,36.4867592],[102.767189,36.4711533],[102.7845306,36.4275589],[102.7967834,36.4022942],[102.8272934,36.4008904],[102.8236618,36.3532867],[102.8409119,36.3394508],[102.8956833,36.3292084],[102.9069366,36.3204956],[102.9191132,36.3046761],[102.9422379,36.2912865],[102.945282,36.2876358],[102.9653625,36.2815514],[102.9750977,36.2766838],[102.9915314,36.2651215],[103.021347,36.2572098],[103.0237808,36.250515],[103.0207367,36.2444305],[103.0243912,36.2377357],[103.0298004,36.232193],[103.0572433,36.2162971],[103.0595932,36.2056236],[102.9907532,36.1997986],[102.9590836,36.1547165],[102.9406509,36.1455879],[102.9327164,36.1076279],[102.8796234,36.0879402],[102.8890228,36.0682526],[102.9666519,36.0406227],[102.956871,36.0170517],[102.9686508,36.0002747],[102.9371033,35.9441223],[102.9535904,35.8688927],[102.9486465,35.8383217],[102.9287796,35.8340034],[102.9048233,35.8515854],[102.8547974,35.84729],[102.8289032,35.8634377],[102.8042984,35.8573952],[102.7776031,35.8634377],[102.7225571,35.8225174],[102.6884003,35.8025169],[102.6839218,35.7614059],[102.7567673,35.6146355],[102.7412033,35.6016808],[102.7387619,35.5658836],[102.7112732,35.5244637],[102.5776062,35.5405388],[102.535141,35.5653915],[102.4964828,35.5323563],[102.4510727,35.4556007],[102.4413071,35.439312],[102.4135132,35.425312],[102.3662109,35.4373817],[102.3084869,35.4360962],[102.2822189,35.4051476],[102.2823029,35.3817787],[102.3115768,35.3426819],[102.3029633,35.327095],[102.2785492,35.3209457],[102.2768478,35.3073769],[102.3469772,35.28265],[102.3484802,35.2510643],[102.3866119,35.2344093],[102.3936234,35.1754608],[102.3368225,35.1620636],[102.3264084,35.1352005],[102.3027878,35.1173859],[102.279129,35.0585365],[102.2185287,35.0587311],[102.202713,35.0424805],[102.122673,35.0132103],[102.0559769,34.9466743],[101.9998779,34.9507866],[101.976387,34.9246063],[101.9857178,34.8968124],[101.9163666,34.8804245],[101.9242783,34.8396149],[101.9149017,34.792469],[101.9143372,34.7429886],[101.8702164,34.7461853],[101.8417282,34.7752419],[101.8202362,34.7362518],[101.7276611,34.7060242],[101.7815323,34.6464386],[101.8262711,34.6269836],[101.8514023,34.6358452],[101.8848801,34.6758347],[101.9115524,34.6752396],[101.9271317,34.595459],[101.9537125,34.5813332],[101.9766235,34.5537949],[102.0006485,34.5390282],[102.0766602,34.5438766],[102.1265564,34.5126381],[102.1524811,34.5097008],[102.1634827,34.4572792],[102.2081299,34.3947792],[102.2386169,34.3871384],[102.2545929,34.3616638],[102.2342529,34.3507919],[102.1813126,34.3589592],[102.1450272,34.2703857],[102.128273,34.2675781],[102.0761795,34.2870636],[102.0571518,34.2853203],[102.0519028,34.2305374],[102.0425415,34.223587],[102.012413,34.2271118],[102.0138474,34.1994095],[102.001358,34.1801567],[101.9847794,34.1689339],[101.9652786,34.177803],[101.9485474,34.1077347],[101.8991089,34.1326675],[101.8736267,34.1313972],[101.8616333,34.1537704],[101.8481293,34.154644],[101.8367996,34.1107559],[101.7713089,34.0655289],[101.7415695,34.0673409],[101.735527,34.0808182],[101.7271805,34.0988007],[101.7226868,34.1007271],[101.7188263,34.084671],[101.7066269,34.091095],[101.7072678,34.1142159],[101.7008514,34.1199951],[101.6944275,34.1180687],[101.6957092,34.1077919],[101.690567,34.1065063],[101.6635971,34.1193504],[101.6507568,34.1212769],[101.643692,34.1305046],[101.6554031,34.152626],[101.6507568,34.1585274],[101.6391983,34.1636658],[101.6366272,34.1688042],[101.6167221,34.1835747],[101.5923233,34.1816483],[101.5773468,34.1972771],[101.5582733,34.1938477],[101.5512085,34.2060509],[101.5370483,34.2126312],[101.5319366,34.2131157],[101.5184631,34.2066956],[101.5088272,34.2015572],[101.4940567,34.2002716],[101.4857025,34.20541],[101.4857025,34.218895],[101.4760666,34.2233925],[101.4561615,34.2221069],[101.4330368,34.2323837],[101.4144211,34.2304573],[101.3977203,34.238163],[101.353302,34.2531929],[101.3489227,34.2542191],[101.3196106,34.2474403],[101.3180771,34.2529335],[101.3264389,34.257431],[101.3270798,34.2632103],[101.3229218,34.2691231],[101.3212967,34.270916],[101.2988205,34.2696304],[101.2885437,34.2747688],[101.2660675,34.2818336],[101.2565308,34.2995071],[101.2263336,34.2989082],[101.2161179,34.3071899],[101.1900787,34.2991447],[101.1456223,34.3252411],[101.0507126,34.3271179],[100.9851227,34.3768044],[100.897377,34.3797684],[100.8719101,34.3377342],[100.8158112,34.3153992],[100.8023682,34.2410011],[100.7857666,34.2058563],[100.7664337,34.1801605],[100.8165207,34.1474304],[100.8760376,34.0663452],[100.8742828,34.0464516],[100.9054337,34.0283203],[100.9272079,33.9972572],[100.9368134,33.9682426],[100.9648438,33.9490242],[100.9883728,33.9033241],[101.0088577,33.8899994],[101.0398788,33.8869591],[101.0570374,33.8574409],[101.1066284,33.8580551],[101.114563,33.84869],[101.1461334,33.8458366],[101.1493835,33.8214645],[101.1811905,33.7952232],[101.185463,33.745842],[101.1666565,33.7201958],[101.1646729,33.6645584],[101.1736603,33.6549339],[101.1917496,33.668911],[101.2406082,33.6823196],[101.2772522,33.6627998],[101.3965378,33.6492958],[101.4240189,33.6636696],[101.4321289,33.6919861],[101.4553299,33.6843529],[101.5005875,33.7028008],[101.5183411,33.6929054],[101.5501709,33.6915436],[101.5575104,33.6691017],[101.5889282,33.6711807],[101.5861969,33.6446724],[101.6173706,33.6077843],[101.6169815,33.524826],[101.6272125,33.5002327],[101.7336578,33.5007477],[101.774231,33.5480423],[101.7742767,33.4500122],[101.7557068,33.4391136],[101.6970367,33.4321632],[101.6567307,33.3588638],[101.6502304,33.3210106],[101.678421,33.3011513],[101.7165833,33.297493],[101.7342682,33.2758751],[101.7225571,33.2253418],[101.6810303,33.1997681],[101.6822662,33.1836853],[101.6622086,33.1611328],[101.6470871,33.1125259],[101.6316605,33.1090851],[101.5936127,33.1335716],[101.4911499,33.2224503],[101.4084778,33.2265816],[101.3889465,33.2094688],[101.3878326,33.1512871],[101.3660431,33.1674652],[101.3366013,33.2127228],[101.3114014,33.1893311],[101.2323837,33.1804161],[101.1647034,33.1597023],[101.1521301,33.1366463],[101.1643219,33.1031075],[101.145401,33.0852547],[101.1443481,33.0554886],[101.1309814,33.0540085],[101.1160965,33.0358086],[101.1339798,32.9549217],[101.119957,32.9126511],[101.1861801,32.8905716],[101.2217636,32.8580246],[101.2370834,32.8152313],[101.2304001,32.7434502],[101.2169037,32.7160759],[101.1546173,32.6606255],[101.1199417,32.6553192],[101.1168137,32.6367607],[101.1080017,32.6396942],[101.1065369,32.6470299],[101.1133804,32.6734314],[101.1094666,32.6748962],[101.093338,32.6729393],[101.0742722,32.6822281],[101.0659637,32.6817398],[101.0625381,32.6836967],[101.0478668,32.6817398],[101.0258713,32.6597404],[101.0011063,32.6344337],[100.9565201,32.624279],[100.9306412,32.6047325],[100.8822174,32.6349678],[100.8440323,32.6463928],[100.7747803,32.6459045],[100.763443,32.6654053],[100.7410583,32.6530724],[100.6799927,32.6812134],[100.6807327,32.6695099],[100.7082825,32.6466904],[100.7170334,32.612587],[100.67379,32.627964],[100.6614227,32.6225014],[100.6560287,32.5598412],[100.6650772,32.5150108],[100.6266327,32.4978485],[100.6348038,32.4673233],[100.6192169,32.4393654],[100.5358124,32.3934746],[100.5092392,32.3956718],[100.5063629,32.4108963],[100.4682388,32.4198189],[100.4517899,32.4613533],[100.4874573,32.5107574],[100.5473328,32.5344276],[100.5695877,32.5537109],[100.5710831,32.5673599],[100.5667038,32.5707474],[100.5428238,32.5713768],[100.5333862,32.5808067],[100.5371399,32.5948639],[100.5271301,32.5959854],[100.5321274,32.6072121],[100.5104828,32.6116753],[100.5120087,32.6222992],[100.5044632,32.6298447],[100.5113831,32.6317291],[100.5120087,32.6361313],[100.5052032,32.6466064],[100.4969177,32.6581345],[100.48246,32.6688232],[100.4715195,32.6756897],[100.4667435,32.695858],[100.4541702,32.7021446],[100.44664,32.6995506],[100.4341507,32.6997948],[100.3909302,32.7501221],[100.3328934,32.7234993],[100.2608566,32.7438469],[100.2362366,32.7156525],[100.2123871,32.607029],[100.1887665,32.6289825],[100.1184464,32.6398201],[100.0874481,32.6724129],[100.1350098,32.7318611],[100.1157227,32.7901497],[100.109169,32.8592186],[100.0822372,32.8713531],[100.0718384,32.8928299],[100.0262527,32.8993034],[100.0267334,32.945343],[99.9644089,32.9451752],[99.9185944,33.0222206],[99.8968124,33.0392685],[99.8901901,33.0057182],[99.8496628,32.9379082],[99.8351059,32.9345932],[99.7865982,32.9511108],[99.774147,32.9374161],[99.7948227,32.8635483],[99.7695694,32.7760925],[99.7341614,32.7170753],[99.7139359,32.7385292],[99.7052155,32.7631454],[99.6646576,32.7707214],[99.6489716,32.7907944],[99.6146393,32.7805557],[99.5677795,32.8311195],[99.515213,32.8484344],[99.501152,32.856102],[99.4768677,32.8599358],[99.4500351,32.8637695],[99.4193649,32.8835793],[99.403389,32.889328],[99.3707962,32.9021072],[99.3426437,32.8992805],[99.3135529,32.8821716],[99.2709045,32.8883324],[99.2449951,32.9254646],[99.2453308,32.9508896],[99.2300186,32.9668427],[99.233284,32.9876595],[99.2111359,33.0025291],[99.1870575,33.0382614],[99.1691818,33.0475883],[99.1296539,33.0490875],[99.0925827,33.0741463],[99.0328064,33.0954857],[99.0157928,33.0862274],[98.9948349,33.0905113],[98.9728546,33.1021309],[98.9672699,33.1170654],[98.9173737,33.1215477],[98.8446121,33.1653328],[98.8041534,33.2256012],[98.8091202,33.2642822],[98.7906494,33.2790565],[98.7614365,33.285183],[98.7817535,33.363636],[98.7334366,33.4170532],[98.7418518,33.4800034],[98.7257462,33.4890251],[98.7261734,33.5098686],[98.6501999,33.5466805],[98.6535339,33.5956802],[98.6234894,33.6178131],[98.6211548,33.640274],[98.6621323,33.6508446],[98.615387,33.684967],[98.6037903,33.7209816],[98.5687103,33.7387733],[98.5548172,33.761734],[98.5281677,33.7673378],[98.5244675,33.796669],[98.4680328,33.84795],[98.4328079,33.8494377],[98.4078369,33.8712692],[98.3557816,33.8640747],[98.3356552,33.8510666],[98.2607727,33.8447952],[98.256134,33.8645058],[98.2716141,33.8958588],[98.2463226,33.9201813],[98.1300888,33.944809],[98.0804901,33.932457],[98.0204163,33.9514618],[97.9961777,33.940918],[97.9449387,33.9365273],[97.9177399,33.8996201],[97.8225784,33.8596153],[97.798317,33.869873],[97.7708054,33.8652306],[97.7484589,33.8777733],[97.7439804,33.8944817],[97.7807465,33.9314537],[97.7808609,33.9761162],[97.7284393,33.9876709],[97.6927261,34.0187187],[97.6568222,34.0113411],[97.6601028,33.9623299],[97.6382446,33.9239998],[97.5990601,33.9334793],[97.5328217,33.9066391],[97.5068817,33.913166],[97.4541397,33.892067],[97.3907623,33.8949432],[97.3957825,33.8530502],[97.3708725,33.8355026],[97.4058914,33.7935448],[97.4274979,33.7040901],[97.428772,33.6805],[97.4049683,33.6336441],[97.4080963,33.619915],[97.4456635,33.5905571],[97.5192719,33.5833511],[97.5136414,33.5223885],[97.558136,33.467144],[97.5819397,33.4743423],[97.5971146,33.4581375],[97.6253204,33.4612198],[97.6854782,33.4323273],[97.7170105,33.4264679],[97.7531357,33.4352684],[97.7726898,33.4092026],[97.7410126,33.3857574],[97.7016144,33.3776283],[97.6751938,33.3489113],[97.6305923,33.3471565],[97.6196899,33.3377266],[97.5993423,33.2583885],[97.5580521,33.2149277],[97.526413,33.2047119],[97.4848938,33.1642036],[97.4957047,33.1406593],[97.4890747,33.1124535],[97.5172958,33.0970039],[97.5429688,33.0501595],[97.539505,33.0377731],[97.5013962,33.0266075],[97.5195999,32.9957657],[97.493515,32.9830475],[97.4360352,32.9795532],[97.368103,32.9553604],[97.3562088,32.9119949],[97.3625488,32.8905945],[97.3737946,32.887413],[97.3719254,32.8762207],[97.3856354,32.8680878],[97.3825226,32.8574905],[97.3918533,32.8362579],[97.3881302,32.8294373],[97.3787842,32.8269424],[97.3781586,32.8182144],[97.3813019,32.7961235],[97.3843918,32.7870445],[97.4018478,32.7639771],[97.4130707,32.7402878],[97.4261627,32.7215843],[97.4242935,32.7147255],[97.4276886,32.7050056],[97.441124,32.6991425],[97.4436188,32.6929092],[97.4486008,32.6879196],[97.4641876,32.6735802],[97.4861679,32.6551514],[97.5128174,32.6480217],[97.5180435,32.638813],[97.5340118,32.6392937],[97.5383759,32.6286964],[97.5477219,32.6242867],[97.5782776,32.6193428],[97.587944,32.6139221],[97.6058273,32.6181107],[97.6100693,32.5950317],[97.6239395,32.581768],[97.6387482,32.5781975],[97.6505966,32.5676003],[97.6636887,32.5607414],[97.6705399,32.552639],[97.6886215,32.548275],[97.6987305,32.5389709],[97.709816,32.5345573],[97.730751,32.5308189],[97.6674423,32.5054398],[97.6628952,32.4944344],[97.6754227,32.4814262],[97.661087,32.4767952],[97.6122131,32.4956284],[97.5341873,32.4930191],[97.5091629,32.507103],[97.4353943,32.5138397],[97.3802185,32.5327759],[97.3665085,32.5187302],[97.3828583,32.5087471],[97.3829346,32.4991302],[97.350914,32.4728394],[97.3381348,32.4466591],[97.3482513,32.4359589],[97.3829727,32.428833],[97.4110489,32.370369],[97.4096527,32.3419685],[97.3722382,32.3518372],[97.3580017,32.3405304],[97.4081345,32.3291397],[97.4163895,32.3106384],[97.4086533,32.2973137],[97.3693314,32.2794647],[97.352272,32.2825699],[97.3244858,32.3066711],[97.2956238,32.2989349],[97.2870865,32.286747],[97.2621078,32.1858368],[97.2789001,32.1511459],[97.3030624,32.1355019],[97.2936096,32.1075096],[97.3062286,32.0840073],[97.2495956,32.0838661],[97.2174911,32.1115761],[97.203331,32.0979691],[97.2333679,32.0608597],[97.2132874,32.0467529],[97.1907806,32.0594139],[97.1659851,32.0331268],[97.1380386,32.050087],[97.0884857,32.0451164],[97.0282516,32.0549126],[97.0151443,32.0683098],[96.9725037,32.0706787],[96.9402847,32.0600739],[96.9370804,32.0371513],[96.9653625,32.0184097],[96.9585953,31.9970627],[96.9404526,31.9897156],[96.8971481,32.0202827],[96.8502121,31.9833622],[96.8442535,32.0006714],[96.8106461,32.019413],[96.7602539,32.0188751],[96.7245255,32.0287857],[96.7227859,32.0193787],[96.7417068,32.0008965],[96.734787,31.9856567],[96.7480621,31.9482384],[96.773819,31.9424953],[96.8074036,31.8973179],[96.7874908,31.8744087],[96.7621307,31.8671074],[96.7606277,31.8321171],[96.7911224,31.8000088],[96.8053818,31.7595959],[96.8372116,31.7292938],[96.8053741,31.6740131],[96.7962418,31.6729622],[96.7810822,31.6840954],[96.7346268,31.6802025],[96.6971893,31.7141933],[96.6721954,31.734787],[96.6598511,31.7106438],[96.64991,31.709589],[96.6064758,31.7388039],[96.5692215,31.7180672],[96.5577011,31.7206783],[96.5132141,31.754446],[96.4685364,31.7721806],[96.436554,31.7987328],[96.4250107,31.8297062],[96.3709793,31.859602],[96.3367386,31.9474583],[96.318222,31.9530678],[96.2761307,31.9361763],[96.2489624,31.9363384],[96.2207947,31.9076767],[96.1882095,31.899622],[96.2078781,31.8649673],[96.2037964,31.8569813],[96.1500473,31.8575001],[96.1342545,31.8218899],[96.1598511,31.7899513],[96.2216568,31.7557487],[96.2223434,31.7381287],[96.2486496,31.6993027],[96.2473679,31.6693344],[96.2244415,31.6507053],[96.2164612,31.6205463],[96.2166519,31.6097889],[96.2525406,31.6043167],[96.2564774,31.5923939],[96.2467728,31.555584],[96.2432709,31.5529175],[96.2401047,31.5514164],[96.2371063,31.550415],[96.2339325,31.5489159],[96.2309341,31.548748],[96.2274323,31.548748],[96.2230988,31.5489159],[96.2184296,31.548748],[96.2139282,31.5480824],[96.2102585,31.5464134],[96.205925,31.5449142],[96.2034225,31.5440788],[96.201088,31.5432453],[96.1985855,31.5424118],[96.1964188,31.5432453],[96.1945801,31.5445805],[96.192749,31.5457478],[96.190918,31.5467472],[96.1890793,31.548748],[96.1869125,31.5510826],[96.1852493,31.553751],[96.1834106,31.5565853],[96.1819077,31.5605869],[96.1809082,31.5642548],[96.1804123,31.5675907],[96.1799088,31.570591],[96.1799088,31.5745945],[96.1797409,31.5809307],[96.1799088,31.5857658],[96.1789093,31.5881004],[96.1779099,31.5912685],[96.1760712,31.5942688],[96.1730728,31.5967712],[96.1697388,31.5986042],[96.1667404,31.6001053],[96.1644058,31.6012726],[96.1620712,31.6024399],[96.1500778,31.6829205],[96.1016846,31.7140522],[96.0593491,31.7261505],[96.0364685,31.7132092],[96.0136871,31.7187996],[95.9599609,31.7049351],[95.8695297,31.7226543],[95.8335342,31.6860352],[95.8180542,31.6803913],[95.7865143,31.746809],[95.7621155,31.7601318],[95.6284332,31.784729],[95.5852737,31.7708702],[95.5696487,31.7487011],[95.5423737,31.7450752],[95.5210037,31.751421],[95.5009079,31.7772217],[95.4606552,31.8049831],[95.4098663,31.9126587],[95.3719788,31.964407],[95.3743515,31.9856777],[95.3922653,32.0016403],[95.4419632,32.010994],[95.4133759,32.0382614],[95.416687,32.0531998],[95.4517136,32.0716324],[95.4364395,32.1531525],[95.4138107,32.1747398],[95.3947754,32.187645],[95.3534088,32.1776237],[95.3115234,32.2253914],[95.3073273,32.2553978],[95.0808487,32.2504349],[95.0421829,32.2722282],[95.0409546,32.2969894],[95.0171585,32.3152809],[94.9003448,32.3557739],[94.8945389,32.3777199],[94.9268951,32.3806686],[94.9324188,32.3887711],[94.8959351,32.4623909],[94.8508835,32.4709625],[94.797081,32.4982109],[94.7827911,32.5498581],[94.7497635,32.5636101],[94.7158737,32.6055603],[94.6890793,32.6044769],[94.6223755,32.6702271],[94.6046753,32.6740837],[94.5944443,32.6342316],[94.5703964,32.6313286],[94.5307617,32.5994873],[94.4680099,32.6076317],[94.4499817,32.5685539],[94.4184647,32.5732956],[94.403801,32.5973625],[94.390976,32.6012726],[94.3766861,32.5656891],[94.3796234,32.5453186],[94.362854,32.5229988],[94.3258896,32.529686],[94.2872467,32.5062714],[94.1998444,32.5172615],[94.1777649,32.4929771],[94.1799622,32.461586],[94.156311,32.4563141],[94.1357803,32.435955],[94.055542,32.4724503],[94.0105362,32.4481277],[93.9908218,32.4658508],[93.9729538,32.4666252],[93.9620132,32.4891129],[93.9246521,32.4812088],[93.9191818,32.4650307],[93.8866577,32.4764977],[93.8591156,32.4747505],[93.8498611,32.5119514],[93.8303452,32.5218506],[93.8125381,32.5549583],[93.72155,32.5809021],[93.6540451,32.5749779],[93.6111221,32.5223312],[93.5227814,32.4786568],[93.4980698,32.5046654],[93.4762955,32.508255],[93.464447,32.5529404],[93.4500732,32.5612984],[93.3997269,32.5457916],[93.3800278,32.5289917],[93.356514,32.5577583],[93.3123779,32.5797882],[93.3084793,32.6046982],[93.270401,32.6158562],[93.2464066,32.6629524],[93.1725388,32.6662292],[93.1468124,32.6446342],[93.0627899,32.630806],[93.012619,32.7457466],[92.9670334,32.7189484],[92.8861008,32.7145004],[92.8709869,32.6998177],[92.8277435,32.7278976],[92.7757874,32.7247086],[92.755188,32.742897],[92.6916656,32.7677803],[92.6501846,32.7240028],[92.6092453,32.735321],[92.6013641,32.747467],[92.5601654,32.7344284],[92.5423889,32.7372932],[92.477211,32.7498436],[92.4549789,32.766552],[92.4065704,32.7511559],[92.3583527,32.7660484],[92.3495712,32.7453156],[92.3052826,32.7518272],[92.2597504,32.7226944],[92.2133484,32.7389755],[92.2021179,32.7518959],[92.2068405,32.7878799],[92.1973343,32.804306],[92.2040787,32.816021],[92.2270203,32.8246384],[92.2284927,32.8386955],[92.1949921,32.867363],[92.154686,32.8741913],[92.141571,32.8863525],[92.1004333,32.8612175],[92.0276489,32.8599434],[92.0260086,32.833931],[91.9609146,32.8211823],[91.9393539,32.8382874],[91.9252472,32.8685303],[91.9013901,32.8775024],[91.8946533,32.906868],[91.8574371,32.9059143],[91.8426895,32.9471436],[91.8238525,32.9533119],[91.791626,32.9454079],[91.5611343,33.0540886],[91.5455399,33.0929604],[91.4746246,33.1166992],[91.4598846,33.1588135],[91.3768082,33.2387314],[91.3708801,33.27845],[91.400589,33.2796936],[91.4131317,33.2894058],[91.4061203,33.3107071],[91.385849,33.3206558],[91.2597198,33.3178329],[91.2214432,33.3267517],[91.1850281,33.3054161],[91.1843338,33.2725334],[91.1649475,33.2415924],[91.1157455,33.2465515],[91.058197,33.2235489],[91.0090256,33.2236443],[90.9815826,33.2426224],[90.9707642,33.2239838],[90.9477844,33.2204094],[90.916748,33.1978569],[90.89888,33.1662483],[90.8726425,33.1625137],[90.8471985,33.1098938],[90.738472,33.1420937],[90.6975861,33.1381531],[90.5545425,33.2312622],[90.4926071,33.2640533],[90.4603958,33.2613487],[90.452446,33.2712936],[90.4137497,33.2565117],[90.3904343,33.2583313],[90.3819427,33.2719231],[90.3474274,33.2881126],[90.2648087,33.3675804],[90.2362213,33.4104767],[90.2253723,33.4352036],[90.229805,33.5055351],[90.2004547,33.5168953],[90.1824493,33.5490685],[90.1635666,33.5595818],[90.1047211,33.5870972],[90.0364075,33.6014366],[89.9871674,33.633194],[89.9991302,33.689312],[89.9838333,33.7212753],[89.9567947,33.7385826],[89.9133453,33.7389603],[89.9071121,33.7476196],[89.9279709,33.8045082],[89.8989029,33.8136177],[89.8396378,33.8714752],[89.8021927,33.8654518],[89.7905884,33.8712807],[89.7684479,33.9026108],[89.7334213,33.9223824],[89.7092361,33.9585648],[89.6882324,33.9644203],[89.6868591,33.9921761],[89.6502914,34.0371628],[89.643219,34.0538483],[89.6525345,34.0590935],[89.6581192,34.0953636],[89.6928253,34.1273956],[89.7537308,34.1300468],[89.7609482,34.1511497],[89.7844849,34.1520882],[89.8117065,34.1684914],[89.8103104,34.1948738],[89.8250198,34.2027016],[89.8227539,34.2279663],[89.835289,34.2564697],[89.8268204,34.2988625],[89.8702621,34.3374672],[89.8698654,34.3542023],[89.8607941,34.362484],[89.8325424,34.3628387],[89.8006668,34.4026909],[89.8229141,34.4508476],[89.8124771,34.5464363],[89.7768478,34.5916557],[89.7967072,34.6281967],[89.7861557,34.6417847],[89.7402954,34.649025],[89.72966,34.7017708],[89.7301636,34.7345085],[89.7589645,34.7378273],[89.7642059,34.7500496],[89.8009415,34.7499313],[89.8274689,34.7981911],[89.8657379,34.8138161],[89.8351669,34.868515],[89.8092041,34.8742943],[89.8216553,34.8853912],[89.81427,34.9087296],[89.7941208,34.9205246],[89.7406235,34.9082794],[89.7055969,34.9179497],[89.6600723,34.8887367],[89.6344986,34.8837013],[89.6206665,34.886364],[89.6166611,34.8979225],[89.5865631,34.8982658],[89.5639572,34.9336739],[89.5761795,34.9965553],[89.5688171,35.0153008],[89.5896378,35.0335274],[89.5880737,35.1144028],[89.5187454,35.1363716],[89.4518814,35.2317314],[89.5286255,35.2833405],[89.4977646,35.2894058],[89.5111618,35.3318748],[89.4970551,35.3658943],[89.5824738,35.3845062],[89.6337891,35.4193192],[89.6880417,35.4217491],[89.7344131,35.471077],[89.7617416,35.4801674],[89.7423553,35.5070305],[89.7057343,35.5112419],[89.6996231,35.5473518],[89.7109833,35.5777206],[89.7613602,35.5923615],[89.7228546,35.6543159],[89.7430191,35.6587982],[89.7476578,35.7568779],[89.779892,35.7662849],[89.7662659,35.7975693],[89.7962265,35.8530464],[89.7855988,35.8618088],[89.6765137,35.8501472],[89.5291824,35.8689079],[89.5495911,35.8786774],[89.4206543,35.9233818],[89.4303513,35.9483147],[89.4262161,35.9882355],[89.4000778,36.0011024],[89.4085007,36.0322418],[89.4265289,36.0426445],[89.4642334,36.0290565],[89.5019684,36.0271225],[89.6119232,36.0776596],[89.7312469,36.0847435],[89.851593,36.0790787],[89.9153671,36.0925446],[89.9460526,36.0756226],[89.9490738,36.1036606],[89.9373245,36.1256065],[89.9888306,36.1557388],[90.003891,36.1834564],[90.0246048,36.2492294],[90.0037842,36.2714577],[90.0083389,36.2791214],[90.0301208,36.2791443],[90.0548325,36.2588272],[90.1353073,36.2449608],[90.1276093,36.2113419],[90.1591949,36.1954994],[90.192337,36.192749],[90.233017,36.1651611],[90.3147583,36.1615105],[90.3474045,36.1458702],[90.3764343,36.1477966],[90.4443207,36.1332512],[90.4773026,36.1352234],[90.5197296,36.1533966],[90.5945129,36.1333847],[90.6809464,36.1313858],[90.7753754,36.0886612],[90.7935715,36.0580101],[90.8468475,36.0210114],[90.9301682,36.0396271],[90.9739151,36.106678],[91.0655899,36.0939217],[91.1055832,36.0976372],[91.1156998,36.1151772],[91.1013718,36.1566963],[91.0887222,36.1686783],[91.096756,36.1767998],[91.0877228,36.1915779],[91.0932083,36.2150154],[91.0572739,36.2321968],[91.0406189,36.2599335],[91.0720749,36.300209],[91.050209,36.3047371],[91.0219574,36.3309441],[91.0323563,36.3489532],[91.0254898,36.3669662],[91.032959,36.404644],[91.0511551,36.430542],[91.0235672,36.4496574],[91.0345306,36.4827957],[91.0277863,36.537014],[90.8980789,36.5634193],[90.8285675,36.5614891],[90.8090744,36.5696754],[90.819664,36.5783119],[90.8109436,36.5871201],[90.7633133,36.5836449],[90.7301865,36.5913773],[90.7177811,36.6113472],[90.7337341,36.6452866],[90.7117233,36.6623535],[90.7046127,36.6858444],[90.7148819,36.7082367],[90.7476883,36.7284584],[90.7253647,36.7574463],[90.7145462,36.7930222],[90.7259903,36.8264351],[90.7535324,36.8305321],[90.779335,36.8483429],[90.8472977,36.9190292],[90.9216385,36.9242172],[90.9737167,36.9169159],[91.0111923,36.9256706],[91.0354614,36.9388199],[91.0491028,36.970623],[91.107872,36.9727402],[91.1222458,36.9825439],[91.1280212,37.009655],[91.1713867,37.0280495],[91.2138977,37.0147972],[91.3052216,37.0190163],[91.3096237,37.0296059],[91.2887268,37.0497742],[91.2996216,37.0645599],[91.2700729,37.1658249],[91.1855087,37.2129211],[91.1809235,37.2770309],[91.1623993,37.2866669],[91.1636963,37.3100586],[91.1289902,37.3410339],[91.096817,37.4485779],[91.0790482,37.4758568],[91.0050659,37.4959869],[90.9372635,37.4804039],[90.9223022,37.5077019],[90.8589554,37.5372849],[90.8741226,37.579895],[90.8146667,37.6120338],[90.7854309,37.6432228],[90.6769028,37.6866913],[90.6614761,37.7040901],[90.611351,37.7023544],[90.5811691,37.709877],[90.5663605,37.7249794],[90.5197601,37.73106],[90.5000916,37.743782],[90.4898071,37.7715645],[90.4237671,37.780014],[90.4460983,37.8072319],[90.4132462,37.8352852],[90.4042892,37.8857765],[90.4293442,37.919693],[90.4712982,37.9396935],[90.481842,37.9556923],[90.3640366,38.0961189],[90.332283,38.130825],[90.2401657,38.3050728],[90.2088089,38.3223343],[90.1884689,38.3494301],[90.1627045,38.3727493],[90.1409531,38.4062271],[90.1502686,38.4332314],[90.2401581,38.4457893],[90.4161377,38.4942322],[90.4656372,38.5269661],[90.4541321,38.552433],[90.4684677,38.5613899],[90.5087204,38.5614014],[90.5389481,38.5871239],[90.604538,38.6005898],[90.6049118,38.6198463],[90.6379547,38.640316],[90.6151047,38.6656113],[90.6204453,38.6734848],[90.7658768,38.6636124],[90.8730927,38.6759415],[90.9654465,38.7014961],[91.1145477,38.7132378],[91.2415543,38.7541084],[91.296257,38.7533188],[91.3269196,38.7737999],[91.4073029,38.79636],[91.4359894,38.8156471],[91.6030579,38.8425179],[91.6707916,38.8583832],[91.6911469,38.8711319],[91.7872543,38.8674316],[91.8064804,38.8776283],[91.8585815,38.8816071],[91.8791962,38.9025688],[91.984108,38.9406815],[92.0569916,38.9588661],[92.1660385,38.9659081],[92.1958542,38.9884453],[92.2260361,38.9958611],[92.3005447,38.9997025],[92.3738861,39.0028114],[92.3999863,39.0115471],[92.4049301,39.0413322],[92.4554138,39.0464172],[92.4609756,39.0741386],[92.5000305,39.1094322],[92.5323486,39.1039429],[92.5505676,39.1158562],[92.6595993,39.1171761],[92.7834091,39.1419601],[92.8186646,39.1375313],[92.8292999,39.1498756],[92.8627777,39.1413155],[92.9108429,39.1688957],[92.9505615,39.1710548],[92.9754028,39.147377],[93.001915,39.1550674],[93.0406952,39.1507874],[93.1141663,39.1827583],[93.1481247,39.1635818],[93.1927261,39.1851082],[93.2266159,39.1911049],[93.2550735,39.1838379],[93.3012924,39.214016],[93.3320847,39.2044296],[93.3652725,39.2243614],[93.43853,39.2224655],[93.4536438,39.2303658],[93.4941788,39.2896004],[93.5216599,39.2742615],[93.5853882,39.2822037],[93.6080856,39.2634506],[93.6555176,39.2648506],[93.7018814,39.2547951],[93.7652359,39.25737],[93.789978,39.2742958],[93.8431549,39.2833519],[93.8792038,39.2577591],[93.9513397,39.2722816],[94.003624,39.2652435],[94.0429001,39.2842293],[94.0921936,39.2751274],[94.1414032,39.2889099],[94.1464462,39.3165588],[94.2238007,39.3226013],[94.2530975,39.3395958],[94.2803116,39.3069077],[94.3739243,39.3144493],[94.402565,39.3053055],[94.4747162,39.3034782],[94.515625,39.3119736],[94.5407104,39.3028564],[94.5699463,39.304882],[94.5937805,39.2934837],[94.630127,39.3070602],[94.7059784,39.2619591],[94.7218933,39.2428856],[94.780571,39.2454681],[94.8272476,39.2223663],[94.854126,39.2342224],[94.9025421,39.2202187],[94.922966,39.2413521],[94.955101,39.2336082],[94.9704742,39.218174],[95.0111923,39.2207794],[95.0654831,39.1992569],[95.091568,39.2044334],[95.1573563,39.1762047],[95.1908493,39.1908226],[95.2348709,39.1875458],[95.2913589,39.2025299],[95.3160248,39.1630096],[95.3672562,39.1267509],[95.3809204,39.1003075],[95.4179535,39.071003],[95.4539413,39.0598221],[95.5037079,39.0198669],[95.5700607,39.0127068],[95.5858536,38.997406],[95.5872421,38.9678078],[95.6345139,38.9411507],[95.6535873,38.9140701],[95.6771088,38.9088669],[95.6881943,38.8806152],[95.7608337,38.8532333],[95.7732468,38.8753586],[95.867218,38.8156967],[95.8998871,38.7689362],[95.9397507,38.7700958],[95.9536362,38.7605286],[95.9975204,38.7567863],[96.0496826,38.7368889],[96.0519791,38.6796722],[96.0942917,38.6473045],[96.1399231,38.6717224],[96.1819687,38.6342812],[96.240509,38.6171913],[96.3191681,38.6368752],[96.4236832,38.5686111],[96.4778671,38.5574646],[96.5168839,38.5391197],[96.5263138,38.5295525],[96.5142288,38.469738],[96.543602,38.4467583],[96.6260834,38.4191895],[96.7001572,38.4242744],[96.7338943,38.3877525],[96.8092499,38.3575172],[96.9597015,38.3383369],[96.9727936,38.3479691],[96.9759674,38.3681183],[96.9809723,38.5132751],[96.9702454,38.547657],[96.990303,38.5988426],[96.9392471,38.6212807],[96.9543991,38.6535797],[96.9376526,38.681942],[96.9879761,38.7044373],[96.976799,38.7316704],[96.9934311,38.7756386],[96.9687805,38.8194618],[96.9893112,38.8206291]]]]},
  401 +"properties":{
  402 +"gid":67,
  403 +"name":"青海省"}
  404 +},
  405 +{"type":"Feature",
  406 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.5525818,39.3215446],[121.5518036,39.3176422],[121.5503922,39.3151054],[121.5489578,39.3134804],[121.545433,39.3125076],[121.5432663,39.3161316],[121.5443726,39.3191261],[121.5460815,39.3214417],[121.5490112,39.322403],[121.5531311,39.3231544],[121.5525818,39.3215446]]]]},
  407 +"properties":{
  408 +"gid":68,
  409 +"name":"辽宁省"}
  410 +},
  411 +{"type":"Feature",
  412 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.1424713,39.3054657],[119.1401215,39.3059502],[119.1401672,39.3091545],[119.1417236,39.3128014],[119.144722,39.3159752],[119.1509933,39.3195724],[119.1551285,39.320446],[119.1583786,39.3208656],[119.1592178,39.3183365],[119.156517,39.3160782],[119.1517334,39.3115501],[119.145752,39.3074913],[119.1424713,39.3054657]]]]},
  413 +"properties":{
  414 +"gid":69,
  415 +"name":"河北省"}
  416 +},
  417 +{"type":"Feature",
  418 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.6637878,39.3074951],[121.6684113,39.3119125],[121.675827,39.3106499],[121.6795197,39.3047562],[121.6804962,39.3008804],[121.6853409,39.2966042],[121.6865463,39.2952499],[121.6875305,39.2916031],[121.6869583,39.2909088],[121.6807404,39.2915039],[121.6776962,39.2948914],[121.6743164,39.2998734],[121.6706619,39.3046227],[121.6685867,39.3045921],[121.6637878,39.3074951]]]]},
  419 +"properties":{
  420 +"gid":70,
  421 +"name":"辽宁省"}
  422 +},
  423 +{"type":"Feature",
  424 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.4913635,39.301384],[122.5020065,39.3003273],[122.5111389,39.3026886],[122.5179367,39.3022842],[122.5229874,39.2998085],[122.5303421,39.3026123],[122.5376892,39.305645],[122.5424271,39.3047676],[122.5460434,39.2995338],[122.5410385,39.2981224],[122.5395737,39.2971954],[122.5419769,39.2944679],[122.5405273,39.291481],[122.5396805,39.2891884],[122.5441437,39.2873917],[122.5494003,39.2913208],[122.5525894,39.2959251],[122.5570221,39.2959557],[122.5683594,39.2871208],[122.5817108,39.2824173],[122.5962219,39.2797813],[122.6086273,39.2791824],[122.6166077,39.2794724],[122.6218872,39.2824821],[122.6215363,39.287056],[122.6295013,39.2882576],[122.6398621,39.286499],[122.6473007,39.2819748],[122.658577,39.2770195],[122.6689377,39.2754898],[122.6745834,39.2720947],[122.678421,39.2725754],[122.6828384,39.2737503],[122.6849365,39.271019],[122.6767578,39.2625008],[122.6667862,39.2557983],[122.6555634,39.2575531],[122.6454468,39.2632027],[122.6333389,39.2633476],[122.6253891,39.2612305],[122.6158829,39.2659683],[122.6046219,39.2690887],[122.5945663,39.269928],[122.5836334,39.2705345],[122.5848618,39.2668839],[122.5869598,39.2639236],[122.584938,39.2607079],[122.5772934,39.2581329],[122.5704803,39.2599106],[122.5656281,39.2694817],[122.5598831,39.2725525],[122.5508118,39.2724419],[122.5383301,39.2770309],[122.5285263,39.2833786],[122.5231781,39.2858543],[122.5136795,39.2889786],[122.5023804,39.2895203],[122.4944,39.295002],[122.4916992,39.2979546],[122.4889832,39.3020477],[122.4913635,39.301384]]]]},
  425 +"properties":{
  426 +"gid":71,
  427 +"name":"辽宁省"}
  428 +},
  429 +{"type":"Feature",
  430 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.1288834,39.2875175],[119.1283188,39.2888985],[119.1274567,39.2909698],[119.128418,39.2946243],[119.1314163,39.2975693],[119.1358719,39.2991219],[119.1379318,39.2988739],[119.1381912,39.2972679],[119.1357498,39.2922554],[119.1321564,39.2895432],[119.1288834,39.2875175]]]]},
  431 +"properties":{
  432 +"gid":72,
  433 +"name":"河北省"}
  434 +},
  435 +{"type":"Feature",
  436 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.2940598,39.2778587],[122.2991028,39.2769928],[122.2947388,39.272377],[122.2883072,39.2681923],[122.2832489,39.2706566],[122.2811203,39.2742996],[122.2781296,39.276329],[122.2795563,39.2795448],[122.2813034,39.2809334],[122.2869263,39.280304],[122.2902069,39.2787361],[122.2913895,39.2787476],[122.2940598,39.2778587]]]]},
  437 +"properties":{
  438 +"gid":73,
  439 +"name":"辽宁省"}
  440 +},
  441 +{"type":"Feature",
  442 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.0002823,39.2752113],[123.005661,39.2747726],[123.0145111,39.2773247],[123.0230637,39.2789574],[123.0336914,39.2806015],[123.0425491,39.2808609],[123.0475769,39.2797394],[123.0517273,39.2767792],[123.0508728,39.27174],[123.041153,39.2671318],[123.0311279,39.2652626],[123.0213928,39.2633934],[123.0190506,39.2601814],[123.0181885,39.2553749],[123.0134964,39.2503242],[123.0002289,39.2479858],[122.9893112,39.2474823],[122.9824829,39.2536316],[122.9839172,39.2577553],[122.9924469,39.2632828],[122.997139,39.2685623],[122.9979935,39.2740555],[123.0002823,39.2752113]]]]},
  443 +"properties":{
  444 +"gid":74,
  445 +"name":"辽宁省"}
  446 +},
  447 +{"type":"Feature",
  448 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.4123917,39.2661591],[122.4158936,39.2687073],[122.4262238,39.2694855],[122.4330063,39.2697716],[122.4380875,39.2656975],[122.4437408,39.2630005],[122.4493713,39.2619057],[122.4517517,39.2603226],[122.4509125,39.2568855],[122.4459534,39.2531815],[122.4379578,39.2542572],[122.4322815,39.2590103],[122.4275131,39.2619438],[122.4189529,39.2621002],[122.4150925,39.2632065],[122.414772,39.2650375],[122.4123917,39.2661591]]]]},
  449 +"properties":{
  450 +"gid":75,
  451 +"name":"辽宁省"}
  452 +},
  453 +{"type":"Feature",
  454 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.5788269,39.2677345],[121.5824738,39.2641296],[121.5796432,39.2592812],[121.5773315,39.257412],[121.5740128,39.2601051],[121.5748062,39.263092],[121.5756683,39.2644806],[121.5768127,39.2658691],[121.5788269,39.2677345]]]]},
  455 +"properties":{
  456 +"gid":76,
  457 +"name":"辽宁省"}
  458 +},
  459 +{"type":"Feature",
  460 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.8014679,39.2534294],[122.8011627,39.2548027],[122.8044128,39.2555084],[122.8064728,39.2555199],[122.8091736,39.2509613],[122.8074265,39.2479744],[122.8032913,39.2479515],[122.8014679,39.2534294]]]]},
  461 +"properties":{
  462 +"gid":77,
  463 +"name":"辽宁省"}
  464 +},
  465 +{"type":"Feature",
  466 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.6040573,39.2516556],[121.606781,39.2494087],[121.6065826,39.2457466],[121.6042633,39.2438774],[121.6030502,39.2450027],[121.6017685,39.2488747],[121.6020203,39.2504807],[121.603157,39.2521019],[121.6040573,39.2516556]]]]},
  467 +"properties":{
  468 +"gid":78,
  469 +"name":"辽宁省"}
  470 +},
  471 +{"type":"Feature",
  472 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.6744614,39.2299957],[122.6714783,39.2329521],[122.6670532,39.2331467],[122.6588135,39.2308044],[122.6517334,39.2305298],[122.6441269,39.2245293],[122.6370621,39.2228737],[122.6284637,39.2257881],[122.619812,39.2335052],[122.6229935,39.2390175],[122.6332779,39.2432137],[122.6409531,39.2434959],[122.6501007,39.2440147],[122.6640015,39.2415924],[122.6719818,39.2405052],[122.6793594,39.2410126],[122.6861191,39.2438011],[122.6923065,39.2454453],[122.7017593,39.2445908],[122.708252,39.2448616],[122.7168121,39.2453728],[122.7200775,39.2431068],[122.7242126,39.2440491],[122.7297821,39.2472839],[122.7360229,39.2441216],[122.7381363,39.2381859],[122.7411194,39.2359161],[122.7461624,39.2336617],[122.7473831,39.2293205],[122.7394485,39.2260666],[122.7309265,39.2218971],[122.7280273,39.2166176],[122.7221603,39.2138329],[122.7135925,39.2144661],[122.7056427,39.213726],[122.7001038,39.2077446],[122.6942291,39.2040443],[122.6856537,39.2062759],[122.6841202,39.211071],[122.6908417,39.216835],[122.6969833,39.223053],[122.6960678,39.2251053],[122.6906967,39.2298737],[122.6856537,39.2330475],[122.6806183,39.2339249],[122.6776962,39.231617],[122.6762314,39.2302361],[122.6744614,39.2299957]]]]},
  473 +"properties":{
  474 +"gid":79,
  475 +"name":"辽宁省"}
  476 +},
  477 +{"type":"Feature",
  478 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.4845734,39.2361221],[122.4910507,39.2373199],[122.5013809,39.2374001],[122.512619,39.2358932],[122.5217819,39.2352791],[122.5306473,39.234436],[122.5374069,39.2360878],[122.5444794,39.2377472],[122.5460129,39.2331848],[122.5419312,39.2292595],[122.5284424,39.2225189],[122.5160675,39.2208214],[122.5042572,39.2204971],[122.4951019,39.2217941],[122.4876175,39.2292824],[122.4857864,39.2331543],[122.4860611,39.235218],[122.4845734,39.2361221]]]]},
  479 +"properties":{
  480 +"gid":80,
  481 +"name":"辽宁省"}
  482 +},
  483 +{"type":"Feature",
  484 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.753212,39.2369041],[122.754982,39.2371445],[122.7585526,39.2344208],[122.7594833,39.2305374],[122.7591934,39.2296181],[122.7553406,39.2305107],[122.755043,39.231884],[122.7538223,39.2343941],[122.753212,39.2369041]]]]},
  485 +"properties":{
  486 +"gid":81,
  487 +"name":"辽宁省"}
  488 +},
  489 +{"type":"Feature",
  490 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.4131165,39.225399],[122.4150009,39.2293472],[122.4238129,39.232399],[122.4290771,39.2351875],[122.4346771,39.2356949],[122.4409485,39.2311745],[122.4418564,39.2291222],[122.441597,39.2268333],[122.4357071,39.2256393],[122.432457,39.2262955],[122.4289703,39.2228317],[122.4263382,39.2207489],[122.4230728,39.2227821],[122.4206696,39.2250481],[122.4165497,39.224556],[122.4131165,39.225399]]]]},
  491 +"properties":{
  492 +"gid":82,
  493 +"name":"辽宁省"}
  494 +},
  495 +{"type":"Feature",
  496 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.7658615,39.2289963],[122.7724533,39.2317581],[122.7789536,39.2311096],[122.7827988,39.2299881],[122.7910614,39.2300377],[122.7969666,39.2300682],[122.8016968,39.2289543],[122.8020172,39.2257538],[122.7970276,39.2236633],[122.7875671,39.2242966],[122.7811127,39.2212868],[122.7749405,39.2187309],[122.76754,39.22052],[122.7643814,39.2235489],[122.7645111,39.2259903],[122.7658615,39.2289963]]]]},
  497 +"properties":{
  498 +"gid":83,
  499 +"name":"辽宁省"}
  500 +},
  501 +{"type":"Feature",
  502 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.6048965,39.2244949],[122.6066589,39.2228851],[122.6090927,39.217411],[122.6053238,39.2114372],[122.5985565,39.2095566],[122.5953293,39.2077026],[122.5918121,39.2060776],[122.5829163,39.2089844],[122.5822601,39.2144699],[122.5875473,39.2167969],[122.595787,39.2184601],[122.6022415,39.2219391],[122.6027985,39.2244606],[122.6048965,39.2244949]]]]},
  503 +"properties":{
  504 +"gid":84,
  505 +"name":"辽宁省"}
  506 +},
  507 +{"type":"Feature",
  508 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.7356415,39.2230682],[122.7371063,39.2235374],[122.7397766,39.2217216],[122.739212,39.2203484],[122.7389221,39.2196579],[122.7359772,39.2180405],[122.7324371,39.219162],[122.7332993,39.2212257],[122.7344666,39.2221489],[122.7356415,39.2230682]]]]},
  509 +"properties":{
  510 +"gid":85,
  511 +"name":"辽宁省"}
  512 +},
  513 +{"type":"Feature",
  514 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.3097534,39.1842041],[122.312973,39.1860657],[122.3224182,39.1854706],[122.3297577,39.1878281],[122.3365021,39.1904106],[122.3417282,39.1959534],[122.3410797,39.199379],[122.3354034,39.204586],[122.3495712,39.2035751],[122.3531265,39.2026978],[122.360817,39.2016258],[122.369339,39.2037621],[122.3775177,39.2095566],[122.384819,39.2146568],[122.3956909,39.2177315],[122.4033813,39.2164307],[122.4022522,39.212986],[122.395813,39.2099533],[122.3884201,39.2105713],[122.3823166,39.204567],[122.3780365,39.1942329],[122.377243,39.1889648],[122.381073,39.1838455],[122.3825302,39.1778412],[122.3868332,39.1692085],[122.3886871,39.1649284],[122.3891983,39.1621819],[122.3862228,39.1617126],[122.3811722,39.1631432],[122.3708496,39.1632767],[122.3623428,39.1604538],[122.3567963,39.1567421],[122.3527222,39.1530418],[122.3486404,39.1502571],[122.3427811,39.1474533],[122.3395767,39.1449089],[122.3333969,39.1443901],[122.326828,39.1495895],[122.3223038,39.1557236],[122.3151932,39.1581726],[122.310997,39.1620216],[122.3127136,39.1659279],[122.3158493,39.1721382],[122.3151932,39.1769371],[122.3106766,39.181469],[122.3088837,39.1835098],[122.3097534,39.1842041]]]]},
  515 +"properties":{
  516 +"gid":86,
  517 +"name":"辽宁省"}
  518 +},
  519 +{"type":"Feature",
  520 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.495903,39.2112389],[121.4997864,39.2094727],[121.4984589,39.2039604],[121.4958725,39.2013969],[121.491539,39.1981239],[121.4895706,39.1944275],[121.4825287,39.1930885],[121.4790497,39.1977654],[121.481102,39.2018394],[121.4866562,39.2037621],[121.4901733,39.2047348],[121.4933472,39.2075348],[121.4956436,39.2096329],[121.495903,39.2112389]]]]},
  521 +"properties":{
  522 +"gid":87,
  523 +"name":"辽宁省"}
  524 +},
  525 +{"type":"Feature",
  526 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.2906189,39.1995735],[122.2955704,39.2035141],[122.3020172,39.2063217],[122.3064423,39.2063675],[122.308548,39.2040977],[122.3068314,39.2006493],[122.3013,39.1962471],[122.2965622,39.1971169],[122.2944794,39.1982384],[122.2906189,39.1995735]]]]},
  527 +"properties":{
  528 +"gid":88,
  529 +"name":"辽宁省"}
  530 +},
  531 +{"type":"Feature",
  532 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.4602432,39.1987419],[121.4658813,39.197464],[121.4721527,39.1945953],[121.4742889,39.1921158],[121.474678,39.1886864],[121.4729614,39.1868286],[121.46772,39.1842232],[121.4629135,39.1873436],[121.4582825,39.1948204],[121.4558029,39.1988983],[121.4504623,39.1999512],[121.4430618,39.2007408],[121.4376907,39.2029381],[121.4408569,39.2057381],[121.4503326,39.2047539],[121.45504,39.2052917],[121.4588928,39.2048988],[121.4589767,39.2016983],[121.4599228,39.1994247],[121.4602432,39.1987419]]]]},
  533 +"properties":{
  534 +"gid":89,
  535 +"name":"辽宁省"}
  536 +},
  537 +{"type":"Feature",
  538 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.564537,39.1940498],[121.569931,39.1909332],[121.5719986,39.1907349],[121.5752869,39.1889572],[121.5762405,39.1864548],[121.5753937,39.1852989],[121.5716171,39.1829491],[121.5663071,39.18256],[121.5637665,39.1853561],[121.5625763,39.1896706],[121.5628433,39.1910477],[121.5633926,39.1926613],[121.5639725,39.1931267],[121.564537,39.1940498]]]]},
  539 +"properties":{
  540 +"gid":90,
  541 +"name":"辽宁省"}
  542 +},
  543 +{"type":"Feature",
  544 +"geometry":{"type":"MultiPolygon","coordinates":[[[[118.9485016,39.1376877],[118.947937,39.1392975],[118.9491425,39.1411171],[118.9512634,39.1449928],[118.9533691,39.1481781],[118.9546127,39.1520615],[118.9558487,39.1564026],[118.956192,39.1596069],[118.9612198,39.1613922],[118.9674301,39.163166],[118.9724808,39.1660957],[118.9790497,39.1719894],[118.985611,39.1776543],[118.9921722,39.1828575],[118.9966431,39.1862488],[119.0002289,39.1894226],[119.0043411,39.1886978],[119.004303,39.1859474],[119.0000992,39.1814079],[118.9956207,39.1775589],[118.9872818,39.1712227],[118.9798126,39.1644249],[118.9744263,39.1592064],[118.9663696,39.151722],[118.9595184,39.1462936],[118.9555969,39.1406021],[118.9485016,39.1376877]]]]},
  545 +"properties":{
  546 +"gid":91,
  547 +"name":"河北省"}
  548 +},
  549 +{"type":"Feature",
  550 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.4102173,39.166729],[122.4089432,39.1667099],[122.4083328,39.1673927],[122.4071808,39.1679535],[122.4057922,39.1685486],[122.4046402,39.1691093],[122.4024582,39.1696167],[122.4006119,39.170475],[122.3984299,39.1709824],[122.3964462,39.1712608],[122.3947067,39.171505],[122.3930283,39.1719437],[122.3918381,39.1723099],[122.3902817,39.1733284],[122.3897629,39.1743965],[122.3897934,39.1755867],[122.3897629,39.1765862],[122.3901672,39.178318],[122.3915176,39.1797218],[122.3941269,39.1799507],[122.3955231,39.1793556],[122.3973694,39.1784973],[122.3985596,39.1781311],[122.3997574,39.1777611],[122.4016037,39.1769028],[122.4053802,39.1755714],[122.4071426,39.1743279],[122.40905,39.1726646],[122.4113235,39.1703529],[122.4120483,39.1690559],[122.4118881,39.1672897],[122.4102173,39.166729]]]]},
  551 +"properties":{
  552 +"gid":92,
  553 +"name":"辽宁省"}
  554 +},
  555 +{"type":"Feature",
  556 +"geometry":{"type":"MultiPolygon","coordinates":[[[[118.8873367,39.1611366],[118.884697,39.1623077],[118.8838272,39.1632271],[118.888298,39.1670837],[118.8939514,39.1711578],[118.8980865,39.172493],[118.9007187,39.1706429],[118.9003906,39.1683502],[118.8970871,39.1644897],[118.8911591,39.1611023],[118.8873367,39.1611366]]]]},
  557 +"properties":{
  558 +"gid":93,
  559 +"name":"河北省"}
  560 +},
  561 +{"type":"Feature",
  562 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.6048431,39.1649361],[121.6092529,39.1652374],[121.61203,39.160244],[121.6129913,39.1572876],[121.6118469,39.1561241],[121.6062164,39.1569519],[121.6064987,39.1576424],[121.6046295,39.1615028],[121.6048431,39.1649361]]]]},
  563 +"properties":{
  564 +"gid":94,
  565 +"name":"辽宁省"}
  566 +},
  567 +{"type":"Feature",
  568 +"geometry":{"type":"MultiPolygon","coordinates":[[[[118.8291473,39.1252098],[118.8274231,39.1270561],[118.8268738,39.130497],[118.8280869,39.1334648],[118.8331833,39.1402931],[118.8394165,39.1443634],[118.8411636,39.1425171],[118.8405228,39.1388588],[118.8366318,39.1343117],[118.8324432,39.1293068],[118.8291473,39.1252098]]]]},
  569 +"properties":{
  570 +"gid":95,
  571 +"name":"河北省"}
  572 +},
  573 +{"type":"Feature",
  574 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.2158432,39.1055717],[121.2196121,39.1072426],[121.2251816,39.1082649],[121.2272415,39.1083031],[121.2299728,39.105835],[121.2297211,39.1044579],[121.2288666,39.1035271],[121.2256699,39.1020927],[121.2218628,39.1013374],[121.2173767,39.1033096],[121.2173615,39.1039963],[121.2158432,39.1055717]]]]},
  575 +"properties":{
  576 +"gid":96,
  577 +"name":"辽宁省"}
  578 +},
  579 +{"type":"Feature",
  580 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.1485596,39.0279388],[123.1386566,39.0315208],[123.1326675,39.0389442],[123.1308212,39.0479126],[123.1321487,39.0545387],[123.1346664,39.0618362],[123.1365128,39.0650215],[123.1404266,39.0690918],[123.142807,39.0704308],[123.1491165,39.0639229],[123.1524963,39.057682],[123.1562424,39.0541916],[123.1615829,39.0564041],[123.1646423,39.0614014],[123.1583023,39.0665398],[123.1566467,39.0713768],[123.154747,39.0778236],[123.1476898,39.0779266],[123.1382675,39.0771446],[123.1329727,39.076992],[123.1294479,39.0770454],[123.1286697,39.0814095],[123.1302795,39.0873489],[123.1274719,39.0931206],[123.1336136,39.0914268],[123.1429672,39.0896873],[123.1497269,39.0893593],[123.1550064,39.0890541],[123.1588364,39.0889969],[123.1612396,39.0910263],[123.1604309,39.0942459],[123.1599274,39.0979233],[123.1602936,39.1004372],[123.1655807,39.1005898],[123.1702271,39.0982285],[123.1745834,39.0956421],[123.1724167,39.0915489],[123.1688232,39.0883904],[123.1699219,39.0853958],[123.1745605,39.0825768],[123.1803665,39.0799675],[123.1841507,39.0780792],[123.1843185,39.0728035],[123.1848221,39.0693588],[123.1906128,39.065834],[123.1949463,39.0630188],[123.1939621,39.0586777],[123.1920929,39.054348],[123.188118,39.0479889],[123.1797638,39.0423813],[123.1702271,39.0374794],[123.1610184,39.0330315],[123.1485596,39.0279388]]]]},
  581 +"properties":{
  582 +"gid":97,
  583 +"name":"辽宁省"}
  584 +},
  585 +{"type":"Feature",
  586 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.1499863,39.0905724],[121.15522,39.0929642],[121.1586914,39.095089],[121.163063,39.0965462],[121.1675186,39.0954895],[121.1693878,39.0923195],[121.1697235,39.0909538],[121.1694717,39.0898056],[121.1674728,39.0879364],[121.1609421,39.0891838],[121.1589508,39.0870819],[121.1540833,39.085331],[121.1501312,39.0862274],[121.1471024,39.088913],[121.1473465,39.090519],[121.1499863,39.0905724]]]]},
  587 +"properties":{
  588 +"gid":98,
  589 +"name":"辽宁省"}
  590 +},
  591 +{"type":"Feature",
  592 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.8142014,39.0701561],[122.8080368,39.0702286],[122.802803,39.07304],[122.8004913,39.0753632],[122.7996674,39.0785789],[122.8011932,39.0808525],[122.8038177,39.0803642],[122.8073273,39.0798683],[122.8114166,39.0784416],[122.8140411,39.0768089],[122.81633,39.0737991],[122.8142014,39.0701561]]]]},
  593 +"properties":{
  594 +"gid":99,
  595 +"name":"辽宁省"}
  596 +},
  597 +{"type":"Feature",
  598 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.7941895,39.0685577],[122.7859879,39.0702553],[122.780159,39.0728455],[122.7775726,39.0758553],[122.7802734,39.0790329],[122.7849579,39.0778313],[122.78936,39.0773239],[122.7934494,39.0761299],[122.7963562,39.0747223],[122.7977829,39.0717239],[122.7941895,39.0685577]]]]},
  599 +"properties":{
  600 +"gid":100,
  601 +"name":"辽宁省"}
  602 +},
  603 +{"type":"Feature",
  604 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.8464966,39.0681686],[122.8494568,39.0695114],[122.8552628,39.0655403],[122.8572922,39.0641403],[122.8596802,39.0661774],[122.8611908,39.068222],[122.8644638,39.0702438],[122.8673325,39.0667725],[122.869957,39.0660515],[122.8740463,39.0643959],[122.8781281,39.0627441],[122.876503,39.0547409],[122.8749619,39.0513191],[122.8710938,39.0488434],[122.8646164,39.0482368],[122.85849,39.0503769],[122.8553467,39.0554543],[122.8518829,39.0580177],[122.8519287,39.0605392],[122.8505173,39.0633049],[122.8485336,39.0667686],[122.8464966,39.0681686]]]]},
  605 +"properties":{
  606 +"gid":101,
  607 +"name":"辽宁省"}
  608 +},
  609 +{"type":"Feature",
  610 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.8257065,39.0571861],[122.8292007,39.0553093],[122.8312225,39.0536804],[122.8343964,39.0504341],[122.8357925,39.046978],[122.8328018,39.0442657],[122.8268814,39.0420418],[122.8209915,39.0411949],[122.8160172,39.0426292],[122.8131638,39.0463295],[122.8143768,39.0488396],[122.8182526,39.0513153],[122.8206329,39.0524292],[122.8224564,39.0563049],[122.8257065,39.0571861]]]]},
  611 +"properties":{
  612 +"gid":102,
  613 +"name":"辽宁省"}
  614 +},
  615 +{"type":"Feature",
  616 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.708519,39.0271111],[122.7114563,39.0270805],[122.7132568,39.0295792],[122.7074738,39.034687],[122.7049179,39.0395279],[122.7055664,39.0434189],[122.7085724,39.0468254],[122.7138901,39.0483704],[122.7185822,39.0480881],[122.7235413,39.0459747],[122.726387,39.0408974],[122.7266235,39.0374565],[122.730423,39.0362701],[122.7391968,39.0347977],[122.7441864,39.0342827],[122.74823,39.0303421],[122.7498627,39.0234451],[122.755127,39.0226974],[122.7589264,39.0210533],[122.7605896,39.0157585],[122.7613831,39.0109367],[122.7595825,39.0088959],[122.7496033,39.0090065],[122.7429199,39.0129776],[122.7382736,39.0160103],[122.7353287,39.015583],[122.7314301,39.0112724],[122.7299271,39.0096817],[122.7209015,39.0134506],[122.7136536,39.0183449],[122.7101822,39.0218201],[122.7087631,39.0245895],[122.708519,39.0271111]]]]},
  617 +"properties":{
  618 +"gid":103,
  619 +"name":"辽宁省"}
  620 +},
  621 +{"type":"Feature",
  622 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.2126465,39.0416603],[123.2131882,39.0398216],[123.2128525,39.0379906],[123.209877,39.0364304],[123.2061081,39.0385513],[123.2082138,39.0405807],[123.2126465,39.0416603]]]]},
  623 +"properties":{
  624 +"gid":104,
  625 +"name":"辽宁省"}
  626 +},
  627 +{"type":"Feature",
  628 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.3071365,38.9994698],[121.3116226,38.9974899],[121.3102264,38.9947166],[121.3073502,38.9926071],[121.3050079,38.9923325],[121.3034668,38.9943657],[121.3037415,38.995285],[121.3042831,38.9971237],[121.3048172,38.9987373],[121.3071365,38.9994698]]]]},
  629 +"properties":{
  630 +"gid":105,
  631 +"name":"辽宁省"}
  632 +},
  633 +{"type":"Feature",
  634 +"geometry":{"type":"MultiPolygon","coordinates":[[[[118.527298,38.9312744],[118.5258636,38.9335747],[118.5267487,38.9349442],[118.5308838,38.9383545],[118.5373764,38.9422112],[118.5412292,38.9458542],[118.5436172,38.951107],[118.545433,38.9561386],[118.5469513,38.9609375],[118.5511093,38.9664116],[118.557579,38.9675217],[118.5578537,38.9649963],[118.5554504,38.9599724],[118.5521698,38.9542656],[118.5476913,38.9467354],[118.5435181,38.939888],[118.5367203,38.9346581],[118.529953,38.9321747],[118.527298,38.9312744]]]]},
  635 +"properties":{
  636 +"gid":106,
  637 +"name":"河北省"}
  638 +},
  639 +{"type":"Feature",
  640 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.9704285,38.9569244],[120.9715195,38.959465],[120.9738388,38.9604301],[120.9810028,38.9573746],[120.9855728,38.9531212],[120.9862671,38.9497032],[120.9839935,38.9473648],[120.9786835,38.9479408],[120.973587,38.9503517],[120.9711227,38.9541931],[120.9710464,38.9560204],[120.9704285,38.9569244]]]]},
  641 +"properties":{
  642 +"gid":107,
  643 +"name":"辽宁省"}
  644 +},
  645 +{"type":"Feature",
  646 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.8236618,38.9153137],[121.8307037,38.9160957],[121.8330994,38.9138412],[121.8337326,38.9117928],[121.8320236,38.9086418],[121.8286819,38.9081078],[121.8264236,38.9100876],[121.8246002,38.9128113],[121.8236618,38.9153137]]]]},
  647 +"properties":{
  648 +"gid":108,
  649 +"name":"辽宁省"}
  650 +},
  651 +{"type":"Feature",
  652 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.8354492,38.8941765],[121.8355713,38.8891411],[121.8324432,38.8845215],[121.8340302,38.8792801],[121.8373337,38.8758926],[121.8380203,38.8715515],[121.8339996,38.8676071],[121.8302231,38.8657265],[121.8217087,38.8656044],[121.8163223,38.8696518],[121.8176193,38.877224],[121.8190308,38.8799858],[121.8263092,38.8828354],[121.824791,38.8848724],[121.8202667,38.8896179],[121.8220062,38.891243],[121.8236923,38.8944702],[121.8274765,38.8958969],[121.8336792,38.8948364],[121.8354492,38.8941765]]]]},
  653 +"properties":{
  654 +"gid":109,
  655 +"name":"辽宁省"}
  656 +},
  657 +{"type":"Feature",
  658 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.1146011,38.8838768],[121.1165771,38.8862076],[121.1192703,38.8848877],[121.1229019,38.8815231],[121.1221237,38.8785324],[121.1206894,38.8773613],[121.1158981,38.8800125],[121.1160889,38.8832207],[121.1146011,38.8838768]]]]},
  659 +"properties":{
  660 +"gid":110,
  661 +"name":"辽宁省"}
  662 +},
  663 +{"type":"Feature",
  664 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.0192871,38.8693542],[121.0207596,38.8730659],[121.0252304,38.8761177],[121.031929,38.8778572],[121.0351334,38.8788414],[121.0369415,38.8772736],[121.0376282,38.8745422],[121.0373764,38.8731613],[121.0350571,38.8719711],[121.0303802,38.871418],[121.0266113,38.8699646],[121.0249023,38.8683281],[121.02108,38.8684769],[121.0192871,38.8693542]]]]},
  665 +"properties":{
  666 +"gid":111,
  667 +"name":"辽宁省"}
  668 +},
  669 +{"type":"Feature",
  670 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.8140106,38.8698883],[121.8135529,38.8678436],[121.8102417,38.8659019],[121.8040619,38.8665047],[121.8028183,38.8692322],[121.8027802,38.8710632],[121.8033371,38.8724442],[121.8032532,38.8761024],[121.8079529,38.8764],[121.8121414,38.8727951],[121.8140106,38.8698883]]]]},
  671 +"properties":{
  672 +"gid":112,
  673 +"name":"辽宁省"}
  674 +},
  675 +{"type":"Feature",
  676 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.599411,38.7945557],[121.6000366,38.7927361],[121.5965805,38.7906189],[121.5909729,38.7919044],[121.5917664,38.7948952],[121.5926208,38.7962799],[121.5949783,38.7958603],[121.5985107,38.7952309],[121.599411,38.7945557]]]]},
  677 +"properties":{
  678 +"gid":113,
  679 +"name":"辽宁省"}
  680 +},
  681 +{"type":"Feature",
  682 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.8960724,38.3928528],[120.9015579,38.3945732],[120.9055481,38.3971786],[120.9071579,38.4013329],[120.907608,38.4050102],[120.9167328,38.4031448],[120.9211502,38.4018669],[120.9272232,38.3951302],[120.9285583,38.3903503],[120.9289322,38.3880692],[120.9216614,38.3872261],[120.9161072,38.3864479],[120.9012527,38.3856926],[120.8970337,38.3857651],[120.8965607,38.3871384],[120.8961792,38.3896484],[120.8960724,38.3928528]]]]},
  683 +"properties":{
  684 +"gid":114,
  685 +"name":"山东省"}
  686 +},
  687 +{"type":"Feature",
  688 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.895668,38.3737411],[120.8967209,38.3733711],[120.9012909,38.3717766],[120.9038773,38.3727493],[120.9076538,38.3735161],[120.9077072,38.3719139],[120.9078674,38.3673401],[120.9033127,38.3640366],[120.9070892,38.3645744],[120.9117432,38.3649063],[120.9135437,38.3635712],[120.9115067,38.3550568],[120.9124603,38.352787],[120.9131088,38.3509674],[120.9084702,38.3501816],[120.9007492,38.3541336],[120.8937683,38.3617668],[120.8903427,38.3678741],[120.8895874,38.3726654],[120.8939285,38.3736763],[120.895668,38.3737411]]]]},
  689 +"properties":{
  690 +"gid":115,
  691 +"name":"山东省"}
  692 +},
  693 +{"type":"Feature",
  694 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.8414688,38.3607368],[120.8459167,38.3585472],[120.8466187,38.3555832],[120.8473282,38.3519363],[120.8505783,38.3508644],[120.8521576,38.3474655],[120.8528137,38.3454208],[120.8482971,38.3409691],[120.8410492,38.3401184],[120.8361969,38.3370361],[120.835083,38.3436508],[120.8367233,38.3468933],[120.8318787,38.351593],[120.8319473,38.3577766],[120.8347931,38.3599014],[120.837677,38.3606529],[120.8414688,38.3607368]]]]},
  695 +"properties":{
  696 +"gid":116,
  697 +"name":"山东省"}
  698 +},
  699 +{"type":"Feature",
  700 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.8005371,38.3069267],[120.803009,38.3113289],[120.8089828,38.3155861],[120.8124008,38.3177261],[120.8167572,38.3180542],[120.8228378,38.3193359],[120.8282928,38.3217468],[120.8341675,38.3205032],[120.8418198,38.318615],[120.8439636,38.3159142],[120.8431931,38.3131523],[120.8421173,38.3101501],[120.8440628,38.3049278],[120.8401031,38.3016319],[120.831131,38.2998314],[120.8223267,38.3012352],[120.8156662,38.3001671],[120.8131332,38.297821],[120.8106766,38.2927284],[120.8076096,38.2892265],[120.8024292,38.2872772],[120.7954025,38.2882614],[120.791153,38.2929726],[120.7930222,38.2973671],[120.8010635,38.3007545],[120.8059464,38.3024673],[120.8062134,38.3033905],[120.8028793,38.3069801],[120.8005371,38.3069267]]]]},
  701 +"properties":{
  702 +"gid":117,
  703 +"name":"山东省"}
  704 +},
  705 +{"type":"Feature",
  706 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.8736191,38.2573814],[117.8689728,38.2571564],[117.8675079,38.2601318],[117.8654785,38.2619667],[117.8611069,38.2637978],[117.8547211,38.2676926],[117.8526764,38.2736511],[117.8593826,38.2768593],[117.8651886,38.2745667],[117.8698425,38.2695274],[117.8727417,38.2619629],[117.8736191,38.2573814]]]]},
  707 +"properties":{
  708 +"gid":118,
  709 +"name":"山东省"}
  710 +},
  711 +{"type":"Feature",
  712 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.8901825,38.254631],[117.8954163,38.255085],[117.90065,38.2546272],[117.9038467,38.2509575],[117.9073334,38.2447701],[117.9122696,38.2440796],[117.9215698,38.2440758],[117.9285431,38.2399483],[117.934639,38.2344475],[117.9453888,38.2291679],[117.9537964,38.2222862],[117.9526291,38.2140427],[117.9450836,38.2167969],[117.9337463,38.2207031],[117.9276505,38.2227669],[117.9209671,38.2232285],[117.9136963,38.22369],[117.9099274,38.2271309],[117.9116669,38.2294197],[117.9192429,38.2319336],[117.9203873,38.2337685],[117.9148788,38.23629],[117.9061584,38.2390442],[117.902092,38.2415657],[117.898613,38.2463799],[117.8965836,38.2511902],[117.8945465,38.2530251],[117.8901825,38.254631]]]]},
  713 +"properties":{
  714 +"gid":119,
  715 +"name":"山东省"}
  716 +},
  717 +{"type":"Feature",
  718 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.8012466,38.2291946],[117.7971802,38.2285042],[117.7939835,38.2296486],[117.7913666,38.230793],[117.7901993,38.2344589],[117.7951431,38.2369804],[117.8009491,38.2388153],[117.8041534,38.2367554],[117.8029938,38.231945],[117.8012466,38.2291946]]]]},
  719 +"properties":{
  720 +"gid":120,
  721 +"name":"河北省"}
  722 +},
  723 +{"type":"Feature",
  724 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.8003922,38.2065125],[117.7977829,38.2076569],[117.7992172,38.2097206],[117.8009567,38.2122421],[117.8021164,38.2172813],[117.8026962,38.2218628],[117.8050232,38.2252998],[117.8096771,38.2271347],[117.8146133,38.2248459],[117.8166504,38.2202644],[117.8143311,38.2149963],[117.8105469,38.2120132],[117.8041687,38.2083473],[117.8003922,38.2065125]]]]},
  725 +"properties":{
  726 +"gid":121,
  727 +"name":"山东省"}
  728 +},
  729 +{"type":"Feature",
  730 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.7890015,38.2028809],[117.7941437,38.2005272],[117.7944489,38.2016716],[117.7990265,38.2038116],[117.8068466,38.2050858],[117.8149109,38.207737],[117.8200684,38.2103424],[117.8249435,38.2124825],[117.8310165,38.2134972],[117.840332,38.2129669],[117.8470535,38.2114792],[117.8511887,38.2090302],[117.8516464,38.2026329],[117.8488312,38.1993828],[117.846283,38.197052],[117.8463135,38.1961365],[117.8489532,38.1952667],[117.85215,38.1948624],[117.8525391,38.1912079],[117.8509827,38.1840897],[117.8534012,38.1806984],[117.8577271,38.1814575],[117.8605576,38.1844788],[117.8669434,38.1848106],[117.8683167,38.1873512],[117.8627014,38.1913757],[117.8660812,38.1953201],[117.8730469,38.1952057],[117.8786316,38.1930084],[117.8824387,38.1916962],[117.8914795,38.1904716],[117.8965073,38.1868896],[117.8960266,38.1829948],[117.8934937,38.1802101],[117.8882828,38.1798973],[117.8833466,38.1791306],[117.877037,38.1765137],[117.8768692,38.1719322],[117.8784866,38.1653252],[117.8792191,38.1598473],[117.8776627,38.1531868],[117.8704529,38.1512375],[117.8641815,38.1467896],[117.8604584,38.1446686],[117.8558578,38.1432228],[117.8585434,38.1407471],[117.8554382,38.1372643],[117.853447,38.1356316],[117.848587,38.1328087],[117.845192,38.1295471],[117.8426666,38.1265297],[117.8427277,38.1242447],[117.8450928,38.1229134],[117.8473663,38.1240921],[117.8501968,38.1266556],[117.8541565,38.1308403],[117.8591385,38.1290932],[117.8606567,38.1261444],[117.8638535,38.1266518],[117.8649216,38.1298714],[117.8653412,38.1358261],[117.8655014,38.1406364],[117.8692169,38.1427536],[117.8746872,38.1446762],[117.8810883,38.1440926],[117.8839722,38.144825],[117.8845062,38.1464348],[117.8824463,38.1475449],[117.8806534,38.1498032],[117.8826294,38.1516685],[117.8865967,38.1551628],[117.8870773,38.1590614],[117.8887863,38.1599998],[117.8914566,38.1582146],[117.89505,38.1539268],[117.9014587,38.1531143],[117.9075928,38.1520691],[117.9108429,38.1498337],[117.9097137,38.1484451],[117.9068222,38.1479378],[117.9024734,38.1478691],[117.8981628,38.1461983],[117.8964462,38.1447983],[117.8985291,38.1430016],[117.9017563,38.1416817],[117.9006882,38.1382332],[117.8946762,38.1347046],[117.8878632,38.1291046],[117.8844986,38.1247025],[117.8803101,38.1186867],[117.8757477,38.115406],[117.8719864,38.1148911],[117.8672867,38.1170998],[117.8626328,38.1177101],[117.8574219,38.1171684],[117.8536835,38.115963],[117.8572464,38.1130486],[117.8627167,38.1145096],[117.8639297,38.1124725],[117.86026,38.1087494],[117.8640518,38.1081238],[117.8703766,38.1098289],[117.8770828,38.109024],[117.8797531,38.1065521],[117.882637,38.1072845],[117.884903,38.1096077],[117.8869629,38.1082687],[117.8864822,38.1043739],[117.8888702,38.1018944],[117.8935318,38.101284],[117.8955536,38.1015472],[117.8983917,38.1041107],[117.9027176,38.104866],[117.9099579,38.1054382],[117.9157333,38.1064453],[117.9209213,38.1079025],[117.9246521,38.109333],[117.9310226,38.10989],[117.9356766,38.1090508],[117.9376831,38.1106834],[117.934967,38.1140709],[117.9380569,38.1182404],[117.9406128,38.1205673],[117.9422073,38.1263123],[117.9468231,38.127758],[117.9523697,38.1260147],[117.9611588,38.1227188],[117.9696426,38.1201057],[117.9748077,38.1222458],[117.9782333,38.125042],[117.981987,38.125103],[117.9852371,38.1226349],[117.9859619,38.117157],[117.9822464,38.1150398],[117.9781876,38.1147461],[117.974472,38.1126289],[117.9704666,38.1105118],[117.9693832,38.1075211],[117.9679565,38.1063538],[117.963913,38.1060638],[117.9606171,38.1099014],[117.9564896,38.1123543],[117.9532471,38.1143608],[117.950119,38.1117935],[117.9484329,38.1101685],[117.9461365,38.108757],[117.9447021,38.1080513],[117.9433136,38.1059685],[117.9494629,38.1033211],[117.9511795,38.1042595],[117.9534836,38.1052132],[117.9560928,38.105484],[117.9575806,38.1036758],[117.9617233,38.1005363],[117.9597397,38.0984497],[117.9550934,38.098835],[117.9483719,38.1007843],[117.9431229,38.1018486],[117.9358673,38.1015053],[117.9327316,38.0998535],[117.9281769,38.0961189],[117.9242172,38.0921707],[117.9208374,38.0886841],[117.9165268,38.0867844],[117.9135895,38.0885696],[117.9103394,38.0908051],[117.9071503,38.0907516],[117.9051437,38.0900345],[117.9049072,38.087513],[117.9035568,38.0838318],[117.9003906,38.0828667],[117.8972473,38.0812149],[117.8978729,38.0793953],[117.9025116,38.0794678],[117.9036789,38.079258],[117.9034576,38.0767403],[117.8982773,38.0750542],[117.8945465,38.073391],[117.8893814,38.071476],[117.8836288,38.0695534],[117.8819504,38.0672379],[117.8820267,38.0642662],[117.8840332,38.0652122],[117.8883438,38.067112],[117.8958206,38.069294],[117.9030609,38.0696373],[117.9076385,38.0720024],[117.9118576,38.0768738],[117.9149933,38.0789833],[117.9210663,38.0795364],[117.9271469,38.0798607],[117.9320374,38.0813103],[117.9348068,38.0863876],[117.9373932,38.0880318],[117.9383011,38.086216],[117.9381027,38.0827789],[117.9358826,38.0788574],[117.9365234,38.07658],[117.9411011,38.0787086],[117.9445038,38.0821953],[117.9452972,38.0847244],[117.9440765,38.0869942],[117.9405365,38.0892258],[117.9373016,38.0912323],[117.937233,38.0939789],[117.9424667,38.0931435],[117.9494476,38.0925674],[117.9537888,38.0930939],[117.9579086,38.090641],[117.9629135,38.0879745],[117.9716187,38.0876503],[117.9777298,38.0868301],[117.9817581,38.0880394],[117.982872,38.0898857],[117.9848328,38.0931206],[117.990387,38.0911446],[117.9916077,38.0886459],[117.992363,38.0815659],[117.9947891,38.0774841],[117.9971924,38.0738602],[118.0019226,38.0702744],[118.0068665,38.0694351],[118.0097122,38.0719948],[118.0105209,38.074295],[118.0156784,38.076889],[118.0237732,38.0781555],[118.0275421,38.0779839],[118.0299606,38.0739021],[118.0280838,38.0676956],[118.0253372,38.0614777],[118.0248871,38.0562096],[118.0263977,38.0534859],[118.0302887,38.0485115],[118.0327682,38.0419159],[118.0323868,38.0336723],[118.0305176,38.0272408],[118.0248108,38.0237236],[118.0208435,38.0197754],[118.0146408,38.0128174],[118.0107422,38.0065842],[118.0050278,38.0032921],[117.9972763,38.0001984],[117.9923782,37.9994392],[117.9892273,37.9975586],[117.9854965,37.9961281],[117.9881668,37.9941139],[117.9977798,37.991745],[118.0087585,37.9930573],[118.0173721,37.9961586],[118.0224609,38.0010414],[118.0270767,38.0020256],[118.031189,37.9995728],[118.0370789,37.9955406],[118.0459213,37.9892654],[118.0501328,37.9833832],[118.0488205,37.9771843],[118.0478287,37.9703064],[118.0467911,37.9654884],[118.0451508,37.9613457],[118.0449066,37.9590569],[118.0462036,37.9540443],[118.046257,37.9514847],[118.0557632,37.9515877],[118.0628967,37.9529724],[118.0643768,37.9566002],[118.0689163,37.9603271],[118.0768585,37.9673042],[118.0869598,37.9688263],[118.0999069,37.9719887],[118.1132278,37.9721794],[118.1236877,37.970726],[118.1278229,37.9675827],[118.1311111,37.9625969],[118.1332932,37.9564514],[118.1324997,37.9527817],[118.1322784,37.9495735],[118.133812,37.9459343],[118.1384125,37.9471436],[118.1383286,37.9508018],[118.1370697,37.9553604],[118.1372986,37.958107],[118.138443,37.95858],[118.1416779,37.9563408],[118.1435013,37.9527054],[118.1456223,37.948391],[118.1487808,37.9498062],[118.1481094,37.9536858],[118.145668,37.9591446],[118.1453171,37.9618835],[118.1473007,37.9637375],[118.1537094,37.9622307],[118.1616211,37.9579926],[118.1685867,37.9571762],[118.1731873,37.9586105],[118.1716766,37.9613342],[118.1672974,37.9631042],[118.1628723,37.9667015],[118.1575317,37.9723473],[118.1557999,37.9849052],[118.1536102,37.9921951],[118.1536865,38.0015755],[118.1521072,38.0070457],[118.1501465,38.0166245],[118.1535492,38.0203323],[118.1624985,38.0218277],[118.17173,38.0235596],[118.1739807,38.0267906],[118.1695633,38.029705],[118.16745,38.0335655],[118.165947,38.0358315],[118.1719666,38.038662],[118.1715469,38.0448303],[118.1693497,38.0523491],[118.1671371,38.0603256],[118.1658478,38.0660286],[118.1696396,38.0651627],[118.1735229,38.0604134],[118.1773834,38.0563507],[118.1828995,38.0557404],[118.1796036,38.0604973],[118.1763229,38.0643425],[118.173027,38.0690994],[118.1717911,38.0727425],[118.1731873,38.0748215],[118.1707764,38.078907],[118.1701584,38.0807266],[118.1747589,38.0823936],[118.1822662,38.0836372],[118.1854324,38.0859489],[118.1876984,38.0876007],[118.1900101,38.0878639],[118.1926727,38.0853844],[118.1956635,38.0813065],[118.1983337,38.0788269],[118.1997223,38.0815887],[118.199913,38.0861664],[118.1992188,38.0911903],[118.2002563,38.0966949],[118.2028122,38.099247],[118.2037277,38.0971985],[118.2041168,38.0926323],[118.2064667,38.0908318],[118.2065735,38.0869446],[118.2049026,38.0834923],[118.2058868,38.0780144],[118.2106705,38.0716705],[118.2142792,38.065773],[118.2164307,38.0598526],[118.2216873,38.058094],[118.2228088,38.0601692],[118.2232513,38.0663528],[118.2266464,38.0700569],[118.2313995,38.0650864],[118.2303467,38.0595818],[118.232132,38.0577774],[118.2364807,38.0580635],[118.2393799,38.0578728],[118.2423172,38.0556221],[118.2458878,38.0520134],[118.2509537,38.0454445],[118.2542267,38.0415993],[118.2574768,38.0386658],[118.260582,38.0425987],[118.2607498,38.048317],[118.2594528,38.0549355],[118.2601776,38.0615768],[118.2611771,38.0691414],[118.2627563,38.076252],[118.2622833,38.0853958],[118.2630692,38.0892944],[118.2674026,38.0904961],[118.2701035,38.0861855],[118.2664566,38.0799599],[118.2642975,38.072155],[118.2681732,38.0674019],[118.2723694,38.0605927],[118.2739792,38.0530663],[118.2718201,38.0454865],[118.2658463,38.0399208],[118.2616501,38.0330048],[118.2586136,38.0261002],[118.2615891,38.02248],[118.2650986,38.0206947],[118.2690735,38.0246353],[118.2729263,38.0205688],[118.2744293,38.0178413],[118.2767715,38.0167274],[118.2791367,38.014473],[118.2828293,38.018177],[118.2833328,38.0218468],[118.2838211,38.0261993],[118.2853775,38.0349121],[118.2857971,38.0424652],[118.2909012,38.0480232],[118.2942963,38.0514946],[118.2974472,38.0533676],[118.3003464,38.0536308],[118.3032532,38.053669],[118.3073578,38.0512047],[118.3100128,38.0487213],[118.3210068,38.0497742],[118.329422,38.0494232],[118.3401413,38.0495567],[118.3522034,38.0551949],[118.3616333,38.0626297],[118.3655014,38.0718269],[118.3691177,38.0796509],[118.3748398,38.0836067],[118.3792267,38.0818329],[118.3802567,38.0731506],[118.3823776,38.0688286],[118.3870621,38.0666008],[118.3904266,38.0721283],[118.3918762,38.0719185],[118.3934631,38.0657578],[118.3926773,38.0611763],[118.3950729,38.0577736],[118.399971,38.0589752],[118.4059982,38.0617943],[118.4142838,38.0682945],[118.4222717,38.0750198],[118.4338074,38.0783577],[118.4410324,38.079586],[118.4502029,38.085865],[118.4547195,38.0920944],[118.4600067,38.1040497],[118.4633408,38.1123238],[118.4671021,38.1128197],[118.4709167,38.1103516],[118.4732666,38.1083183],[118.4747772,38.105587],[118.4777222,38.1031036],[118.4734268,38.1003151],[118.4726562,38.0945854],[118.4724503,38.0902367],[118.469902,38.0870056],[118.4641876,38.0821381],[118.4636688,38.078701],[118.4669571,38.073246],[118.4693832,38.0677834],[118.4691391,38.0652657],[118.4639511,38.0636063],[118.4588165,38.0592003],[118.4566269,38.0516281],[118.4518738,38.042881],[118.4468613,38.0318413],[118.4409103,38.0246849],[118.4378128,38.0196152],[118.4402237,38.0148392],[118.4463272,38.0135384],[118.4564438,38.0154839],[118.4643326,38.0114555],[118.4661636,38.0069008],[118.4691086,38.0037308],[118.4731674,38.0037766],[118.4815292,38.0059319],[118.4876099,38.0059967],[118.4919968,38.0030746],[118.4969864,38.0001564],[118.5009995,38.0024872],[118.5017471,38.0086708],[118.5057068,38.0146637],[118.5115585,38.0112953],[118.5154266,38.005619],[118.5201569,37.9999504],[118.526413,37.9904137],[118.5297394,37.9822121],[118.5324783,37.9749222],[118.5351334,37.9719772],[118.5417633,37.9741058],[118.5451431,37.9794044],[118.5493469,37.9869957],[118.5521164,37.9941177],[118.5563507,38.0007973],[118.5636063,37.9997292],[118.5668335,37.9983902],[118.5686493,37.9933777],[118.5710373,37.988369],[118.5782623,37.9898148],[118.5804367,37.9985313],[118.5808792,38.0065422],[118.5790787,38.0104103],[118.5790482,38.0120125],[118.5792923,38.014534],[118.5792389,38.0179634],[118.5861435,38.0212364],[118.5941772,38.0254364],[118.5958786,38.0279694],[118.5981064,38.0332565],[118.6026077,38.0413055],[118.6060333,38.0447731],[118.6132584,38.0459862],[118.6219406,38.0467606],[118.6317368,38.0502892],[118.6401367,38.0503731],[118.6465836,38.0463181],[118.6506729,38.0447578],[118.6570587,38.0434494],[118.6619873,38.0432663],[118.6651917,38.0423813],[118.670723,38.0415192],[118.671257,38.0440407],[118.6735077,38.0481796],[118.6778336,38.0495949],[118.6806564,38.0546532],[118.683197,38.0590248],[118.6883926,38.0606728],[118.6941986,38.0598145],[118.699707,38.0600929],[118.7042923,38.0631104],[118.7039337,38.0681381],[118.700943,38.0738297],[118.7008438,38.0804634],[118.7018814,38.0882492],[118.7067719,38.0912666],[118.7079468,38.0899086],[118.7091827,38.0855713],[118.7112808,38.0803299],[118.7151108,38.0764771],[118.7202988,38.0788116],[118.7216263,38.0866013],[118.7247467,38.0914345],[118.7297134,38.0891914],[118.7306137,38.087368],[118.7335205,38.0864792],[118.7355576,38.0862694],[118.7474136,38.0884361],[118.751152,38.0907555],[118.7554321,38.0955963],[118.7556763,38.0988007],[118.7535172,38.1070175],[118.7562637,38.1187057],[118.7619171,38.1283646],[118.7696381,38.1364365],[118.7756424,38.142437],[118.7810898,38.1472855],[118.7914505,38.1537819],[118.7934875,38.1531105],[118.7947464,38.1458015],[118.7902298,38.1373024],[118.7857437,38.1258278],[118.7820663,38.1193924],[118.7780838,38.1138649],[118.7763672,38.1113358],[118.7743835,38.1081543],[118.7894211,38.0964508],[118.7919235,38.0993462],[118.7964706,38.1057892],[118.8024521,38.1136169],[118.8067169,38.1198311],[118.8135529,38.1294937],[118.8192596,38.136631],[118.8244629,38.1382751],[118.8271332,38.1341782],[118.8237762,38.1238594],[118.8199234,38.1089592],[118.8197708,38.0991249],[118.8220062,38.0833588],[118.8241501,38.0751419],[118.8240128,38.0643883],[118.8215332,38.0552177],[118.8152771,38.0455627],[118.8099136,38.0356789],[118.8013535,38.0264587],[118.7959213,38.0204659],[118.7951889,38.0106239],[118.8016586,38.0038185],[118.8113403,37.9947472],[118.818367,37.9888611],[118.8236618,37.9831848],[118.8274536,37.9818459],[118.8314896,37.9827919],[118.8398666,37.9837761],[118.8433228,37.9863205],[118.8441391,37.9897575],[118.8414688,37.9943123],[118.84021,38.0016212],[118.8448029,38.0055466],[118.8531265,38.0104141],[118.8579712,38.016861],[118.8625031,38.0253601],[118.8676071,38.0327187],[118.8759766,38.0362167],[118.8852005,38.0404053],[118.8897781,38.0445595],[118.8937988,38.0475616],[118.8952103,38.0510063],[118.8971863,38.0542221],[118.9009018,38.0592842],[118.9080963,38.0625381],[118.9194031,38.0630836],[118.9281387,38.0604019],[118.9365692,38.0579453],[118.9403229,38.0591164],[118.9385071,38.0659676],[118.9363937,38.0732689],[118.9369202,38.0771637],[118.9415665,38.0758247],[118.9451675,38.0664749],[118.9487381,38.0587234],[118.9511566,38.0505066],[118.9489136,38.0443115],[118.9455032,38.0385704],[118.9447021,38.0323868],[118.9390106,38.0236549],[118.9376373,38.0167809],[118.9397583,38.0097084],[118.9369736,38.000309],[118.9353409,37.9918365],[118.9383163,37.9852219],[118.9433212,37.9781685],[118.9453964,37.973381],[118.9486771,37.9656258],[118.9513474,37.9608421],[118.9536972,37.9569702],[118.9580917,37.9533424],[118.9630737,37.9481163],[118.9671631,37.9454002],[118.9735565,37.9426994],[118.9811096,37.9402351],[118.9840469,37.936367],[118.9840927,37.9329376],[118.9812393,37.9290314],[118.9792862,37.9216957],[118.978508,37.9146004],[118.9780273,37.9054489],[118.9809723,37.9013519],[118.9914169,37.8984489],[118.9937897,37.8932037],[118.9860535,37.887661],[118.9774323,37.8823433],[118.9733963,37.8807106],[118.9728317,37.8800201],[118.9673767,37.8765526],[118.9656906,37.8719673],[118.9646225,37.8646393],[118.9632874,37.8554802],[118.9599304,37.8453903],[118.9527893,37.8384781],[118.9479218,37.8345528],[118.9407501,37.8299255],[118.9338226,37.8301048],[118.930603,37.8330536],[118.9296494,37.8396797],[118.9298782,37.844944],[118.9283829,37.8492775],[118.9231415,37.8519821],[118.9144669,37.8526039],[118.9081268,37.8507271],[118.9035263,37.8484039],[118.9018784,37.8419876],[118.9013672,37.8362656],[118.9002609,37.8328247],[118.8991623,37.8280144],[118.8971863,37.8236542],[118.895813,37.8192978],[118.9027481,37.8182068],[118.9071274,37.814579],[118.906601,37.810688],[118.8985138,37.8108521],[118.893898,37.8099022],[118.8901596,37.8085022],[118.8835602,37.8047905],[118.8784714,37.803093],[118.8827972,37.7967796],[118.888237,37.800251],[118.896843,37.8060341],[118.9083862,37.8058968],[118.9124603,37.8038673],[118.9157028,37.7995453],[118.9151917,37.7935944],[118.9051437,37.7889442],[118.8991318,37.7843208],[118.9063873,37.7816353],[118.9159317,37.7798767],[118.9208832,37.777626],[118.9230728,37.7751656],[118.9235077,37.7746735],[118.9270096,37.7717247],[118.9325638,37.7658195],[118.939827,37.7617531],[118.9473572,37.7597504],[118.9563293,37.7584419],[118.9638519,37.7566643],[118.9684982,37.7548714],[118.9728165,37.755127],[118.9748001,37.7588005],[118.978241,37.7608833],[118.9837265,37.7604675],[118.9895477,37.7568474],[118.9996796,37.7543983],[119.0135269,37.7544899],[119.0202026,37.7520218],[119.0263138,37.7474861],[119.0306931,37.7431679],[119.0379105,37.7429848],[119.0422134,37.7448463],[119.0473633,37.7496796],[119.0511093,37.750164],[119.0569,37.7483711],[119.0626831,37.7479515],[119.0650101,37.7454453],[119.0656433,37.7399597],[119.063118,37.7335396],[119.0599823,37.7298622],[119.0576935,37.7277908],[119.0548172,37.7266235],[119.0559998,37.7236595],[119.0589066,37.720932],[119.0623932,37.7193527],[119.0638733,37.7157021],[119.0592728,37.7147598],[119.0537796,37.7151833],[119.0491714,37.714695],[119.0465927,37.7130775],[119.0399628,37.7123489],[119.03302,37.7136765],[119.0275269,37.7150116],[119.0229416,37.7120094],[119.0151672,37.7108154],[119.0085373,37.7105408],[119.0030289,37.7127914],[118.9964066,37.7111435],[118.987793,37.7083397],[118.9826279,37.705101],[118.9803391,37.7032547],[118.9800797,37.7011948],[118.9838562,37.6987038],[118.9890366,37.6994286],[118.9933929,37.6971703],[118.9951477,37.6946678],[118.9940567,37.6896286],[118.9912415,37.682972],[118.9907227,37.6786232],[118.9887466,37.6733475],[118.9822388,37.6634674],[118.9803696,37.6612701],[118.9759827,37.656105],[118.9691086,37.6519356],[118.9601822,37.6507301],[118.9486923,37.6469879],[118.9403763,37.6428108],[118.9395905,37.6366272],[118.939682,37.6290779],[118.9409332,37.6215401],[118.9476395,37.6142693],[118.9552231,37.6063194],[118.9573135,37.6001549],[118.9553528,37.5957985],[118.9536591,37.5928116],[118.9511337,37.587532],[118.9474792,37.5790405],[118.9449692,37.5726204],[118.9404526,37.5643501],[118.935379,37.5553932],[118.9300308,37.545517],[118.9246674,37.5356407],[118.9205017,37.5241699],[118.9211578,37.5175438],[118.9218369,37.5079422],[118.923111,37.502449],[118.9242783,37.4974365],[118.9263611,37.4919624],[118.9255524,37.487381],[118.9264526,37.4839592],[118.9288712,37.474369],[118.931633,37.4606628],[118.9346237,37.4503899],[118.9307175,37.4402962],[118.9201431,37.4351845],[118.9081268,37.4302902],[118.896431,37.4233398],[118.8815765,37.4156761],[118.8667297,37.4086952],[118.8587418,37.4042854],[118.8527527,37.4012642],[118.8487473,37.398941],[118.846489,37.3964081],[118.8427887,37.3938637],[118.8414307,37.388134],[118.8403473,37.383091],[118.8438721,37.3773994],[118.8453903,37.371006],[118.8448868,37.3650589],[118.8461609,37.356144],[118.8480072,37.346096],[118.8432312,37.3387375],[118.8392715,37.3341293],[118.833519,37.3347702],[118.8246231,37.3349228],[118.816597,37.3339424],[118.8105927,37.332058],[118.8025818,37.3303909],[118.7933884,37.3305397],[118.7879333,37.3307228],[118.7839432,37.3295441],[118.7794037,37.3282471],[118.7822495,37.3265572],[118.7923431,37.3232117],[118.8046875,37.3233185],[118.8147278,37.3236313],[118.8281937,37.3258018],[118.8393707,37.3268089],[118.8491516,37.3248291],[118.8580933,37.3221588],[118.8729935,37.3236504],[118.8876038,37.3258247],[118.899559,37.3334656],[118.9058228,37.3378601],[118.9121399,37.337677],[118.9175873,37.3381767],[118.9245071,37.3354836],[118.9231567,37.3288422],[118.9215698,37.3176193],[118.9220276,37.3155479],[118.9236984,37.3080292],[118.9189301,37.2986145],[118.9129715,37.2935371],[118.9046936,37.2900429],[118.8961105,37.2876892],[118.8926468,37.2888069],[118.8860474,37.2887535],[118.8829803,37.2825546],[118.8810196,37.2791061],[118.8756332,37.2742615],[118.8690567,37.2723808],[118.8550034,37.272953],[118.8449402,37.2742424],[118.8351288,37.2785072],[118.825943,37.2793503],[118.8173294,37.2795067],[118.8121872,37.2778587],[118.8150787,37.2762833],[118.8254395,37.2740822],[118.8346405,37.2723274],[118.8447113,37.2696686],[118.8564987,37.2672462],[118.8656769,37.2673187],[118.8722687,37.2680588],[118.8751602,37.2657967],[118.873497,37.2616653],[118.8832321,37.2626572],[118.8911896,37.2684364],[118.9026566,37.2692108],[118.9084091,37.2676544],[118.910759,37.262867],[118.9125214,37.2599106],[118.9190979,37.2611008],[118.9243088,37.2570229],[118.9303436,37.2566109],[118.9354172,37.2632828],[118.9391937,37.2598763],[118.9389267,37.2578163],[118.9387131,37.252327],[118.9427032,37.2535019],[118.9487,37.2556038],[118.9512329,37.2601967],[118.954628,37.2638817],[118.9680862,37.2651215],[118.9816132,37.2617836],[118.997963,37.261898],[119.0129013,37.2585678],[119.0221329,37.2545128],[119.026207,37.2479057],[119.0331573,37.2408638],[119.0403976,37.2345047],[119.0395584,37.2324409],[119.03125,37.2317009],[119.0269699,37.2305298],[119.0278625,37.2268753],[119.034523,37.2216568],[119.0394669,37.2134552],[119.0329285,37.2088356],[119.0235138,37.2048874],[119.0143585,37.2034531],[119.0063171,37.2045403],[118.9980316,37.2033424],[118.9923401,37.1998711],[118.9852066,37.1961632],[118.9884033,37.192749],[118.9995728,37.1939735],[119.0081482,37.1949463],[119.0195923,37.1966248],[119.0281982,37.1953087],[119.0396271,37.1983604],[119.0490417,37.2025375],[119.0630188,37.2088013],[119.0713272,37.2079391],[119.0796738,37.205246],[119.0937729,37.2002983],[119.1004105,37.1943932],[119.1033173,37.1893768],[119.1042328,37.1843491],[119.1042862,37.1781769],[119.1051865,37.1742897],[119.1111832,37.1775284],[119.1122437,37.1860008],[119.1127472,37.1917229],[119.1202316,37.1890182],[119.130867,37.1842766],[119.1357803,37.1804161],[119.1363907,37.1767616],[119.1384277,37.1733437],[119.1441727,37.1720009],[119.1524963,37.1695328],[119.1573868,37.1658974],[119.1616898,37.1635666],[119.165741,37.1613693],[119.1752625,37.1536446],[119.1781769,37.1477127],[119.1745071,37.1406021],[119.1754303,37.1337433],[119.1783676,37.1252975],[119.1804123,37.1207314],[119.1835709,37.1191483],[119.1927338,37.1187401],[119.1947174,37.1210365],[119.1949692,37.1258392],[119.2014923,37.1322784],[119.2181091,37.1314507],[119.2318268,37.1342621],[119.2433014,37.1306534],[119.2573776,37.1243172],[119.2671509,37.1191025],[119.2703171,37.1170578],[119.2721863,37.1165962],[119.2749023,37.1159325],[119.2811813,37.118248],[119.2839966,37.1232948],[119.2882614,37.1283455],[119.2916794,37.1311073],[119.2994232,37.1302261],[119.3060532,37.1233902],[119.3129578,37.1176987],[119.3221588,37.110878],[119.3256531,37.1019707],[119.3248367,37.0953331],[119.325737,37.0887032],[119.3277817,37.0832214],[119.3326263,37.0855293],[119.3368835,37.09058],[119.3445587,37.0990715],[119.3522263,37.1080208],[119.3573532,37.1133003],[119.3702164,37.1133499],[119.3945389,37.115036],[119.4202728,37.1192398],[119.4302673,37.1243057],[119.4420013,37.1250305],[119.4574738,37.1227875],[119.4757767,37.1253548],[119.4814835,37.1285744],[119.4891891,37.1343155],[119.4926224,37.134552],[119.4949265,37.1313553],[119.4966736,37.1267853],[119.4969711,37.1222115],[119.5026779,37.1265717],[119.5061035,37.1286392],[119.5118332,37.1268234],[119.5169907,37.1252327],[119.5238571,37.1261673],[119.5298691,37.1261787],[119.5330429,37.1211548],[119.5316162,37.1163483],[119.5322266,37.1088028],[119.5382538,37.1046982],[119.5453873,37.1069984],[119.5525436,37.1097603],[119.556572,37.1035919],[119.5557327,37.0985603],[119.5577469,37.0955887],[119.5617523,37.0944557],[119.5663605,37.0927925],[119.5697632,37.0969887],[119.5751724,37.1022606],[119.581459,37.1073036],[119.5926132,37.110981],[119.6011963,37.1064224],[119.6026535,37.1018524],[119.6026611,37.096817],[119.6026688,37.0947609],[119.6064377,37.090641],[119.6072464,37.0924797],[119.6109467,37.0982018],[119.6189728,37.0970726],[119.6241226,37.0973091],[119.6306992,37.0993767],[119.6427078,37.1019096],[119.6495667,37.1010056],[119.6638794,37.1030807],[119.6807632,37.1067581],[119.6884766,37.1097412],[119.6967773,37.1108894],[119.7033615,37.1088371],[119.7108002,37.1099892],[119.7145233,37.1150208],[119.7222366,37.1127396],[119.7256775,37.1111412],[119.7308273,37.1100006],[119.7325516,37.1079407],[119.7371292,37.1111488],[119.7376938,37.1161804],[119.7419815,37.1191559],[119.7477036,37.1205292],[119.7534332,37.1209908],[119.7551498,37.1214485],[119.7580109,37.1225929],[119.7594376,37.1232796],[119.7608719,37.1246529],[119.763443,37.1280823],[119.7654419,37.1306],[119.7680206,37.1331177],[119.7688828,37.1342621],[119.7705917,37.1367798],[119.7734604,37.1360931],[119.7754593,37.1331215],[119.778038,37.1324348],[119.7791824,37.1358643],[119.7806091,37.1438713],[119.7783127,37.1493607],[119.7771683,37.1525612],[119.7774506,37.1587372],[119.7797394,37.1639977],[119.7883301,37.1731491],[119.7972031,37.1784096],[119.810379,37.1823006],[119.8195496,37.1866417],[119.8267136,37.192131],[119.8338699,37.1971626],[119.8393173,37.201046],[119.8439026,37.2053947],[119.8459091,37.2079086],[119.8482666,37.209816],[119.8487778,37.2127113],[119.8504868,37.215683],[119.8530731,37.2177391],[119.8559418,37.2200241],[119.8588104,37.2207108],[119.8659668,37.2241402],[119.8714218,37.2259636],[119.8834686,37.2332764],[119.8883438,37.2392197],[119.8932266,37.2467613],[119.8949509,37.2529373],[119.8958206,37.2579689],[119.8975372,37.2611694],[119.9007034,37.2634544],[119.9058609,37.2652779],[119.9078827,37.2700806],[119.909317,37.2778587],[119.909317,37.2849503],[119.9107666,37.2904358],[119.9116364,37.294323],[119.9119263,37.2977524],[119.9113617,37.3037033],[119.908783,37.3073654],[119.9047623,37.3046227],[119.8967285,37.3057747],[119.8935776,37.3126373],[119.8895569,37.3220215],[119.884407,37.3304901],[119.8792496,37.3357544],[119.8714981,37.3382721],[119.8588715,37.3387375],[119.8568573,37.3412552],[119.8551407,37.3460617],[119.8485413,37.346981],[119.8427963,37.3485832],[119.841362,37.3536148],[119.8462372,37.3607025],[119.8539963,37.3623009],[119.8626175,37.3636703],[119.8781281,37.3686905],[119.8887634,37.3744011],[119.8993835,37.3791962],[119.9215088,37.3810081],[119.9321365,37.3821373],[119.9381714,37.3851051],[119.9404678,37.3869324],[119.9413376,37.3908157],[119.9410629,37.3956223],[119.9413528,37.4006538],[119.943367,37.406826],[119.9505615,37.4084206],[119.963501,37.4111481],[119.979599,37.4150124],[119.9885025,37.4159775],[119.9947891,37.4172249],[120,37.4187584],[120.0018463,37.4236031],[120.0043488,37.4291573],[120.0084763,37.4333267],[120.0190811,37.4345551],[120.0311737,37.4349136],[120.0446014,37.4373703],[120.0580826,37.4389153],[120.071167,37.4427338],[120.0811691,37.4446259],[120.0836029,37.4481354],[120.0853729,37.4536819],[120.0889206,37.4579086],[120.1054306,37.4625092],[120.1193771,37.4663467],[120.1324234,37.4713058],[120.1402588,37.4746971],[120.1477127,37.4779243],[120.1580124,37.4860039],[120.1666794,37.4919777],[120.1800003,37.4973946],[120.1839066,37.5002518],[120.1878662,37.5019684],[120.193573,37.5035019],[120.1979065,37.5098076],[120.2006912,37.5121765],[120.209877,37.5195351],[120.224411,37.5304756],[120.2296371,37.5363464],[120.2342224,37.5435753],[120.2352982,37.5454369],[120.2414169,37.5506439],[120.2424393,37.5520859],[120.2493591,37.5538445],[120.2568283,37.5613785],[120.2703629,37.5688477],[120.2847137,37.5774879],[120.299469,37.5902596],[120.3039474,37.593586],[120.31707,37.6108894],[120.3218231,37.6215553],[120.3231201,37.6316681],[120.3262482,37.6395378],[120.3251114,37.6459198],[120.3223267,37.6501961],[120.3228989,37.6570816],[120.3177032,37.6635818],[120.309082,37.6693077],[120.3007507,37.6748047],[120.2869873,37.6785507],[120.2719574,37.6786003],[120.2604828,37.6766815],[120.2492828,37.6749992],[120.2327881,37.6749992],[120.2207489,37.679245],[120.2187729,37.6849174],[120.2264633,37.6874199],[120.2485123,37.6857414],[120.2747726,37.6871529],[120.2848969,37.6867409],[120.3028183,37.6872292],[120.3236237,37.687561],[120.3374481,37.6888504],[120.3508987,37.6921883],[120.3646774,37.6946182],[120.3768234,37.7018089],[120.3833313,37.7049561],[120.3890533,37.7067108],[120.396553,37.7069092],[120.3998184,37.7118073],[120.4005737,37.7148018],[120.4146118,37.7247887],[120.4315338,37.7355347],[120.439682,37.7414742],[120.4444504,37.7450333],[120.4535599,37.748703],[120.4685974,37.7490921],[120.4781189,37.7497902],[120.4909134,37.7485161],[120.5019531,37.7471962],[120.5083771,37.7457542],[120.5136566,37.7438278],[120.5203705,37.7426224],[120.5214691,37.7440224],[120.517807,37.7487411],[120.5171967,37.7494125],[120.5249634,37.7509804],[120.5307617,37.7504425],[120.5394516,37.7504311],[120.5529633,37.7526016],[120.5641327,37.7558594],[120.5776672,37.7573357],[120.5798187,37.7579002],[120.5854034,37.7593613],[120.5930328,37.7641296],[120.6006088,37.7702713],[120.6044922,37.7744865],[120.6098328,37.7787399],[120.6149902,37.7800102],[120.6211166,37.7787857],[120.6309967,37.7778816],[120.6427231,37.7818298],[120.6535492,37.7862129],[120.66465,37.7912865],[120.6868591,37.8012085],[120.6967621,37.8073997],[120.7089233,37.8154716],[120.7151031,37.8204269],[120.723877,37.825901],[120.731842,37.8297501],[120.7404099,37.8331566],[120.7451324,37.8307495],[120.7487869,37.8257942],[120.7544098,37.8227196],[120.7598724,37.8237648],[120.7678833,37.8264656],[120.7774734,37.8257713],[120.7874298,37.8227959],[120.7983017,37.8184624],[120.8059616,37.8149757],[120.8068924,37.8131638],[120.8078613,37.8104362],[120.8133087,37.8119354],[120.8173065,37.8134003],[120.8242722,37.8131027],[120.8335495,37.8128548],[120.8453369,37.8151817],[120.8491364,37.8223648],[120.853302,37.8274956],[120.86306,37.8302307],[120.8763733,37.8305283],[120.8841934,37.8306999],[120.8892136,37.828064],[120.8905334,37.8232841],[120.8938293,37.8201485],[120.8961868,37.8190575],[120.8990936,37.8188934],[120.9039078,37.8217468],[120.9085464,37.8213882],[120.9138794,37.8182983],[120.9188538,37.8168068],[120.9217224,37.8175545],[120.9259796,37.8201675],[120.9320221,37.8212166],[120.9326935,37.8184814],[120.9363632,37.8132935],[120.9413834,37.8101959],[120.9426804,37.8061028],[120.9429016,37.7996979],[120.9417725,37.7989845],[120.937973,37.8000488],[120.9310989,37.7976112],[120.9285126,37.7888527],[120.9310913,37.7811241],[120.9371796,37.7725525],[120.9497604,37.7687035],[120.9621735,37.7611847],[120.9689865,37.7565231],[120.9734421,37.7531853],[120.9745865,37.753437],[120.980957,37.7533455],[120.991127,37.7521896],[120.9940872,37.7501907],[120.9953232,37.7479248],[121.0044937,37.7419395],[121.00811,37.7374344],[121.0073624,37.7339859],[121.0052795,37.7270699],[121.0145416,37.7181053],[121.0149918,37.7133064],[121.0153885,37.7101097],[121.0163727,37.7082634],[121.0175476,37.7060356],[121.0210037,37.7065659],[121.0226364,37.7093468],[121.0240021,37.7121239],[121.0318298,37.7113724],[121.0444336,37.7063675],[121.0557785,37.7043114],[121.0621109,37.7053604],[121.069252,37.7080269],[121.0769424,37.7116203],[121.0843811,37.7140617],[121.0988083,37.7150421],[121.1092987,37.7127342],[121.1139679,37.7114563],[121.1177368,37.7110748],[121.1263428,37.7135353],[121.1338882,37.7125397],[121.1382675,37.7112579],[121.1415482,37.7081184],[121.1456909,37.7049942],[121.1472931,37.7004433],[121.1473389,37.698616],[121.1368027,37.6935959],[121.1355209,37.6883049],[121.1308289,37.6813431],[121.1241226,37.6741104],[121.1216736,37.6694794],[121.1228104,37.6608047],[121.1259232,37.6601257],[121.129509,37.6593361],[121.1341171,37.6594276],[121.1384888,37.6585999],[121.1440277,37.6571083],[121.1476212,37.6530571],[121.1475296,37.6468735],[121.1444702,37.6431465],[121.1340179,37.6356125],[121.1305237,37.6273003],[121.1343994,37.6143265],[121.1415482,37.6076012],[121.1483917,37.6010971],[121.1572723,37.5941772],[121.1674423,37.5898056],[121.1710281,37.5882645],[121.1824188,37.5841408],[121.1919327,37.5807571],[121.1958466,37.5793648],[121.2048492,37.5774803],[121.2146683,37.5774422],[121.2239227,37.5769348],[121.2360535,37.5769348],[121.2452927,37.5768852],[121.253952,37.5765915],[121.2628937,37.5772209],[121.2746964,37.5781326],[121.2798767,37.5786858],[121.2856522,37.5783348],[121.2905731,37.5779686],[121.290123,37.5740662],[121.2870636,37.5698891],[121.2866669,37.5634727],[121.2855988,37.5510902],[121.2848663,37.5462646],[121.2849197,37.5448952],[121.2875137,37.5451698],[121.2894669,37.547039],[121.2881088,37.5538826],[121.288269,37.5584641],[121.2904892,37.5614815],[121.2951736,37.5590515],[121.2969894,37.5563393],[121.2995377,37.5579872],[121.3016129,37.56604],[121.3029709,37.5688133],[121.3057632,37.5720711],[121.3093719,37.5769463],[121.3035812,37.5775261],[121.3043671,37.5800591],[121.312149,37.5806618],[121.3247833,37.5829544],[121.3391037,37.5871086],[121.3471222,37.5890884],[121.3585663,37.5925026],[121.3638763,37.5987778],[121.3639221,37.6074829],[121.3622894,37.6138611],[121.3542862,37.6210442],[121.3412323,37.6270027],[121.3404007,37.6317825],[121.3473129,37.6328239],[121.3568726,37.6316223],[121.3641891,37.6283188],[121.3677292,37.6258659],[121.3767166,37.6246529],[121.3819275,37.6242905],[121.3842926,37.6222725],[121.3940201,37.6153488],[121.3993378,37.6110916],[121.4066467,37.608017],[121.4113007,37.6067238],[121.4180069,37.6040955],[121.4200821,37.6023026],[121.4224167,37.6016541],[121.4273834,37.599453],[121.4275131,37.5951042],[121.423027,37.5922203],[121.399971,37.5987396],[121.3886414,37.601284],[121.3748627,37.5985184],[121.3658371,37.5910301],[121.3618164,37.5799675],[121.3615112,37.5705757],[121.3649063,37.562851],[121.3693771,37.5576668],[121.3732834,37.5524712],[121.3770218,37.5529976],[121.3812714,37.5555916],[121.3840866,37.55793],[121.3876038,37.5561638],[121.3865585,37.5524826],[121.3826065,37.5492058],[121.3827133,37.5455437],[121.3856201,37.5446815],[121.3876266,37.5451736],[121.3915482,37.549366],[121.3938217,37.5505524],[121.3967133,37.5503731],[121.3988876,37.5449142],[121.4024887,37.5399437],[121.4089432,37.5361633],[121.4167786,37.5344734],[121.4219971,37.5334206],[121.4279785,37.5365028],[121.4321136,37.5329094],[121.4339294,37.5297394],[121.4395065,37.5261726],[121.4436035,37.5244102],[121.4450836,37.5228348],[121.4431305,37.5205116],[121.4404526,37.5129089],[121.4403763,37.5051231],[121.4431915,37.4973907],[121.4467926,37.4921837],[121.4501266,37.48629],[121.4583817,37.4795647],[121.4610519,37.476635],[121.4661484,37.471447],[121.4739304,37.4695282],[121.4828186,37.4605217],[121.4837036,37.4600143],[121.4936523,37.4542961],[121.5012283,37.4512215],[121.5075607,37.4513283],[121.5152512,37.4546623],[121.5214767,37.458889],[121.5249481,37.4584885],[121.5277328,37.4516678],[121.531311,37.4466896],[121.5373611,37.4467926],[121.5412521,37.4411316],[121.5410538,37.4376945],[121.5451508,37.4352455],[121.5536728,37.4289742],[121.5557327,37.4276352],[121.5572891,37.4282875],[121.5597229,37.4293022],[121.560997,37.435276],[121.5657501,37.4298592],[121.5690308,37.4255638],[121.5714569,37.4266777],[121.5747223,37.4281731],[121.5800934,37.4326134],[121.5883865,37.4345779],[121.5941772,37.4330711],[121.5988007,37.4329147],[121.6056366,37.4357719],[121.6124802,37.438858],[121.6171188,37.437561],[121.6194534,37.4366798],[121.6260681,37.4367867],[121.6332092,37.4394188],[121.639267,37.4388237],[121.6421967,37.4388695],[121.6476288,37.4389572],[121.6556931,37.4388542],[121.6672363,37.438118],[121.6761627,37.4387131],[121.6815872,37.4401703],[121.6797333,37.4456367],[121.6686935,37.449131],[121.6619492,37.4540634],[121.6619034,37.4561234],[121.6658096,37.4609909],[121.6762238,37.459549],[121.6898193,37.4574699],[121.7045898,37.4542618],[121.71698,37.4544487],[121.725029,37.4552574],[121.7340012,37.4535599],[121.7360916,37.450386],[121.7408981,37.442215],[121.7467728,37.4377251],[121.752861,37.435524],[121.7584305,37.4314842],[121.763237,37.4227982],[121.7638397,37.4217186],[121.7673569,37.4192543],[121.7699432,37.4197502],[121.7721634,37.4230766],[121.7727203,37.4239082],[121.7725601,37.4307785],[121.765213,37.4373093],[121.7538834,37.4412613],[121.7537079,37.4485855],[121.7608337,37.4521255],[121.7685776,37.4536133],[121.7923889,37.4583092],[121.811142,37.4574318],[121.8242569,37.4588089],[121.8398666,37.4615021],[121.8551178,37.4626312],[121.876442,37.4624672],[121.8836365,37.4630241],[121.8974228,37.465271],[121.9077911,37.465641],[121.9212418,37.4670334],[121.923027,37.4672165],[121.9313507,37.469162],[121.9399338,37.472477],[121.944252,37.4723053],[121.9486084,37.4707603],[121.9524536,37.4660034],[121.9528275,37.4616585],[121.9512024,37.4566002],[121.9469833,37.4519691],[121.937767,37.4516182],[121.9357681,37.45121],[121.930603,37.4501495],[121.9281311,37.4437065],[121.9314117,37.4384842],[121.9349289,37.4355545],[121.933609,37.4300461],[121.9316864,37.4249802],[121.9374313,37.425972],[121.9389038,37.4271812],[121.9422531,37.4299278],[121.9474411,37.4297676],[121.9518433,37.4261627],[121.9573288,37.4250908],[121.9638824,37.4286079],[121.9677429,37.42976],[121.9719009,37.4310036],[121.9822617,37.4313622],[121.9872131,37.4323463],[121.9908676,37.433075],[121.9901962,37.4374199],[121.9872284,37.4421883],[121.9810486,37.4485168],[121.9786301,37.4542084],[121.9745331,37.4578209],[121.9654694,37.4636536],[121.965332,37.4702911],[121.9651718,37.4780731],[121.9615707,37.4851265],[121.9679031,37.4858932],[121.9779816,37.4860229],[121.9839706,37.4893036],[121.9905701,37.4907608],[121.9953003,37.4850998],[121.9968567,37.4793968],[122.0000992,37.475544],[122.0026627,37.4792404],[122.0034637,37.4803963],[122.0050583,37.4870529],[121.9993973,37.4963684],[121.9999084,37.4998093],[122.0052872,37.5042267],[122.0110016,37.5072746],[122.0140915,37.5114326],[122.017807,37.5133133],[122.0219193,37.509243],[122.0251312,37.5074501],[122.0309067,37.5070648],[122.0383301,37.5108185],[122.0380173,37.5115013],[122.0275726,37.5154953],[122.0205765,37.518383],[122.0123978,37.5240021],[122.0146866,37.5249481],[122.0250778,37.5248489],[122.033989,37.5263329],[122.0402832,37.5291595],[122.0434189,37.5307999],[122.0439606,37.5326347],[122.0458603,37.5386124],[122.0507431,37.5400429],[122.0574265,37.5369225],[122.0655594,37.5345039],[122.0715866,37.5359459],[122.0714722,37.5424309],[122.0719528,37.5476265],[122.072403,37.5535851],[122.0665665,37.5571785],[122.0621338,37.563076],[122.0652771,37.5640297],[122.0746078,37.5591049],[122.0784378,37.5550308],[122.0845871,37.5500679],[122.0881729,37.5441589],[122.095787,37.5371552],[122.1032486,37.5395279],[122.1089401,37.5439491],[122.1089096,37.5455475],[122.1103134,37.5478554],[122.1143417,37.54813],[122.1169128,37.5497627],[122.115097,37.5551109],[122.114212,37.5609436],[122.1171112,37.5640411],[122.1221695,37.5620079],[122.1275406,37.5521736],[122.1355896,37.5536423],[122.1382523,37.5500107],[122.1374207,37.5483971],[122.1383896,37.5424576],[122.144783,37.5402374],[122.1551666,37.5401306],[122.1580734,37.5390205],[122.1541672,37.5309601],[122.1542511,37.5266113],[122.1566162,37.5232048],[122.15522,37.5209007],[122.1463318,37.51828],[122.1383133,37.5149841],[122.1322937,37.5133133],[122.1277084,37.5114288],[122.1263275,37.5082092],[122.1225891,37.5074768],[122.1242294,37.4967384],[122.1283112,37.4940376],[122.131813,37.4924774],[122.1345367,37.4849548],[122.1363068,37.4822273],[122.1349564,37.476944],[122.134758,37.4725952],[122.1366425,37.4639168],[122.1393585,37.4570808],[122.1432419,37.4495697],[122.148201,37.4464226],[122.1551895,37.4419212],[122.1533127,37.4345779],[122.1531067,37.4293098],[122.1569595,37.4238586],[122.1589813,37.4234238],[122.1580429,37.4277649],[122.1614532,37.4300919],[122.1663971,37.4273987],[122.1710434,37.4253922],[122.1771011,37.4245415],[122.1837234,37.4250755],[122.186203,37.4319687],[122.1900711,37.4407082],[122.1925964,37.4444008],[122.1959991,37.4478722],[122.2020493,37.4479408],[122.2064133,37.4459267],[122.2124329,37.4471359],[122.2163773,37.4517593],[122.2207031,37.4520302],[122.2261887,37.4514046],[122.2341995,37.4546967],[122.2387772,37.4568062],[122.2468567,37.4559746],[122.2526627,37.4539757],[122.259903,37.4517593],[122.2647781,37.4524994],[122.2702484,37.4530144],[122.2737427,37.450531],[122.2749405,37.4477959],[122.273819,37.4459534],[122.2701187,37.4433975],[122.269928,37.4374428],[122.2694168,37.4330902],[122.2657471,37.4282455],[122.2633438,37.4232674],[122.26194,37.4215927],[122.2647171,37.420681],[122.2696075,37.421875],[122.2759171,37.4228554],[122.2811508,37.4199333],[122.2863617,37.4183846],[122.2917862,37.4185295],[122.2952881,37.418705],[122.2987976,37.4153061],[122.3022766,37.4132805],[122.3069229,37.4114952],[122.3175735,37.4113731],[122.321373,37.4086647],[122.3220367,37.4024887],[122.324379,37.3998489],[122.3301163,37.4014244],[122.3315125,37.4041862],[122.336937,37.4067574],[122.3458481,37.4079895],[122.3512878,37.4103317],[122.3567429,37.4115257],[122.3596878,37.4069786],[122.3662567,37.410244],[122.3679733,37.4118652],[122.3708191,37.4134941],[122.3774338,37.4144707],[122.3846664,37.4120216],[122.3936768,37.4059258],[122.3957977,37.3988495],[122.3964233,37.3954201],[122.4007874,37.3917999],[122.4039536,37.3925133],[122.4037018,37.3945045],[122.4041824,37.396637],[122.4026413,37.403717],[122.4106674,37.4058533],[122.415863,37.4056702],[122.427063,37.408062],[122.4414062,37.4109383],[122.4497223,37.4132996],[122.4586182,37.4158936],[122.4663315,37.4205437],[122.4711685,37.4247055],[122.4768906,37.4277306],[122.4786606,37.4247704],[122.4778519,37.420414],[122.4784927,37.4156113],[122.4825668,37.4124413],[122.482933,37.4074059],[122.4780121,37.4085121],[122.471962,37.4086876],[122.4723129,37.4043388],[122.4735107,37.4004593],[122.4715271,37.3981514],[122.464653,37.3958054],[122.4565811,37.3964195],[122.4479828,37.3940582],[122.4483337,37.3899384],[122.4552765,37.3863373],[122.4624786,37.386631],[122.4693527,37.3896675],[122.4728012,37.3894653],[122.4725037,37.3847198],[122.4723282,37.3819084],[122.4781036,37.3810425],[122.475563,37.3773575],[122.4761429,37.3762169],[122.4812469,37.3819847],[122.4869919,37.382946],[122.4908066,37.3770294],[122.4917068,37.3745193],[122.4983521,37.3731995],[122.5067062,37.3721275],[122.5130463,37.3714943],[122.5187912,37.3724556],[122.521347,37.3745384],[122.5270691,37.3777885],[122.5258408,37.3839569],[122.5165787,37.3875465],[122.5039368,37.3856087],[122.4952469,37.3891983],[122.4908066,37.3994637],[122.492157,37.4056549],[122.5039978,37.4030075],[122.5121078,37.3996391],[122.5147018,37.3992043],[122.5270691,37.4002228],[122.5328522,37.3984375],[122.5435333,37.3964653],[122.5510178,37.3965225],[122.5576172,37.3972626],[122.5656586,37.3996162],[122.5693893,37.4005585],[122.574028,37.3980789],[122.5806274,37.3997307],[122.5877533,37.405735],[122.5911636,37.4101143],[122.5937195,37.4124184],[122.6003036,37.4154434],[122.6060562,37.4161758],[122.6106262,37.4187279],[122.6175537,37.4180908],[122.6196136,37.4149017],[122.6261978,37.4181557],[122.6284866,37.4190903],[122.6316071,37.4234581],[122.6359177,37.424408],[122.6416931,37.4230766],[122.6486206,37.421524],[122.6532135,37.4224701],[122.6598587,37.4211464],[122.6673431,37.4214249],[122.6733932,37.4210091],[122.6791763,37.4185295],[122.6855316,37.4169731],[122.6875534,37.4162979],[122.69133,37.4128914],[122.6945114,37.4117661],[122.697998,37.4088135],[122.698349,37.4030952],[122.6975021,37.4014854],[122.6987076,37.3964577],[122.6998978,37.3925743],[122.6979065,37.3900414],[122.6896133,37.3851814],[122.6888123,37.3792229],[122.6865463,37.3753204],[122.6770477,37.3759384],[122.6732178,37.3841553],[122.6708908,37.3861961],[122.6671524,37.3859406],[122.6651382,37.3857002],[122.6585083,37.3870277],[122.6552811,37.3920403],[122.6454926,37.3919716],[122.6311493,37.3877487],[122.6234436,37.3819695],[122.6212006,37.3771439],[122.6197968,37.373703],[122.6060028,37.3724556],[122.5985565,37.3689651],[122.5934601,37.3622894],[122.5880508,37.3569832],[122.5849609,37.3507767],[122.58358,37.3459625],[122.5775909,37.3417931],[122.5743027,37.352066],[122.575119,37.3555107],[122.5721893,37.3600655],[122.5607529,37.3542519],[122.5556335,37.3496361],[122.5577164,37.3434677],[122.5713501,37.3344193],[122.586647,37.3299599],[122.5926971,37.329319],[122.5936279,37.3238335],[122.5815887,37.3203087],[122.5773163,37.3172989],[122.5742111,37.3122406],[122.5635529,37.3135262],[122.5588989,37.3178406],[122.5591431,37.3212776],[122.5640335,37.3220024],[122.5625229,37.3272552],[122.562767,37.3309212],[122.5566864,37.3331604],[122.5483475,37.3335495],[122.5434799,37.3316803],[122.5433121,37.3222961],[122.5491562,37.3152466],[122.553833,37.3095627],[122.5578918,37.3063889],[122.5645599,37.3020897],[122.5654831,37.2975197],[122.5687027,37.2929649],[122.5695877,37.2904549],[122.5661469,37.2892838],[122.559227,37.291748],[122.5583801,37.290596],[122.5584106,37.2876244],[122.5561371,37.2857742],[122.5478363,37.2846794],[122.5452576,37.2824821],[122.5499268,37.2761078],[122.557457,37.2718201],[122.5609512,37.2681847],[122.557312,37.260601],[122.5582123,37.2574043],[122.5677338,37.2545013],[122.5743637,37.2534103],[122.5813293,37.2468262],[122.5894394,37.2411652],[122.5917664,37.2384377],[122.5898438,37.2320137],[122.5887833,37.2249107],[122.5943069,37.2180824],[122.6020966,37.2153969],[122.6066971,37.2145157],[122.6141968,37.2122803],[122.6209335,37.2018013],[122.6201172,37.1974449],[122.6138,37.1971703],[122.6045532,37.202137],[122.5970383,37.2066574],[122.5942001,37.203434],[122.5968628,37.1974983],[122.5948715,37.1956558],[122.5903015,37.1935616],[122.5906219,37.1903572],[122.5834274,37.191906],[122.5768585,37.1895638],[122.568573,37.1867523],[122.5608597,37.1828003],[122.5551834,37.1784058],[122.5549622,37.1724548],[122.5578766,37.1699448],[122.5607605,37.1674652],[122.5682678,37.1643181],[122.575798,37.1586533],[122.5781403,37.1543236],[122.5707169,37.1508331],[122.5552063,37.1520844],[122.5451431,37.1549797],[122.535347,37.1569595],[122.5255508,37.1603127],[122.5149231,37.1570892],[122.503273,37.1565971],[122.4943085,37.1573067],[122.488327,37.1533661],[122.4778671,37.1422882],[122.4750519,37.1381454],[122.4686127,37.1266403],[122.4664001,37.1206703],[122.4650726,37.1124191],[122.4634399,37.1064529],[122.4574585,37.1031952],[122.4520035,37.1040611],[122.4542236,37.1093483],[122.4550095,37.1143913],[122.4534836,37.1217041],[122.4536819,37.127655],[122.461647,37.1320763],[122.4723969,37.1438446],[122.4672012,37.1456299],[122.4591827,37.1455574],[122.450592,37.1434212],[122.4480667,37.1392784],[122.4429626,37.1351166],[122.4404526,37.1298294],[122.4431763,37.1193237],[122.4461288,37.1136246],[122.4460831,37.112381],[122.4436493,37.1062775],[122.4454193,37.1030884],[122.4520569,37.0994873],[122.4582138,37.0903816],[122.4597931,37.0798683],[122.4615936,37.0737038],[122.4607773,37.0702629],[122.4565125,37.0677071],[122.4532928,37.0729446],[122.4489594,37.0747375],[122.4401779,37.0675621],[122.437233,37.0730286],[122.4318314,37.0700073],[122.4356613,37.0627136],[122.4365921,37.057457],[122.4190521,37.041275],[122.410759,37.040287],[122.4048004,37.035881],[122.3916473,37.0343857],[122.3813782,37.031086],[122.3802567,37.0294724],[122.3818665,37.028923],[122.3946533,37.0245705],[122.4026566,37.0260162],[122.4129486,37.0272598],[122.4127884,37.0187874],[122.4039764,37.0132103],[122.3969498,37.0044479],[122.3913422,36.9966125],[122.3879929,36.9908562],[122.3910522,36.9894714],[122.3920135,36.9899788],[122.4013367,36.9978523],[122.410408,37.0048027],[122.4163437,37.0101204],[122.4243393,37.0122528],[122.4318237,37.0098038],[122.4328995,37.0143929],[122.4336624,37.0210342],[122.4393005,37.0274963],[122.4464569,37.0282478],[122.4530029,37.0317383],[122.4581833,37.0294952],[122.4641724,37.0318375],[122.4688263,37.0261536],[122.471489,37.0202255],[122.4735718,37.0145226],[122.4761734,37.0131721],[122.4790192,37.0141106],[122.4774704,37.0223389],[122.4765778,37.0248451],[122.4791336,37.0273895],[122.4883728,37.0222015],[122.4946899,37.0199661],[122.5012665,37.02071],[122.5103912,37.0242195],[122.5121536,37.0217171],[122.5136566,37.0153198],[122.5128632,37.0111923],[122.514679,37.0027351],[122.519249,37.0041466],[122.5206223,37.0085106],[122.521431,37.0126343],[122.5222473,37.0158463],[122.5236435,37.0192947],[122.5223694,37.0284386],[122.5314865,37.032177],[122.5406036,37.037056],[122.5459824,37.0414505],[122.5508118,37.0449219],[122.5571136,37.0449715],[122.5648575,37.0443459],[122.569458,37.0434647],[122.5709534,37.0391273],[122.5649338,37.038166],[122.5549088,37.0380898],[122.5480881,37.0339127],[122.5373535,37.0221519],[122.5309296,37.0085945],[122.5290527,36.9985085],[122.5300293,36.989357],[122.5321426,36.9811363],[122.5319977,36.9699173],[122.5286407,36.9634819],[122.5243988,36.9593277],[122.5230331,36.9542809],[122.5216675,36.9496918],[122.5191498,36.9446335],[122.5165863,36.9434662],[122.5142517,36.9477959],[122.5145187,36.949173],[122.5161667,36.9544525],[122.5164413,36.9553719],[122.5152283,36.9606247],[122.5112534,36.9578438],[122.509903,36.9521103],[122.5093918,36.9468422],[122.5054169,36.9438324],[122.5040588,36.9392433],[122.4983368,36.9389687],[122.4963684,36.936203],[122.4924164,36.9322777],[122.4860992,36.9338264],[122.4814987,36.9356194],[122.4781265,36.9305534],[122.4715729,36.9298096],[122.4629669,36.9304199],[122.4515381,36.9296341],[122.4412689,36.9277115],[122.4318466,36.9262543],[122.4238968,36.9216042],[122.4167862,36.9185638],[122.414772,36.9199181],[122.419899,36.9213371],[122.4213181,36.9222641],[122.4187012,36.9249916],[122.4186478,36.9288788],[122.4254837,36.9314613],[122.4231033,36.9373894],[122.4159012,36.9412155],[122.4081726,36.9413757],[122.4018631,36.942688],[122.3975983,36.940361],[122.3901596,36.9400635],[122.3881912,36.9377556],[122.3948212,36.9343834],[122.3985367,36.9348755],[122.4012222,36.9268875],[122.4024811,36.9193459],[122.4085236,36.9168854],[122.4111786,36.9111862],[122.4107132,36.9043159],[122.4144821,36.8997726],[122.4176788,36.8968239],[122.4183426,36.8901939],[122.4210205,36.8828926],[122.4252777,36.8849907],[122.4283829,36.8877678],[122.4316101,36.8818436],[122.4347763,36.8798141],[122.4345322,36.8777504],[122.4299622,36.8770218],[122.422287,36.8742065],[122.418602,36.8718834],[122.4163513,36.8693428],[122.4121017,36.8665581],[122.4066772,36.865593],[122.3977966,36.8666573],[122.3886414,36.8679428],[122.3772125,36.8676071],[122.3712311,36.8661766],[122.3689804,36.8634071],[122.3638382,36.8635864],[122.3537827,36.8671532],[122.3462982,36.8700562],[122.3414536,36.8695488],[122.3408966,36.867485],[122.3521271,36.8625603],[122.3616333,36.8580704],[122.3673782,36.8558388],[122.37117,36.8510666],[122.3658295,36.8448372],[122.3547592,36.83992],[122.3485107,36.8373451],[122.3439865,36.8336372],[122.3363037,36.8319588],[122.3302612,36.834877],[122.3236694,36.8361855],[122.3179932,36.8338394],[122.3085175,36.8362579],[122.3020172,36.8362312],[122.2933273,36.8390808],[122.2869186,36.8371048],[122.2730637,36.8381844],[122.268158,36.8411446],[122.2638016,36.8449554],[122.2595291,36.8442268],[122.2544022,36.8430252],[122.2498398,36.842289],[122.2443771,36.8438339],[122.2393799,36.844429],[122.2360229,36.8440361],[122.2300568,36.8457413],[122.2251663,36.8479767],[122.2199631,36.8518143],[122.2130814,36.8531113],[122.2065201,36.8523521],[122.2022629,36.8504753],[122.1928787,36.8476219],[122.1848984,36.8463898],[122.1816788,36.8507042],[122.1875763,36.8564911],[122.1874695,36.8631287],[122.1822128,36.8694801],[122.1794968,36.8774605],[122.1787186,36.8893547],[122.1800308,36.8962364],[122.1879196,36.9029655],[122.1944733,36.9048691],[122.205101,36.9020081],[122.2136765,36.9016457],[122.2214432,36.8996696],[122.2240829,36.8962631],[122.2292099,36.897007],[122.2245178,36.903595],[122.2190628,36.9055977],[122.22789,36.9075241],[122.2399902,36.9021568],[122.2454834,36.8987846],[122.2537231,36.901619],[122.2608871,36.9005508],[122.2663879,36.896946],[122.2709427,36.898365],[122.2637329,36.9024124],[122.2593918,36.9048805],[122.2656631,36.9063225],[122.270813,36.9066048],[122.2765427,36.906208],[122.2768021,36.9073563],[122.2762222,36.9080963],[122.2687073,36.912075],[122.2621384,36.9120102],[122.2561035,36.9140053],[122.2531967,36.9162636],[122.2483521,36.9152946],[122.2472534,36.9132233],[122.2421036,36.9124832],[122.2320328,36.9164963],[122.2288513,36.918293],[122.2256775,36.9198608],[122.2219772,36.9182167],[122.2191696,36.9154396],[122.2034378,36.9154968],[122.1985016,36.9197922],[122.1958694,36.9229698],[122.1887131,36.9233475],[122.1853104,36.9214783],[122.1809616,36.9250908],[122.1813965,36.9321899],[122.1819534,36.9342575],[122.1809769,36.9402008],[122.1801071,36.9408302],[122.1772385,36.9415321],[122.1713028,36.9375725],[122.1641769,36.9356613],[122.1598663,36.9362984],[122.1550903,36.9318962],[122.151947,36.9314003],[122.149353,36.932972],[122.1544418,36.9360085],[122.1518402,36.9375801],[122.1457977,36.9393425],[122.1434326,36.9438934],[122.1467667,36.948967],[122.1564789,36.9504547],[122.165863,36.9535332],[122.16642,36.9544563],[122.1637573,36.9590034],[122.1607971,36.9651527],[122.162178,36.9679146],[122.1670532,36.9672813],[122.1686325,36.9753113],[122.1751328,36.980423],[122.177597,36.9861717],[122.1757431,36.9943924],[122.1722412,36.9980164],[122.177681,36.9980774],[122.1810532,37.0020065],[122.1853027,37.0047989],[122.1916275,37.0030403],[122.1942368,37.0007782],[122.197937,37.0021935],[122.2015762,37.0070381],[122.2053833,37.0029602],[122.2097015,37.0014076],[122.2139282,37.0053444],[122.2132797,37.0096855],[122.212059,37.0144806],[122.2148666,37.0170288],[122.2199936,37.0196037],[122.2201538,37.0269318],[122.2206573,37.0327873],[122.2211838,37.0340385],[122.2209167,37.0376587],[122.2208328,37.0379257],[122.2190628,37.0404243],[122.2170868,37.0383415],[122.2134399,37.0341835],[122.2068634,37.0334244],[122.2015686,37.041378],[122.1982727,37.0495834],[122.1902008,37.0526962],[122.1824799,37.0514679],[122.1828766,37.0492516],[122.1837463,37.044384],[122.1859436,37.0341072],[122.1863174,37.0286179],[122.1858368,37.022892],[122.1905365,37.0165329],[122.1863022,37.0130539],[122.1760025,37.0124779],[122.1688538,37.0117111],[122.1603165,37.0079536],[122.1545334,37.0115471],[122.1533127,37.0163422],[122.1512527,37.0190659],[122.1478119,37.0190277],[122.142189,37.0130081],[122.1403122,37.0058937],[122.146759,36.9977264],[122.1497574,36.9902077],[122.1452713,36.9851189],[122.142807,36.9782219],[122.1449738,36.9695511],[122.1450729,36.9645157],[122.1411438,36.9594345],[122.1372299,36.9543533],[122.1324081,36.9517784],[122.1251831,36.9562721],[122.1222534,36.9598999],[122.1207123,36.9658318],[122.119133,36.9740562],[122.1164169,36.9808922],[122.1116714,36.980938],[122.1090469,36.9773712],[122.1059113,36.9764175],[122.1021805,36.9770622],[122.10112,36.9724693],[122.111557,36.9650421],[122.1136932,36.9586563],[122.1094513,36.9553986],[122.102623,36.9530296],[122.0943832,36.9501877],[122.0879135,36.9443855],[122.0831604,36.9379196],[122.0812912,36.9305725],[122.0883102,36.9224167],[122.0909271,36.9199295],[122.0812302,36.918438],[122.0672226,36.9180374],[122.0637894,36.9179993],[122.0561676,36.9128685],[122.051651,36.9096069],[122.0459213,36.909996],[122.0439529,36.9083672],[122.0400696,36.9021378],[122.0347137,36.897953],[122.0291824,36.9031487],[122.0228271,36.906044],[122.0170822,36.9075737],[122.0178375,36.9126205],[122.0282898,36.9196167],[122.0347214,36.9270248],[122.0391388,36.9353218],[122.0370407,36.9405594],[122.0340805,36.9455605],[122.0431671,36.9488754],[122.0398636,36.9575348],[122.0322876,36.964077],[122.025032,36.9692535],[122.0194626,36.9758224],[122.0143127,36.9759865],[122.0059509,36.9786263],[122.0027466,36.9811058],[121.9989395,36.9858627],[121.9967728,36.9940758],[121.9940491,37.0011368],[121.9899063,37.0074959],[121.9859772,37.0099487],[121.9787216,37.0084953],[121.9764481,37.0075493],[121.9727402,37.0068169],[121.9698486,37.0083809],[121.9703903,37.0099907],[121.9714813,37.0125237],[121.9725494,37.016201],[121.9706726,37.0196533],[121.9700623,37.0208588],[121.9661713,37.0200081],[121.9636765,37.0158539],[121.9626465,37.0101166],[121.962738,37.0057678],[121.9676514,37.0035439],[121.9769211,36.9984016],[121.9816132,36.9934235],[121.9840622,36.9852142],[121.9752121,36.9837265],[121.9649124,36.9833641],[121.9597397,36.984211],[121.9576797,36.9869308],[121.9564667,36.9903488],[121.9546967,36.9923859],[121.9510269,36.9898186],[121.9493713,36.9872818],[121.9433365,36.9883461],[121.9441223,36.9917908],[121.9474411,36.9975548],[121.9509964,37.0056152],[121.9508667,37.011795],[121.9478073,37.0215988],[121.9434662,37.0238304],[121.9423676,37.0215263],[121.9432068,37.0082626],[121.9430466,37.0023041],[121.9417191,36.9972534],[121.9391785,36.995388],[121.9287872,36.9989128],[121.9235764,37.0020447],[121.9178238,37.0035706],[121.9121323,37.0016632],[121.9127579,37.0009689],[121.9171066,36.996006],[121.918663,36.9905357],[121.9263763,36.9915543],[121.926178,36.9872017],[121.9256973,36.9828453],[121.9188766,36.9802361],[121.9172134,36.9776955],[121.919632,36.9715462],[121.9191666,36.9665031],[121.9134674,36.9650536],[121.9065704,36.9663353],[121.9008713,36.9653435],[121.8961411,36.9586372],[121.9019089,36.9566574],[121.9141693,36.9588814],[121.9154892,36.9508896],[121.9256592,36.9569778],[121.9330673,36.9584503],[121.9408722,36.9551201],[121.9500809,36.9524918],[121.9547729,36.9470634],[121.9533768,36.9449806],[121.9457932,36.9389305],[121.933197,36.9387627],[121.9166183,36.9378548],[121.9058228,36.9345055],[121.8964233,36.9318581],[121.8839111,36.9282532],[121.8796768,36.9254494],[121.8695221,36.9191246],[121.864151,36.9160767],[121.8570175,36.9150581],[121.8621063,36.9178772],[121.8654633,36.9218178],[121.8654175,36.9236488],[121.8613434,36.926796],[121.8618469,36.9300079],[121.8584213,36.9324417],[121.8535995,36.9276047],[121.8527679,36.9262161],[121.8476868,36.923172],[121.8506622,36.9179459],[121.8458328,36.9167366],[121.8349762,36.9154396],[121.8292923,36.9139824],[121.8253021,36.9134674],[121.8170776,36.9101448],[121.8146133,36.9053001],[121.8183212,36.9058151],[121.8376236,36.9124985],[121.8416595,36.9111824],[121.8415909,36.9011078],[121.8315582,36.9021111],[121.8183899,36.9026108],[121.8066788,36.9017563],[121.8025589,36.9022903],[121.7982178,36.896595],[121.7851791,36.8913689],[121.7755432,36.8880234],[121.7591324,36.8797684],[121.7507477,36.8714027],[121.7437973,36.8630562],[121.7433777,36.8564148],[121.7485733,36.8544273],[121.7528763,36.8538055],[121.7470627,36.8457069],[121.7371292,36.8423538],[121.7286301,36.8392487],[121.7227936,36.8325233],[121.7182388,36.8315353],[121.7124634,36.8344231],[121.700592,36.8285217],[121.6943512,36.8268242],[121.6849213,36.8266754],[121.6774826,36.8270187],[121.6714706,36.8276138],[121.66185,36.8235703],[121.6547928,36.8200264],[121.6485672,36.8174095],[121.6401062,36.8131523],[121.6335831,36.8112183],[121.6281433,36.8118172],[121.6303024,36.8168907],[121.6378632,36.8231926],[121.6435471,36.8241959],[121.6514435,36.8288994],[121.6493301,36.8332176],[121.6500473,36.8387222],[121.6500168,36.8401413],[121.64991,36.8444443],[121.639679,36.8422203],[121.6323776,36.8368378],[121.6282196,36.8315086],[121.6226196,36.8270683],[121.6179733,36.8185234],[121.6184235,36.8121185],[121.6222305,36.8080597],[121.6212234,36.803009],[121.616272,36.7951469],[121.6177902,36.7915077],[121.6204834,36.7865143],[121.6191483,36.7828293],[121.6212234,36.7798882],[121.6241531,36.7767296],[121.6206207,36.769577],[121.6218338,36.7670784],[121.6276093,36.7639656],[121.6314621,36.7583046],[121.6336365,36.7512398],[121.6368866,36.7464867],[121.6392822,36.7421722],[121.6320877,36.7329025],[121.623703,36.7375755],[121.6127472,36.7417488],[121.6047363,36.7423058],[121.600708,36.7438431],[121.6103134,36.7478905],[121.6036606,36.7512169],[121.6040421,36.7587776],[121.6057663,36.7695656],[121.5999603,36.7735901],[121.5920105,36.7718582],[121.5870285,36.7655983],[121.5844879,36.7644119],[121.5785828,36.7720985],[121.5727615,36.7763519],[121.5658569,36.7780685],[121.5571899,36.7710571],[121.5469284,36.7704277],[121.5408478,36.7737617],[121.5399094,36.7657356],[121.5443726,36.758709],[121.5465012,36.7537079],[121.5423126,36.750206],[121.5353928,36.753067],[121.5298767,36.7561798],[121.5239716,36.7528725],[121.5209274,36.7493858],[121.5162964,36.7515984],[121.5158768,36.7564011],[121.5168991,36.7614517],[121.5131226,36.7639084],[121.5085983,36.7622261],[121.5037231,36.7632904],[121.5047684,36.7667427],[121.5063782,36.7704315],[121.5018311,36.7714653],[121.4968872,36.7732468],[121.4894867,36.7722015],[121.4826279,36.7723122],[121.4784393,36.7742615],[121.4798508,36.7802773],[121.4832535,36.7810249],[121.485817,36.7812958],[121.4882202,36.7877502],[121.4929886,36.7908058],[121.5009384,36.7927742],[121.5080338,36.7942657],[121.5162964,36.7950974],[121.5253296,36.7971611],[121.5286789,36.8024025],[121.5350037,36.8006783],[121.5368271,36.7965889],[121.5392838,36.7902184],[121.546257,36.7960587],[121.5467606,36.7990417],[121.5512466,36.8018646],[121.5525131,36.8085251],[121.5509491,36.8137665],[121.5572205,36.8145561],[121.5665665,36.8174591],[121.5710068,36.8227959],[121.5715408,36.8241768],[121.5787125,36.8231506],[121.5834885,36.8262062],[121.5863037,36.8278542],[121.5914078,36.8295403],[121.5954437,36.8282318],[121.5998688,36.8340263],[121.601738,36.8393211],[121.6022797,36.840477],[121.60392,36.8434792],[121.6084976,36.8433228],[121.6120911,36.8481903],[121.6128616,36.8514061],[121.6070786,36.85429],[121.6006088,36.8500633],[121.5979767,36.8523102],[121.5939178,36.854763],[121.5887909,36.8539925],[121.5816269,36.8545647],[121.5736084,36.8553467],[121.5667114,36.8566055],[121.5653763,36.8526917],[121.5648727,36.8501663],[121.5589066,36.8489227],[121.5558014,36.8486214],[121.5531998,36.8483696],[121.5501099,36.8462563],[121.5470123,36.8446045],[121.5429611,36.8463669],[121.5380096,36.8391876],[121.5401077,36.835331],[121.539093,36.8307343],[121.5313263,36.8322067],[121.5231705,36.8272629],[121.5179062,36.8207626],[121.5168304,36.8184547],[121.5184402,36.811615],[121.5144501,36.8110886],[121.5067368,36.8109589],[121.5010986,36.8083458],[121.4977493,36.8053093],[121.4940567,36.8045616],[121.4930573,36.8098106],[121.4921799,36.8107109],[121.4850235,36.8110466],[121.4888229,36.8188934],[121.4926529,36.8253708],[121.4944763,36.8315811],[121.4977417,36.8378181],[121.4998627,36.8440361],[121.4966736,36.8460426],[121.4922028,36.8423042],[121.4903183,36.8376923],[121.4850311,36.8323364],[121.4773636,36.8303719],[121.4699707,36.8290977],[121.4670334,36.8322525],[121.4649963,36.8331337],[121.4627991,36.8406487],[121.4618378,36.8445282],[121.4557419,36.8480835],[121.4527664,36.85215],[121.4523087,36.8585548],[121.4520264,36.8686218],[121.4510269,36.8680305],[121.4464035,36.8653183],[121.4466019,36.858223],[121.4468231,36.8502159],[121.4454727,36.8472137],[121.4408035,36.8505669],[121.4373627,36.8514214],[121.4357376,36.8477325],[121.4379501,36.8399849],[121.4430237,36.8325195],[121.4472885,36.8328247],[121.4534225,36.8278961],[121.453331,36.8210258],[121.4562531,36.8185577],[121.4561081,36.8132896],[121.4559326,36.809166],[121.4582367,36.8082924],[121.4599228,36.8096924],[121.4636383,36.8095284],[121.4633789,36.808609],[121.4671326,36.8070717],[121.4727936,36.8092308],[121.4748306,36.807663],[121.4723663,36.8032722],[121.4688873,36.7947388],[121.4679108,36.7887726],[121.4691696,36.7844429],[121.4685364,36.7757339],[121.470932,36.7718811],[121.4725189,36.7661858],[121.4693375,36.7675056],[121.4652786,36.7699509],[121.4649734,36.7699013],[121.4607162,36.7691841],[121.4552765,36.7697792],[121.4512177,36.7724533],[121.4455109,36.7723541],[121.4465408,36.7657318],[121.4503937,36.760994],[121.4487534,36.757988],[121.4462509,36.7554245],[121.4422607,36.7553558],[121.4390793,36.7569008],[121.4342499,36.7559013],[121.4277573,36.7532692],[121.4210968,36.7565842],[121.4158783,36.7594681],[121.4101105,36.7616539],[121.4003983,36.7617073],[121.3922806,36.7558403],[121.3848267,36.7467728],[121.3809128,36.7439575],[121.3731766,36.7348862],[121.3721313,36.7314339],[121.3737717,36.7236786],[121.3781433,36.7205544],[121.381691,36.7162704],[121.3852081,36.7128983],[121.391449,36.7141571],[121.3934937,36.7128181],[121.3924179,36.7100525],[121.3864212,36.7104034],[121.3807373,36.709156],[121.3766098,36.7040443],[121.3714828,36.703949],[121.3701782,36.7096519],[121.363533,36.7127342],[121.365097,36.7178001],[121.3666229,36.7244644],[121.3632965,36.7308159],[121.3580017,36.7364426],[121.3557434,36.736496],[121.3525772,36.7365685],[121.3523407,36.7349625],[121.3556671,36.7283859],[121.3583298,36.7250023],[121.3575821,36.7210922],[121.3509827,36.7223473],[121.347847,36.72229],[121.3313217,36.7212982],[121.3211288,36.7185898],[121.3130035,36.7136307],[121.3070374,36.7126007],[121.3047638,36.713459],[121.3000793,36.7129822],[121.2969284,36.7136307],[121.2940903,36.7147865],[121.2819824,36.7105255],[121.2675934,36.7054443],[121.2535095,36.6989937],[121.2468033,36.6945114],[121.2409897,36.6884499],[121.2341003,36.6899147],[121.2345276,36.6945038],[121.2282333,36.6955261],[121.2242432,36.6952209],[121.2238235,36.6995621],[121.2166672,36.7003365],[121.2098999,36.6976852],[121.2073898,36.6958046],[121.2122803,36.6942978],[121.2234802,36.6920013],[121.2150269,36.6886292],[121.2047424,36.6891136],[121.1917496,36.6847343],[121.1844635,36.6804695],[121.1776733,36.6789627],[121.1728134,36.6790962],[121.1755219,36.6837273],[121.1813812,36.6879654],[121.185173,36.6946793],[121.188179,36.6988602],[121.1941071,36.7008095],[121.2011871,36.7025528],[121.1988373,36.7050209],[121.1913605,36.7069359],[121.188652,36.7114601],[121.1871109,36.7113113],[121.1826782,36.7108841],[121.1785431,36.7156105],[121.1725922,36.714119],[121.1664734,36.7091866],[121.1614609,36.7049675],[121.1627121,36.7013283],[121.1662903,36.6963615],[121.1680832,36.693882],[121.1748428,36.6965332],[121.1778412,36.7011719],[121.1772003,36.6942902],[121.1710968,36.688446],[121.1624527,36.6820908],[121.1521683,36.6825714],[121.1483688,36.6857033],[121.144577,36.6883736],[121.1368866,36.6879883],[121.1375427,36.685482],[121.1368027,36.6813469],[121.1345978,36.6790123],[121.1469574,36.675827],[121.158287,36.6785736],[121.1662064,36.680336],[121.1680298,36.6769371],[121.1602478,36.670372],[121.139473,36.6601067],[121.1237183,36.6531487],[121.1074066,36.6457176],[121.099617,36.6391411],[121.0985565,36.6370621],[121.0957413,36.6273918],[121.0876617,36.6214981],[121.0763474,36.6185188],[121.0670166,36.6162605],[121.0605469,36.6136093],[121.0519867,36.6138878],[121.0492783,36.6186371],[121.0509872,36.6273727],[121.0519028,36.6347198],[121.0565567,36.6403122],[121.062767,36.6420441],[121.0704727,36.6422043],[121.0767517,36.6416512],[121.0841599,36.6418037],[121.0859909,36.6468773],[121.080307,36.6465302],[121.0746002,36.6466408],[121.0756607,36.6491814],[121.0800629,36.6540833],[121.081337,36.6586876],[121.0753174,36.659935],[121.0705872,36.6561737],[121.0650864,36.6496468],[121.0634384,36.6480103],[121.0598984,36.6429024],[121.0559082,36.6428185],[121.0514984,36.6468468],[121.049942,36.6484718],[121.0491409,36.6493149],[121.0460281,36.6485596],[121.0419006,36.6525955],[121.041748,36.657402],[121.0387802,36.6609993],[121.0345535,36.6595383],[121.0312424,36.6560326],[121.0315933,36.6539803],[121.0380325,36.6488495],[121.0421829,36.6443596],[121.0439529,36.6421051],[121.0423965,36.6372681],[121.0315018,36.6393242],[121.0254517,36.6412582],[121.0211182,36.6429977],[121.0176392,36.6447563],[121.0148773,36.6417198],[121.0148392,36.6346207],[121.0232468,36.6299934],[121.0354004,36.6247559],[121.0421371,36.6191711],[121.0414429,36.6141205],[121.03936,36.6081238],[121.0364075,36.6025658],[121.0366211,36.595932],[121.0367737,36.5913582],[121.0352173,36.5865173],[121.0241623,36.5849075],[121.0150223,36.5856285],[121.0109863,36.5958443],[121.0070801,36.601944],[120.9956818,36.6019287],[120.9827271,36.5970688],[120.9713821,36.5959091],[120.963768,36.5934525],[120.9604263,36.5908623],[120.9533768,36.5888748],[120.9475632,36.592411],[120.9401093,36.5938492],[120.9332428,36.5946159],[120.9279633,36.5990791],[120.9290466,36.6004753],[120.9259796,36.607048],[120.9310837,36.6080742],[120.9382629,36.6061745],[120.9389877,36.6100807],[120.9421234,36.6183929],[120.9435577,36.626667],[120.9428024,36.6321449],[120.9459229,36.6326714],[120.9519119,36.6323433],[120.9538803,36.6333046],[120.9557495,36.6370087],[120.9516068,36.6385956],[120.9551086,36.6390533],[120.9613724,36.6391907],[120.9621735,36.6410408],[120.9606705,36.6432991],[120.956398,36.6432037],[120.9498901,36.6416893],[120.9461365,36.6429787],[120.9453964,36.6480026],[120.9372635,36.6441574],[120.9338226,36.6447716],[120.9283829,36.6453362],[120.9260635,36.646431],[120.9259796,36.6489487],[120.9272919,36.6521835],[120.9246521,36.6544113],[120.9207001,36.6531792],[120.9167862,36.6508026],[120.9113007,36.6529732],[120.9056625,36.6510162],[120.9078827,36.6446533],[120.9077606,36.639843],[120.9038467,36.6372375],[120.8981171,36.6380234],[120.897377,36.6432724],[120.8986206,36.6485672],[120.9013138,36.6534348],[120.903183,36.6571388],[120.9021378,36.662384],[120.897728,36.6661758],[120.8903809,36.6668053],[120.8837585,36.6660957],[120.8800735,36.6653252],[120.8751373,36.6594887],[120.8714294,36.6596336],[120.8694763,36.666687],[120.8677292,36.6677933],[120.8636932,36.669075],[120.8614502,36.667881],[120.8627167,36.6642456],[120.8637466,36.6592331],[120.8572769,36.6582146],[120.8569412,36.6581612],[120.8523865,36.6576004],[120.8497772,36.6511307],[120.8445663,36.6448288],[120.8400574,36.6435814],[120.8348236,36.6466675],[120.825737,36.6453133],[120.8227234,36.6422691],[120.8245468,36.6388741],[120.8189774,36.6350861],[120.8132172,36.62854],[120.8125763,36.6228027],[120.8077469,36.6142197],[120.8017273,36.6152229],[120.7975082,36.6215363],[120.7900925,36.6296082],[120.783432,36.6326561],[120.7805328,36.6287804],[120.7809372,36.6227531],[120.7840271,36.6157265],[120.7878418,36.6130676],[120.7925491,36.6088257],[120.7972336,36.6055031],[120.7972794,36.6041298],[120.7953262,36.6029358],[120.7922821,36.6003494],[120.7880478,36.5993347],[120.7821426,36.5971375],[120.7813034,36.5966606],[120.7763367,36.5999794],[120.7723236,36.5990677],[120.772049,36.5990067],[120.7695465,36.5984421],[120.7665634,36.5944824],[120.7618179,36.5918503],[120.7587585,36.5897179],[120.7622833,36.5868263],[120.7710724,36.5879478],[120.7760086,36.5855446],[120.7809296,36.5833702],[120.7833328,36.5799904],[120.7823563,36.5753899],[120.7791367,36.5698166],[120.7752838,36.5662956],[120.7672577,36.5596962],[120.7620316,36.5545349],[120.7615204,36.5529213],[120.7634888,36.5536537],[120.7653427,36.5518227],[120.7673264,36.5498505],[120.7663498,36.5452499],[120.7701035,36.5441895],[120.7784119,36.5503387],[120.780838,36.5542908],[120.7891083,36.5618095],[120.7923508,36.5666924],[120.7919083,36.5710335],[120.7987213,36.5716515],[120.8023834,36.5728798],[120.8072281,36.5807762],[120.8090668,36.5851669],[120.8168869,36.5894699],[120.8189392,36.5959282],[120.8228226,36.5989952],[120.8303833,36.6030617],[120.8328781,36.6047211],[120.8421097,36.6095123],[120.8457718,36.6107407],[120.8655167,36.592186],[120.8690186,36.5897446],[120.8736267,36.5882492],[120.8785172,36.5869827],[120.8827591,36.5879974],[120.8788834,36.5766869],[120.8832016,36.5751839],[120.8850937,36.5699577],[120.8841476,36.5642128],[120.887352,36.5622253],[120.8893967,36.5606689],[120.8878632,36.5555992],[120.8858109,36.5491409],[120.8868866,36.5486755],[120.8878326,36.5482712],[120.8965683,36.5509872],[120.9003067,36.5581665],[120.9044037,36.5635223],[120.907753,36.5654297],[120.9144592,36.5690117],[120.9223633,36.5627785],[120.9276199,36.5590019],[120.9378204,36.5521278],[120.9417114,36.5464935],[120.9498062,36.5425491],[120.9574966,36.542717],[120.956398,36.5500183],[120.9515533,36.5586128],[120.9543381,36.5605049],[120.9624329,36.5570183],[120.9691162,36.5525856],[120.9727173,36.5471687],[120.9762726,36.5431252],[120.9755173,36.5401344],[120.9593201,36.5308533],[120.9510269,36.5233459],[120.9427795,36.5149193],[120.9420471,36.5112381],[120.948143,36.5077095],[120.9508667,36.5029602],[120.9441528,36.4996109],[120.9455414,36.4920845],[120.9508896,36.4853325],[120.9575882,36.4806709],[120.9641571,36.4796715],[120.9573669,36.4703674],[120.9476471,36.4632835],[120.9435425,36.4586143],[120.9439621,36.4545021],[120.9399033,36.4484596],[120.9308929,36.4542122],[120.930397,36.4601555],[120.9262009,36.4667015],[120.916687,36.4701538],[120.9077225,36.4665222],[120.9028473,36.4590874],[120.8932266,36.4577255],[120.8898621,36.4565048],[120.8949966,36.447464],[120.904953,36.4394417],[120.9100418,36.4319992],[120.9117508,36.4235687],[120.9074402,36.4166031],[120.8955078,36.4080963],[120.8878403,36.3996773],[120.8846893,36.3922844],[120.8856735,36.3884125],[120.8900528,36.3853073],[120.8902435,36.3793564],[120.8794403,36.3715591],[120.8708572,36.3731956],[120.8680573,36.3802299],[120.8564529,36.3790512],[120.8527298,36.3878937],[120.8507233,36.3965492],[120.8459625,36.4026222],[120.8501129,36.4061508],[120.8589935,36.4120789],[120.8603134,36.4230957],[120.8529663,36.4297981],[120.8419418,36.4361877],[120.8389282,36.4411545],[120.8435822,36.4543114],[120.8408737,36.4668427],[120.8292618,36.4732132],[120.8180466,36.4766197],[120.8121414,36.482666],[120.808548,36.4878464],[120.8047028,36.4866371],[120.8066406,36.4801407],[120.8151932,36.4686089],[120.7550125,36.4643593],[120.7524567,36.4664841],[120.7519608,36.4659348],[120.7462387,36.4644051],[120.7424011,36.4604225],[120.740387,36.4532776],[120.733429,36.4412041],[120.7164307,36.4472084],[120.7094727,36.4509354],[120.7021332,36.4506035],[120.7005463,36.4467773],[120.7021637,36.4386787],[120.7033768,36.4310989],[120.7072906,36.4252396],[120.7144394,36.4240379],[120.7173691,36.4218178],[120.7103729,36.4186707],[120.7064133,36.4183502],[120.7074203,36.4140244],[120.7017288,36.406559],[120.694397,36.3969955],[120.6931686,36.394989],[120.6882401,36.387001],[120.6864929,36.3805466],[120.6868134,36.3720818],[120.6917038,36.3701401],[120.699173,36.3682594],[120.7057571,36.3663597],[120.7092972,36.3630104],[120.7111206,36.359848],[120.7201538,36.3614388],[120.7216034,36.3607864],[120.7218094,36.3550682],[120.7288895,36.347683],[120.7294083,36.3412857],[120.7280426,36.3320923],[120.7254868,36.3320312],[120.7114334,36.3360443],[120.701767,36.3360405],[120.6942368,36.332653],[120.6896515,36.3336868],[120.6841431,36.3292007],[120.6779938,36.3340912],[120.6698837,36.3384705],[120.6654968,36.3415718],[120.6667633,36.34618],[120.6576538,36.3464165],[120.6471024,36.3399734],[120.6425934,36.3318481],[120.6415634,36.3250313],[120.6409988,36.3212776],[120.6436234,36.3195114],[120.646843,36.31707],[120.6441422,36.3131142],[120.6461868,36.3113289],[120.6565018,36.3166199],[120.6582336,36.3069382],[120.6556931,36.3024521],[120.6465073,36.295311],[120.6449203,36.2925262],[120.6443024,36.2863274],[120.64505,36.2815399],[120.6496964,36.27845],[120.6510162,36.2736702],[120.6550369,36.2723961],[120.6622925,36.2757797],[120.6613464,36.2664642],[120.6644135,36.2634926],[120.6673584,36.2618408],[120.6710663,36.2682457],[120.6666718,36.2800102],[120.673172,36.2806244],[120.6775131,36.2786713],[120.6752167,36.2715149],[120.6753769,36.2671738],[120.6767502,36.2607918],[120.6800537,36.2558365],[120.6802063,36.2514915],[120.6669083,36.2431526],[120.6726532,36.2336807],[120.6779404,36.2287712],[120.6794205,36.2194214],[120.6824265,36.2146835],[120.6853485,36.2124672],[120.6831436,36.2034836],[120.6833191,36.198452],[120.682457,36.190876],[120.6859818,36.1877556],[120.6866608,36.1847954],[120.6879272,36.1811638],[120.6850433,36.1749115],[120.6885071,36.1729355],[120.6931763,36.169384],[120.6972733,36.1662788],[120.6979294,36.1635475],[120.6945724,36.162323],[120.6901169,36.1601524],[120.6904984,36.1576424],[120.6948471,36.1547737],[120.7002335,36.1549034],[120.69767,36.1475182],[120.697197,36.1447563],[120.7012634,36.1425667],[120.7074738,36.1429443],[120.7092285,36.1413841],[120.7084732,36.1338272],[120.7047119,36.1312599],[120.6936035,36.1296654],[120.6828232,36.1297836],[120.6706924,36.1342659],[120.6658783,36.1368446],[120.6620331,36.1338463],[120.6537399,36.1274986],[120.642807,36.1214981],[120.6316986,36.1198997],[120.6210785,36.1206779],[120.6147079,36.1244125],[120.6056519,36.1241837],[120.6023636,36.121357],[120.6025009,36.1176987],[120.6057281,36.1147995],[120.6033325,36.1108513],[120.5923691,36.1014366],[120.5795364,36.103611],[120.5769272,36.1053772],[120.579361,36.1084137],[120.5848465,36.1127892],[120.5817795,36.1116791],[120.5790787,36.1157341],[120.5819702,36.1215286],[120.5832596,36.1247673],[120.5802231,36.1245308],[120.5745087,36.1240883],[120.5698395,36.1203041],[120.5679474,36.1179695],[120.5660934,36.1147156],[120.5653229,36.1128654],[120.5571899,36.1117592],[120.5530624,36.1148415],[120.5418396,36.1174355],[120.5387802,36.1181412],[120.5363617,36.1146469],[120.5410233,36.1040039],[120.5450668,36.1018181],[120.5471191,36.1002655],[120.5422134,36.0953331],[120.5378189,36.0991135],[120.5311584,36.0957375],[120.5283203,36.0958939],[120.5245972,36.0969429],[120.5197906,36.096817],[120.5173264,36.0946922],[120.512207,36.0918274],[120.5025711,36.0922127],[120.4958572,36.0934486],[120.493103,36.091774],[120.4858017,36.09021],[120.4800568,36.09235],[120.4768524,36.0945587],[120.4642868,36.090107],[120.4524689,36.0815544],[120.4403915,36.0720749],[120.4363098,36.0680733],[120.4378128,36.0658264],[120.4371338,36.0619164],[120.4313889,36.0638237],[120.4235306,36.0622406],[120.4216919,36.0587578],[120.4112396,36.0582466],[120.4036026,36.0582733],[120.3938828,36.0538902],[120.3905334,36.0526543],[120.3886032,36.0585556],[120.3867416,36.062397],[120.3730011,36.0592766],[120.3624115,36.0553284],[120.360878,36.0513916],[120.3629608,36.0489311],[120.3633728,36.0457382],[120.3594437,36.0451736],[120.3542633,36.0470924],[120.3484802,36.0501404],[120.3428268,36.049984],[120.337883,36.0464134],[120.3370438,36.0461617],[120.3335037,36.0497284],[120.3336563,36.0529404],[120.3321228,36.0558739],[120.3247833,36.0554428],[120.3220367,36.0530777],[120.3196182,36.0571289],[120.3138733,36.0590324],[120.3035431,36.0557709],[120.3000107,36.0522385],[120.2903671,36.052887],[120.2840805,36.0543175],[120.2855682,36.059391],[120.2918015,36.0657501],[120.2966385,36.0718384],[120.3009109,36.0779076],[120.3025589,36.0790977],[120.305481,36.076889],[120.3065796,36.0778351],[120.3070374,36.080368],[120.3083572,36.082695],[120.3099518,36.0850258],[120.3061981,36.0867538],[120.3091965,36.0893593],[120.3135529,36.0869598],[120.3190231,36.0916901],[120.3199387,36.0967522],[120.3265228,36.1017418],[120.3300476,36.0986328],[120.3345566,36.0989838],[120.3358231,36.1029129],[120.3330917,36.1071892],[120.3258591,36.1108818],[120.3261185,36.1182137],[120.3384933,36.1338959],[120.347908,36.1458321],[120.3539276,36.1510315],[120.3611832,36.1537476],[120.3637619,36.1545753],[120.3667526,36.1559601],[120.3703537,36.1649857],[120.371727,36.1725807],[120.3707275,36.176445],[120.3725586,36.1801605],[120.3646622,36.1858978],[120.3637695,36.1938858],[120.3682404,36.2022514],[120.3688278,36.2086792],[120.3622971,36.2156029],[120.3510513,36.2203331],[120.3410873,36.2209778],[120.3333435,36.2235107],[120.3371735,36.2268219],[120.3436432,36.2281456],[120.3465805,36.2323456],[120.3433838,36.2340889],[120.3357773,36.2327385],[120.3295364,36.2327957],[120.330513,36.2369461],[120.3318329,36.2392693],[120.3308716,36.2486305],[120.3340683,36.2535286],[120.3406601,36.2518768],[120.3450165,36.2492485],[120.3457489,36.2522469],[120.3433838,36.2546959],[120.3449478,36.257946],[120.3467712,36.2618904],[120.3394318,36.2610016],[120.3291626,36.255455],[120.3226013,36.2564201],[120.317688,36.265213],[120.3204727,36.273304],[120.3251572,36.2766418],[120.3299789,36.2834129],[120.3279266,36.2857246],[120.3270035,36.2867661],[120.3256302,36.2857704],[120.3201065,36.2817688],[120.3186264,36.2766876],[120.3134384,36.2786064],[120.3115616,36.2792206],[120.3082581,36.2802963],[120.3056335,36.2798576],[120.300087,36.2789268],[120.2961273,36.2785873],[120.2910767,36.2773018],[120.2873611,36.271244],[120.2863007,36.2627449],[120.2891998,36.2545815],[120.2908783,36.2484436],[120.2955627,36.2451401],[120.2970428,36.2438087],[120.2886429,36.2344131],[120.2807312,36.2268677],[120.276947,36.2224121],[120.2794418,36.2172127],[120.2830582,36.2120476],[120.2765121,36.2061424],[120.2761536,36.2013206],[120.2908096,36.2031059],[120.2950592,36.2032242],[120.3020096,36.1997528],[120.3050613,36.1945686],[120.3038483,36.1897278],[120.3048935,36.1854057],[120.2961197,36.1849365],[120.290863,36.1884537],[120.2816086,36.1861343],[120.2775116,36.1825867],[120.2734909,36.1838455],[120.2723694,36.1902275],[120.2675934,36.1894035],[120.2629089,36.1860695],[120.2598038,36.1859818],[120.2590332,36.1905403],[120.2621231,36.1977272],[120.2565536,36.2021484],[120.2486496,36.2012405],[120.2434464,36.2036133],[120.2338181,36.2033386],[120.2294006,36.2006989],[120.2258377,36.1912079],[120.2204132,36.1921959],[120.219017,36.1981125],[120.2232285,36.2122002],[120.2263184,36.2193871],[120.2257614,36.2257805],[120.2244797,36.2291794],[120.2229233,36.2323418],[120.2221222,36.237812],[120.2158966,36.2309952],[120.2084427,36.2262039],[120.1986923,36.2286758],[120.1857071,36.2271614],[120.1850662,36.222332],[120.1874466,36.2198792],[120.1857605,36.2196007],[120.1804962,36.2231178],[120.1744232,36.2195053],[120.1692505,36.2145462],[120.1638489,36.2148514],[120.1621628,36.2083893],[120.1628189,36.2061195],[120.1618271,36.2028847],[120.1580582,36.1984253],[120.1528473,36.1943817],[120.1518478,36.1913757],[120.1507111,36.1849327],[120.1479874,36.1825638],[120.140152,36.180275],[120.1330032,36.1880798],[120.1264877,36.2007141],[120.1227188,36.208847],[120.1204224,36.2158775],[120.1214371,36.2248383],[120.1185226,36.2332268],[120.1125031,36.2346535],[120.1114807,36.2344055],[120.1103897,36.2341423],[120.106041,36.2330894],[120.0949631,36.2334518],[120.0949097,36.2319107],[120.0946808,36.2270317],[120.1021729,36.2183189],[120.1069717,36.2122765],[120.1109009,36.2004852],[120.115097,36.1889305],[120.1140137,36.181572],[120.1083603,36.1749954],[120.0997314,36.165123],[120.0938034,36.1583061],[120.0910187,36.1508942],[120.0918427,36.145195],[120.0911789,36.1410561],[120.0844574,36.1392517],[120.0790329,36.1404648],[120.0748367,36.1389694],[120.074913,36.1388206],[120.0773163,36.1342354],[120.0768433,36.1303482],[120.0766983,36.1291771],[120.0839233,36.1261864],[120.0968094,36.1229019],[120.0997162,36.1211548],[120.0965576,36.1157951],[120.0945816,36.1093254],[120.1034088,36.1020279],[120.1154633,36.0984917],[120.1279068,36.0983963],[120.1377029,36.0950203],[120.1463699,36.0909233],[120.150177,36.0878258],[120.155899,36.0802078],[120.1618576,36.0735092],[120.1693573,36.0700645],[120.1768036,36.0682182],[120.1856079,36.0675545],[120.1906815,36.0679283],[120.1909409,36.061985],[120.1858673,36.0549698],[120.1819534,36.0475311],[120.1825867,36.0393066],[120.1830978,36.0342827],[120.1761398,36.0315628],[120.1703262,36.0286484],[120.1735229,36.0269089],[120.1725769,36.0225296],[120.1705322,36.017662],[120.170578,36.0128593],[120.1705475,36.0107956],[120.175209,36.0077209],[120.173378,36.0042343],[120.168457,36.0000076],[120.1755371,35.9961166],[120.1743698,35.9908028],[120.1735229,35.9850388],[120.1709671,35.9792252],[120.1806564,35.9769974],[120.1881027,35.9870949],[120.1976395,35.9942703],[120.2031937,35.9965057],[120.2088776,35.9955292],[120.216301,35.9936905],[120.2224274,35.9954834],[120.2264786,35.9995079],[120.2276993,36.0000114],[120.2289886,36.0065117],[120.2306366,36.0074768],[120.2342911,36.0080376],[120.2387772,36.0088539],[120.2418518,36.0098534],[120.2439117,36.0078506],[120.2417831,36.0048141],[120.2376404,36.0000076],[120.2326202,35.994873],[120.2338181,35.987339],[120.2360306,35.9821281],[120.2297974,35.9764328],[120.2269287,35.9715233],[120.2335434,35.9687424],[120.2377701,35.9688683],[120.2447968,35.9755096],[120.2519836,35.9791641],[120.2590866,35.9841995],[120.2610931,35.9897652],[120.2671432,35.9871941],[120.2725372,35.9862099],[120.2799683,35.9905624],[120.2838821,35.9975624],[120.2805862,36.0000076],[120.2725372,36.0063667],[120.2755508,36.0087433],[120.2782669,36.0113373],[120.2793198,36.0131989],[120.2828827,36.0158157],[120.2865219,36.0166054],[120.2899933,36.0150986],[120.2939835,36.0140648],[120.2976837,36.0134811],[120.3003235,36.0112648],[120.3024292,36.0083466],[120.3058929,36.0066109],[120.3073425,36.0057335],[120.3076935,36.0041428],[120.3000031,36],[120.3065338,35.9972191],[120.3007965,35.9955215],[120.2958527,35.9889717],[120.2923584,35.9787674],[120.2941971,35.9753838],[120.2941208,35.9710197],[120.2909164,35.9729919],[120.2848969,35.9751053],[120.2760315,35.9716263],[120.2695923,35.9705162],[120.2593079,35.9731903],[120.2517929,35.9711304],[120.2437973,35.966526],[120.2373123,35.9605942],[120.2354431,35.9522781],[120.2275314,35.9522667],[120.2220993,35.9477425],[120.21492,35.938343],[120.206459,35.9261513],[120.1974564,35.9256477],[120.1921768,35.9179153],[120.1871872,35.9099579],[120.1924667,35.905529],[120.1920166,35.9029922],[120.1843109,35.9050522],[120.1800537,35.899868],[120.1701202,35.8949738],[120.1600266,35.8937454],[120.1612473,35.897686],[120.1661987,35.9003639],[120.1651535,35.9046898],[120.1669312,35.9088745],[120.1737595,35.9136772],[120.1847076,35.9206657],[120.1828079,35.9251976],[120.1891098,35.9230957],[120.1927185,35.9243584],[120.1986694,35.9298172],[120.1901932,35.9302444],[120.1887817,35.9361687],[120.1978073,35.9362144],[120.2075272,35.9394951],[120.2123795,35.9444618],[120.2130508,35.9481544],[120.2111664,35.9522285],[120.2056503,35.9557304],[120.2008438,35.9558144],[120.1900177,35.9520416],[120.184761,35.9557838],[120.1804199,35.9581718],[120.1761475,35.9529915],[120.1739731,35.9451218],[120.1645737,35.9411621],[120.1591263,35.9366341],[120.1564865,35.9328804],[120.1541977,35.9277611],[120.1544571,35.9222603],[120.1515198,35.9187279],[120.1455307,35.9141808],[120.1413269,35.9135895],[120.1368866,35.9178123],[120.133461,35.9248238],[120.1307373,35.9167061],[120.1295395,35.9123077],[120.124321,35.9153595],[120.1172028,35.9167404],[120.1113815,35.9144974],[120.1047897,35.9108467],[120.0998764,35.9072495],[120.0944366,35.9031792],[120.0884933,35.8979416],[120.0815582,35.8894615],[120.0735474,35.8917313],[120.065239,35.8887177],[120.0573196,35.8834152],[120.052597,35.876152],[120.0510101,35.8797722],[120.0479813,35.884037],[120.0430679,35.8866348],[120.0471268,35.8785019],[120.0467911,35.8736725],[120.0431671,35.8669014],[120.0383377,35.861927],[120.0307083,35.8623734],[120.0247269,35.8635597],[120.0272064,35.8590469],[120.0198669,35.8590431],[120.0169067,35.8561935],[120.0248718,35.8548393],[120.0347366,35.8546982],[120.0314331,35.847477],[120.0422668,35.8563156],[120.0394592,35.8504868],[120.0355072,35.8448524],[120.0306931,35.8396492],[120.0276031,35.83358],[120.0263214,35.8250504],[120.0254135,35.8146935],[120.0270233,35.8048744],[120.0311508,35.8011055],[120.0344467,35.7968483],[120.0347137,35.7913475],[120.0380325,35.7868652],[120.0323715,35.7816353],[120.0324326,35.7745209],[120.0312424,35.7701225],[120.0266418,35.7663002],[120.027153,35.7614975],[120.0274429,35.7557678],[120.0233765,35.7581635],[120.0190582,35.7600899],[120.016243,35.7544899],[120.0143509,35.7468567],[120.0131073,35.7376366],[120.0095596,35.7354546],[120.0113983,35.7265625],[120.0054092,35.7224655],[120,35.7224541],[119.9927979,35.7292747],[119.9819565,35.731617],[119.9730682,35.7453575],[119.9614716,35.744976],[119.9645233,35.7521858],[119.9510117,35.7645302],[119.9389572,35.7657776],[119.9285965,35.7708473],[119.9248886,35.7703323],[119.9128265,35.7633057],[119.9089127,35.7476349],[119.9095383,35.7365761],[119.9233322,35.7281303],[119.9307022,35.7287102],[119.9379807,35.7279129],[119.9456863,35.7291641],[119.9393616,35.7154427],[119.9239426,35.7088051],[119.9115524,35.6969681],[119.9083481,35.6874657],[119.8999634,35.6844063],[119.8945465,35.6756935],[119.8950729,35.6871567],[119.8916397,35.6783562],[119.8848572,35.6660309],[119.8918533,35.6693878],[119.8981628,35.6709328],[119.9039536,35.6810074],[119.9011612,35.6694183],[119.9026871,35.6631432],[119.9211197,35.6526451],[119.9132233,35.6403732],[119.8940735,35.640564],[119.8834763,35.6302528],[119.8744736,35.6221657],[119.8689194,35.6152954],[119.8614197,35.616787],[119.8601532,35.622818],[119.8516998,35.6268806],[119.8617783,35.6381378],[119.8704681,35.6455536],[119.8600464,35.6457977],[119.8523178,35.6358147],[119.8405991,35.6333618],[119.8261414,35.623909],[119.8282928,35.6346092],[119.825737,35.6425362],[119.8294678,35.6476517],[119.8383408,35.6495476],[119.8507538,35.6579399],[119.8418427,35.6675339],[119.8433609,35.6732101],[119.8347473,35.6749802],[119.827179,35.6755524],[119.8155136,35.6698799],[119.8127594,35.6626511],[119.8158722,35.6547012],[119.8099365,35.6503716],[119.8112106,35.6443405],[119.7973175,35.6389961],[119.7884979,35.6336517],[119.7879868,35.6263237],[119.7814713,35.621563],[119.7799988,35.6083031],[119.7666092,35.5978775],[119.7638168,35.589962],[119.7536163,35.5890427],[119.7508316,35.5976677],[119.7569427,35.604744],[119.7629166,35.6138954],[119.7511597,35.6272888],[119.7448578,35.6381378],[119.7390823,35.644371],[119.739563,35.6514702],[119.7519608,35.6555099],[119.7402878,35.6578712],[119.7403488,35.667057],[119.7357788,35.6702461],[119.7318115,35.6658287],[119.7319183,35.6550293],[119.7342072,35.6473427],[119.7259293,35.6373787],[119.7222824,35.6292686],[119.7111893,35.6318283],[119.713028,35.6257744],[119.6997681,35.6213112],[119.6935501,35.6167603],[119.6805267,35.60746],[119.6759262,35.5977821],[119.6671066,35.6048355],[119.6595535,35.6095352],[119.649292,35.6120529],[119.644577,35.6131783],[119.6400223,35.6039619],[119.6281204,35.6070099],[119.6273499,35.6123276],[119.6379395,35.610714],[119.6318207,35.6160355],[119.6281128,35.6152802],[119.618187,35.6102028],[119.6220398,35.6045189],[119.6232224,35.6037025],[119.6441116,35.5893097],[119.6436462,35.5824356],[119.6354523,35.5818787],[119.6370621,35.5765228],[119.6307831,35.5751915],[119.6205063,35.5728683],[119.6274872,35.5679855],[119.6109924,35.5654907],[119.6288605,35.5633316],[119.6342163,35.5591888],[119.6280136,35.5505028],[119.623642,35.5398941],[119.6180496,35.5362358],[119.6166534,35.5236588],[119.6237106,35.5114059],[119.614357,35.510437],[119.6052017,35.4952164],[119.6009293,35.4774818],[119.5978317,35.4688873],[119.5916977,35.4654808],[119.5786591,35.4596138],[119.5751266,35.4487381],[119.5652084,35.4303322],[119.5614777,35.4206123],[119.562088,35.4148827],[119.5595169,35.4079361],[119.5577164,35.4063034],[119.5584564,35.4175301],[119.5558319,35.4245338],[119.555809,35.4413071],[119.5519791,35.4343491],[119.5506973,35.4277458],[119.5485077,35.4200249],[119.5494537,35.4128647],[119.5526428,35.4058342],[119.5593719,35.4014053],[119.5588837,35.3940735],[119.5596008,35.3878441],[119.5487366,35.3892326],[119.5387726,35.3914986],[119.5265198,35.384449],[119.5209427,35.3764191],[119.5306931,35.3838081],[119.5370331,35.3862915],[119.5209122,35.3674583],[119.5173798,35.3519859],[119.5129471,35.344368],[119.4984436,35.3456802],[119.4896622,35.3444481],[119.4716034,35.3341942],[119.4556732,35.3178711],[119.4513168,35.3113937],[119.4455719,35.3049774],[119.4454727,35.3164673],[119.444397,35.3302994],[119.440979,35.338253],[119.4368362,35.321888],[119.4337921,35.3137474],[119.4285431,35.310524],[119.4161301,35.3140373],[119.4199905,35.3085899],[119.3976364,35.3056297],[119.4117126,35.3047066],[119.4223404,35.3013687],[119.4391403,35.3052483],[119.4319534,35.2938385],[119.4224167,35.2850533],[119.412323,35.2762909],[119.4077225,35.2702789],[119.4041901,35.2764015],[119.4011765,35.2687187],[119.3904724,35.2680206],[119.4008102,35.258625],[119.3860321,35.2466125],[119.3965988,35.2452507],[119.3865433,35.2238464],[119.3788834,35.2002754],[119.3765106,35.1893463],[119.3851929,35.2025375],[119.3878326,35.2132225],[119.3892822,35.2228127],[119.3883972,35.2044678],[119.3839111,35.182373],[119.3793335,35.1543045],[119.3723907,35.1332283],[119.3717194,35.1137276],[119.3631363,35.1065063],[119.3527298,35.1011963],[119.3470078,35.0947762],[119.3301468,35.0982361],[119.3159714,35.09515],[119.3052292,35.088932],[119.3018723,35.1023979],[119.293663,35.1052666],[119.2937469,35.1030426],[119.2830582,35.1183891],[119.2559662,35.1280594],[119.2128372,35.1125565],[119.1915207,35.1189041],[119.1363373,35.1008377],[119.1070633,35.0582237],[119.0102997,35.0589218],[118.9410706,35.0444374],[118.9139481,35.0650482],[118.8516617,35.0242577],[118.8572083,34.9496346],[118.8180695,34.9057274],[118.7901382,34.8508644],[118.7594833,34.8483238],[118.7689438,34.797039],[118.7621536,34.791172],[118.7313919,34.7959709],[118.7150803,34.7608757],[118.7228928,34.7486115],[118.7658234,34.7422638],[118.7680283,34.7291565],[118.7299423,34.7014885],[118.6829529,34.6849403],[118.6588516,34.7015572],[118.6320267,34.6934319],[118.6110611,34.7003632],[118.5903168,34.7192154],[118.5501633,34.710556],[118.5194626,34.7173653],[118.515213,34.6981506],[118.491272,34.6796379],[118.4612732,34.6781654],[118.4569168,34.652298],[118.4532166,34.6316986],[118.420517,34.602726],[118.4354324,34.5204315],[118.3996506,34.4380417],[118.3608932,34.4217377],[118.2898636,34.4277916],[118.2635727,34.4101753],[118.231987,34.4086647],[118.1984711,34.386982],[118.1626663,34.3933601],[118.1734772,34.4528999],[118.1283875,34.4959984],[118.1377029,34.5087585],[118.1654663,34.5128555],[118.1698227,34.5467644],[118.0850983,34.5737],[118.1088409,34.6072083],[118.1071167,34.6237411],[118.0870132,34.6544304],[118.0221634,34.661644],[118.0029068,34.6535454],[117.9496536,34.6785164],[117.9018631,34.6749802],[117.896019,34.6486473],[117.8042603,34.6513138],[117.7941284,34.6400528],[117.7849884,34.5854416],[117.7947235,34.5225754],[117.7863998,34.5207329],[117.7217865,34.5417938],[117.6793594,34.5442619],[117.6506119,34.5024567],[117.607132,34.4881516],[117.5944214,34.4741325],[117.5639725,34.4662209],[117.5430069,34.4771004],[117.4804535,34.4817238],[117.4140015,34.5356522],[117.4007874,34.5540504],[117.4017334,34.5737762],[117.3818207,34.5846214],[117.3469391,34.5955086],[117.3066406,34.5742912],[117.3199463,34.576088],[117.3193588,34.5669136],[117.2863464,34.5605774],[117.2860184,34.5461273],[117.2580032,34.5358696],[117.2648392,34.5126877],[117.2523499,34.5065193],[117.2477875,34.4677658],[117.2383881,34.4712257],[117.2319717,34.4581604],[117.2048492,34.4591293],[117.2109833,34.47472],[117.1946182,34.4648857],[117.1708527,34.4818993],[117.1844788,34.5022926],[117.1600876,34.4968262],[117.1424332,34.5298805],[117.1569138,34.5592232],[117.1312408,34.6127052],[117.1090927,34.6377335],[117.0705338,34.6434975],[117.0594635,34.6561203],[117.0678329,34.6978645],[117.0825729,34.7113838],[117.0581512,34.7334213],[117.0595627,34.7510834],[117.0437317,34.7579727],[117.0448685,34.7770081],[116.9943008,34.8034019],[116.9804077,34.8215218],[116.9612198,34.8765678],[116.9136429,34.8820572],[116.9061203,34.8953552],[116.8470764,34.9285622],[116.8172913,34.9285278],[116.7794037,34.9440651],[116.7641373,34.9178925],[116.7270966,34.9283752],[116.693367,34.9406853],[116.6240463,34.9402733],[116.5495529,34.9143524],[116.4480286,34.9034081],[116.4066086,34.852993],[116.3975067,34.7570724],[116.3639526,34.7500305],[116.3563538,34.7245331],[116.3872986,34.7070198],[116.3588104,34.6527481],[116.3686066,34.6408691],[116.3212967,34.6234207],[116.3125763,34.6020393],[116.27565,34.60849],[116.2716599,34.5871315],[116.2511902,34.5817375],[116.234787,34.5538826],[116.2207565,34.5614281],[116.2117462,34.5762405],[116.2031631,34.5818214],[116.1917801,34.5820351],[116.1850281,34.5807838],[116.1716919,34.5716286],[116.1444931,34.5587845],[116.1289368,34.5602264],[116.1187973,34.5754051],[116.1111603,34.5926743],[116.0953827,34.6071396],[116.0772476,34.6094055],[116.0507965,34.5965614],[116.0334167,34.5950508],[116.016037,34.605629],[115.9971466,34.6252747],[115.983551,34.623764],[115.9767532,34.6116753],[115.9759979,34.5950508],[115.9700317,34.5897713],[115.9472885,34.590519],[115.9132767,34.5799408],[115.8739929,34.5799408],[115.8309326,34.5746498],[115.8256378,34.5655861],[115.7900772,34.5746498],[115.758461,34.5809746],[115.7123032,34.5910912],[115.6857529,34.5961494],[115.6857529,34.5803413],[115.6813202,34.5683289],[115.6712036,34.5613708],[115.6452789,34.570858],[115.6275787,34.5790787],[115.6130295,34.5803413],[115.5870972,34.5790787],[115.5738297,34.5765495],[115.5320969,34.5790787],[115.5099564,34.5879288],[115.4890976,34.6043701],[115.4701309,34.6334572],[115.4587479,34.6416779],[115.4388199,34.6753731],[115.440773,34.7059021],[115.4279099,34.7259293],[115.4396362,34.7533684],[115.4249725,34.7963104],[115.2928772,34.869133],[115.2520523,34.8511429],[115.2312927,34.8737869],[115.2494736,34.9102821],[115.1918793,34.9218559],[115.2158127,34.9492607],[115.2124786,34.9625168],[115.1475983,34.9741936],[115.1258163,35.0018539],[115.0949936,35.0098801],[115.0211563,34.9839668],[114.9451065,34.9949074],[114.9135513,34.9748878],[114.8943329,34.9975052],[114.8723526,35.007],[114.8162766,34.9980087],[114.7977371,35.0359917],[114.8394012,35.0871773],[114.8411026,35.1750488],[114.9230728,35.2041817],[114.9865799,35.2717209],[115.0199432,35.3403587],[115.0149536,35.3746796],[115.1050034,35.4047241],[115.1369629,35.4288177],[115.1785507,35.4486847],[115.2127838,35.4193649],[115.3161469,35.4900284],[115.3478012,35.5060387],[115.3199997,35.5801888],[115.3389206,35.5882339],[115.3573837,35.5621071],[115.3817062,35.5665474],[115.4096298,35.6496696],[115.4964371,35.6965752],[115.4957962,35.7332497],[115.5401917,35.7346802],[115.5953293,35.7492867],[115.646347,35.7415848],[115.6993103,35.7905045],[115.7159576,35.843853],[115.7417679,35.8301277],[115.7696609,35.8679924],[115.8075867,35.8534508],[115.8668823,35.8617859],[115.8863068,35.8828125],[115.8589935,35.9048042],[115.9215088,35.9745674],[115.9868469,35.9805984],[116.0222702,35.9643707],[116.0412369,35.9764214],[116.0481033,36.0003433],[116.0686035,36.0451202],[116.0997391,36.0743637],[116.094902,36.1111298],[116.0535583,36.1065063],[115.9898987,36.051651],[115.8902664,36.0249405],[115.8533096,36.0066299],[115.8124237,36.013031],[115.7770691,36.0008469],[115.7623062,35.97855],[115.7528915,35.9750519],[115.7394333,35.9723625],[115.7276001,35.9691315],[115.7205963,35.9691315],[115.7114563,35.9691315],[115.702301,35.9680557],[115.6931534,35.9659042],[115.6866989,35.9642906],[115.6818466,35.9589081],[115.678093,35.9535255],[115.6743164,35.9433022],[115.6667862,35.9395332],[115.6611328,35.9387245],[115.6511765,35.936306],[115.6433716,35.9295769],[115.6374588,35.9241943],[115.6180801,35.9258118],[115.6030121,35.9252701],[115.5879364,35.9247322],[115.5782471,35.921505],[115.5696487,35.9161224],[115.5615768,35.9096642],[115.5513535,35.9005165],[115.5443497,35.8962097],[115.5362778,35.8924446],[115.5070572,35.8940773],[115.4885635,35.9211388],[115.4724503,35.9081116],[115.4835434,35.8816795],[115.4733124,35.8768387],[115.4625473,35.8725319],[115.4517899,35.8666115],[115.4431763,35.8596153],[115.4313431,35.8488541],[115.4232635,35.84132],[115.4130402,35.8316307],[115.4098129,35.8246346],[115.4038925,35.8176384],[115.3974304,35.8084908],[115.3855972,35.8025703],[115.3742905,35.7977257],[115.3656769,35.7912674],[115.3538437,35.7831955],[115.3347931,35.8016281],[115.3324509,35.8639488],[115.3608704,35.9092484],[115.3485031,35.9663925],[115.3884964,35.9831772],[115.4091492,36.0029297],[115.4261627,36.0011292],[115.4421005,36.0329056],[115.4426422,36.0452843],[115.4431763,36.0592766],[115.4453278,36.0684242],[115.4490967,36.0759583],[115.4582367,36.0877991],[115.4652405,36.1007118],[115.4695511,36.110939],[115.477623,36.1233177],[115.4728699,36.1693611],[115.4764862,36.2159615],[115.4644165,36.2578201],[115.4260864,36.2842445],[115.4159775,36.3235893],[115.3551712,36.3105202],[115.3643875,36.3325424],[115.3435211,36.3629036],[115.3425369,36.3844223],[115.3339462,36.397892],[115.2938766,36.4121323],[115.3054123,36.4386063],[115.3030472,36.4573708],[115.2845764,36.463253],[115.2815475,36.47649],[115.2777176,36.4786148],[115.2772903,36.4828644],[115.2768707,36.4866905],[115.2781372,36.4930687],[115.2811203,36.4968948],[115.2849426,36.5011482],[115.2874985,36.5062485],[115.2879333,36.5126266],[115.2896194,36.5160255],[115.2926025,36.5202789],[115.2985535,36.5232544],[115.3040771,36.5275078],[115.3083267,36.5313339],[115.3121567,36.5360107],[115.3172607,36.5402603],[115.3202362,36.543663],[115.3232117,36.5487633],[115.3266068,36.554718],[115.3283081,36.5585442],[115.3300095,36.5636444],[115.3304367,36.5674706],[115.3321381,36.5725708],[115.3329773,36.5768242],[115.3321381,36.5827751],[115.3321381,36.5878792],[115.3325729,36.5938301],[115.3334122,36.599781],[115.3372421,36.6014824],[115.3410568,36.6031837],[115.3448868,36.6065865],[115.3495712,36.6095619],[115.3550873,36.6138115],[115.3589172,36.6163635],[115.3589172,36.6189156],[115.3593369,36.621891],[115.3644485,36.6235924],[115.3678513,36.6274185],[115.3712463,36.6312447],[115.3733673,36.6363449],[115.3771973,36.6410217],[115.3789062,36.6452751],[115.3818817,36.6499519],[115.3835831,36.6529274],[115.3852768,36.6554756],[115.3886871,36.6559029],[115.3925095,36.657177],[115.3954773,36.6576042],[115.3980331,36.6614304],[115.3993073,36.6656799],[115.4001617,36.6686554],[115.4031372,36.6724854],[115.4077606,36.6784248],[115.4112167,36.6814117],[115.4141922,36.6843872],[115.4175873,36.686512],[115.4239731,36.6886406],[115.4307709,36.6911888],[115.4346008,36.6911888],[115.4401169,36.6941681],[115.4448013,36.6967163],[115.4460831,36.7022438],[115.4452286,36.7069206],[115.4456635,36.7094727],[115.4481964,36.7145729],[115.4511795,36.7188263],[115.4562836,36.7256279],[115.4618073,36.7307281],[115.4664764,36.7375336],[115.4693069,36.7429161],[115.4707413,36.7477341],[115.4749908,36.756237],[115.4775391,36.7596397],[115.48349,36.7634659],[115.4898682,36.7664413],[115.4953995,36.7689934],[115.4979477,36.7694168],[115.5009232,36.7689934],[115.5043335,36.7655907],[115.5098495,36.7651672],[115.5166473,36.7655907],[115.5204773,36.7668686],[115.5255814,36.7702675],[115.5294113,36.7740936],[115.5357895,36.7745209],[115.5408936,36.7749443],[115.5476913,36.7745209],[115.552803,36.7745209],[115.5619431,36.7755814],[115.5712891,36.7772827],[115.5787277,36.7787704],[115.5833969,36.7796211],[115.5893631,36.7821732],[115.5957336,36.7847252],[115.6008377,36.7864227],[115.6072083,36.7885513],[115.6148682,36.7915268],[115.6233673,36.7953529],[115.6318665,36.7996025],[115.63871,36.8047562],[115.64505,36.8085327],[115.651001,36.8102341],[115.6624832,36.8115082],[115.6739578,36.8115082],[115.6811905,36.8149109],[115.6833115,36.818737],[115.6833115,36.8242645],[115.6811905,36.8306389],[115.6811905,36.8353157],[115.6803436,36.8382912],[115.6833115,36.8408432],[115.6883011,36.8407288],[115.6882019,36.8453064],[115.6894836,36.8525352],[115.6924515,36.8614655],[115.6962814,36.8691177],[115.7001114,36.87677],[115.7052078,36.8805962],[115.7103119,36.8844223],[115.7149887,36.8861237],[115.7200928,36.8865471],[115.7251892,36.8890991],[115.7302933,36.8920746],[115.7345428,36.8967514],[115.7379532,36.9014282],[115.7426224,36.9073792],[115.7472992,36.912056],[115.7545166,36.9154587],[115.7626038,36.9243851],[115.7662201,36.9301262],[115.7713165,36.9386292],[115.7747192,36.945858],[115.781517,36.9535103],[115.788269,36.9627609],[115.7887497,36.9688148],[115.7845001,36.9743423],[115.7810974,36.9802933],[115.7776871,36.9870949],[115.7751465,36.9913483],[115.7785492,36.9972992],[115.7849274,36.9990005],[115.7934265,37.0024033],[115.8006592,37.0053787],[115.8053436,37.0092049],[115.8061829,37.0147324],[115.8066101,37.0245094],[115.8121338,37.0274849],[115.8202133,37.0304604],[115.8236237,37.0334396],[115.8270187,37.0381126],[115.829567,37.0432167],[115.8342438,37.0457687],[115.8410492,37.0504456],[115.8474197,37.0538445],[115.8520966,37.0589485],[115.8597488,37.0682983],[115.8640137,37.0721283],[115.8644333,37.0763779],[115.8648529,37.0819054],[115.866127,37.0874329],[115.8678284,37.0925331],[115.869957,37.0984879],[115.8720779,37.1048622],[115.8742065,37.1086884],[115.8780365,37.1133652],[115.8814316,37.1197433],[115.8805771,37.1261215],[115.8788834,37.1307983],[115.8767471,37.1371765],[115.8754807,37.1439781],[115.8793106,37.1516304],[115.8822937,37.1537552],[115.8869629,37.1567307],[115.892067,37.1597061],[115.8980179,37.1626854],[115.9014206,37.1652336],[115.9052429,37.1682129],[115.9082184,37.1716118],[115.9073715,37.1750145],[115.9052429,37.1788406],[115.9018402,37.1839409],[115.9001389,37.1886177],[115.9005737,37.1915932],[115.9018402,37.1966972],[115.9044037,37.2005234],[115.9090729,37.2056236],[115.9162979,37.2115784],[115.9235229,37.2154045],[115.9294662,37.2192307],[115.9350128,37.2209282],[115.9405289,37.2217789],[115.946907,37.2226295],[115.9511566,37.2226295],[115.9545593,37.2251816],[115.9588089,37.2290077],[115.9602966,37.2334709],[115.9615784,37.2389984],[115.9628525,37.2453766],[115.9649811,37.2509041],[115.9671021,37.2577057],[115.9688034,37.2640839],[115.9671021,37.2700348],[115.9662628,37.2755623],[115.9654007,37.2793884],[115.9666672,37.2832146],[115.9679565,37.2887421],[115.9696503,37.2929916],[115.973053,37.2980957],[115.9756088,37.3044739],[115.9760284,37.3087234],[115.9764633,37.3134003],[115.9773102,37.3193512],[115.9768829,37.324028],[115.9773102,37.3287048],[115.9805222,37.3345947],[115.9853821,37.3363571],[115.9913406,37.337635],[116.0006866,37.3410339],[116.009407,37.3433723],[116.0196075,37.3455009],[116.0230103,37.3480492],[116.0255585,37.3501778],[116.0293884,37.3518753],[116.0353394,37.3544273],[116.0417175,37.3557014],[116.0468216,37.3561287],[116.0531998,37.35783],[116.0570221,37.3603783],[116.0598907,37.3643875],[116.0697784,37.3667564],[116.0753021,37.3676071],[116.0846634,37.3676071],[116.0944366,37.3680344],[116.1029434,37.3676071],[116.1101685,37.3667564],[116.1169662,37.3676071],[116.1237717,37.3697319],[116.1331329,37.3705826],[116.1399307,37.3714333],[116.1454468,37.3744087],[116.1522598,37.3756866],[116.1592712,37.3784485],[116.1662903,37.3782349],[116.1718063,37.3752594],[116.1752167,37.3705826],[116.1781921,37.3659058],[116.1811676,37.3616562],[116.1871185,37.35783],[116.1973267,37.3569794],[116.2045517,37.3574028],[116.2109299,37.3582535],[116.2198563,37.3586807],[116.2334595,37.3586807],[116.249321,37.3853874],[116.2734528,37.386219],[116.2847366,37.4003792],[116.2716217,37.415081],[116.2265701,37.425312],[116.2256775,37.4722633],[116.2409973,37.4848099],[116.2679977,37.4796791],[116.2961502,37.495594],[116.2718811,37.5192947],[116.288063,37.5267754],[116.284523,37.5510674],[116.294693,37.5633812],[116.3284683,37.5737457],[116.370369,37.5536995],[116.3747406,37.5227623],[116.4285965,37.4683685],[116.4332809,37.4700699],[116.4362564,37.4760208],[116.4371109,37.4900513],[116.4400864,37.4972801],[116.4439087,37.503231],[116.4485931,37.5079079],[116.4519882,37.5121574],[116.4583664,37.5151367],[116.4655914,37.5159874],[116.4775009,37.5159874],[116.4842987,37.5185356],[116.4889832,37.5257645],[116.4932327,37.5359688],[116.4983292,37.5368195],[116.5042801,37.5397949],[116.5089569,37.542347],[116.5127869,37.54702],[116.5151215,37.551487],[116.5164032,37.5548859],[116.5214996,37.5582886],[116.5274506,37.5621147],[116.5317078,37.5655174],[116.5351028,37.5693436],[116.5367966,37.5744438],[116.5410614,37.5786972],[116.5470123,37.5820961],[116.5516891,37.5863495],[116.5567932,37.5914497],[116.5631638,37.5974007],[116.5669937,37.6016541],[116.5716705,37.6054802],[116.5771866,37.6080322],[116.5822983,37.610157],[116.587822,37.6122818],[116.5929337,37.6161079],[116.5980301,37.6203613],[116.6031265,37.6241875],[116.6090927,37.6292877],[116.6120605,37.6331139],[116.6163101,37.6382179],[116.6214066,37.6433182],[116.6243896,37.6467209],[116.628212,37.6535225],[116.6324692,37.6603241],[116.6358566,37.6654282],[116.6375732,37.6692543],[116.6426697,37.6726532],[116.6469193,37.6752052],[116.6516037,37.6807327],[116.6545715,37.6854095],[116.6579666,37.6900864],[116.6605301,37.6960373],[116.6626511,37.7011414],[116.6643524,37.7058144],[116.6673279,37.7113419],[116.6715775,37.7168694],[116.675827,37.7206955],[116.6813583,37.7249489],[116.6873093,37.7279243],[116.6941071,37.7317505],[116.7039032,37.734726],[116.7115479,37.7364273],[116.7187729,37.7394028],[116.7268524,37.7432289],[116.7323837,37.7466316],[116.737587,37.749752],[116.7438583,37.7542839],[116.7468338,37.7606621],[116.7489471,37.7687378],[116.7515106,37.7768173],[116.7527771,37.7857437],[116.7553329,37.7993507],[116.7600098,37.8061523],[116.7672424,37.8116798],[116.7740402,37.8167801],[116.7799911,37.8210335],[116.7872162,37.8257103],[116.7940216,37.8312378],[116.806778,37.833786],[116.8144302,37.8329353],[116.8254929,37.8312378],[116.8378067,37.8291092],[116.8463211,37.8312378],[116.854393,37.8333626],[116.8663025,37.836338],[116.8726807,37.8388901],[116.8811798,37.8427162],[116.8854523,37.8429565],[116.8920212,37.8442039],[116.9022293,37.8433533],[116.9183807,37.8408012],[116.9375229,37.8386765],[116.9489899,37.8374023],[116.9626007,37.8361244],[116.9766235,37.835701],[116.9906464,37.8335762],[117.0077972,37.8318291],[117.0161667,37.8297462],[117.0323334,37.8297462],[117.0395508,37.8327255],[117.0444412,37.8346367],[117.0525208,37.8397408],[117.0610199,37.8418655],[117.0720673,37.844841],[117.0797272,37.8465424],[117.0890808,37.8456917],[117.1001434,37.844841],[117.1065063,37.8414383],[117.1158676,37.8405876],[117.1256409,37.8397408],[117.1325226,37.8400154],[117.1405334,37.8376122],[117.1515808,37.8376122],[117.16008,37.8388901],[117.1690063,37.8405876],[117.1766586,37.8431396],[117.1860123,37.8439903],[117.1962204,37.8439903],[117.2042999,37.8435669],[117.2234268,37.8405876],[117.2391586,37.8397408],[117.2514877,37.8393135],[117.2625427,37.8384628],[117.2752991,37.8397408],[117.2816772,37.8418655],[117.2922974,37.8465424],[117.30336,37.8516426],[117.3143768,37.85532],[117.3222733,37.8561058],[117.3282318,37.8573837],[117.3363037,37.8569565],[117.3443832,37.8552589],[117.3545914,37.8531303],[117.3647919,37.8501549],[117.3754196,37.8484535],[117.3869019,37.8471794],[117.3958282,37.8454781],[117.4056091,37.8433533],[117.4132614,37.8442039],[117.4204865,37.8442039],[117.4272919,37.846756],[117.4319687,37.8488808],[117.4387665,37.8548317],[117.4421692,37.8578072],[117.4468536,37.8637619],[117.4493866,37.8680115],[117.4511032,37.873539],[117.4527969,37.8777885],[117.457901,37.8850174],[117.4625778,37.891819],[117.4676819,37.8994713],[117.4698029,37.9033012],[117.4714966,37.9079742],[117.4766083,37.913929],[117.482132,37.921154],[117.4880829,37.9288101],[117.4961624,37.940712],[117.5012665,37.9466667],[117.5063705,37.954319],[117.5118866,37.962822],[117.5157166,37.9696236],[117.5182724,37.9772758],[117.5191193,37.983654],[117.5208206,37.9900322],[117.5238037,37.9989586],[117.5369797,38.0122643],[117.5352783,38.0180893],[117.5374069,38.0227661],[117.5412292,38.0282936],[117.548027,38.0321198],[117.5569611,38.0393486],[117.5616379,38.0461502],[117.5646133,38.0516777],[117.5654602,38.0563545],[117.5658875,38.0606041],[117.5714188,38.0661316],[117.5782166,38.0708084],[117.5828934,38.0725098],[117.5892715,38.0733604],[117.599472,38.072937],[117.6092529,38.0712357],[117.6194611,38.0708084],[117.6300888,38.070385],[117.6394424,38.0712357],[117.6466675,38.070385],[117.656868,38.0708084],[117.6645203,38.072937],[117.6734467,38.07761],[117.6811066,38.0767632],[117.6917267,38.0754852],[117.6998062,38.0780373],[117.7040634,38.0818634],[117.7066116,38.0848389],[117.7117233,38.0869637],[117.7163925,38.0890923],[117.7193222,38.0928154],[117.7206421,38.0980186],[117.7222595,38.1046753],[117.7325516,38.1167259],[117.7423172,38.1256523],[117.7512512,38.1286316],[117.7593307,38.1345825],[117.7623062,38.1418114],[117.7623062,38.1520119],[117.764473,38.1609764],[117.770813,38.1634941],[117.7827072,38.1673203],[117.7907867,38.1673203],[117.7960892,38.1702728],[117.7920685,38.1770973],[117.7886734,38.1851768],[117.7886734,38.196228],[117.7890015,38.2028809]]]]},
  731 +"properties":{
  732 +"gid":122,
  733 +"name":"山东省"}
  734 +},
  735 +{"type":"Feature",
  736 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.7437668,38.2014084],[120.7458801,38.2012596],[120.7495193,38.1974525],[120.7517395,38.1924667],[120.755722,38.1870651],[120.7579193,38.1827621],[120.7546082,38.1778793],[120.753273,38.1748734],[120.761528,38.1718559],[120.7702408,38.172287],[120.7731323,38.1728096],[120.778801,38.1690483],[120.7821198,38.1659203],[120.7796478,38.1619682],[120.774498,38.1595612],[120.7677994,38.1596375],[120.7566681,38.1616707],[120.752327,38.160881],[120.7445526,38.158638],[120.7393265,38.1582909],[120.7361832,38.1646271],[120.736557,38.1781464],[120.7374573,38.1848068],[120.7363815,38.1905098],[120.735878,38.1962204],[120.7372208,38.1992264],[120.7412109,38.2016106],[120.7437668,38.2014084]]]]},
  737 +"properties":{
  738 +"gid":123,
  739 +"name":"山东省"}
  740 +},
  741 +{"type":"Feature",
  742 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.9089966,38.1604614],[117.907547,38.1611481],[117.9058228,38.1634407],[117.8982697,38.1652756],[117.8991394,38.1673393],[117.9069824,38.1677933],[117.911911,38.1659584],[117.9182968,38.1666412],[117.9238205,38.1668663],[117.9272995,38.1627426],[117.9235229,38.1590805],[117.9197464,38.1613731],[117.9174271,38.1627502],[117.911911,38.1620636],[117.9089966,38.1604614]]]]},
  743 +"properties":{
  744 +"gid":124,
  745 +"name":"山东省"}
  746 +},
  747 +{"type":"Feature",
  748 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.9296036,38.1437263],[117.9284363,38.1439552],[117.9307632,38.1460152],[117.9345398,38.1476173],[117.9374466,38.1515121],[117.9362869,38.1560898],[117.9339828,38.1615906],[117.936882,38.1666298],[117.9447327,38.166851],[117.9496536,38.1627274],[117.9542923,38.1553917],[117.9525375,38.1503525],[117.948761,38.1469193],[117.945282,38.1476097],[117.9400635,38.1469269],[117.93367,38.1453285],[117.9296036,38.1437263]]]]},
  749 +"properties":{
  750 +"gid":125,
  751 +"name":"山东省"}
  752 +},
  753 +{"type":"Feature",
  754 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.6413574,38.1484146],[120.6416931,38.1472778],[120.6452637,38.1450768],[120.6473999,38.1426086],[120.6474762,38.1403198],[120.6456528,38.1352386],[120.6405182,38.1323662],[120.6364136,38.1334114],[120.6341629,38.1390839],[120.6346207,38.1420708],[120.6356964,38.1441574],[120.6373367,38.146946],[120.6413574,38.1484146]]]]},
  755 +"properties":{
  756 +"gid":126,
  757 +"name":"山东省"}
  758 +},
  759 +{"type":"Feature",
  760 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.9307404,38.1224174],[117.9275436,38.121048],[117.9243469,38.1221924],[117.9202881,38.1231117],[117.9141998,38.1224289],[117.9110107,38.1254082],[117.9127502,38.1283836],[117.9182663,38.1309013],[117.9246597,38.1341057],[117.9293137,38.1361656],[117.9325027,38.1350174],[117.9321976,38.1313515],[117.9298706,38.1274567],[117.9313202,38.1242523],[117.9307404,38.1224174]]]]},
  761 +"properties":{
  762 +"gid":127,
  763 +"name":"山东省"}
  764 +},
  765 +{"type":"Feature",
  766 +"geometry":{"type":"MultiPolygon","coordinates":[[[[118.1874771,38.1068497],[118.1860275,38.1066246],[118.1851578,38.107769],[118.1863327,38.1102867],[118.1906967,38.1141701],[118.1953583,38.1164474],[118.1965027,38.1130066],[118.194458,38.1107216],[118.1906662,38.1084404],[118.1874771,38.1068497]]]]},
  767 +"properties":{
  768 +"gid":128,
  769 +"name":"山东省"}
  770 +},
  771 +{"type":"Feature",
  772 +"geometry":{"type":"MultiPolygon","coordinates":[[[[118.1917877,38.0972137],[118.1897736,38.0990524],[118.1894836,38.1001968],[118.1891937,38.1020317],[118.1941376,38.1047668],[118.1970596,38.1079674],[118.1996765,38.1107063],[118.2025833,38.1097832],[118.2031479,38.1072617],[118.2028427,38.1026802],[118.2010803,38.0999374],[118.1958466,38.0976601],[118.1917877,38.0972137]]]]},
  773 +"properties":{
  774 +"gid":129,
  775 +"name":"山东省"}
  776 +},
  777 +{"type":"Feature",
  778 +"geometry":{"type":"MultiPolygon","coordinates":[[[[118.1706314,38.1020851],[118.1683121,38.1036911],[118.1665802,38.1048431],[118.1648483,38.1066818],[118.1648636,38.108284],[118.1677628,38.1087341],[118.1729736,38.1055145],[118.177002,38.0990868],[118.1801682,38.0933495],[118.1812973,38.0892258],[118.1795502,38.0862503],[118.1751938,38.0848885],[118.1699677,38.08284],[118.1667862,38.0849075],[118.165657,38.092247],[118.1627731,38.0956879],[118.1578522,38.0979919],[118.1543808,38.1007538],[118.1564178,38.1028061],[118.1596069,38.1037178],[118.1636734,38.1032486],[118.1668472,38.1018639],[118.1706314,38.1020851]]]]},
  779 +"properties":{
  780 +"gid":130,
  781 +"name":"山东省"}
  782 +},
  783 +{"type":"Feature",
  784 +"geometry":{"type":"MultiPolygon","coordinates":[[[[118.6482468,38.0585861],[118.6471176,38.0606575],[118.6465683,38.0636368],[118.6492233,38.068203],[118.6545105,38.0738945],[118.6617889,38.0763664],[118.6678391,38.0728874],[118.6680679,38.0673828],[118.6636505,38.0616875],[118.6592636,38.0582809],[118.6514206,38.0569611],[118.6482468,38.0585861]]]]},
  785 +"properties":{
  786 +"gid":131,
  787 +"name":"山东省"}
  788 +},
  789 +{"type":"Feature",
  790 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.6448822,38.0705528],[120.6470566,38.068409],[120.647583,38.0624657],[120.6477432,38.0583496],[120.6458435,38.0546379],[120.6406326,38.054512],[120.6365967,38.0605965],[120.637291,38.0654221],[120.6400681,38.0689278],[120.6426163,38.0703621],[120.6448822,38.0705528]]]]},
  791 +"properties":{
  792 +"gid":132,
  793 +"name":"山东省"}
  794 +},
  795 +{"type":"Feature",
  796 +"geometry":{"type":"MultiPolygon","coordinates":[[[[118.1109238,38.0318909],[118.1100311,38.0289154],[118.1062469,38.0257187],[118.0992966,38.0257339],[118.0981369,38.0264206],[118.0981598,38.0330658],[118.099617,38.0353546],[118.1022263,38.0362625],[118.105423,38.0355721],[118.1085968,38.0337334],[118.1109238,38.0318909]]]]},
  797 +"properties":{
  798 +"gid":133,
  799 +"name":"山东省"}
  800 +},
  801 +{"type":"Feature",
  802 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.9306793,38.0361938],[120.9404221,38.0315933],[120.9454117,38.030098],[120.9515991,38.0274849],[120.9540329,38.0245628],[120.9541702,38.020443],[120.946373,38.0191269],[120.9393234,38.0214958],[120.9289932,38.02631],[120.9268036,38.0306129],[120.927597,38.032692],[120.9295807,38.0343361],[120.9306793,38.0361938]]]]},
  803 +"properties":{
  804 +"gid":134,
  805 +"name":"山东省"}
  806 +},
  807 +{"type":"Feature",
  808 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.8679733,38.0268021],[120.8688431,38.026825],[120.8732224,38.0262337],[120.8741531,38.0244217],[120.8748474,38.0212326],[120.8749237,38.0191727],[120.872963,38.017067],[120.8691101,38.0192719],[120.8681717,38.0210838],[120.8678131,38.023365],[120.8677597,38.0245094],[120.8679733,38.0268021]]]]},
  809 +"properties":{
  810 +"gid":135,
  811 +"name":"山东省"}
  812 +},
  813 +{"type":"Feature",
  814 +"geometry":{"type":"MultiPolygon","coordinates":[[[[118.0545807,37.9937439],[118.0540009,37.9948883],[118.0519791,37.9953499],[118.0485077,37.9978752],[118.0453262,37.9999428],[118.0398331,38.003849],[118.0381012,38.0065994],[118.0404205,38.0082016],[118.044487,38.0104828],[118.0479736,38.0129967],[118.0514603,38.0180321],[118.054657,38.0216942],[118.0578537,38.022377],[118.0595932,38.0216866],[118.0618896,38.0175552],[118.0607071,38.0109138],[118.05867,38.0056496],[118.0586472,38.0001526],[118.0577698,37.996254],[118.0545807,37.9937439]]]]},
  815 +"properties":{
  816 +"gid":136,
  817 +"name":"山东省"}
  818 +},
  819 +{"type":"Feature",
  820 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.6802597,37.9904289],[120.6845627,37.9919052],[120.6967926,37.9908218],[120.701828,37.9881935],[120.7056198,37.9875946],[120.7125168,37.9895897],[120.7145386,37.9898643],[120.7199402,37.9851837],[120.72332,37.9802246],[120.7266998,37.9752655],[120.7286072,37.9707298],[120.7281418,37.9677429],[120.7253571,37.9644737],[120.7146835,37.9630775],[120.7070465,37.9651871],[120.6936264,37.9669304],[120.6913834,37.9726028],[120.6908112,37.9801445],[120.6856308,37.9866638],[120.6817703,37.9888611],[120.6802597,37.9904289]]]]},
  821 +"properties":{
  822 +"gid":137,
  823 +"name":"山东省"}
  824 +},
  825 +{"type":"Feature",
  826 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.619873,37.9830246],[120.6225891,37.9801102],[120.6219864,37.9729996],[120.621109,37.9658775],[120.6241531,37.9625168],[120.6245728,37.9588623],[120.6206589,37.9551048],[120.6196518,37.9511871],[120.6186523,37.9470406],[120.6104965,37.9477577],[120.6008377,37.9573669],[120.5930481,37.9635887],[120.593689,37.9693298],[120.5974731,37.9767494],[120.6007767,37.9811821],[120.6047134,37.9844856],[120.6101608,37.9862213],[120.6160202,37.9847603],[120.6177902,37.9841156],[120.619873,37.9830246]]]]},
  827 +"properties":{
  828 +"gid":138,
  829 +"name":"山东省"}
  830 +},
  831 +{"type":"Feature",
  832 +"geometry":{"type":"MultiPolygon","coordinates":[[[[118.1431122,37.9662933],[118.139061,37.9672165],[118.1364594,37.9679146],[118.1332779,37.970211],[118.1272202,37.9752655],[118.1199875,37.9778023],[118.1052322,37.9815025],[118.1032104,37.983799],[118.1032181,37.9860878],[118.1064072,37.986084],[118.1101608,37.9842415],[118.114502,37.9817085],[118.1200027,37.981926],[118.1269531,37.9821396],[118.1324463,37.9796066],[118.137352,37.9754715],[118.1425476,37.9706459],[118.1431122,37.9662933]]]]},
  833 +"properties":{
  834 +"gid":139,
  835 +"name":"山东省"}
  836 +},
  837 +{"type":"Feature",
  838 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.7217789,37.9235687],[120.7176895,37.9290276],[120.7159729,37.9363136],[120.7155228,37.9406586],[120.71698,37.9480171],[120.7188568,37.9521866],[120.723938,37.9559669],[120.7320633,37.9559288],[120.7382965,37.9521828],[120.7411728,37.9453812],[120.7440414,37.938118],[120.7485809,37.9331856],[120.7542191,37.9296532],[120.7566223,37.9274178],[120.7567062,37.9251289],[120.7516174,37.9215775],[120.7512817,37.9151573],[120.7577133,37.906147],[120.7613373,37.9016533],[120.7623596,37.8977852],[120.7492065,37.8906784],[120.738121,37.8974495],[120.7354507,37.904026],[120.7315292,37.9080582],[120.7270889,37.9104729],[120.7207031,37.910778],[120.7170563,37.9148178],[120.7192307,37.9189911],[120.722023,37.9218025],[120.7219391,37.9224472],[120.7217789,37.9235687]]]]},
  839 +"properties":{
  840 +"gid":140,
  841 +"name":"山东省"}
  842 +},
  843 +{"type":"Feature",
  844 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.6808014,37.9533463],[120.6836472,37.9547882],[120.685173,37.9529915],[120.684433,37.9493103],[120.6833878,37.9463081],[120.6835403,37.9421883],[120.6842422,37.939003],[120.6829071,37.9357643],[120.6796036,37.9315643],[120.6711884,37.9313622],[120.6672668,37.9353905],[120.6688385,37.9397774],[120.6713333,37.9430428],[120.6744385,37.9449501],[120.6778793,37.9461746],[120.6791077,37.951931],[120.6808014,37.9533463]]]]},
  845 +"properties":{
  846 +"gid":141,
  847 +"name":"山东省"}
  848 +},
  849 +{"type":"Feature",
  850 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.4346085,37.7871437],[120.4404373,37.7861519],[120.4436264,37.7862358],[120.4464569,37.7879105],[120.4507828,37.7884789],[120.454361,37.7855949],[120.4530869,37.7814407],[120.4506912,37.7763405],[120.4473572,37.7728157],[120.4419022,37.771759],[120.4339066,37.7759056],[120.4313431,37.7822533],[120.4318237,37.7847824],[120.4326172,37.7864037],[120.4334564,37.787117],[120.4346085,37.7871437]]]]},
  851 +"properties":{
  852 +"gid":142,
  853 +"name":"山东省"}
  854 +},
  855 +{"type":"Feature",
  856 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.0926666,37.7112732],[119.091217,37.7103729],[119.0897827,37.7106171],[119.085762,37.7118034],[119.0805588,37.711628],[119.0785828,37.7134819],[119.0722885,37.7174454],[119.0668564,37.7207108],[119.0669937,37.7287292],[119.0754089,37.7313881],[119.0817566,37.731781],[119.0858612,37.7351761],[119.0888138,37.7388077],[119.0943069,37.7396698],[119.0953903,37.735302],[119.0941391,37.7295876],[119.0908585,37.7234344],[119.0907822,37.718853],[119.0941467,37.7133217],[119.0926666,37.7112732]]]]},
  857 +"properties":{
  858 +"gid":143,
  859 +"name":"山东省"}
  860 +},
  861 +{"type":"Feature",
  862 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.3393402,37.6386299],[121.3395081,37.6427536],[121.3477631,37.6470261],[121.3543625,37.6485176],[121.3579025,37.6460648],[121.3629227,37.6422653],[121.3647232,37.640007],[121.3641663,37.638855],[121.3593216,37.6369324],[121.3541183,37.6370659],[121.3483429,37.6369629],[121.3437119,37.6373367],[121.3413773,37.6379814],[121.3393402,37.6386299]]]]},
  863 +"properties":{
  864 +"gid":144,
  865 +"name":"山东省"}
  866 +},
  867 +{"type":"Feature",
  868 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.5498734,37.5861969],[121.5505219,37.5832329],[121.5511475,37.5814095],[121.548317,37.578846],[121.5422363,37.5798912],[121.5372086,37.5846138],[121.5391464,37.5873909],[121.5426102,37.5876808],[121.5449295,37.5874901],[121.5498734,37.5861969]]]]},
  869 +"properties":{
  870 +"gid":145,
  871 +"name":"山东省"}
  872 +},
  873 +{"type":"Feature",
  874 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.5019913,37.5519714],[121.5019073,37.5549469],[121.5029373,37.5597725],[121.50457,37.5634651],[121.5076675,37.5664902],[121.5116806,37.5674744],[121.5168762,37.5673332],[121.5188904,37.5675964],[121.5203705,37.5664749],[121.5210114,37.5639687],[121.5202332,37.5609779],[121.5160217,37.5563316],[121.5120316,37.5544319],[121.5080185,37.5532188],[121.5040131,37.5524635],[121.5031128,37.5533638],[121.5019913,37.5519714]]]]},
  875 +"properties":{
  876 +"gid":146,
  877 +"name":"山东省"}
  878 +},
  879 +{"type":"Feature",
  880 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.1594467,37.5424652],[122.1617508,37.5429497],[122.1632004,37.5422821],[122.1655502,37.5400162],[122.1650085,37.5381813],[122.1647263,37.5374908],[122.1627197,37.5372391],[122.1606674,37.5388184],[122.1606369,37.5406494],[122.1594467,37.5424652]]]]},
  881 +"properties":{
  882 +"gid":147,
  883 +"name":"山东省"}
  884 +},
  885 +{"type":"Feature",
  886 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.1776123,37.5106201],[122.1807938,37.5097427],[122.185997,37.5088844],[122.1917572,37.5091743],[122.1946487,37.5089798],[122.1941299,37.5055389],[122.1982498,37.5007782],[122.2034531,37.5003738],[122.2080765,37.4992828],[122.2089767,37.4970055],[122.2055588,37.4951363],[122.1951904,37.4943352],[122.1830673,37.4948883],[122.1729584,37.496376],[122.1648331,37.4999466],[122.1641769,37.503376],[122.1716232,37.5066643],[122.1744766,37.5085258],[122.176178,37.5101471],[122.1802292,37.5092773],[122.1776123,37.5106201]]]]},
  887 +"properties":{
  888 +"gid":148,
  889 +"name":"山东省"}
  890 +},
  891 +{"type":"Feature",
  892 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.5756683,37.447422],[121.5744171,37.4512939],[121.5768585,37.457058],[121.5822296,37.4612656],[121.5899429,37.4639091],[121.5971069,37.4653969],[121.6036301,37.4698524],[121.6078262,37.4747276],[121.6129684,37.4766426],[121.6201096,37.4792747],[121.6246109,37.4834671],[121.6282272,37.4887886],[121.6373978,37.4909935],[121.6435013,37.4890289],[121.6447296,37.4860725],[121.6442566,37.481945],[121.6386032,37.4772758],[121.6299973,37.4753113],[121.6229935,37.4681015],[121.6185379,37.4613914],[121.6145935,37.4578934],[121.6063232,37.4547844],[121.5999985,37.4537697],[121.5919724,37.4522629],[121.5848618,37.4484863],[121.5820084,37.4472961],[121.5768585,37.4460678],[121.5768433,37.4467545],[121.5756683,37.447422]]]]},
  893 +"properties":{
  894 +"gid":149,
  895 +"name":"山东省"}
  896 +},
  897 +{"type":"Feature",
  898 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.1968231,37.483593],[122.2002792,37.4836311],[122.204361,37.4809265],[122.2058334,37.4788857],[122.2073517,37.4747772],[122.2044983,37.4731445],[122.1998978,37.4724083],[122.1975479,37.4746742],[122.194603,37.4787598],[122.1945572,37.4812813],[122.1968231,37.483593]]]]},
  899 +"properties":{
  900 +"gid":150,
  901 +"name":"山东省"}
  902 +},
  903 +{"type":"Feature",
  904 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.4717178,37.4439278],[122.4728165,37.4471436],[122.474823,37.448761],[122.4785614,37.4490242],[122.4803009,37.448349],[122.4820633,37.4458466],[122.4826736,37.4435616],[122.4815292,37.4424095],[122.4749069,37.4423523],[122.4728699,37.4437065],[122.4717178,37.4439278]]]]},
  905 +"properties":{
  906 +"gid":151,
  907 +"name":"山东省"}
  908 +},
  909 +{"type":"Feature",
  910 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.6788101,37.4263115],[122.6819611,37.4274788],[122.6851196,37.4281845],[122.6868668,37.4265938],[122.6874695,37.4243088],[122.686058,37.4217834],[122.6826019,37.4217606],[122.6785507,37.4231033],[122.6785431,37.4242477],[122.6788101,37.4263115]]]]},
  911 +"properties":{
  912 +"gid":152,
  913 +"name":"山东省"}
  914 +},
  915 +{"type":"Feature",
  916 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.5713806,37.3083229],[122.5754013,37.3090401],[122.5785675,37.3088379],[122.5788727,37.3072395],[122.5786133,37.3058624],[122.5763168,37.3046989],[122.5734329,37.3051376],[122.573143,37.3058205],[122.5713806,37.3083229]]]]},
  917 +"properties":{
  918 +"gid":153,
  919 +"name":"山东省"}
  920 +},
  921 +{"type":"Feature",
  922 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.5822983,37.26194],[122.5854568,37.2612801],[122.5866394,37.2592278],[122.5863571,37.2580795],[122.5858002,37.2571602],[122.58181,37.2543831],[122.5792084,37.2559662],[122.5794678,37.2582588],[122.5797272,37.2600899],[122.5805893,37.2607841],[122.5822983,37.26194]]]]},
  923 +"properties":{
  924 +"gid":154,
  925 +"name":"山东省"}
  926 +},
  927 +{"type":"Feature",
  928 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.6041489,36.9681969],[122.6058502,36.9700394],[122.6087036,36.97052],[122.6144333,36.9701042],[122.6173019,36.9694366],[122.618187,36.9669266],[122.6179199,36.9660072],[122.6165085,36.9643974],[122.6096268,36.9645729],[122.6061935,36.9656944],[122.6041489,36.9681969]]]]},
  929 +"properties":{
  930 +"gid":155,
  931 +"name":"山东省"}
  932 +},
  933 +{"type":"Feature",
  934 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.5183716,36.9389038],[122.5238571,36.9343719],[122.5293808,36.9277802],[122.5325928,36.9227715],[122.5326385,36.9195671],[122.5272293,36.9170036],[122.5221329,36.9137573],[122.5190735,36.907093],[122.5151367,36.9013405],[122.5114517,36.8987885],[122.501152,36.8989334],[122.4957428,36.8972855],[122.4894867,36.8937988],[122.4840469,36.8951263],[122.4825592,36.8994598],[122.4904785,36.9061661],[122.5013123,36.9085503],[122.5095367,36.9136543],[122.5148926,36.920105],[122.5170975,36.9267616],[122.5175781,36.9336319],[122.5181122,36.9363861],[122.5183716,36.9389038]]]]},
  935 +"properties":{
  936 +"gid":156,
  937 +"name":"山东省"}
  938 +},
  939 +{"type":"Feature",
  940 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.0350723,36.8940659],[122.0350571,36.8947525],[122.0404663,36.8961906],[122.0433273,36.895771],[122.0456772,36.8925934],[122.0454102,36.8919029],[122.0448608,36.8909836],[122.0431519,36.8905029],[122.0391617,36.8899956],[122.0371399,36.8908882],[122.0350723,36.8940659]]]]},
  941 +"properties":{
  942 +"gid":157,
  943 +"name":"山东省"}
  944 +},
  945 +{"type":"Feature",
  946 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.5332489,36.8934746],[122.538681,36.8935204],[122.5421371,36.8912621],[122.5402069,36.8864365],[122.5374069,36.8813782],[122.5334473,36.8776817],[122.5257416,36.8771629],[122.5231476,36.8785133],[122.5279388,36.8838196],[122.5316162,36.8875122],[122.5321732,36.8882027],[122.5315628,36.8916321],[122.5332489,36.8934746]]]]},
  947 +"properties":{
  948 +"gid":158,
  949 +"name":"山东省"}
  950 +},
  951 +{"type":"Feature",
  952 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.0352325,36.8858261],[122.0357666,36.8874359],[122.0383377,36.8879242],[122.0423431,36.8879738],[122.0443726,36.8863983],[122.0444336,36.8834229],[122.0444412,36.8827362],[122.0404434,36.8826866],[122.0384216,36.8838043],[122.0352325,36.8858261]]]]},
  953 +"properties":{
  954 +"gid":159,
  955 +"name":"山东省"}
  956 +},
  957 +{"type":"Feature",
  958 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.3897018,36.8537598],[122.3911819,36.8505707],[122.3900604,36.8487282],[122.3860703,36.8480034],[122.3828964,36.8502617],[122.3831635,36.8520966],[122.3839874,36.8539352],[122.3856888,36.8546371],[122.3871231,36.8544235],[122.3897018,36.8537598]]]]},
  959 +"properties":{
  960 +"gid":160,
  961 +"name":"山东省"}
  962 +},
  963 +{"type":"Feature",
  964 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.1760635,36.8449173],[122.1752396,36.8433037],[122.1706696,36.8427963],[122.1686172,36.8459778],[122.1703033,36.8473701],[122.1728821,36.8474007],[122.1737366,36.8471794],[122.1743164,36.8465004],[122.1760635,36.8449173]]]]},
  965 +"properties":{
  966 +"gid":161,
  967 +"name":"山东省"}
  968 +},
  969 +{"type":"Feature",
  970 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.7000427,36.815464],[121.7040482,36.8152962],[121.7049637,36.8127937],[121.7050629,36.8091316],[121.7045212,36.807518],[121.7028427,36.8061218],[121.69944,36.8051529],[121.6965637,36.8060226],[121.6962128,36.8085365],[121.6970215,36.8106117],[121.696991,36.8119812],[121.6978073,36.8131409],[121.7000427,36.815464]]]]},
  971 +"properties":{
  972 +"gid":162,
  973 +"name":"山东省"}
  974 +},
  975 +{"type":"Feature",
  976 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.227623,36.787117],[122.227562,36.7903214],[122.2323837,36.7924309],[122.2366791,36.7915611],[122.2401428,36.7897682],[122.2410431,36.787487],[122.2407608,36.7865715],[122.2396469,36.7851868],[122.2350769,36.7846794],[122.2310867,36.7848625],[122.2287827,36.7857552],[122.227623,36.787117]]]]},
  977 +"properties":{
  978 +"gid":163,
  979 +"name":"山东省"}
  980 +},
  981 +{"type":"Feature",
  982 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.2469711,36.7564201],[122.2509537,36.7573814],[122.2561111,36.7560616],[122.2592773,36.7547188],[122.2615738,36.7536011],[122.2610321,36.7519913],[122.2607727,36.7503891],[122.2585297,36.7480736],[122.2536774,36.7475662],[122.2510834,36.7498283],[122.2487335,36.7534637],[122.2470093,36.7541313],[122.2469864,36.7557373],[122.2469711,36.7564201]]]]},
  983 +"properties":{
  984 +"gid":164,
  985 +"name":"山东省"}
  986 +},
  987 +{"type":"Feature",
  988 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.554863,36.7529488],[121.5565186,36.7527313],[121.5614166,36.7509804],[121.5646591,36.7471428],[121.5666122,36.7377892],[121.5666504,36.736187],[121.5636368,36.7308731],[121.5582428,36.7300949],[121.5502014,36.732254],[121.5432892,36.7346573],[121.5380936,36.7368584],[121.5360336,36.7395706],[121.5405273,36.741703],[121.5504303,36.745533],[121.5503998,36.7466774],[121.5505829,36.7505722],[121.5511169,36.7519569],[121.554863,36.7529488]]]]},
  989 +"properties":{
  990 +"gid":165,
  991 +"name":"山东省"}
  992 +},
  993 +{"type":"Feature",
  994 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.5771866,36.7484932],[121.5783463,36.7478256],[121.5792465,36.7457809],[121.5787125,36.7444],[121.5775833,36.7441521],[121.5741501,36.7443237],[121.5718002,36.7468033],[121.5723267,36.7484169],[121.5740128,36.7500458],[121.5751572,36.7491493],[121.5771866,36.7484932]]]]},
  995 +"properties":{
  996 +"gid":166,
  997 +"name":"山东省"}
  998 +},
  999 +{"type":"Feature",
  1000 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.4888611,36.7419701],[121.4905777,36.7420044],[121.4925995,36.7411194],[121.4943466,36.7395477],[121.4943924,36.7379456],[121.4938507,36.7370224],[121.4907303,36.7362823],[121.4878311,36.7378349],[121.4875336,36.7385139],[121.4874725,36.7405777],[121.4888611,36.7419701]]]]},
  1001 +"properties":{
  1002 +"gid":167,
  1003 +"name":"山东省"}
  1004 +},
  1005 +{"type":"Feature",
  1006 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.5338135,36.7370148],[121.5344391,36.7345085],[121.5327835,36.7324181],[121.5285263,36.7312012],[121.5276031,36.7343903],[121.527832,36.7362289],[121.5289307,36.7378464],[121.5306473,36.7378769],[121.5320892,36.7372131],[121.5338135,36.7370148]]]]},
  1007 +"properties":{
  1008 +"gid":168,
  1009 +"name":"山东省"}
  1010 +},
  1011 +{"type":"Feature",
  1012 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.4798737,36.7365532],[121.4827728,36.7352295],[121.482811,36.7333984],[121.4828568,36.7317963],[121.4820175,36.7310944],[121.4795227,36.7287636],[121.4766388,36.7293968],[121.4768829,36.7314644],[121.4773865,36.733532],[121.4776535,36.7342262],[121.4784927,36.735157],[121.4798737,36.7365532]]]]},
  1013 +"properties":{
  1014 +"gid":169,
  1015 +"name":"山东省"}
  1016 +},
  1017 +{"type":"Feature",
  1018 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.6190033,36.7310905],[121.6224518,36.7302284],[121.6230927,36.7272644],[121.6222763,36.7254181],[121.6203766,36.7214966],[121.618721,36.7196388],[121.6167831,36.7170906],[121.6150894,36.7163773],[121.6102295,36.7167549],[121.6103821,36.7222519],[121.6122971,36.7254868],[121.6147919,36.7285042],[121.6190033,36.7310905]]]]},
  1019 +"properties":{
  1020 +"gid":170,
  1021 +"name":"山东省"}
  1022 +},
  1023 +{"type":"Feature",
  1024 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.8903198,36.6495285],[120.8940811,36.6477776],[120.8917923,36.6399422],[120.8893814,36.6353111],[120.8892136,36.6320992],[120.8901825,36.6286888],[120.8899765,36.6263924],[120.888092,36.6231461],[120.8825836,36.6259995],[120.8798523,36.6307449],[120.8802109,36.6367073],[120.8834534,36.641819],[120.8861694,36.645771],[120.8874817,36.6490059],[120.8903198,36.6495285]]]]},
  1025 +"properties":{
  1026 +"gid":171,
  1027 +"name":"山东省"}
  1028 +},
  1029 +{"type":"Feature",
  1030 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.9410629,36.6412659],[120.9420013,36.6387672],[120.9415131,36.636467],[120.9389801,36.6354942],[120.937149,36.6391182],[120.9365005,36.6413956],[120.9370193,36.6427803],[120.9384537,36.6428108],[120.9401703,36.6423912],[120.9410629,36.6412659]]]]},
  1031 +"properties":{
  1032 +"gid":172,
  1033 +"name":"山东省"}
  1034 +},
  1035 +{"type":"Feature",
  1036 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.8738937,36.6051979],[120.8787308,36.6055336],[120.879982,36.602356],[120.8809662,36.5984879],[120.8807373,36.596653],[120.8799362,36.5950279],[120.8788605,36.5936317],[120.8739471,36.5955811],[120.873291,36.5980873],[120.8714676,36.6012497],[120.8719635,36.6033211],[120.871933,36.6042366],[120.8738937,36.6051979]]]]},
  1037 +"properties":{
  1038 +"gid":173,
  1039 +"name":"山东省"}
  1040 +},
  1041 +{"type":"Feature",
  1042 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.9697266,36.560154],[120.972229,36.5618095],[120.9771271,36.5603142],[120.9794464,36.5589943],[120.9820786,36.5569878],[120.9850464,36.5533905],[120.985672,36.5515709],[120.9860535,36.5490608],[120.9857864,36.5481415],[120.9830322,36.54533],[120.9832306,36.5480843],[120.9820328,36.5498886],[120.9802704,36.5514526],[120.9748077,36.5529404],[120.9710312,36.5551453],[120.9712677,36.5565262],[120.9703293,36.5590248],[120.9697266,36.560154]]]]},
  1043 +"properties":{
  1044 +"gid":174,
  1045 +"name":"山东省"}
  1046 +},
  1047 +{"type":"Feature",
  1048 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.0565109,36.544838],[121.0587769,36.5451164],[121.0608521,36.5426407],[121.0609436,36.5396652],[121.0598526,36.538269],[121.0547028,36.5393066],[121.0549316,36.5406837],[121.0548935,36.542057],[121.054863,36.5432014],[121.0565109,36.544838]]]]},
  1049 +"properties":{
  1050 +"gid":175,
  1051 +"name":"山东省"}
  1052 +},
  1053 +{"type":"Feature",
  1054 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.9699173,36.5290222],[120.9686127,36.5255585],[120.9669571,36.5236893],[120.9633331,36.521553],[120.9590683,36.5214577],[120.9598236,36.5242233],[120.9611893,36.5260811],[120.9645615,36.5273018],[120.9673462,36.528965],[120.9693069,36.5299225],[120.9699173,36.5290222]]]]},
  1055 +"properties":{
  1056 +"gid":176,
  1057 +"name":"山东省"}
  1058 +},
  1059 +{"type":"Feature",
  1060 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.9810715,36.4930878],[120.985321,36.4936371],[120.988472,36.4930229],[120.9894028,36.4907532],[120.9891815,36.4889145],[120.9872437,36.4874992],[120.9860764,36.4881592],[120.9843521,36.4885826],[120.9840164,36.4899483],[120.9810715,36.4930878]]]]},
  1061 +"properties":{
  1062 +"gid":177,
  1063 +"name":"山东省"}
  1064 +},
  1065 +{"type":"Feature",
  1066 +"geometry":{"type":"MultiPolygon","coordinates":[[[[79.0326157,34.3329811],[79.0773621,34.4154663],[79.1510773,34.4441719],[79.1998215,34.418705],[79.2273941,34.415802],[79.2562027,34.4237022],[79.2666245,34.4407272],[79.3313217,34.446373],[79.3587112,34.4338036],[79.4172134,34.4493294],[79.5023956,34.4565659],[79.5123749,34.4492531],[79.5432281,34.4782333],[79.5683441,34.4589119],[79.6033783,34.464592],[79.6295547,34.4539986],[79.6636658,34.4543648],[79.6977539,34.4797134],[79.7337723,34.4732285],[79.7845612,34.4812889],[79.8162384,34.4969177],[79.8275452,34.515976],[79.8596039,34.5375633],[79.8397141,34.5513344],[79.8416824,34.5591736],[79.8694687,34.6187172],[79.8852386,34.6296158],[79.8839188,34.6447182],[79.8612366,34.6669121],[79.9191055,34.7009773],[79.8666229,34.7495651],[79.8853226,34.8515358],[79.899765,34.8617134],[79.9547729,34.8677254],[79.9920197,34.8621101],[80.0503998,35.0600128],[80.1375885,35.0975494],[80.2050323,35.1532059],[80.2265244,35.2042732],[80.268898,35.2302971],[80.2950668,35.2658539],[80.270546,35.3018303],[80.2935715,35.3607063],[80.35952,35.3793411],[80.3867722,35.3986244],[80.4105759,35.4322777],[80.4396591,35.4493294],[80.4779739,35.4632492],[80.5304031,35.4542885],[80.5506668,35.4294243],[80.5374374,35.4083519],[80.549469,35.3982391],[80.5775681,35.3961868],[80.5979767,35.4107285],[80.6364975,35.3950806],[80.6546478,35.3983498],[80.6628342,35.3721275],[80.6884537,35.3677177],[80.6843948,35.3490944],[80.697258,35.338295],[80.7578583,35.335556],[80.8422699,35.3464241],[80.8923187,35.3251343],[80.934288,35.3282356],[80.9508286,35.3135643],[81.0273056,35.3145752],[81.0481873,35.3366127],[81.0265884,35.3823891],[81.0333939,35.3930168],[81.0956116,35.4107552],[81.101326,35.3892899],[81.1162186,35.387867],[81.139595,35.3659248],[81.1891403,35.3706322],[81.2047501,35.3261337],[81.2168961,35.3200836],[81.2377548,35.3297157],[81.2529602,35.3253021],[81.2652817,35.3433113],[81.2946854,35.3447762],[81.3205185,35.3601761],[81.335434,35.356205],[81.3395309,35.3447952],[81.3581619,35.3548393],[81.3847504,35.3383827],[81.4250793,35.3598595],[81.4459,35.354332],[81.4618301,35.3377571],[81.467186,35.3148918],[81.4981232,35.3055573],[81.4966354,35.2911072],[81.5653458,35.2392502],[81.6723251,35.234623],[81.7311172,35.2602692],[81.8009491,35.2767982],[81.8607407,35.2611465],[81.89077,35.2858467],[81.9385376,35.3012466],[81.9232788,35.3171959],[81.9372177,35.3257523],[81.9929886,35.3244514],[82.0134125,35.3286781],[82.0453949,35.36343],[82.0420074,35.4493256],[82.0680923,35.4512825],[82.078392,35.4653015],[82.1293793,35.4813271],[82.1567764,35.5013657],[82.1834869,35.4945946],[82.1923447,35.5189095],[82.2316589,35.5211067],[82.2607498,35.548687],[82.2964401,35.5455818],[82.3169174,35.5541115],[82.3314819,35.5662918],[82.3277664,35.5862122],[82.3473587,35.6116829],[82.333168,35.6519661],[82.3899765,35.6566734],[82.405899,35.6999969],[82.4221954,35.7133102],[82.4658203,35.7179604],[82.5111618,35.6985435],[82.5435181,35.7093391],[82.6259918,35.6931114],[82.6496201,35.6738739],[82.7286377,35.6385651],[82.777626,35.6669235],[82.789917,35.6874161],[82.8778534,35.6892242],[82.8921585,35.6747627],[82.9647217,35.6681824],[82.9536209,35.6370583],[82.978775,35.6005745],[82.9785843,35.5570488],[82.9690018,35.549057],[82.9962387,35.4852982],[83.0646133,35.4633217],[83.0860138,35.4261322],[83.1237259,35.399189],[83.1898651,35.3925018],[83.2509384,35.4215393],[83.2942429,35.4007034],[83.344429,35.3988266],[83.3939133,35.3822746],[83.4474716,35.3828545],[83.484375,35.3995667],[83.5339355,35.3664589],[83.5390015,35.3425941],[83.5965652,35.3522491],[83.6196365,35.3364906],[83.6760559,35.3653641],[83.7812195,35.3681145],[83.8023529,35.355545],[83.8801422,35.3653374],[83.8952332,35.3986397],[83.9116592,35.408783],[83.9906921,35.4221573],[84.0264206,35.4104919],[84.0566788,35.4114952],[84.0938034,35.3645401],[84.1302414,35.3757019],[84.1786041,35.3589058],[84.2052307,35.3815498],[84.2761459,35.4058266],[84.3339844,35.4149818],[84.4498367,35.4787598],[84.4743195,35.5150452],[84.4553299,35.5230103],[84.4511261,35.5483513],[84.6986847,35.6187782],[84.7406693,35.6138077],[84.8363571,35.6401215],[84.8516541,35.6666145],[84.9181519,35.6941261],[84.9686432,35.7045059],[84.9930115,35.7303848],[85.0321732,35.7470245],[85.1507339,35.7449493],[85.2161407,35.7606239],[85.2242126,35.7682457],[85.2136383,35.7800522],[85.2581253,35.7815666],[85.3378525,35.7547379],[85.3848877,35.7274017],[85.4304581,35.7306938],[85.4773636,35.7117882],[85.524086,35.7116203],[85.5363846,35.6888161],[85.5102768,35.6831665],[85.524559,35.6592293],[85.5671616,35.6432381],[85.5960922,35.6465988],[85.6120453,35.6562958],[85.6419678,35.7161713],[85.6971664,35.7516747],[85.8073654,35.7816582],[85.8327713,35.7707672],[85.9580231,35.7892303],[85.9922714,35.8247757],[86.0598602,35.8407021],[86.0913467,35.8768997],[86.0717545,35.9335976],[86.083519,35.9715881],[86.102684,36.0005264],[86.1686935,36.0188599],[86.1985855,36.1293945],[86.2499695,36.1598015],[86.3557434,36.1690826],[86.3903275,36.2072945],[86.4242783,36.2089157],[86.4526901,36.2215385],[86.5053635,36.2031212],[86.5299759,36.2278709],[86.597229,36.2230263],[86.6723709,36.2370491],[86.7222672,36.2638321],[86.7327652,36.2847748],[86.7561264,36.2950859],[86.7873306,36.2991371],[86.8228912,36.2919388],[86.8636398,36.3079987],[86.8980484,36.2671776],[86.9247131,36.2707825],[86.9936218,36.3091354],[87.0488892,36.2970695],[87.0834198,36.3110657],[87.1465836,36.297718],[87.1584854,36.3259201],[87.1907043,36.3497505],[87.3037872,36.3642464],[87.3653412,36.4157448],[87.4527359,36.4176521],[87.4661789,36.3646202],[87.5651474,36.3452263],[87.7264099,36.3875618],[87.7961121,36.3666496],[87.8559875,36.378582],[87.8867188,36.3729744],[87.9438019,36.4041252],[87.9775543,36.4405212],[88.1289825,36.429657],[88.1769409,36.4551697],[88.2173538,36.4501801],[88.2442551,36.4729233],[88.321312,36.460907],[88.3733139,36.4857903],[88.405304,36.475666],[88.4652634,36.4847717],[88.4934158,36.448864],[88.5680847,36.4639626],[88.5837097,36.4571648],[88.6130295,36.430809],[88.6185837,36.3922348],[88.6849213,36.3708611],[88.7629318,36.3040695],[88.7901764,36.3120384],[88.8337173,36.3563881],[88.8658066,36.3511658],[88.9209366,36.3672523],[88.9591827,36.3217926],[89.0335236,36.3178329],[89.0923462,36.2907219],[89.1258316,36.2556381],[89.178421,36.2540588],[89.2314682,36.2975197],[89.2678146,36.2641373],[89.370079,36.2307167],[89.4850159,36.1537628],[89.7312469,36.0847435],[89.6119232,36.0776596],[89.5019684,36.0271225],[89.4642334,36.0290565],[89.4265289,36.0426445],[89.4085007,36.0322418],[89.4000778,36.0011024],[89.4262161,35.9882355],[89.4303513,35.9483147],[89.4206543,35.9233818],[89.5495911,35.8786774],[89.5291824,35.8689079],[89.6765137,35.8501472],[89.7855988,35.8618088],[89.7962265,35.8530464],[89.7662659,35.7975693],[89.779892,35.7662849],[89.7476578,35.7568779],[89.7430191,35.6587982],[89.7228546,35.6543159],[89.7613602,35.5923615],[89.7109833,35.5777206],[89.6996231,35.5473518],[89.7057343,35.5112419],[89.7423553,35.5070305],[89.7617416,35.4801674],[89.7344131,35.471077],[89.6880417,35.4217491],[89.6337891,35.4193192],[89.5824738,35.3845062],[89.4970551,35.3658943],[89.5111618,35.3318748],[89.4977646,35.2894058],[89.5286255,35.2833405],[89.4518814,35.2317314],[89.5187454,35.1363716],[89.5880737,35.1144028],[89.5896378,35.0335274],[89.5688171,35.0153008],[89.5761795,34.9965553],[89.5639572,34.9336739],[89.5865631,34.8982658],[89.6166611,34.8979225],[89.6206665,34.886364],[89.6344986,34.8837013],[89.6600723,34.8887367],[89.7055969,34.9179497],[89.7406235,34.9082794],[89.7941208,34.9205246],[89.81427,34.9087296],[89.8216553,34.8853912],[89.8092041,34.8742943],[89.8351669,34.868515],[89.8657379,34.8138161],[89.8274689,34.7981911],[89.8009415,34.7499313],[89.7642059,34.7500496],[89.7589645,34.7378273],[89.7301636,34.7345085],[89.72966,34.7017708],[89.7402954,34.649025],[89.7861557,34.6417847],[89.7967072,34.6281967],[89.7768478,34.5916557],[89.8124771,34.5464363],[89.8229141,34.4508476],[89.8006668,34.4026909],[89.8325424,34.3628387],[89.8607941,34.362484],[89.8698654,34.3542023],[89.8702621,34.3374672],[89.8268204,34.2988625],[89.835289,34.2564697],[89.8227539,34.2279663],[89.8250198,34.2027016],[89.8103104,34.1948738],[89.8117065,34.1684914],[89.7844849,34.1520882],[89.7609482,34.1511497],[89.7537308,34.1300468],[89.6928253,34.1273956],[89.6581192,34.0953636],[89.6525345,34.0590935],[89.643219,34.0538483],[89.6502914,34.0371628],[89.6868591,33.9921761],[89.6882324,33.9644203],[89.7092361,33.9585648],[89.7334213,33.9223824],[89.7684479,33.9026108],[89.7905884,33.8712807],[89.8021927,33.8654518],[89.8396378,33.8714752],[89.8989029,33.8136177],[89.9279709,33.8045082],[89.9071121,33.7476196],[89.9133453,33.7389603],[89.9567947,33.7385826],[89.9838333,33.7212753],[89.9991302,33.689312],[89.9871674,33.633194],[90.0364075,33.6014366],[90.1047211,33.5870972],[90.1635666,33.5595818],[90.1824493,33.5490685],[90.2004547,33.5168953],[90.229805,33.5055351],[90.2253723,33.4352036],[90.2362213,33.4104767],[90.2648087,33.3675804],[90.3474274,33.2881126],[90.3819427,33.2719231],[90.3904343,33.2583313],[90.4137497,33.2565117],[90.452446,33.2712936],[90.4603958,33.2613487],[90.4926071,33.2640533],[90.5545425,33.2312622],[90.6975861,33.1381531],[90.738472,33.1420937],[90.8471985,33.1098938],[90.8726425,33.1625137],[90.89888,33.1662483],[90.916748,33.1978569],[90.9477844,33.2204094],[90.9707642,33.2239838],[90.9815826,33.2426224],[91.0090256,33.2236443],[91.058197,33.2235489],[91.1157455,33.2465515],[91.1649475,33.2415924],[91.1843338,33.2725334],[91.1850281,33.3054161],[91.2214432,33.3267517],[91.2597198,33.3178329],[91.385849,33.3206558],[91.4061203,33.3107071],[91.4131317,33.2894058],[91.400589,33.2796936],[91.3708801,33.27845],[91.3768082,33.2387314],[91.4598846,33.1588135],[91.4746246,33.1166992],[91.5455399,33.0929604],[91.5611343,33.0540886],[91.791626,32.9454079],[91.8238525,32.9533119],[91.8426895,32.9471436],[91.8574371,32.9059143],[91.8946533,32.906868],[91.9013901,32.8775024],[91.9252472,32.8685303],[91.9393539,32.8382874],[91.9609146,32.8211823],[92.0260086,32.833931],[92.0276489,32.8599434],[92.1004333,32.8612175],[92.141571,32.8863525],[92.154686,32.8741913],[92.1949921,32.867363],[92.2284927,32.8386955],[92.2270203,32.8246384],[92.2040787,32.816021],[92.1973343,32.804306],[92.2068405,32.7878799],[92.2021179,32.7518959],[92.2133484,32.7389755],[92.2597504,32.7226944],[92.3052826,32.7518272],[92.3495712,32.7453156],[92.3583527,32.7660484],[92.4065704,32.7511559],[92.4549789,32.766552],[92.477211,32.7498436],[92.5423889,32.7372932],[92.5601654,32.7344284],[92.6013641,32.747467],[92.6092453,32.735321],[92.6501846,32.7240028],[92.6916656,32.7677803],[92.755188,32.742897],[92.7757874,32.7247086],[92.8277435,32.7278976],[92.8709869,32.6998177],[92.8861008,32.7145004],[92.9670334,32.7189484],[93.012619,32.7457466],[93.0627899,32.630806],[93.1468124,32.6446342],[93.1725388,32.6662292],[93.2464066,32.6629524],[93.270401,32.6158562],[93.3084793,32.6046982],[93.3123779,32.5797882],[93.356514,32.5577583],[93.3800278,32.5289917],[93.3997269,32.5457916],[93.4500732,32.5612984],[93.464447,32.5529404],[93.4762955,32.508255],[93.4980698,32.5046654],[93.5227814,32.4786568],[93.6111221,32.5223312],[93.6540451,32.5749779],[93.72155,32.5809021],[93.8125381,32.5549583],[93.8303452,32.5218506],[93.8498611,32.5119514],[93.8591156,32.4747505],[93.8866577,32.4764977],[93.9191818,32.4650307],[93.9246521,32.4812088],[93.9620132,32.4891129],[93.9729538,32.4666252],[93.9908218,32.4658508],[94.0105362,32.4481277],[94.055542,32.4724503],[94.1357803,32.435955],[94.156311,32.4563141],[94.1799622,32.461586],[94.1777649,32.4929771],[94.1998444,32.5172615],[94.2872467,32.5062714],[94.3258896,32.529686],[94.362854,32.5229988],[94.3796234,32.5453186],[94.3766861,32.5656891],[94.390976,32.6012726],[94.403801,32.5973625],[94.4184647,32.5732956],[94.4499817,32.5685539],[94.4680099,32.6076317],[94.5307617,32.5994873],[94.5703964,32.6313286],[94.5944443,32.6342316],[94.6046753,32.6740837],[94.6223755,32.6702271],[94.6890793,32.6044769],[94.7158737,32.6055603],[94.7497635,32.5636101],[94.7827911,32.5498581],[94.797081,32.4982109],[94.8508835,32.4709625],[94.8959351,32.4623909],[94.9324188,32.3887711],[94.9268951,32.3806686],[94.8945389,32.3777199],[94.9003448,32.3557739],[95.0171585,32.3152809],[95.0409546,32.2969894],[95.0421829,32.2722282],[95.0808487,32.2504349],[95.3073273,32.2553978],[95.3115234,32.2253914],[95.3534088,32.1776237],[95.3947754,32.187645],[95.4138107,32.1747398],[95.4364395,32.1531525],[95.4517136,32.0716324],[95.416687,32.0531998],[95.4133759,32.0382614],[95.4419632,32.010994],[95.3922653,32.0016403],[95.3743515,31.9856777],[95.3719788,31.964407],[95.4098663,31.9126587],[95.4606552,31.8049831],[95.5009079,31.7772217],[95.5210037,31.751421],[95.5423737,31.7450752],[95.5696487,31.7487011],[95.5852737,31.7708702],[95.6284332,31.784729],[95.7621155,31.7601318],[95.7865143,31.746809],[95.8180542,31.6803913],[95.8335342,31.6860352],[95.8695297,31.7226543],[95.9599609,31.7049351],[96.0136871,31.7187996],[96.0364685,31.7132092],[96.0593491,31.7261505],[96.1016846,31.7140522],[96.1500778,31.6829205],[96.1620712,31.6024399],[96.1644058,31.6012726],[96.1667404,31.6001053],[96.1697388,31.5986042],[96.1730728,31.5967712],[96.1760712,31.5942688],[96.1779099,31.5912685],[96.1789093,31.5881004],[96.1799088,31.5857658],[96.1797409,31.5809307],[96.1799088,31.5745945],[96.1799088,31.570591],[96.1804123,31.5675907],[96.1809082,31.5642548],[96.1819077,31.5605869],[96.1834106,31.5565853],[96.1852493,31.553751],[96.1869125,31.5510826],[96.1890793,31.548748],[96.190918,31.5467472],[96.192749,31.5457478],[96.1945801,31.5445805],[96.1964188,31.5432453],[96.1985855,31.5424118],[96.201088,31.5432453],[96.2034225,31.5440788],[96.205925,31.5449142],[96.2102585,31.5464134],[96.2139282,31.5480824],[96.2184296,31.548748],[96.2230988,31.5489159],[96.2274323,31.548748],[96.2309341,31.548748],[96.2339325,31.5489159],[96.2371063,31.550415],[96.2401047,31.5514164],[96.2432709,31.5529175],[96.2467728,31.555584],[96.2564774,31.5923939],[96.2525406,31.6043167],[96.2166519,31.6097889],[96.2164612,31.6205463],[96.2244415,31.6507053],[96.2473679,31.6693344],[96.2486496,31.6993027],[96.2223434,31.7381287],[96.2216568,31.7557487],[96.1598511,31.7899513],[96.1342545,31.8218899],[96.1500473,31.8575001],[96.2037964,31.8569813],[96.2078781,31.8649673],[96.1882095,31.899622],[96.2207947,31.9076767],[96.2489624,31.9363384],[96.2761307,31.9361763],[96.318222,31.9530678],[96.3367386,31.9474583],[96.3709793,31.859602],[96.4250107,31.8297062],[96.436554,31.7987328],[96.4685364,31.7721806],[96.5132141,31.754446],[96.5577011,31.7206783],[96.5692215,31.7180672],[96.6064758,31.7388039],[96.64991,31.709589],[96.6598511,31.7106438],[96.6721954,31.734787],[96.6971893,31.7141933],[96.7346268,31.6802025],[96.7810822,31.6840954],[96.7962418,31.6729622],[96.8053741,31.6740131],[96.8372116,31.7292938],[96.8053818,31.7595959],[96.7911224,31.8000088],[96.7606277,31.8321171],[96.7621307,31.8671074],[96.7874908,31.8744087],[96.8074036,31.8973179],[96.773819,31.9424953],[96.7480621,31.9482384],[96.734787,31.9856567],[96.7417068,32.0008965],[96.7227859,32.0193787],[96.7245255,32.0287857],[96.7602539,32.0188751],[96.8106461,32.019413],[96.8442535,32.0006714],[96.8502121,31.9833622],[96.8971481,32.0202827],[96.9404526,31.9897156],[96.9585953,31.9970627],[96.9653625,32.0184097],[96.9370804,32.0371513],[96.9402847,32.0600739],[96.9725037,32.0706787],[97.0151443,32.0683098],[97.0282516,32.0549126],[97.0884857,32.0451164],[97.1380386,32.050087],[97.1659851,32.0331268],[97.1907806,32.0594139],[97.2132874,32.0467529],[97.2333679,32.0608597],[97.203331,32.0979691],[97.2174911,32.1115761],[97.2495956,32.0838661],[97.3062286,32.0840073],[97.2936096,32.1075096],[97.3030624,32.1355019],[97.2789001,32.1511459],[97.2621078,32.1858368],[97.2870865,32.286747],[97.2956238,32.2989349],[97.3244858,32.3066711],[97.352272,32.2825699],[97.3693314,32.2794647],[97.4086533,32.2973137],[97.4163895,32.3106384],[97.4081345,32.3291397],[97.3580017,32.3405304],[97.3722382,32.3518372],[97.4096527,32.3419685],[97.4110489,32.370369],[97.3829727,32.428833],[97.3482513,32.4359589],[97.3381348,32.4466591],[97.350914,32.4728394],[97.3829346,32.4991302],[97.3828583,32.5087471],[97.3665085,32.5187302],[97.3802185,32.5327759],[97.4353943,32.5138397],[97.5091629,32.507103],[97.5341873,32.4930191],[97.6122131,32.4956284],[97.661087,32.4767952],[97.6754227,32.4814262],[97.6628952,32.4944344],[97.6674423,32.5054398],[97.730751,32.5308189],[97.7573013,32.5363884],[97.7653046,32.5197525],[97.7774582,32.5253639],[97.7868118,32.5238037],[97.7949142,32.5206871],[97.7955399,32.5150757],[97.8080063,32.5044785],[97.8136215,32.5057259],[97.8220367,32.5079079],[97.8311234,32.507473],[97.846344,32.5016747],[97.861618,32.4954376],[97.8725281,32.4932556],[97.8800125,32.4907646],[97.8921661,32.4907646],[97.9021454,32.4904518],[97.9111862,32.4876442],[97.9171066,32.485775],[97.920845,32.485775],[97.9264603,32.4860878],[97.9323807,32.4860878],[97.9367447,32.4845276],[97.9407959,32.4776726],[97.9479675,32.4736176],[97.9594955,32.4754906],[97.9693909,32.4746895],[97.9888,32.4655151],[98.0037613,32.4583435],[98.0112457,32.4533577],[98.0221558,32.4536705],[98.0374298,32.432785],[98.0505142,32.430603],[98.0567551,32.4259262],[98.0633011,32.4206276],[98.0729599,32.4203148],[98.0785751,32.4028587],[98.0959091,32.4046593],[98.109169,32.3948097],[98.1237869,32.4044189],[98.1309357,32.3931961],[98.1399765,32.3791695],[98.156189,32.3785477],[98.1708374,32.3769875],[98.1770706,32.371067],[98.1848679,32.3642082],[98.1951523,32.3626518],[98.2023239,32.355793],[98.2116699,32.3456612],[98.2069931,32.3207245],[98.2157211,32.3023338],[98.224144,32.2836304],[98.2307739,32.2687721],[98.2203979,32.2602539],[98.2207108,32.2415504],[98.2257004,32.2328224],[98.2409744,32.2297058],[98.2493896,32.2215996],[98.2590561,32.2125626],[98.2687149,32.1935463],[98.2774429,32.1773376],[98.2852325,32.1636238],[98.2892914,32.1583252],[98.294899,32.1505318],[98.2973938,32.1393089],[98.2996368,32.1287651],[98.3120422,32.1271515],[98.3117294,32.1156197],[98.3248215,32.1137505],[98.3319931,32.103775],[98.3410339,32.1006584],[98.3435287,32.0903702],[98.3572388,32.0894356],[98.4030609,32.0476646],[98.4033737,32.0317688],[98.413353,32.0252228],[98.4239502,32.0189896],[98.431427,32.0136909],[98.4311142,32.0074539],[98.4311142,32.0021553],[98.4273758,31.9968567],[98.4283142,31.9878178],[98.4289322,31.980648],[98.4298706,31.9775314],[98.431427,31.9712963],[98.431427,31.9672451],[98.4295578,31.9625702],[98.4261322,31.9572697],[98.4242554,31.9529057],[98.4217682,31.9488544],[98.4230118,31.9451141],[98.4255066,31.9419956],[98.4267502,31.938879],[98.4283142,31.9360733],[98.4280014,31.9335804],[98.4273758,31.9307747],[98.4233246,31.925787],[98.417717,31.9211121],[98.4108582,31.9158134],[98.4049301,31.9120731],[98.3980789,31.9077091],[98.3968353,31.9043655],[98.3983841,31.9011631],[98.3993225,31.89711],[98.4018173,31.8930588],[98.4027481,31.8893166],[98.4058685,31.8827705],[98.4086761,31.8799667],[98.4127274,31.8759136],[98.417717,31.8693676],[98.4198914,31.8643799],[98.4186478,31.8587704],[98.415535,31.8497295],[98.4127274,31.8413143],[98.4130402,31.8378849],[98.4149094,31.8335209],[98.4189606,31.8322735],[98.4239502,31.8319626],[98.431427,31.8328972],[98.4385986,31.8328972],[98.440155,31.8291569],[98.4406204,31.8247147],[98.4410934,31.8208199],[98.4418716,31.8181686],[98.4431152,31.816143],[98.4449844,31.8144283],[98.4463882,31.8120918],[98.4474792,31.8099098],[98.4501343,31.8088188],[98.4529343,31.8075714],[98.4562073,31.8058567],[98.4590149,31.8049221],[98.4626007,31.8011818],[98.4622803,31.7985497],[98.4607315,31.7952595],[98.4588623,31.7930775],[98.4574585,31.7915173],[98.4566803,31.7894917],[98.4588623,31.7865314],[98.4630661,31.785284],[98.4671173,31.7859077],[98.4711685,31.7860622],[98.4774094,31.7854404],[98.4805679,31.7809734],[98.4827042,31.7763996],[98.4853516,31.771101],[98.4875336,31.7686081],[98.4914017,31.7677975],[98.4955215,31.7660809],[98.4996414,31.7640228],[98.503418,31.7602463],[98.5054626,31.7573853],[98.5082245,31.752697],[98.5109711,31.7472057],[98.5126877,31.7420559],[98.5137177,31.7382812],[98.5157471,31.7341633],[98.5167999,31.7303867],[98.5180817,31.7265263],[98.5193787,31.7230988],[98.5226364,31.7197475],[98.526413,31.7190609],[98.5295029,31.7197475],[98.5339661,31.7207775],[98.5380783,31.7221508],[98.5408401,31.7226295],[98.5432281,31.7218075],[98.5449448,31.7197475],[98.5459747,31.7170029],[98.5459747,31.7132263],[98.5463181,31.7091084],[98.5470047,31.7063637],[98.548378,31.7032738],[98.5504379,31.7008724],[98.5528412,31.6998425],[98.5542145,31.6957226],[98.5545578,31.6926346],[98.5521545,31.6912613],[98.5476913,31.689888],[98.5466614,31.6874866],[98.548378,31.6864567],[98.5521545,31.6847401],[98.5545578,31.6819954],[98.5566177,31.6771908],[98.5545578,31.6730709],[98.5545578,31.6682663],[98.5559311,31.6631184],[98.5590439,31.6592369],[98.5597076,31.6545391],[98.5624466,31.6504192],[98.5658798,31.6483612],[98.570343,31.6452713],[98.5758362,31.6432114],[98.5813293,31.6401234],[98.5861282,31.6370354],[98.5885315,31.6325722],[98.5905914,31.6284542],[98.5929947,31.6233063],[98.594368,31.6191883],[98.5984879,31.6171284],[98.6036377,31.6143818],[98.6080933,31.6106071],[98.6142731,31.6061459],[98.6166763,31.6003113],[98.6190796,31.5975647],[98.6211395,31.5931034],[98.6266098,31.5892067],[98.6328049,31.5872688],[98.6413879,31.5848675],[98.6475677,31.5824642],[98.651001,31.576973],[98.6551132,31.5735397],[98.661293,31.5690784],[98.6685028,31.5635872],[98.6757126,31.5598125],[98.6798248,31.556036],[98.6854477,31.5509415],[98.6887512,31.5474567],[98.6914978,31.5436821],[98.6956177,31.5381908],[98.7000732,31.5320129],[98.7021332,31.526865],[98.7045364,31.5220585],[98.7089996,31.5158806],[98.7148361,31.5124493],[98.719986,31.5083313],[98.7289505,31.5036392],[98.7402344,31.4976921],[98.7477798,31.4932289],[98.7536163,31.4891109],[98.7594528,31.4867077],[98.7656326,31.4843063],[98.7745514,31.4815598],[98.7814178,31.4801884],[98.7896729,31.4764957],[98.7958298,31.4678326],[98.7996063,31.461998],[98.8033829,31.4554768],[98.8075027,31.4513588],[98.8116226,31.4468956],[98.8157349,31.4451809],[98.8205414,31.4427776],[98.8260345,31.441061],[98.8311844,31.441061],[98.8342743,31.4386597],[98.8377075,31.4369431],[98.8404465,31.4345398],[98.8421631,31.4311085],[98.8428497,31.4263039],[98.8445663,31.4208126],[98.8466263,31.414978],[98.8497162,31.4101734],[98.854866,31.4081135],[98.8610382,31.4071198],[98.8714294,31.3980274],[98.8737869,31.3940125],[98.876152,31.3895245],[98.8801651,31.3836193],[98.8834763,31.3805504],[98.8839493,31.3762989],[98.8811111,31.3692131],[98.876152,31.3644886],[98.8707199,31.3590565],[98.8638687,31.3550415],[98.85466,31.3470116],[98.8397827,31.3392181],[98.8336411,31.3366203],[98.8277359,31.333313],[98.8231201,31.3298512],[98.8167267,31.3243313],[98.8122635,31.3174934],[98.8091736,31.3112564],[98.8068466,31.3051567],[98.8065567,31.2999268],[98.8059769,31.294405],[98.805687,31.2885952],[98.8045273,31.2830753],[98.8019104,31.2795887],[98.7987137,31.2769737],[98.7946472,31.2731953],[98.7900009,31.2694187],[98.785347,31.2653522],[98.7838974,31.2618656],[98.7830276,31.2580872],[98.7804108,31.2548923],[98.7769241,31.2546005],[98.7725677,31.255764],[98.7676239,31.2580872],[98.7647247,31.2612839],[98.7603607,31.2636089],[98.7557144,31.2644806],[98.7504883,31.2656422],[98.7443848,31.2694187],[98.7379913,31.2758102],[98.7327652,31.283947],[98.7275314,31.2920818],[98.721138,31.3007984],[98.715332,31.3109665],[98.7095184,31.3188114],[98.7048721,31.3246212],[98.7013855,31.3278179],[98.6964417,31.3321762],[98.6906357,31.3365345],[98.6862717,31.3388596],[98.6804657,31.3403111],[98.674942,31.3426361],[98.6700058,31.3440876],[98.6625824,31.3445301],[98.6543121,31.3443794],[98.6435623,31.3432159],[98.6342697,31.3400211],[98.628746,31.3327579],[98.6246796,31.3292713],[98.6217728,31.3208447],[98.618576,31.3127098],[98.6162567,31.304575],[98.61306,31.2973118],[98.6118927,31.2903385],[98.6046295,31.2731953],[98.60289,31.2630272],[98.6017303,31.2569256],[98.6018753,31.2457542],[98.6025543,31.2359791],[98.6049118,31.2322712],[98.6099701,31.228899],[98.6153641,31.2282257],[98.6207581,31.2231693],[98.6226425,31.215023],[98.6184006,31.2052345],[98.6108017,31.199482],[98.6042404,31.1965389],[98.6025543,31.1924953],[98.60289,31.1891232],[98.6079483,31.1837311],[98.6140137,31.1813717],[98.6258087,31.1827202],[98.6353226,31.182621],[98.6399689,31.1796856],[98.6419907,31.1759777],[98.6478043,31.1683998],[98.6552048,31.1646996],[98.6633453,31.1609993],[98.6729584,31.1569862],[98.6788864,31.1447182],[98.6825867,31.1373177],[98.6855469,31.1350975],[98.6944275,31.1321373],[98.7044907,31.1243935],[98.7084885,31.1180763],[98.710083,31.1102467],[98.7084885,31.099575],[98.7104187,31.0913696],[98.715889,31.0810738],[98.7203293,31.0744133],[98.7262497,31.071455],[98.7336807,31.0677757],[98.732666,31.0573254],[98.7374573,31.0459557],[98.7484512,31.0396328],[98.7647324,31.0344524],[98.7721329,31.0329723],[98.7799072,31.0268669],[98.7843475,31.0220566],[98.7873077,31.0179863],[98.7906342,31.0168762],[98.7954483,31.014286],[98.7991486,31.0102158],[98.8028488,31.0057755],[98.8043289,31.0009651],[98.803833,30.9968948],[98.8043289,30.9906044],[98.8028488,30.985424],[98.7998886,30.9780235],[98.7987747,30.9728432],[98.7995148,30.9680328],[98.8006287,30.9628525],[98.7991486,30.956562],[98.7961807,30.9503708],[98.7939682,30.9447212],[98.791008,30.9406509],[98.7858276,30.9351006],[98.7813873,30.9291801],[98.7774506,30.92313],[98.774353,30.9169693],[98.773613,30.9117889],[98.774353,30.9077187],[98.7765732,30.9036484],[98.7780533,30.8995781],[98.7808304,30.8962536],[98.7832336,30.8921776],[98.7854538,30.8888474],[98.7880478,30.8862572],[98.791748,30.8855171],[98.7980347,30.8829269],[98.8054352,30.8784866],[98.8128357,30.8744164],[98.8202362,30.869976],[98.8276367,30.8651657],[98.8328171,30.8625755],[98.8391113,30.8599854],[98.8439178,30.8570251],[98.8490982,30.8536949],[98.8525162,30.8502369],[98.8550186,30.8455544],[98.8568726,30.840374],[98.8605728,30.8340836],[98.863533,30.8326035],[98.8698196,30.8296432],[98.8742599,30.8277931],[98.8764801,30.8248329],[98.8787003,30.8196526],[98.8801804,30.8141022],[98.8842545,30.8089218],[98.8879547,30.8011513],[98.8912811,30.797821],[98.8976288,30.7911282],[98.9083023,30.7867203],[98.917923,30.78302],[98.9271774,30.7819099],[98.936058,30.7811699],[98.9453049,30.7796898],[98.9527054,30.7763596],[98.9556656,30.7737694],[98.9589996,30.768589],[98.9619598,30.7626686],[98.961586,30.7578583],[98.9612198,30.7530479],[98.9612198,30.7467575],[98.9612198,30.7423172],[98.9626999,30.7386169],[98.962326,30.7349167],[98.9604797,30.7312164],[98.9567795,30.7278862],[98.9519653,30.725296],[98.946785,30.7241859],[98.9416046,30.7230759],[98.9379044,30.7193756],[98.935318,30.7153053],[98.9342041,30.7119751],[98.9312439,30.7093849],[98.9279175,30.7079048],[98.9234772,30.7060547],[98.9182968,30.7049446],[98.9138565,30.7042046],[98.9090424,30.7019844],[98.9053421,30.6990242],[98.9046021,30.696434],[98.9039078,30.6936283],[98.903862,30.6894035],[98.9053421,30.6842232],[98.9075623,30.6801529],[98.9101562,30.6760826],[98.9116364,30.6701622],[98.9131165,30.6642418],[98.9153366,30.6586914],[98.917923,30.653141],[98.9199371,30.6492329],[98.9216232,30.6446304],[98.9223633,30.6394501],[98.9223633,30.6353798],[98.9216232,30.6301994],[98.921257,30.624279],[98.920517,30.6202087],[98.9208832,30.6146584],[98.9231033,30.610218],[98.9253235,30.6072578],[98.9282837,30.6046677],[98.9316177,30.6024475],[98.936058,30.6009674],[98.9386444,30.5968971],[98.9386444,30.5928268],[98.9375381,30.5898666],[98.9338379,30.5850563],[98.9297638,30.580246],[98.9258728,30.5737228],[98.9245834,30.5713654],[98.9249573,30.566185],[98.9275436,30.5628548],[98.9297638,30.5591545],[98.9331436,30.5533733],[98.9330978,30.5462036],[98.9319839,30.5388031],[98.9305038,30.5302925],[98.9297638,30.5215969],[98.9319839,30.5167866],[98.935318,30.5119762],[98.9386444,30.5049458],[98.9404984,30.5001354],[98.9416046,30.4960651],[98.9427185,30.4912548],[98.9438248,30.4857044],[98.9445648,30.4820042],[98.946785,30.4775639],[98.9482651,30.4727535],[98.9519653,30.4697933],[98.9552994,30.4664631],[98.959465,30.4619751],[98.9626999,30.4535122],[98.96418,30.4475918],[98.9634399,30.4424114],[98.9619598,30.436861],[98.9604797,30.4294605],[98.9589996,30.4235401],[98.9608459,30.4179897],[98.9634399,30.4124393],[98.9667664,30.4087391],[98.9701004,30.4057789],[98.9726868,30.4020786],[98.9738007,30.3965282],[98.9749069,30.3906078],[98.9715805,30.3850574],[98.9660263,30.3743267],[98.9678802,30.3680363],[98.9689865,30.363596],[98.9689865,30.3558254],[98.9682465,30.3487949],[98.9693604,30.3439846],[98.9701004,30.3384342],[98.9745407,30.3314037],[98.9778671,30.3251133],[98.9786072,30.3173428],[98.9786072,30.3114223],[98.979744,30.3040676],[98.9797211,30.2999516],[98.9808273,30.2936611],[98.9833145,30.2849579],[98.9797211,30.27738],[98.9760208,30.2729397],[98.9723206,30.2670193],[98.9701004,30.2614689],[98.9693604,30.2555485],[98.9697266,30.2503681],[98.9715805,30.2444477],[98.9734268,30.2385273],[98.9760208,30.2326069],[98.9797211,30.2274265],[98.9841614,30.2226162],[98.9886017,30.2178059],[98.9915619,30.2129955],[98.9908218,30.2074451],[98.9893417,30.2033749],[98.9863815,30.1981945],[98.9826813,30.1952343],[98.9812012,30.1885738],[98.9823074,30.1837635],[98.9845276,30.1782131],[98.9867477,30.1726627],[98.9871216,30.1689625],[98.9852676,30.1652622],[98.9852676,30.1611919],[98.9863815,30.1556416],[98.9889679,30.1523113],[98.993042,30.1512012],[99.0004425,30.1512012],[99.0063629,30.1504612],[99.0119095,30.1497211],[99.0139618,30.1462307],[99.0141296,30.1397305],[99.0133896,30.1345501],[99.0133896,30.1267796],[99.0148697,30.1230793],[99.0163803,30.1168442],[99.0207901,30.1108685],[99.0252304,30.1067982],[99.0289307,30.104948],[99.0344849,30.0975475],[99.0378113,30.0923672],[99.040451,30.0875568],[99.0426254,30.0823765],[99.0426254,30.0779362],[99.0415115,30.0734959],[99.0404053,30.0690556],[99.0396652,30.061655],[99.0385513,30.0524044],[99.0389252,30.0431538],[99.0396652,30.0379734],[99.0381851,30.0339031],[99.0372772,30.0269337],[99.0381851,30.0213223],[99.0396652,30.017992],[99.0407715,30.0157719],[99.0433655,30.0098515],[99.0459518,30.002821],[99.0478058,29.9972706],[99.0500259,29.9917202],[99.0503922,29.9854298],[99.050766,29.9791393],[99.051506,29.9724789],[99.050766,29.9654484],[99.0500259,29.9580479],[99.0511322,29.9543476],[99.0514984,29.950489],[99.0529861,29.9465771],[99.0548325,29.9439869],[99.0585327,29.9406567],[99.062233,29.9388065],[99.0666733,29.9369564],[99.0700073,29.9347363],[99.0706024,29.931179],[99.0688934,29.9288158],[99.0659332,29.9265957],[99.0596466,29.9243755],[99.0566864,29.9199352],[99.0555954,29.9169292],[99.0537643,29.9134731],[99.0526962,29.9049549],[99.0491486,29.8967915],[99.0463104,29.8893394],[99.0434723,29.884016],[99.0402756,29.8786907],[99.0367279,29.8733673],[99.0328217,29.8666248],[99.0296249,29.8584614],[99.0253677,29.8510094],[99.0235977,29.8435555],[99.0211105,29.8346825],[99.0161438,29.8261642],[99.0140152,29.8180008],[99.0147247,29.8137417],[99.0157852,29.808773],[99.0175629,29.8038044],[99.0196915,29.798481],[99.0196915,29.7928028],[99.0172043,29.7871246],[99.0140152,29.780735],[99.011528,29.7707977],[99.0108185,29.76157],[99.0083313,29.7519875],[99.002655,29.7406311],[98.9998169,29.7324677],[98.9973297,29.717207],[98.9969788,29.7054939],[98.9959106,29.6870384],[98.9944916,29.6795864],[98.994133,29.6731968],[98.995079,29.6663132],[98.9971085,29.6609936],[99.0003052,29.6531792],[99.0038605,29.6442966],[99.0059891,29.6386127],[99.0088348,29.6315079],[99.011322,29.6247578],[99.0123825,29.6197853],[99.0159378,29.6126804],[99.0187836,29.6062851],[99.0226898,29.6023788],[99.026947,29.5981159],[99.03228,29.5917206],[99.0354767,29.5856819],[99.0397415,29.5792866],[99.0443573,29.5736027],[99.0496826,29.5668545],[99.0518188,29.5569077],[99.0518188,29.5458946],[99.0493317,29.5373688],[99.047554,29.5316849],[99.047554,29.5256462],[99.0493317,29.5199623],[99.0493317,29.5117912],[99.0493317,29.5029106],[99.0486221,29.4958057],[99.0514603,29.4894104],[99.0532379,29.4862137],[99.0567932,29.483017],[99.0599899,29.478754],[99.0603714,29.473959],[99.0596313,29.4684505],[99.0582123,29.4627666],[99.0599899,29.456728],[99.0606995,29.4517536],[99.0628281,29.4421635],[99.0653152,29.430439],[99.0649643,29.4226246],[99.0635376,29.4169407],[99.0635376,29.413744],[99.0617676,29.4098358],[99.0621185,29.4030857],[99.0624771,29.3963356],[99.0641251,29.3900928],[99.0638962,29.3878098],[99.0655212,29.3803101],[99.0655212,29.3719254],[99.0627289,29.3649368],[99.062767,29.3545341],[99.0662231,29.3411789],[99.0683212,29.3334923],[99.0711136,29.3258057],[99.0711136,29.3188171],[99.0725098,29.3118305],[99.0718155,29.3076382],[99.0731964,29.3004074],[99.078804,29.2950592],[99.0850906,29.2908669],[99.0927734,29.2859764],[99.0948715,29.2789879],[99.0969696,29.2699051],[99.1011581,29.2615185],[99.1118011,29.2509918],[99.0929642,29.2292976],[99.0378418,29.2102051],[99.021553,29.1932392],[98.9829941,29.2062016],[98.9629822,29.1872673],[98.9621048,29.1458263],[99.0051727,29.0894508],[99.0191727,29.0556221],[99.0116577,29.034523],[98.920929,28.9783249],[98.9158936,28.9053822],[98.9387589,28.8791161],[98.9727402,28.8731613],[98.9734573,28.8479424],[98.961113,28.8299522],[98.9272156,28.8301754],[98.9044495,28.8042088],[98.8840256,28.809557],[98.8553925,28.8029804],[98.8407822,28.8106918],[98.8132095,28.9504528],[98.7975388,28.9829254],[98.7654266,29.008028],[98.7419662,29.0012913],[98.7021713,28.9649525],[98.6533737,28.9746361],[98.6612396,28.9332104],[98.660141,28.9281578],[98.6567383,28.9253178],[98.6539001,28.9230461],[98.6521912,28.9207745],[98.6504898,28.9182186],[98.6507721,28.9156628],[98.6521912,28.913105],[98.6536102,28.9105492],[98.6536102,28.9077091],[98.6521912,28.9040184],[98.6502075,28.8997574],[98.6484985,28.8952141],[98.6473618,28.8915215],[98.6476517,28.8889656],[98.6467972,28.8858433],[98.6473618,28.8818665],[98.6482162,28.878458],[98.6496353,28.8747673],[98.6504898,28.8719273],[98.6529083,28.8676109],[98.65522,28.8639832],[98.657196,28.8601913],[98.6595764,28.8571587],[98.6626968,28.8540344],[98.6663895,28.8497753],[98.6692352,28.8460827],[98.6689072,28.8430004],[98.6646881,28.8389835],[98.6616516,28.8366108],[98.6578751,28.8333035],[98.6558838,28.8307476],[98.6492844,28.8263035],[98.6452713,28.8206787],[98.6473083,28.8137722],[98.653244,28.8058567],[98.6595154,28.8006306],[98.6624756,28.7906857],[98.6743164,28.7223854],[98.6282654,28.6900768],[98.5969315,28.6874046],[98.5928574,28.6730728],[98.6166077,28.6317272],[98.6297531,28.5590267],[98.6216278,28.5051746],[98.6280365,28.4937935],[98.6754532,28.480484],[98.7040176,28.4293842],[98.7530975,28.3383617],[98.7134171,28.3057003],[98.7121353,28.2395439],[98.6941299,28.2189293],[98.6534576,28.2027645],[98.6242676,28.1629486],[98.6118088,28.1621113],[98.5800705,28.1837215],[98.5494308,28.1817112],[98.4981384,28.1460609],[98.4670486,28.145874],[98.4260254,28.1056042],[98.4040451,28.1065674],[98.3933105,28.1207809],[98.3898849,28.1746712],[98.3732605,28.1917648],[98.3737259,28.255188],[98.3589554,28.2933064],[98.3241577,28.3204193],[98.3236618,28.349741],[98.3049393,28.3675594],[98.2997284,28.3956165],[98.2914505,28.3969421],[98.2401886,28.3730946],[98.2267227,28.3546028],[98.2033844,28.3553295],[98.2065048,28.3355713],[98.2354279,28.3106766],[98.2661285,28.2456665],[98.2211075,28.2196159],[98.1709213,28.2131233],[98.164711,28.2034073],[98.1752853,28.1713562],[98.1337814,28.1457596],[98.1340637,28.1495476],[98.1312714,28.1518955],[98.1266098,28.1593723],[98.1183243,28.1642895],[98.1108932,28.165369],[98.1075668,28.1670399],[98.1011276,28.1685448],[98.0952988,28.1737022],[98.0929489,28.1835976],[98.0907593,28.1891365],[98.0870209,28.1951675],[98.0830002,28.2002869],[98.0743408,28.2064152],[98.0621567,28.2059765],[98.0569382,28.2047062],[98.0511627,28.2016182],[98.045311,28.1955528],[98.0397339,28.1899395],[98.0296478,28.1905994],[98.0215378,28.1980877],[98.0141983,28.2053318],[98.010994,28.212265],[98.0085526,28.2184963],[98.0074234,28.2253876],[98.009407,28.2324467],[98.0130386,28.2374935],[98.0172958,28.2423706],[98.0224991,28.2452583],[98.02034,28.2558155],[98.0166321,28.263216],[98.0112991,28.2679005],[98.0077896,28.2727795],[98.0021057,28.2738075],[97.9945374,28.2716675],[97.99086,28.269907],[97.983345,28.2698269],[97.9779663,28.2729073],[97.9704895,28.2744274],[97.9632034,28.2734241],[97.9556885,28.273798],[97.9500122,28.2748241],[97.9431229,28.2797661],[97.9414444,28.2855225],[97.9431458,28.2919006],[97.9448318,28.2973652],[97.9426422,28.3035908],[97.9385376,28.3052711],[97.9328842,28.3076706],[97.9310913,28.3086205],[97.927063,28.313736],[97.9245377,28.3167591],[97.9199448,28.3200531],[97.9180679,28.3244438],[97.9159698,28.3285828],[97.9160233,28.333252],[97.9155121,28.3394394],[97.9135056,28.3424187],[97.9085999,28.3456879],[97.9024124,28.3474064],[97.8972015,28.3465881],[97.888092,28.3453865],[97.8792572,28.3448658],[97.875061,28.3428822],[97.8688278,28.3425426],[97.861496,28.3397007],[97.8527679,28.3323059],[97.8484726,28.3259754],[97.8455582,28.3232803],[97.8449173,28.3177986],[97.8429337,28.3102798],[97.8374634,28.3092327],[97.8318176,28.3120842],[97.826416,28.3140163],[97.8158035,28.3151283],[97.8111572,28.3161278],[97.8075333,28.3166523],[97.803627,28.3160362],[97.7995224,28.3182507],[97.7967911,28.3234863],[97.794342,28.3301716],[97.7926483,28.3356972],[97.7889328,28.3435497],[97.7828674,28.3509884],[97.7754898,28.3579903],[97.7729416,28.3600941],[97.7668381,28.3656998],[97.7614441,28.3685455],[97.7557755,28.3704777],[97.7494278,28.3767738],[97.7475052,28.3841343],[97.7463455,28.3905659],[97.7451935,28.3972282],[97.7450409,28.4022675],[97.742363,28.4103298],[97.7414703,28.4172153],[97.7418442,28.4227047],[97.7419891,28.4291134],[97.7408447,28.4364605],[97.7399139,28.441515],[97.7385406,28.4502411],[97.7363892,28.4587536],[97.7336426,28.4638386],[97.7303925,28.4698486],[97.7261124,28.4763355],[97.719986,28.4812527],[97.7120514,28.487114],[97.7062073,28.4933987],[97.7026367,28.496439],[97.6954575,28.5011444],[97.689621,28.5076561],[97.686058,28.5113811],[97.6830521,28.5166988],[97.6797562,28.5208778],[97.6735916,28.5244198],[97.6700134,28.5274582],[97.6677856,28.5327606],[97.6667786,28.5343819],[97.660614,28.5379219],[97.6528168,28.5378265],[97.6489029,28.5372047],[97.6423798,28.536171],[97.6321487,28.5315323],[97.6258087,28.5266018],[97.6181641,28.5212345],[97.6089935,28.5177231],[97.5993805,28.5178833],[97.5937271,28.521183],[97.5899506,28.5271969],[97.5895081,28.5310993],[97.5895538,28.533617],[97.5904846,28.5409279],[97.586937,28.5457954],[97.5763092,28.5471153],[97.569252,28.5451698],[97.5618286,28.5381927],[97.5488281,28.5248928],[97.5398407,28.5170231],[97.5329742,28.5114079],[97.5263824,28.5064754],[97.5205841,28.5024471],[97.5145187,28.497736],[97.5067902,28.4877815],[97.5066147,28.4788551],[97.5095673,28.4701061],[97.5167542,28.4521313],[97.5185013,28.4486694],[97.5207596,28.4442825],[97.52034,28.4362736],[97.5166245,28.4319839],[97.5100937,28.430027],[97.5043411,28.4278278],[97.5037003,28.4216537],[97.5059738,28.4184151],[97.5067062,28.4156551],[97.5070953,28.4092369],[97.5038834,28.4040222],[97.5007248,28.4017811],[97.4949417,28.3979816],[97.4894104,28.3939457],[97.4854126,28.3885136],[97.4863586,28.383461],[97.4890976,28.3774643],[97.490242,28.3694324],[97.4932938,28.3659496],[97.4970474,28.3587933],[97.4995728,28.3550873],[97.5023727,28.3520699],[97.505394,28.3472118],[97.5063934,28.3453636],[97.5096588,28.3395882],[97.5100098,28.33111],[97.5067673,28.3242912],[97.5022736,28.3197842],[97.4978256,28.3177929],[97.4897537,28.3163185],[97.4809036,28.3148537],[97.4712677,28.3127155],[97.4677124,28.3029251],[97.470993,28.2980652],[97.474823,28.2950306],[97.4773331,28.2906418],[97.4777374,28.2844505],[97.4732513,28.2801704],[97.4664688,28.2779884],[97.4622726,28.2755337],[97.4547501,28.2754211],[97.4506607,28.2784615],[97.4466019,28.2835598],[97.4409714,28.2873116],[97.4363556,28.2903595],[97.4307175,28.2938786],[97.4260864,28.296011],[97.4219666,28.2976761],[97.4152374,28.2982349],[97.4112854,28.2950916],[97.4077606,28.2866726],[97.4066467,28.2823391],[97.40345,28.2775803],[97.402298,28.2714138],[97.4048386,28.2686291],[97.4073868,28.2658424],[97.4106827,28.2621288],[97.4115906,28.2547894],[97.4089432,28.2516232],[97.40448,28.2487144],[97.4003067,28.2474022],[97.3961411,28.2463207],[97.394043,28.2447491],[97.3882751,28.2411728],[97.383316,28.2394161],[97.37603,28.2379208],[97.371933,28.2405014],[97.3678207,28.2426224],[97.3637085,28.2447433],[97.3595657,28.2450333],[97.3569794,28.2450714],[97.3467712,28.239727],[97.3446655,28.2376976],[97.3445663,28.2319736],[97.3449097,28.222126],[97.3453751,28.218914],[97.3465729,28.2136269],[97.349884,28.210144],[97.355011,28.2079334],[97.3573303,28.2065411],[97.3572311,28.2006493],[97.3589478,28.1951313],[97.3577957,28.1889668],[97.3553009,28.179615],[97.3541565,28.1734505],[97.3542862,28.1661224],[97.3528824,28.1597328],[97.3497009,28.1556568],[97.3472977,28.1500568],[97.3447723,28.1458549],[97.3413925,28.1442719],[97.3391495,28.1438293],[97.3354568,28.1434269],[97.3333206,28.1433334],[97.332016,28.1437149],[97.3296814,28.1437321],[97.3278809,28.1430149],[97.3262482,28.1404057],[97.3262482,28.1373672],[97.3273392,28.1350327],[97.3292618,28.1329994],[97.3321609,28.130579],[97.3351135,28.1289082],[97.3382721,28.1264954],[97.3411865,28.12356],[97.3431168,28.1211243],[97.3441925,28.1191921],[97.3437805,28.1174641],[97.3429184,28.1151562],[97.3407898,28.1115074],[97.3384628,28.1081982],[97.3347092,28.1074028],[97.3289566,28.105299],[97.3239975,28.102911],[97.3198242,28.1002388],[97.3156738,28.0973969],[97.313591,28.0950413],[97.3115005,28.093235],[97.3091736,28.0898132],[97.3074417,28.0861721],[97.307106,28.0836983],[97.3061447,28.0802402],[97.3052902,28.0775299],[97.3046341,28.0750523],[97.3048096,28.0727615],[97.3060074,28.068512],[97.3084183,28.065115],[97.3111801,28.0620823],[97.3138657,28.0598946],[97.3167114,28.0580559],[97.3202438,28.0571156],[97.3235855,28.0561619],[97.3266449,28.0569496],[97.329361,28.0572224],[97.3332214,28.058321],[97.337677,28.0592537],[97.3384476,28.0594406],[97.3412933,28.0594883],[97.3457565,28.0597343],[97.3519669,28.0602932],[97.3564911,28.0608845],[97.3605423,28.0620975],[97.3645401,28.0629082],[97.3676987,28.0637627],[97.3712997,28.0648537],[97.3744583,28.0657654],[97.3758774,28.0659618],[97.3768539,28.0659218],[97.3776398,28.0652447],[97.3778,28.0639267],[97.3771973,28.0617962],[97.3744812,28.0583668],[97.3725891,28.0556965],[97.3714218,28.0529823],[97.3709564,28.0501633],[97.3710251,28.0468369],[97.3723145,28.0438747],[97.3739395,28.040575],[97.375946,28.0373955],[97.3769684,28.0350609],[97.3778915,28.0340424],[97.380188,28.0328732],[97.3829956,28.0317726],[97.3863602,28.0316563],[97.3886871,28.0318661],[97.3916092,28.0318851],[97.3956833,28.0313206],[97.3983383,28.0294685],[97.3995972,28.0281963],[97.4033203,28.0254478],[97.4059448,28.0238247],[97.4085159,28.0214577],[97.4108505,28.0182266],[97.4118118,28.0153713],[97.410965,28.0127182],[97.4090271,28.009304],[97.407402,28.0077076],[97.4062653,28.0069542],[97.40448,28.0054359],[97.4028778,28.0041351],[97.4008408,28.003315],[97.3975677,28.0013885],[97.3938446,28.0000019],[97.3903732,27.9952354],[97.3852539,27.9859695],[97.3798523,27.9799938],[97.378746,27.9750843],[97.3771896,27.9685764],[97.3766327,27.9542484],[97.3761673,27.9496536],[97.3744431,27.9429798],[97.3747559,27.9383926],[97.3766327,27.9328995],[97.3810806,27.9288101],[97.3819199,27.9257698],[97.3821564,27.9200974],[97.3783112,27.9153252],[97.376442,27.906271],[97.3825226,27.8953114],[97.3852386,27.8913994],[97.385643,27.8838425],[97.3703308,27.8770618],[97.3537521,27.877552],[97.3485336,27.8828201],[97.3428192,27.8841438],[97.3366318,27.8827057],[97.3337936,27.8822193],[97.3268051,27.8823814],[97.3233719,27.8876266],[97.3214874,27.8935757],[97.3214035,27.9004612],[97.317955,27.9066257],[97.3127289,27.9109344],[97.3080292,27.9141006],[97.3026047,27.9135895],[97.294342,27.9123592],[97.2868729,27.9095306],[97.2747726,27.9048157],[97.254715,27.8951988],[97.2480316,27.8921471],[97.2398071,27.8879299],[97.2321701,27.8788986],[97.220665,27.8686752],[97.2147827,27.8640232],[97.2060776,27.8572731],[97.2002182,27.8507843],[97.1935806,27.8445148],[97.1892471,27.8396473],[97.1856766,27.8361664],[97.1762238,27.8277988],[97.1708374,27.8247471],[97.1665497,27.8220692],[97.162323,27.8158398],[97.1576309,27.8117085],[97.1465378,27.8063545],[97.1427002,27.8033295],[97.1388702,27.8000717],[97.1363144,27.7977486],[97.1332474,27.7954178],[97.1294098,27.7928505],[97.1250458,27.7907352],[97.1214523,27.7890892],[97.1164551,27.7855053],[97.1090622,27.7818871],[97.1035004,27.7786388],[97.1001358,27.7746048],[97.1000595,27.7696209],[97.0987549,27.7636013],[97.0989304,27.7529507],[97.0965118,27.7444801],[97.0913315,27.742918],[97.0856552,27.7443752],[97.0789337,27.7449875],[97.0704041,27.7448883],[97.0626602,27.7445698],[97.0577469,27.7445126],[97.055954,27.7453136],[97.0539093,27.7501411],[97.0521088,27.7552223],[97.0511398,27.7598915],[97.0507278,27.7639446],[97.0509262,27.767849],[97.0500259,27.77071],[97.0466766,27.7835007],[97.0471573,27.7956238],[97.0485992,27.8059196],[97.0488281,27.806076],[97.0441132,27.8155003],[97.043808,27.8228283],[97.0396576,27.8231506],[97.0329437,27.8229313],[97.019928,27.8188362],[97.0086823,27.8157139],[96.9997864,27.8119831],[96.99189,27.8153915],[96.9882431,27.8221493],[96.9822617,27.8290596],[96.9792023,27.8342323],[96.9760132,27.8423805],[96.9736023,27.8505573],[96.9707794,27.8561954],[96.9687271,27.8618603],[96.9592514,27.8656731],[96.9524002,27.8686543],[96.9410477,27.8740082],[96.9294586,27.8788948],[96.921814,27.882309],[96.9152374,27.88484],[96.9077988,27.883215],[96.897934,27.8840294],[96.8895874,27.8796215],[96.8826294,27.8789291],[96.8703461,27.8757629],[96.8617401,27.877306],[96.8551712,27.8796062],[96.8470001,27.8832264],[96.8406601,27.886219],[96.8345871,27.8889942],[96.8282394,27.8922176],[96.8153992,27.8959064],[96.807312,27.9034252],[96.8026581,27.9092274],[96.7968369,27.9179726],[96.7934113,27.9254208],[96.7889557,27.9326038],[96.7811279,27.9339409],[96.7741318,27.9341583],[96.7707825,27.9338131],[96.7586823,27.9382114],[96.7506714,27.9436665],[96.7369003,27.9507561],[96.7286835,27.9550552],[96.7001877,27.9611721],[96.6959686,27.9571266],[96.683403,27.9543915],[96.6744385,27.9579754],[96.666954,27.9632168],[96.6578445,27.9700031],[96.6556625,27.9724483],[96.6513519,27.9819279],[96.6453857,27.9879074],[96.6368179,27.9942532],[96.6318512,27.9997673],[96.6289902,28.0048561],[96.6267624,28.0151501],[96.6235199,28.0242844],[96.6195297,28.031805],[96.6132507,28.0367794],[96.605217,28.0387497],[96.5948715,28.0390892],[96.585289,28.0405827],[96.5784836,28.046236],[96.5705643,28.0564613],[96.565834,28.061451],[96.5603714,28.0639076],[96.5531387,28.063364],[96.546669,28.0639744],[96.538063,28.0689163],[96.5278778,28.0752144],[96.5201187,28.0755787],[96.51474,28.0727615],[96.5132065,28.0720558],[96.51194,28.074585],[96.5106659,28.0771122],[96.5088806,28.0791874],[96.507103,28.0828667],[96.5048141,28.0872326],[96.501236,28.0923004],[96.4958801,28.1008129],[96.4912796,28.107029],[96.4859161,28.1148567],[96.4765778,28.1229649],[96.4705811,28.1292915],[96.463623,28.1375809],[96.4541702,28.1452217],[96.4454346,28.1533737],[96.4376144,28.1600094],[96.429924,28.1665726],[96.4250183,28.1684399],[96.4198227,28.1705074],[96.4161911,28.1712723],[96.4090195,28.1679077],[96.403595,28.1629257],[96.4011078,28.1569099],[96.3973846,28.1507244],[96.3943253,28.1430073],[96.3916855,28.1362267],[96.3873978,28.1286564],[96.3858261,28.126606],[96.3811264,28.1209183],[96.3743668,28.1175327],[96.3668671,28.1185017],[96.3588791,28.1231365],[96.3537292,28.126379],[96.3454819,28.1312428],[96.3395386,28.1331139],[96.3294678,28.1366177],[96.3193893,28.1389732],[96.3155136,28.1403732],[96.3046722,28.1447964],[96.3011169,28.1471615],[96.2958679,28.1510487],[96.2909317,28.1542797],[96.2862396,28.1602497],[96.2856903,28.17033],[96.2844467,28.1774349],[96.2818527,28.183239],[96.2781448,28.1895123],[96.2752151,28.1956253],[96.2738113,28.2018585],[96.2728729,28.20858],[96.2724609,28.2151203],[96.271286,28.2215996],[96.2692184,28.2293663],[96.2682953,28.2384319],[96.2644348,28.2423496],[96.2590027,28.2437553],[96.2538223,28.2440166],[96.2442245,28.2433891],[96.2360382,28.240984],[96.2268524,28.2382069],[96.2210388,28.2375088],[96.2149734,28.2367954],[96.2089233,28.2353592],[96.2047501,28.2341576],[96.2008438,28.227396],[96.1987534,28.2253456],[96.1964035,28.2226124],[96.1930237,28.2198849],[96.1813431,28.2176609],[96.1743469,28.2167854],[96.1688919,28.2149849],[96.1624069,28.2134171],[96.1585159,28.2125225],[96.1525421,28.2102661],[96.1450119,28.2075596],[96.1382675,28.2062225],[96.1338577,28.2048702],[96.1271133,28.2030773],[96.1175232,28.2028961],[96.1116333,28.2041702],[96.1049194,28.2072468],[96.0997009,28.2106762],[96.0944595,28.211834],[96.087265,28.2121544],[96.0818176,28.2117748],[96.0753098,28.2065411],[96.0701141,28.2026749],[96.0649109,28.1988068],[96.0589905,28.1937447],[96.05159,28.1910992],[96.0428314,28.1892452],[96.0352478,28.1883965],[96.0283279,28.1885052],[96.0226746,28.1887207],[96.0137329,28.1886635],[96.0094299,28.1894417],[96.003212,28.1894684],[95.999939,28.189682],[95.9980087,28.1921768],[95.9817657,28.1995716],[95.9720383,28.2060833],[95.9630661,28.2116528],[95.9447327,28.2267246],[95.9313812,28.2347202],[95.9191513,28.2373734],[95.9069519,28.240715],[95.9000015,28.2517662],[95.8954239,28.2634449],[95.8858032,28.2808094],[95.879097,28.2913895],[95.8693619,28.2981262],[95.857254,28.2968426],[95.8453293,28.2934704],[95.8298035,28.2918129],[95.8207092,28.2943707],[95.8111038,28.2974033],[95.7980957,28.292902],[95.7878876,28.28578],[95.769783,28.2777176],[95.7496872,28.2805634],[95.7404633,28.2791901],[95.7165222,28.2691936],[95.6937714,28.259573],[95.6928558,28.2591858],[95.6798096,28.2535725],[95.6715851,28.2500324],[95.6506348,28.2427216],[95.6375732,28.2361259],[95.6136551,28.2261105],[95.595665,28.2207909],[95.5756454,28.2175999],[95.5616531,28.2144871],[95.5426483,28.2017937],[95.5183411,28.187151],[95.4932327,28.1801453],[95.4798965,28.1809349],[95.4669037,28.1757088],[95.4440231,28.1642494],[95.4290543,28.1544476],[95.4128265,28.1460571],[95.3949814,28.1360893],[95.3829422,28.1275978],[95.3676605,28.1067066],[95.3616486,28.0895252],[95.3572006,28.0718422],[95.3541946,28.0587463],[95.3441925,28.0391159],[95.3387833,28.0330048],[95.3291855,28.0179825],[95.3211212,28.0105476],[95.317688,28.0000076],[95.3174133,27.9992504],[95.3124008,27.977087],[95.3024368,27.9613953],[95.2880325,27.9447823],[95.2739029,27.9325581],[95.2592545,27.9235649],[95.2467117,27.9161854],[95.2221451,27.9097366],[95.2041168,27.9025879],[95.1853027,27.8984394],[95.1735458,27.8929005],[95.1555176,27.8838978],[95.139328,27.8762779],[95.1257477,27.8714275],[95.1111221,27.8654213],[95.0983276,27.8610325],[95.087616,27.8494816],[95.0750961,27.8421993],[95.0598373,27.8420773],[95.0469513,27.8379269],[95.0312347,27.8325958],[95.0187073,27.8268127],[95.0017471,27.8228722],[94.9900055,27.8152409],[94.9753952,27.8071404],[94.9581833,27.7969608],[94.9439087,27.7864208],[94.9245529,27.7735882],[94.9091797,27.7597103],[94.8919754,27.746748],[94.8685226,27.7383938],[94.8513107,27.734436],[94.8333282,27.7290878],[94.8155975,27.7262783],[94.8025818,27.7170105],[94.7822723,27.7051849],[94.76091,27.6977406],[94.7455521,27.6903114],[94.7252274,27.6844807],[94.707283,27.6728821],[94.6841202,27.6598797],[94.6669464,27.6535892],[94.6521072,27.6479988],[94.6372681,27.6430988],[94.6227036,27.6356564],[94.6102142,27.6305294],[94.5953903,27.6244717],[94.5795212,27.6191006],[94.560524,27.6130219],[94.5503845,27.6083622],[94.5298462,27.5997334],[94.5228271,27.5964699],[94.5074615,27.5959435],[94.5001907,27.6026173],[94.4876404,27.6052132],[94.4729233,27.6005154],[94.458252,27.5901833],[94.4418716,27.5852566],[94.4335327,27.5854473],[94.411377,27.5888062],[94.3996506,27.5892105],[94.3866501,27.5859108],[94.3687134,27.579813],[94.3533554,27.5778847],[94.3402863,27.5858994],[94.3285294,27.5913811],[94.3178558,27.590168],[94.2962723,27.5842705],[94.2869492,27.5763645],[94.2786789,27.5675373],[94.2648087,27.5544128],[94.264183,27.5538235],[94.2610626,27.5524693],[94.2506866,27.5479698],[94.2281036,27.5383606],[94.2099533,27.5276203],[94.2032394,27.520647],[94.1999054,27.5132351],[94.1924286,27.5034847],[94.1815872,27.4923248],[94.1658096,27.4788246],[94.15522,27.4690514],[94.135582,27.4513626],[94.1169968,27.4339066],[94.1059265,27.4199677],[94.0914307,27.4108582],[94.0767212,27.397583],[94.0666733,27.386652],[94.0522308,27.3726845],[94.0364761,27.3610153],[94.0228119,27.3484364],[94.0086365,27.3344669],[93.9911041,27.3195457],[93.9759064,27.3051014],[93.9573364,27.2901669],[93.9375458,27.2682896],[93.9190521,27.2471104],[93.9018402,27.2273273],[93.8794708,27.2061119],[93.8609543,27.1883907],[93.8499527,27.1735077],[93.8501968,27.1494789],[93.8503799,27.1321507],[93.8485489,27.1085663],[93.8484573,27.0928516],[93.848114,27.0755196],[93.8444672,27.0523777],[93.8378601,27.0398426],[93.8192978,27.0297413],[93.7988815,27.0237789],[93.7657547,27.019083],[93.7471313,27.0152111],[93.7197571,27.006628],[93.7002106,26.9932671],[93.6822052,26.9822292],[93.6626053,26.9739456],[93.6399612,26.961237],[93.60746,26.9493465],[93.57547,26.9390717],[93.5490875,26.9357853],[93.5278625,26.9343987],[93.5084381,26.9341831],[93.481041,26.9297161],[93.4510498,26.9256783],[93.4311295,26.9240608],[93.4122391,26.9226837],[93.3832703,26.9195652],[93.3574371,26.9153252],[93.3315506,26.914547],[93.2831879,26.9097824],[93.254982,26.908268],[93.2155533,26.8955059],[93.1990356,26.8922844],[93.178421,26.8857708],[93.1531143,26.8815002],[93.1288528,26.8767776],[93.107132,26.8753223],[93.0892639,26.8753052],[93.0682526,26.8777828],[93.0453491,26.8843899],[93.0308456,26.8846455],[93.0126495,26.8885422],[92.987915,26.8962688],[92.958519,26.9034615],[92.9371567,26.9103069],[92.9008331,26.9139156],[92.8829727,26.9134102],[92.8677521,26.9099388],[92.8502197,26.9057369],[92.8342667,26.9004021],[92.8032379,26.8976002],[92.7848587,26.8973045],[92.7702637,26.9019241],[92.7519379,26.9120274],[92.7339325,26.9186649],[92.7151337,26.9259815],[92.6865997,26.9407597],[92.6646194,26.9512539],[92.6457443,26.949316],[92.6138382,26.9513111],[92.5921326,26.948391],[92.5703354,26.9500904],[92.5504761,26.9458122],[92.533287,26.9378796],[92.4887695,26.924139],[92.464798,26.9186172],[92.4282379,26.908699],[92.3995819,26.9044666],[92.3719482,26.9011745],[92.3410721,26.9033604],[92.3222275,26.9006863],[92.2861633,26.8925915],[92.2526627,26.8856926],[92.2365799,26.8865299],[92.2006989,26.871254],[92.1759644,26.8661308],[92.1456985,26.8650513],[92.1240463,26.8611393],[92.1122742,26.8555794],[92.1058197,26.8549843],[92.1043015,26.8759727],[92.1030807,26.8784962],[92.1042328,26.8893661],[92.1069336,26.9009476],[92.1083603,26.9113598],[92.1073151,26.9189281],[92.1116943,26.9208431],[92.1174164,26.9287453],[92.121048,26.9371681],[92.1217194,26.9442062],[92.1225281,26.9522896],[92.1163025,26.9670067],[92.1097794,26.9798794],[92.1029358,26.989109],[92.098587,26.997448],[92.0962753,27.0066452],[92.0831375,27.0135365],[92.0760269,27.0180092],[92.0763245,27.0265694],[92.0707016,27.0437851],[92.0576477,27.0472107],[92.0453949,27.0494938],[92.0386963,27.0540218],[92.031517,27.0646839],[92.0243073,27.0825596],[92.0247879,27.0941257],[92.0225372,27.1107197],[92.0228653,27.1207123],[92.0268097,27.1260643],[92.0322876,27.134964],[92.0325775,27.1437511],[92.029953,27.1513062],[92.0314255,27.1679955],[92.0351105,27.1761627],[92.0426788,27.1846428],[92.0548859,27.1946068],[92.0557404,27.2017899],[92.0594711,27.2081089],[92.0670013,27.2182045],[92.0694885,27.232584],[92.0678635,27.2454929],[92.0724945,27.2571449],[92.0816422,27.2654247],[92.090477,27.2678318],[92.0964966,27.2685108],[92.1058426,27.2686043],[92.1135941,27.2712269],[92.1203079,27.2738342],[92.1247559,27.2765923],[92.1213531,27.2822933],[92.1147079,27.2869968],[92.1128845,27.2935734],[92.1066284,27.3045368],[92.0997772,27.318491],[92.0899582,27.336544],[92.0820084,27.3525562],[92.0775452,27.3644791],[92.0680313,27.3804569],[92.0577774,27.3948021],[92.0529709,27.4097214],[92.0425339,27.4210567],[92.0423355,27.4284458],[92.0325012,27.4365578],[92.0208511,27.4441681],[92.0166245,27.446619],[92.0152054,27.4611473],[92.0137024,27.4687424],[92.0067215,27.4769115],[91.9968948,27.4743919],[91.9860458,27.471386],[91.9762192,27.4688644],[91.9549408,27.4665565],[91.9398041,27.4680767],[91.9259491,27.4703159],[91.9154205,27.4744759],[91.9038773,27.4779186],[91.8805771,27.4827194],[91.8677597,27.4849777],[91.8567123,27.4891224],[91.8434143,27.489748],[91.8254395,27.4902687],[91.815567,27.489584],[91.801384,27.484642],[91.7875443,27.4771614],[91.7749252,27.4722519],[91.7593765,27.4698143],[91.7524261,27.4671116],[91.7418289,27.4643269],[91.7321396,27.4664116],[91.7176971,27.4709301],[91.7016296,27.4774876],[91.6848755,27.4855461],[91.6807327,27.4887829],[91.6696548,27.4938374],[91.6562119,27.499527],[91.649559,27.5044537],[91.6423416,27.5107517],[91.6355667,27.5108223],[91.6261368,27.5126781],[91.6189117,27.5192051],[91.6106491,27.5344906],[91.6049728,27.537796],[91.5954437,27.5393715],[91.5838013,27.5440121],[91.5802002,27.5510883],[91.5788269,27.562149],[91.5697937,27.5679379],[91.564827,27.5772915],[91.5635376,27.5853481],[91.5688324,27.5912533],[91.5777283,27.5988636],[91.5788269,27.6055927],[91.5737,27.611475],[91.5672989,27.6164036],[91.5634003,27.6246262],[91.5611191,27.6310425],[91.5625839,27.643095],[91.5675278,27.6519966],[91.5761642,27.6595993],[91.5843124,27.6662655],[91.5934448,27.6745739],[91.6073685,27.6887722],[91.6213837,27.6997375],[91.6253967,27.7051487],[91.6244812,27.7097473],[91.6267395,27.712574],[91.6346893,27.7261639],[91.6354065,27.7372723],[91.6327286,27.7483006],[91.6380615,27.7532787],[91.6420898,27.7584591],[91.6427765,27.7704887],[91.6383591,27.7787018],[91.6328659,27.788044],[91.6308136,27.7953892],[91.6288071,27.8015804],[91.6203156,27.8150101],[91.6120071,27.8222046],[91.6049881,27.8211117],[91.5946503,27.8176289],[91.5827408,27.8143368],[91.5757141,27.8137074],[91.5655212,27.813921],[91.5531693,27.8166256],[91.5409393,27.8239517],[91.5403061,27.8276329],[91.5463181,27.8360977],[91.5508957,27.8486862],[91.5579987,27.8555565],[91.5617981,27.8595791],[91.5677795,27.8604183],[91.5764313,27.8592396],[91.5864029,27.8576317],[91.6008759,27.8540516],[91.6125259,27.8575649],[91.6179886,27.8669395],[91.6181717,27.8784943],[91.610199,27.8917046],[91.6013947,27.8979626],[91.5915298,27.9044247],[91.5818405,27.9053478],[91.5736084,27.9009876],[91.5662537,27.8936481],[91.5584412,27.892767],[91.5549469,27.895916],[91.5517807,27.9055424],[91.5484695,27.9114685],[91.5443039,27.9196854],[91.5329742,27.9226418],[91.5268936,27.9250336],[91.5165405,27.9303246],[91.5075684,27.9331093],[91.4967041,27.9379234],[91.4885254,27.9404945],[91.4825745,27.9468136],[91.4828033,27.9562931],[91.4844513,27.9623394],[91.487381,27.9688835],[91.4821396,27.9777622],[91.4750366,27.9792042],[91.4671936,27.9877892],[91.4666901,28.0000095],[91.463768,28.0061512],[91.4553604,28.0114059],[91.4514389,28.0109177],[91.4410172,28.0073833],[91.4313202,28.0098572],[91.4255066,28.0165138],[91.4189377,28.0201626],[91.4100342,28.0214863],[91.402504,28.0244465],[91.4013748,28.024889],[91.3898087,28.0320129],[91.378891,28.0393829],[91.3694992,28.0491352],[91.3616638,28.0481548],[91.3501511,28.0487614],[91.3451004,28.0572662],[91.3429184,28.0664883],[91.3329926,28.0647964],[91.3235931,28.0628757],[91.3157196,28.065588],[91.3111038,28.0565453],[91.3111496,28.0521564],[91.3143387,28.0468712],[91.3151932,28.0399494],[91.3128967,28.0346222],[91.3050919,28.0304031],[91.2993546,28.0287437],[91.2930756,28.0293865],[91.2840424,28.0173054],[91.2796631,28.0110359],[91.2776489,28.0040932],[91.2756348,28.0000095],[91.2748871,27.9995117],[91.2709198,27.9927082],[91.265358,27.9870167],[91.2593155,27.979929],[91.2503586,27.973917],[91.2416458,27.9764576],[91.2355576,27.9788399],[91.2283173,27.9841919],[91.2197647,27.9897423],[91.2145386,27.9898338],[91.2088394,27.9880657],[91.2020645,27.9874229],[91.1966095,27.986351],[91.1896896,27.9820099],[91.1822891,27.9767265],[91.1729813,27.9734726],[91.1617813,27.9707375],[91.162056,27.9677658],[91.1633148,27.9576263],[91.1624832,27.9472198],[91.1579208,27.9406776],[91.1507492,27.9338627],[91.1433182,27.927042],[91.1455841,27.9187641],[91.1483917,27.9093437],[91.150177,27.8987503],[91.1487656,27.8915672],[91.1415558,27.8868275],[91.1323395,27.87813],[91.1249542,27.8694592],[91.116333,27.8575363],[91.1102676,27.8506546],[91.1045074,27.8490753],[91.0994339,27.8490543],[91.0943451,27.8495712],[91.0788803,27.8512268],[91.0610504,27.8532753],[91.046814,27.8570404],[91.0332031,27.8578186],[91.0208435,27.8602428],[91.0112305,27.8662128],[91.0037231,27.8717823],[90.9964981,27.8840561],[90.984787,27.8901958],[90.9727554,27.8979435],[90.9636536,27.9041557],[90.9611893,27.90732],[90.9657745,27.9106846],[90.9676361,27.9172077],[90.96875,27.9225559],[90.9734497,27.9300804],[90.9778671,27.9382935],[90.9748154,27.9432888],[90.9704361,27.9489422],[90.9637222,27.9538364],[90.9524918,27.9535179],[90.9395523,27.9499149],[90.9336243,27.9474354],[90.9294662,27.9468555],[90.9199524,27.9498158],[90.9143829,27.9519691],[90.9097061,27.9511433],[90.901123,27.9499702],[90.8953705,27.950037],[90.887413,27.9532738],[90.8809433,27.9586315],[90.87397,27.9635143],[90.8617325,27.9691677],[90.8516388,27.9734955],[90.8458786,27.9737892],[90.8418884,27.9757519],[90.8397903,27.9830875],[90.8366928,27.9890022],[90.8323212,27.9941902],[90.8257065,28.0000076],[90.8248138,28.0023651],[90.8218994,28.0079269],[90.8103256,28.0124092],[90.8042145,28.0188046],[90.8019867,28.0277843],[90.8026733,28.0342579],[90.8046494,28.0419025],[90.7993469,28.0469189],[90.7941132,28.0468597],[90.7907257,28.0458965],[90.7855453,28.0426025],[90.7818604,28.0439434],[90.7763214,28.0473423],[90.77211,28.0486755],[90.7679672,28.0460873],[90.7634964,28.0478802],[90.7584915,28.0498981],[90.7524261,28.0530567],[90.7453232,28.0559731],[90.738472,28.0591221],[90.731842,28.0648155],[90.7254715,28.070509],[90.7199783,28.0704422],[90.7115784,28.0719547],[90.7052307,28.0764942],[90.6996536,28.081274],[90.6930923,28.0828094],[90.6881256,28.0825138],[90.6864014,28.0757942],[90.6809769,28.0715694],[90.6755219,28.069191],[90.6719437,28.064064],[90.6691208,28.0607967],[90.6605301,28.0581455],[90.6537781,28.0550575],[90.6444244,28.0512409],[90.6389923,28.0479374],[90.6282501,28.0489521],[90.6193619,28.048605],[90.6139374,28.0446053],[90.6080399,28.0375996],[90.5984802,28.030777],[90.5906982,28.0272083],[90.5872574,28.0294724],[90.5827789,28.0314903],[90.5795822,28.0349102],[90.5755234,28.0422478],[90.5701981,28.0479469],[90.5633163,28.0524731],[90.552063,28.0527821],[90.541275,28.0565605],[90.5241776,28.0614052],[90.513649,28.0651836],[90.4978027,28.0591869],[90.4892502,28.054678],[90.4785995,28.0503712],[90.4665833,28.0495052],[90.4571457,28.0509853],[90.4491882,28.0568771],[90.4454346,28.0614414],[90.4417343,28.063467],[90.4309921,28.0644646],[90.4225845,28.0664196],[90.4144516,28.0676861],[90.4073334,28.0705833],[90.4003372,28.0670147],[90.3896408,28.0654697],[90.3825989,28.064209],[90.3776093,28.0650578],[90.3736191,28.0686932],[90.3710938,28.0771999],[90.3677826,28.0861588],[90.3642044,28.0953426],[90.3622284,28.1027012],[90.3540344,28.1067333],[90.3482208,28.1096497],[90.345787,28.1135387],[90.337265,28.1207981],[90.3295441,28.1273766],[90.3259964,28.1347122],[90.3217468,28.1378803],[90.3102112,28.1386261],[90.305481,28.1397076],[90.3046875,28.14081],[90.304451,28.1411362],[90.3025131,28.1438179],[90.2997437,28.1513977],[90.2986374,28.1543808],[90.2949219,28.1568623],[90.2891541,28.1570053],[90.2779541,28.1542873],[90.2693481,28.1523037],[90.2594528,28.1498375],[90.2502747,28.150383],[90.2432022,28.150732],[90.2351074,28.1494465],[90.2304153,28.148447],[90.2223053,28.1480846],[90.2152023,28.1498184],[90.2045746,28.1570358],[90.1982498,28.1587791],[90.1905746,28.1625786],[90.1881638,28.1653118],[90.1883011,28.17132],[90.1879272,28.1766243],[90.1847,28.1802673],[90.1801834,28.1834259],[90.1729965,28.1888485],[90.161911,28.1928234],[90.1485214,28.1942139],[90.145752,28.1940765],[90.14254,28.1939182],[90.1364899,28.1930904],[90.1283646,28.1934128],[90.1229477,28.1886921],[90.1227951,28.1836605],[90.1232681,28.1770439],[90.122757,28.1701412],[90.1219559,28.1630478],[90.1132355,28.1548157],[90.1081314,28.1484928],[90.1048203,28.1442776],[90.1019287,28.1449203],[90.0979462,28.1473961],[90.0944748,28.1503372],[90.087326,28.1539078],[90.0815125,28.1563492],[90.0684128,28.1565838],[90.064003,28.154892],[90.0575714,28.1496964],[90.0516968,28.1431255],[90.0473328,28.1391239],[90.0413437,28.1376343],[90.0342407,28.1393547],[90.0286865,28.141798],[90.028595,28.1457214],[90.0279541,28.1507931],[90.0265503,28.1549244],[90.0250931,28.1615982],[90.0221252,28.1654701],[90.0162659,28.1695232],[90.0118103,28.1696758],[90,28.1717205],[89.9917221,28.1832428],[89.9856415,28.1886215],[89.9763565,28.1937981],[89.9629059,28.1919327],[89.9519501,28.1928082],[89.9428253,28.1924953],[89.9323425,28.189127],[89.9206238,28.1882153],[89.9107056,28.1877918],[89.896904,28.1894627],[89.8931885,28.1906204],[89.889389,28.1967907],[89.8851624,28.2038593],[89.8780441,28.2119637],[89.8707962,28.2193298],[89.8689651,28.2266159],[89.8597107,28.22999],[89.8531723,28.2302742],[89.8442459,28.2287884],[89.8343811,28.2295628],[89.826828,28.2340126],[89.81707,28.2417431],[89.8077316,28.24259],[89.8023148,28.2456608],[89.7961349,28.2514992],[89.7903366,28.2506866],[89.7859116,28.2467117],[89.7858276,28.2426338],[89.7842484,28.2333126],[89.7818222,28.2317772],[89.7743988,28.2309742],[89.7667313,28.2277431],[89.7694702,28.2199879],[89.7755356,28.2162933],[89.7813797,28.2123241],[89.7784424,28.2086105],[89.7758484,28.2059937],[89.7740021,28.2020874],[89.770195,28.1978283],[89.7646484,28.195612],[89.7571716,28.1936035],[89.7480392,28.1932793],[89.7426758,28.1915646],[89.7378616,28.1882553],[89.7337952,28.1838531],[89.7286224,28.1795311],[89.7208328,28.176281],[89.7116241,28.1764183],[89.697319,28.1815815],[89.6770859,28.1859055],[89.6738205,28.1830502],[89.6654739,28.1754055],[89.6587448,28.1737347],[89.6525955,28.1719074],[89.6411896,28.1722069],[89.6297836,28.1710682],[89.6144257,28.1708069],[89.6019058,28.1675892],[89.5941315,28.1597824],[89.5912857,28.1531506],[89.5865555,28.1479282],[89.5812454,28.141428],[89.5746689,28.1345081],[89.5699005,28.1295185],[89.5615311,28.1235371],[89.5531998,28.1158867],[89.547554,28.1098137],[89.5420837,28.1042442],[89.5347748,28.0924282],[89.5287399,28.0870171],[89.5148315,28.0907745],[89.5084839,28.0915413],[89.5021973,28.0889664],[89.497612,28.0830421],[89.4933777,28.0781269],[89.4903412,28.0755367],[89.4827042,28.0642548],[89.4818802,28.0630379],[89.4772949,28.0545139],[89.471962,28.0482426],[89.4677277,28.0418892],[89.4602814,28.0357513],[89.4575348,28.0316238],[89.468132,28.0203991],[89.4669189,28.0137634],[89.4631271,28.009388],[89.4538269,28.0056572],[89.4505157,28.0000095],[89.4508209,27.996769],[89.4475708,27.9901028],[89.4458008,27.9837856],[89.4438705,27.9783134],[89.4410324,27.9696598],[89.4367294,27.9644337],[89.4307251,27.9536991],[89.4264221,27.9487038],[89.4176636,27.9426403],[89.4105453,27.9397755],[89.4082489,27.9310474],[89.406044,27.9264717],[89.3996658,27.9215145],[89.396698,27.9174156],[89.3918228,27.91012],[89.3869171,27.9014397],[89.382515,27.8920574],[89.3764038,27.887558],[89.3707733,27.8809681],[89.3646088,27.8741589],[89.3564453,27.8710804],[89.3425369,27.8676491],[89.3351593,27.8645554],[89.3280029,27.8574963],[89.3226624,27.8560715],[89.315094,27.8545418],[89.3085861,27.8551254],[89.3010178,27.854805],[89.2936478,27.8519402],[89.2895813,27.8455505],[89.288208,27.8423443],[89.2789001,27.8346634],[89.2707672,27.8327351],[89.2659607,27.8277435],[89.2657242,27.8171272],[89.2569046,27.8078213],[89.2408676,27.8023415],[89.23452,27.7982998],[89.2338562,27.792078],[89.2322006,27.7879524],[89.2251816,27.7769947],[89.2237549,27.7717094],[89.2226028,27.7668819],[89.2197647,27.7565422],[89.2207184,27.7523689],[89.2243729,27.7409878],[89.22435,27.7282887],[89.2180405,27.7258625],[89.2089233,27.7260265],[89.1998291,27.7273426],[89.1946793,27.7182007],[89.1933136,27.7036762],[89.1893768,27.7025928],[89.1877441,27.6993885],[89.1846924,27.6908989],[89.1811829,27.6854191],[89.181633,27.6821785],[89.1723022,27.6724167],[89.1604614,27.6670818],[89.1490555,27.6575851],[89.1416779,27.6535568],[89.1366653,27.6504135],[89.1372681,27.6423187],[89.1324997,27.6384773],[89.1264954,27.637888],[89.1229858,27.6346035],[89.1270218,27.6261024],[89.1235428,27.6217766],[89.1234207,27.6160049],[89.1279907,27.6106129],[89.136467,27.605154],[89.1472549,27.5987301],[89.1508789,27.5890388],[89.1547775,27.585434],[89.1594238,27.5747776],[89.151001,27.5674877],[89.1406555,27.5584316],[89.1240463,27.5483303],[89.1191559,27.5453053],[89.1135178,27.5427399],[89.1075287,27.5423832],[89.1022186,27.5371799],[89.1020508,27.5302315],[89.1038971,27.5186577],[89.0989761,27.5074272],[89.0938644,27.5036678],[89.0936508,27.4935493],[89.0940933,27.4866428],[89.0942154,27.479332],[89.0961609,27.4728336],[89.1046066,27.4664516],[89.1080856,27.4590015],[89.1092148,27.4508991],[89.1130219,27.4466743],[89.1239243,27.4457932],[89.1301498,27.4452229],[89.1361389,27.4335709],[89.1499786,27.424551],[89.1585617,27.4128494],[89.1613083,27.4077225],[89.1617203,27.4028645],[89.1625824,27.3960648],[89.1668015,27.3905869],[89.1727448,27.3841915],[89.1749725,27.3793011],[89.1694183,27.3747826],[89.1627274,27.3656616],[89.1577988,27.3542004],[89.1549149,27.3408566],[89.1532516,27.3362656],[89.1517487,27.3265896],[89.1479645,27.3199596],[89.1357803,27.3206367],[89.1162262,27.3170528],[89.1088638,27.3130226],[89.1033173,27.3085003],[89.0925293,27.3019886],[89.0821991,27.2922325],[89.0735245,27.2868385],[89.0691071,27.2869148],[89.0683746,27.2767658],[89.0680084,27.2716904],[89.0701981,27.2522507],[89.0658569,27.2433167],[89.0571899,27.2381516],[89.0381851,27.2352409],[89.0236053,27.2329464],[89.0105743,27.2301617],[89.0026169,27.2217484],[88.9884491,27.2141285],[88.9776001,27.2163868],[88.971199,27.2204189],[88.9641266,27.2300053],[88.9590912,27.2379417],[88.9545593,27.2449436],[88.9526291,27.2519054],[88.9442673,27.2622032],[88.9388885,27.2657547],[88.9301453,27.2700558],[88.9208298,27.2713585],[88.9133224,27.2742538],[88.9120712,27.2747345],[88.9115906,27.2768211],[88.907753,27.2794228],[88.908432,27.2877254],[88.9091797,27.299263],[88.9082642,27.3057442],[88.9130783,27.3128262],[88.9163132,27.3190117],[88.9172745,27.3282337],[88.9139404,27.3301334],[88.9103165,27.3306541],[88.8948288,27.3357525],[88.8858643,27.3418999],[88.8826218,27.3491096],[88.8804016,27.3549194],[88.8758926,27.3637657],[88.8702164,27.3657036],[88.8653564,27.3697071],[88.8641739,27.3757305],[88.8617477,27.3845425],[88.8561478,27.3906364],[88.8503723,27.3874931],[88.8404694,27.3860302],[88.836235,27.3819389],[88.832695,27.3868427],[88.8294449,27.3938198],[88.8235397,27.3976078],[88.8176804,27.4037037],[88.8182907,27.4085445],[88.8138962,27.4095345],[88.809227,27.4100685],[88.8058777,27.4115028],[88.8065796,27.4214249],[88.807724,27.4269505],[88.8028183,27.4286423],[88.7968445,27.4289627],[88.7943649,27.4354687],[88.7926941,27.443346],[88.7904358,27.4477673],[88.7843399,27.4552498],[88.7820587,27.4585171],[88.7823944,27.4624386],[88.7811737,27.4668465],[88.7786255,27.4694233],[88.780014,27.4742527],[88.7827225,27.4799843],[88.7865601,27.4907818],[88.7837982,27.4961338],[88.78582,27.5069561],[88.7867203,27.5134087],[88.7929077,27.5244007],[88.7930298,27.5310974],[88.7894669,27.535305],[88.7827454,27.5374851],[88.7762756,27.5391998],[88.7763596,27.5435867],[88.7754593,27.5512199],[88.7737274,27.5560951],[88.7715073,27.5625954],[88.7684708,27.5674896],[88.7685471,27.5714149],[88.7719803,27.5743675],[88.7798157,27.5758629],[88.786087,27.5771561],[88.7889786,27.5784969],[88.7929535,27.5823631],[88.7937851,27.5853519],[88.7938843,27.5904312],[88.7975922,27.5940685],[88.8072662,27.6060085],[88.806694,27.6075535],[88.8072357,27.622324],[88.8069153,27.6329517],[88.8112488,27.6418915],[88.8154907,27.6459808],[88.8231659,27.6523304],[88.8317719,27.6531219],[88.8396835,27.6583099],[88.8437195,27.6649456],[88.8464508,27.6718292],[88.8471146,27.678978],[88.8451462,27.6852417],[88.8454742,27.6886997],[88.8462219,27.7004662],[88.8442307,27.7053452],[88.8435593,27.7111282],[88.8462753,27.7168598],[88.8510056,27.7190952],[88.854393,27.7190418],[88.8609848,27.7364864],[88.8614655,27.7477932],[88.8587189,27.754303],[88.8568573,27.7658768],[88.8571777,27.7822647],[88.8591995,27.7923927],[88.859375,27.8016243],[88.8587646,27.8104076],[88.8586426,27.8178005],[88.8652878,27.8243904],[88.8705597,27.8270798],[88.8777008,27.8322773],[88.8809814,27.8400745],[88.8816223,27.8463001],[88.8836288,27.8555031],[88.882225,27.8636074],[88.8792191,27.8698883],[88.8785706,27.8770542],[88.8786697,27.8819027],[88.8803329,27.8869553],[88.8793945,27.8922806],[88.8722229,27.8993168],[88.8659592,27.9058228],[88.8637238,27.9186153],[88.8593979,27.9250011],[88.8551178,27.9282646],[88.8430099,27.9274769],[88.8365097,27.9289646],[88.8368683,27.9338055],[88.8401337,27.9409122],[88.8420563,27.945961],[88.8440323,27.9533195],[88.8447189,27.9620838],[88.8409348,27.9688358],[88.8395233,27.9769382],[88.8399658,27.9863949],[88.8406219,27.9935417],[88.8379822,28.0000114],[88.8376846,28.0021172],[88.8364258,28.0110683],[88.8336105,28.0173569],[88.8215637,28.0196304],[88.8134155,28.0241623],[88.8055191,28.0282001],[88.8016815,28.0323639],[88.7942352,28.0433388],[88.7865982,28.0479469],[88.7809219,28.0518246],[88.7752686,28.0557766],[88.7706451,28.0592594],[88.767067,28.0636501],[88.7597275,28.0712433],[88.7535934,28.0736771],[88.7397156,28.0744495],[88.7324448,28.0731392],[88.7264862,28.0736523],[88.7189865,28.0750961],[88.7121887,28.0746422],[88.7013626,28.0752506],[88.6919861,28.0771141],[88.68367,28.0739441],[88.6707687,28.0746002],[88.6645966,28.0789738],[88.6623383,28.0851078],[88.6543808,28.0935421],[88.6482162,28.099329],[88.6455536,28.1063099],[88.6395569,28.114996],[88.6332855,28.116684],[88.6296997,28.1142235],[88.6234283,28.109396],[88.6205826,28.1046886],[88.6168747,28.1000538],[88.6098862,28.0956364],[88.6009598,28.0928459],[88.5938797,28.0837212],[88.5840225,28.0835705],[88.5765305,28.0859222],[88.5684662,28.0881538],[88.5605545,28.0857525],[88.5573425,28.0799885],[88.5564575,28.0719395],[88.5555878,28.0624561],[88.5557556,28.0546665],[88.550827,28.0353546],[88.5446701,28.032259],[88.5316467,28.0353127],[88.5255508,28.0393028],[88.517807,28.0418816],[88.5082397,28.0466137],[88.5002441,28.0488911],[88.4921646,28.0472755],[88.4860153,28.0427399],[88.4785233,28.0368004],[88.4733353,28.0259342],[88.4650269,28.0172291],[88.4577255,28.015871],[88.4490738,28.0131092],[88.4389877,28.0094051],[88.4300842,28.0051613],[88.4240189,28.0000095],[88.423317,27.9954014],[88.422493,27.992403],[88.4195862,27.9891052],[88.4160767,27.9859772],[88.4107513,27.9831333],[88.4036331,27.9810314],[88.397377,27.9812164],[88.3922729,27.9841347],[88.3868637,27.9859085],[88.378624,27.9889183],[88.3729477,27.990469],[88.3659286,27.9911346],[88.35569,27.9893551],[88.3493958,27.9886112],[88.3440704,27.9855347],[88.3407516,27.9826736],[88.3379135,27.9784908],[88.3369064,27.9764633],[88.3347931,27.9750156],[88.3323441,27.9746361],[88.3301697,27.9756756],[88.3263626,27.9757118],[88.3236084,27.9752731],[88.3193283,27.9723949],[88.3153458,27.9704323],[88.310318,27.9684982],[88.3055878,27.9674797],[88.3003922,27.9680901],[88.2949142,27.9680157],[88.2918015,27.9685669],[88.2937012,27.9637909],[88.2877045,27.9633732],[88.2841949,27.9600105],[88.2804108,27.9564247],[88.2761688,27.9544678],[88.2709274,27.9522858],[88.2681046,27.9502239],[88.2636871,27.9469204],[88.2598648,27.9442043],[88.2569351,27.9412537],[88.2545166,27.9392548],[88.2526321,27.9380913],[88.250618,27.9397736],[88.2485657,27.9423275],[88.2486038,27.9464531],[88.2486725,27.9513226],[88.2462845,27.9573898],[88.2438736,27.9627686],[88.2424545,27.9669628],[88.2416306,27.9729881],[88.2401505,27.975338],[88.2385635,27.9746895],[88.2353287,27.9717808],[88.232666,27.9688206],[88.2298965,27.9657688],[88.2269669,27.9620705],[88.2229156,27.9619389],[88.2207336,27.9648037],[88.2179184,27.9662666],[88.2155609,27.9661026],[88.2128525,27.9631767],[88.2102127,27.9614639],[88.2084961,27.9573269],[88.2092361,27.9514484],[88.2098389,27.9445648],[88.2074661,27.9437065],[88.2046051,27.9440174],[88.2009888,27.9450417],[88.1979141,27.9465122],[88.1917038,27.9478416],[88.1850204,27.9505653],[88.1760178,27.9540482],[88.1669769,27.9563751],[88.1589737,27.9586735],[88.1514816,27.9607258],[88.1470795,27.9615402],[88.1444321,27.9604607],[88.1417313,27.9577637],[88.1376953,27.9541817],[88.1362762,27.9509869],[88.1348114,27.9464111],[88.1352692,27.9445515],[88.1374969,27.9412594],[88.1381836,27.9384708],[88.137291,27.9352646],[88.1318665,27.9294109],[88.1243515,27.9231529],[88.120079,27.920269],[88.1205368,27.9184093],[88.1220169,27.9160614],[88.1236954,27.9118595],[88.1289139,27.904562],[88.1331863,27.9000587],[88.1414948,27.8917503],[88.143219,27.8889313],[88.1397324,27.8860283],[88.1352081,27.8833828],[88.1288223,27.8796329],[88.1211319,27.8756886],[88.1155472,27.8726082],[88.1089554,27.8702507],[88.1029053,27.8685684],[88.0975113,27.8707924],[88.0947571,27.8740997],[88.0931015,27.8789902],[88.0927505,27.8838501],[88.0884933,27.888813],[88.085968,27.8911896],[88.0826111,27.8922043],[88.0771027,27.8909683],[88.0718155,27.8888035],[88.0660248,27.8871117],[88.0621414,27.8879089],[88.0585785,27.8905449],[88.0565796,27.8929081],[88.0519867,27.8958015],[88.0456085,27.8998966],[88.038414,27.9028587],[88.0314102,27.9037399],[88.026947,27.902935],[88.022934,27.8998108],[88.0197144,27.8971272],[88.0166092,27.8979015],[88.0127182,27.8982372],[88.0101089,27.8983078],[88.006424,27.8972492],[88.0006104,27.8948669],[87.9934769,27.8918209],[87.9861145,27.8899403],[87.9821701,27.8888912],[87.9775467,27.8908596],[87.9737167,27.8932686],[87.9691315,27.8963909],[87.9648132,27.8997345],[87.9602814,27.9044724],[87.9525681,27.9076748],[87.9466476,27.9099083],[87.9398956,27.9107761],[87.9305649,27.912405],[87.9215012,27.9140263],[87.9113541,27.9145203],[87.9032516,27.9140358],[87.8953552,27.9117012],[87.8888092,27.910717],[87.8844452,27.9126759],[87.8776855,27.913311],[87.8711853,27.9137096],[87.8674774,27.9119568],[87.8651199,27.9115562],[87.8633423,27.9129868],[87.8623886,27.915781],[87.8619919,27.9194851],[87.861084,27.9236622],[87.8607025,27.9280567],[87.8606033,27.9329071],[87.8610153,27.9375134],[87.8611298,27.9409714],[87.8585815,27.9428825],[87.8526917,27.9460354],[87.8444519,27.9492455],[87.8361435,27.9503803],[87.8304062,27.9502964],[87.8277588,27.9489784],[87.8263855,27.9469337],[87.8260117,27.9434834],[87.824501,27.9370575],[87.8272247,27.9326038],[87.8249588,27.9271202],[87.8227997,27.9246349],[87.8190613,27.9219627],[87.8145142,27.9183826],[87.8107758,27.9157085],[87.8054428,27.9119186],[87.7990799,27.9079647],[87.7956314,27.9056797],[87.7914047,27.9023991],[87.7888641,27.9004726],[87.7844391,27.8945541],[87.7822723,27.8907337],[87.7790375,27.8848839],[87.777832,27.879837],[87.7784958,27.8761253],[87.7764893,27.8704071],[87.7742462,27.8653851],[87.7707748,27.8626995],[87.7659149,27.8575115],[87.762146,27.8536816],[87.7606812,27.8486404],[87.7605515,27.8444881],[87.7578735,27.842247],[87.7536469,27.8402767],[87.7495499,27.8375111],[87.7467651,27.8331566],[87.7442856,27.8297195],[87.7382431,27.8226528],[87.7327805,27.8147087],[87.7282257,27.8106651],[87.7253113,27.8091221],[87.7203522,27.8087826],[87.7167206,27.809103],[87.7081604,27.8102379],[87.7026978,27.8103714],[87.6969757,27.8105125],[87.6883469,27.8095684],[87.6807632,27.8083706],[87.6752701,27.807579],[87.6726379,27.8067207],[87.6708298,27.8072262],[87.6685638,27.8095894],[87.6672974,27.8107738],[87.6658554,27.8147354],[87.6657181,27.8186626],[87.6666107,27.8223324],[87.6681137,27.8287601],[87.6695328,27.8326492],[87.6680984,27.8366089],[87.6632156,27.8388042],[87.6553955,27.8387623],[87.646286,27.8389816],[87.6407547,27.8368073],[87.636734,27.8348179],[87.6347351,27.8314552],[87.6328812,27.8263798],[87.630455,27.8236675],[87.6235657,27.81991],[87.6193008,27.8167801],[87.6140213,27.8143673],[87.607811,27.81567],[87.6042175,27.8173714],[87.5983124,27.8200512],[87.5949478,27.8208218],[87.5929031,27.8220272],[87.5924683,27.8250389],[87.5923615,27.8301182],[87.5927658,27.8347244],[87.5924072,27.8400421],[87.5899811,27.8460999],[87.5880814,27.8521481],[87.5840836,27.8577824],[87.5795059,27.8613529],[87.5717926,27.8647671],[87.5655975,27.8665295],[87.5591278,27.8680687],[87.5552063,27.8666229],[87.5529022,27.8647289],[87.550354,27.8622704],[87.5483856,27.8574715],[87.5459061,27.8529129],[87.5397797,27.8484402],[87.5355606,27.846693],[87.529808,27.8459034],[87.5193939,27.8461456],[87.5113297,27.8463326],[87.5032654,27.8467522],[87.4941559,27.846962],[87.4888992,27.8454685],[87.4817657,27.8419399],[87.4743042,27.8363419],[87.4657974,27.8303051],[87.4551849,27.8236237],[87.4504929,27.8234997],[87.4437943,27.8259602],[87.4310837,27.8278656],[87.4155655,27.8314457],[87.4078369,27.8343906],[87.4066086,27.8369579],[87.4090042,27.8389797],[87.4155884,27.8409023],[87.4235306,27.8405724],[87.4304962,27.8402081],[87.4343033,27.8409595],[87.4352036,27.84198],[87.4373169,27.8450336],[87.435379,27.8501549],[87.4316635,27.8569336],[87.4260406,27.863142],[87.422493,27.8640652],[87.4195862,27.8625145],[87.41716,27.8598003],[87.4124146,27.857832],[87.4055328,27.854063],[87.3966141,27.8519554],[87.3873672,27.8473148],[87.381012,27.8437634],[87.3738556,27.8393059],[87.3658905,27.8339443],[87.3589706,27.8287907],[87.3466873,27.8272152],[87.3367691,27.8265114],[87.3313293,27.8275547],[87.3261337,27.8278999],[87.3201599,27.8284931],[87.3150024,27.830452],[87.3114395,27.8332977],[87.3073883,27.8375416],[87.3025513,27.841341],[87.2950745,27.8442745],[87.2895279,27.846302],[87.2883682,27.8467274],[87.2863235,27.8471661],[87.2787933,27.8487816],[87.2720184,27.8486977],[87.2637177,27.8489265],[87.256897,27.8476505],[87.2473297,27.8430023],[87.2406616,27.836834],[87.2339935,27.8296642],[87.229393,27.8235283],[87.2282257,27.8187084],[87.2263412,27.8166695],[87.2237854,27.8183403],[87.2189102,27.820982],[87.2142487,27.8220062],[87.2064209,27.8214779],[87.1975861,27.8221264],[87.186882,27.8209686],[87.1808777,27.8204002],[87.1715393,27.8217525],[87.1645813,27.8246651],[87.1589203,27.8270931],[87.1517563,27.8320885],[87.1471634,27.8354149],[87.1425018,27.8364334],[87.1406631,27.8357792],[87.1364975,27.8358669],[87.1299744,27.8355389],[87.1240463,27.837738],[87.1188812,27.8394604],[87.1156082,27.8439121],[87.1133423,27.846962],[87.1110611,27.8527145],[87.1097488,27.8566265],[87.1087418,27.8701344],[87.1086197,27.8752155],[87.1060867,27.8780365],[87.1017075,27.8799725],[87.0965729,27.8828468],[87.0922318,27.8861656],[87.0864716,27.8952827],[87.082962,27.9004326],[87.0812912,27.9064655],[87.0783615,27.9141426],[87.0760727,27.9177895],[87.0739899,27.9207058],[87.070015,27.9233074],[87.065033,27.9248714],[87.0603867,27.9268932],[87.0548706,27.9285755],[87.0517654,27.931879],[87.0482254,27.9380589],[87.0431747,27.9443932],[87.0411911,27.9483547],[87.038353,27.9495659],[87.0352478,27.9505501],[87.0316086,27.9508533],[87.0261459,27.9514256],[87.0196686,27.9529362],[87.0103073,27.9538155],[87.0028839,27.951395],[86.9956665,27.9520283],[86.9795303,27.9532681],[86.9719925,27.9541073],[86.9631805,27.9561253],[86.9548721,27.9574413],[86.9486313,27.9582539],[86.9429016,27.9596119],[86.9361343,27.9633923],[86.9321823,27.9675732],[86.9317398,27.9708118],[86.9318085,27.9738102],[86.9315262,27.9769154],[86.9311066,27.9805145],[86.9295425,27.9851017],[86.9277496,27.9877243],[86.9252701,27.9893227],[86.9219131,27.9889126],[86.9163132,27.9902611],[86.9124603,27.9928741],[86.9088669,27.9952507],[86.9026489,27.9967537],[86.8955994,27.9964256],[86.8890915,27.9967823],[86.8856659,27.9988956],[86.8836594,28.0000076],[86.8784637,28.0062771],[86.8705063,28.0143204],[86.8662949,28.0201073],[86.8588257,28.0246239],[86.8507156,28.0232601],[86.8436127,28.0211563],[86.8387146,28.0197964],[86.8256454,28.0161476],[86.8182449,28.018034],[86.8125153,28.0218983],[86.8016205,28.0241261],[86.7860794,28.0240345],[86.7753296,28.0296745],[86.7641296,28.0325928],[86.7547989,28.0343819],[86.7457886,28.0422401],[86.7444611,28.0509205],[86.748764,28.0574226],[86.7554245,28.0651245],[86.7591629,28.0733757],[86.7574005,28.0770607],[86.7516785,28.079546],[86.7462082,28.0829506],[86.7437973,28.0921078],[86.7378159,28.0969563],[86.7276077,28.1002808],[86.7180023,28.102026],[86.7081757,28.1044884],[86.6974945,28.1038437],[86.6879654,28.1034355],[86.6773453,28.1019878],[86.6594391,28.0933914],[86.6551743,28.0885353],[86.6495743,28.0795803],[86.6420975,28.0730762],[86.6352386,28.0718479],[86.619957,28.0697269],[86.6095963,28.0737381],[86.6049347,28.0828972],[86.603569,28.0897675],[86.60112,28.1023617],[86.5922775,28.1050453],[86.5813599,28.1072578],[86.5671082,28.1069183],[86.5603867,28.0997601],[86.5634155,28.0871696],[86.5629883,28.0782223],[86.5634613,28.0718803],[86.559906,28.0582752],[86.5551147,28.0540848],[86.5443268,28.0530815],[86.5352783,28.0507164],[86.5319824,28.0442677],[86.5307465,28.0382957],[86.5311127,28.0279808],[86.5282974,28.0216103],[86.5206451,28.0136776],[86.5165634,28.007225],[86.5115585,28.0000057],[86.5126572,27.998539],[86.5120926,27.992588],[86.5107651,27.9884758],[86.5117569,27.9832001],[86.5171967,27.9780655],[86.5179062,27.9725266],[86.5144806,27.9680672],[86.5108032,27.9609928],[86.5058136,27.9582634],[86.5003281,27.9564514],[86.4916229,27.9536495],[86.4820633,27.9502659],[86.4737396,27.9479656],[86.4696579,27.9442139],[86.4680252,27.9404507],[86.4675217,27.9360104],[86.4661713,27.9309902],[86.4621658,27.9260292],[86.4535522,27.9153175],[86.4475784,27.9123764],[86.4447327,27.9119377],[86.4372253,27.9103794],[86.4271393,27.909523],[86.4191132,27.9084263],[86.4129028,27.9080029],[86.4069748,27.9105568],[86.4039154,27.9162998],[86.4000549,27.9188423],[86.3959503,27.9236736],[86.3908234,27.9298878],[86.3856812,27.9338093],[86.38311,27.9356575],[86.3766708,27.9393578],[86.3692017,27.9435215],[86.360405,27.9437981],[86.3513794,27.9425259],[86.3445969,27.9444008],[86.3379364,27.947813],[86.3338394,27.9540195],[86.3339386,27.9629555],[86.3330841,27.967186],[86.3276596,27.963377],[86.3223801,27.9562283],[86.3167038,27.953064],[86.3102951,27.9529972],[86.3056488,27.9543953],[86.3010178,27.9583092],[86.2979431,27.9626789],[86.2969284,27.9663448],[86.2961731,27.969099],[86.2918167,27.9757633],[86.2887344,27.9796715],[86.2802963,27.980278],[86.2701187,27.981823],[86.2621689,27.9801788],[86.2533722,27.9777775],[86.2347641,27.9754086],[86.2259064,27.9799633],[86.2221603,27.9880219],[86.2188339,28.0000057],[86.2182999,28.0166435],[86.2195969,28.0267448],[86.2203751,28.0349827],[86.2163544,28.0452595],[86.2133942,28.0516777],[86.2104416,28.0576649],[86.2075348,28.0634212],[86.2043839,28.0715446],[86.2027893,28.079937],[86.2041092,28.0880146],[86.2112045,28.0934486],[86.2198334,28.096283],[86.2187347,28.1005421],[86.2136459,28.1088085],[86.2096405,28.1146164],[86.2048035,28.1217213],[86.2021103,28.1277561],[86.1993179,28.1347485],[86.1974106,28.1411495],[86.1960449,28.14641],[86.1951828,28.1504021],[86.1942139,28.1560154],[86.1911469,28.162466],[86.1841583,28.1694412],[86.1759415,28.1684895],[86.170845,28.1620579],[86.1716766,28.1544533],[86.1714859,28.147459],[86.1598892,28.1379795],[86.1557999,28.1355801],[86.1507187,28.1315575],[86.1400757,28.1243992],[86.1326828,28.1161194],[86.1285172,28.1055126],[86.1225891,28.0979691],[86.1193924,28.0940361],[86.1125412,28.0918732],[86.1037216,28.0921955],[86.0842056,28.0934105],[86.0769272,28.0870743],[86.0783768,28.0817871],[86.0821762,28.0732956],[86.0884018,28.0574474],[86.082634,28.046875],[86.0823059,28.0410366],[86.0828094,28.0326939],[86.0783997,28.0232449],[86.0812912,28.0139694],[86.0868149,28.0082989],[86.0934296,28.0000038],[86.0983429,27.9918957],[86.0998077,27.9862633],[86.1027069,27.9808769],[86.1051178,27.9744701],[86.1061401,27.9701996],[86.1077652,27.964468],[86.1090698,27.9544792],[86.111969,27.9512901],[86.117836,27.945612],[86.1195679,27.9444122],[86.1240768,27.9390621],[86.1268311,27.9339657],[86.1261292,27.9295177],[86.1147232,27.92589],[86.101059,27.9229279],[86.0901642,27.9198856],[86.0838394,27.9172401],[86.0794144,27.914957],[86.0740967,27.913147],[86.0689087,27.9098511],[86.0653,27.9060822],[86.0563812,27.9036999],[86.0465546,27.9041862],[86.0406265,27.9063969],[86.0398636,27.906641],[86.0373306,27.907259],[86.0332184,27.9079762],[86.0281219,27.9092789],[86.0229111,27.9110413],[86.0163803,27.9141617],[86.0108948,27.9168377],[86.0044403,27.9162846],[85.9961853,27.9145603],[85.9878998,27.9148979],[85.9818878,27.9180241],[85.9724197,27.9259205],[85.9616623,27.9331837],[85.9585495,27.9356098],[85.9509583,27.9404392],[85.9462814,27.941576],[85.9456253,27.9445095],[85.949501,27.9481125],[85.9523315,27.949646],[85.954834,27.9538918],[85.9556122,27.9578133],[85.9550705,27.9633961],[85.9573364,27.9699078],[85.9613419,27.9764786],[85.9705353,27.9830399],[85.9738083,27.9879055],[85.974762,27.9920502],[85.9730988,27.9977646],[85.970932,28.0000114],[85.9566422,28.0047226],[85.9467239,28.0148411],[85.9370499,28.0210438],[85.9316025,28.0282784],[85.9221115,28.0368099],[85.9129028,28.0451775],[85.9068527,28.0506039],[85.9000473,28.0548744],[85.8936615,28.0646515],[85.8953018,28.074995],[85.8977966,28.0809898],[85.900795,28.087677],[85.9008713,28.0986881],[85.8963165,28.1075726],[85.8884735,28.1113701],[85.8827286,28.1138191],[85.8741074,28.1176033],[85.8703918,28.1223717],[85.8668365,28.1309528],[85.8673248,28.1351738],[85.8638153,28.1480198],[85.859581,28.1526413],[85.8562393,28.1616306],[85.852211,28.1693764],[85.8429718,28.1802387],[85.8321686,28.1842575],[85.8276215,28.1874104],[85.8212204,28.1907501],[85.8131638,28.1927605],[85.8066254,28.1944523],[85.7891541,28.1990299],[85.7763062,28.206419],[85.7683868,28.2127914],[85.7633438,28.2167034],[85.755722,28.223547],[85.7530136,28.2313251],[85.7486343,28.2434998],[85.7445068,28.2504025],[85.740799,28.2605114],[85.7388611,28.2671337],[85.7371826,28.2737617],[85.7332458,28.2899914],[85.7341461,28.2973423],[85.7346878,28.3106537],[85.7345352,28.3189087],[85.7277222,28.3288383],[85.7261047,28.3392029],[85.7226105,28.3453445],[85.7193604,28.3526382],[85.7189331,28.3618088],[85.7170105,28.3672829],[85.7158585,28.3732319],[85.7103271,28.3770523],[85.705574,28.3811111],[85.694397,28.380722],[85.6879044,28.3806286],[85.6826935,28.3798943],[85.6806412,28.3796062],[85.6783295,28.3744164],[85.6771927,28.3626099],[85.6768494,28.3515091],[85.6697922,28.3460007],[85.6652145,28.3429108],[85.659874,28.3278103],[85.6577377,28.3203526],[85.6553802,28.3136387],[85.6516495,28.3008652],[85.6476135,28.291935],[85.6428375,28.284853],[85.6356125,28.2773304],[85.6271744,28.2675762],[85.6163406,28.258873],[85.6017914,28.2554092],[85.5960083,28.2583313],[85.5955353,28.2715492],[85.5978088,28.2815838],[85.5966415,28.2882175],[85.597168,28.3008404],[85.5883026,28.3025398],[85.5799713,28.3035583],[85.5712814,28.3036022],[85.5591736,28.3069],[85.5465164,28.31604],[85.5458679,28.3160686],[85.5355072,28.321619],[85.5264511,28.3280792],[85.5153122,28.3329449],[85.502861,28.3359833],[85.4940414,28.3390045],[85.4844208,28.3369865],[85.4750595,28.3351994],[85.4597397,28.3361835],[85.4519501,28.3371353],[85.4459839,28.3385353],[85.4337463,28.3333206],[85.4294739,28.3328819],[85.4269943,28.3324318],[85.416069,28.3295002],[85.4113693,28.322876],[85.4071732,28.3148727],[85.4027328,28.3084774],[85.3972473,28.3009396],[85.390976,28.2915707],[85.3821259,28.2858772],[85.3743362,28.2854519],[85.3686447,28.2853088],[85.3609085,28.2869091],[85.351738,28.2905922],[85.3478546,28.2967415],[85.3456345,28.3027916],[85.3358002,28.3025455],[85.3241043,28.2989216],[85.3141327,28.2908134],[85.3010864,28.2847767],[85.2886047,28.2829552],[85.2696304,28.2860718],[85.2666855,28.2931824],[85.2541275,28.296236],[85.2479706,28.2979736],[85.2463913,28.3033504],[85.2432098,28.3101311],[85.2360229,28.3175964],[85.2254562,28.3244419],[85.2185287,28.3294048],[85.2117996,28.3335533],[85.2025452,28.3375225],[85.190361,28.3311787],[85.1774902,28.3258953],[85.1663132,28.3274727],[85.1587448,28.3283482],[85.1506577,28.3286095],[85.144104,28.3293381],[85.1272507,28.3370037],[85.1206436,28.3406029],[85.1136246,28.3446617],[85.1116638,28.3542519],[85.1135559,28.3625355],[85.1166153,28.371315],[85.123497,28.3801594],[85.1243286,28.3867264],[85.1190033,28.4006596],[85.1149292,28.408411],[85.1139603,28.4139004],[85.1114883,28.4216671],[85.1085968,28.4353046],[85.1039581,28.444088],[85.1021652,28.4516926],[85.1004257,28.4604416],[85.1053314,28.4695644],[85.1124725,28.4765377],[85.1190948,28.4823971],[85.1273193,28.486681],[85.1460571,28.4868011],[85.1514282,28.4908028],[85.1578064,28.4961987],[85.1591949,28.5035629],[85.1627121,28.5161076],[85.1643829,28.5294533],[85.1680298,28.5357895],[85.177681,28.5362492],[85.1856384,28.5409832],[85.1875458,28.5483589],[85.1876297,28.5559311],[85.1892776,28.5633011],[85.1867294,28.5719719],[85.1812515,28.5938931],[85.1850433,28.5990105],[85.1895599,28.606205],[85.192276,28.6124477],[85.1939087,28.6207371],[85.1937408,28.6276131],[85.187561,28.6355305],[85.1858368,28.6421509],[85.1755829,28.6456337],[85.1602478,28.6437454],[85.1526031,28.647274],[85.1474609,28.6549797],[85.1394653,28.6621704],[85.1337662,28.6714687],[85.1236649,28.6793098],[85.116272,28.6830711],[85.1022339,28.6812],[85.086792,28.6726475],[85.0786667,28.6724472],[85.0653152,28.6763649],[85.0564423,28.6768837],[85.0460434,28.6652107],[85.03965,28.6600399],[85.0319748,28.6541557],[85.0246048,28.6469002],[85.0192947,28.6401443],[85.0057602,28.629324],[84.9985962,28.6239071],[84.9933472,28.6150856],[84.9893646,28.6078949],[84.9906387,28.5989723],[84.9858246,28.5936012],[84.9794006,28.5900307],[84.9695511,28.5880013],[84.959465,28.5850468],[84.9521027,28.5858574],[84.9470673,28.5909901],[84.9391708,28.5938148],[84.931076,28.5945683],[84.9182816,28.5954552],[84.9050522,28.5931187],[84.8967743,28.5908833],[84.887001,28.5860939],[84.8725281,28.581665],[84.8635406,28.5768909],[84.8492508,28.5754471],[84.8432159,28.5769253],[84.8317719,28.5856323],[84.8249054,28.5889282],[84.8154297,28.5926285],[84.8075027,28.59659],[84.7969208,28.6021004],[84.7902908,28.6063175],[84.7836685,28.6100769],[84.7765274,28.6138229],[84.7588272,28.6129837],[84.7521744,28.6131744],[84.7384949,28.6151447],[84.724678,28.6223354],[84.7169266,28.6290493],[84.7092285,28.6339264],[84.6904678,28.6378613],[84.6943665,28.6444588],[84.6994553,28.6566544],[84.6998062,28.6623974],[84.700119,28.6697464],[84.6939392,28.676033],[84.6802826,28.6794033],[84.6726379,28.6822128],[84.6631622,28.6857128],[84.6573486,28.6967869],[84.6495514,28.7047272],[84.6441116,28.7139244],[84.6380539,28.7265892],[84.6265335,28.733263],[84.6178436,28.7360477],[84.6087189,28.735611],[84.5917282,28.7366009],[84.5769043,28.7348843],[84.5631409,28.7412205],[84.5535583,28.7474232],[84.5434113,28.7464981],[84.5299911,28.7413692],[84.5161285,28.7424221],[84.5037994,28.7444267],[84.4920273,28.736805],[84.4819946,28.740469],[84.4768219,28.7474594],[84.4686661,28.7495594],[84.4607315,28.7530422],[84.4554672,28.7627831],[84.4552689,28.7628479],[84.4435959,28.7666283],[84.4373322,28.7749653],[84.4419861,28.7922535],[84.4414673,28.7947369],[84.4323502,28.8007736],[84.4315948,28.8080978],[84.430336,28.8149509],[84.428688,28.8259239],[84.4170914,28.8290882],[84.408432,28.8304844],[84.402832,28.8340168],[84.401062,28.8404007],[84.4123154,28.8480148],[84.4081726,28.855257],[84.402565,28.8590221],[84.3917847,28.8610535],[84.3765564,28.8658142],[84.3707657,28.866518],[84.3567505,28.8615723],[84.35112,28.8660221],[84.3404846,28.8717251],[84.3313675,28.8627796],[84.3209,28.8632088],[84.3115616,28.8691711],[84.30439,28.8726616],[84.2922897,28.8751125],[84.2821198,28.8821983],[84.2774811,28.8882751],[84.2728348,28.8943558],[84.265892,28.8987675],[84.2575378,28.8985558],[84.246788,28.8916283],[84.2360611,28.8918133],[84.2262115,28.8970699],[84.2244339,28.9112492],[84.2238083,28.9222488],[84.2214737,28.9293022],[84.2232513,28.938755],[84.2259064,28.9532814],[84.2293472,28.9597931],[84.2335663,28.9667835],[84.2361984,28.9739666],[84.2400894,28.9830132],[84.2403793,28.9899063],[84.2419662,28.9972897],[84.2412491,29.0032368],[84.2446442,29.0111237],[84.2451706,29.0189419],[84.2464371,29.0338211],[84.2445831,29.03722],[84.2388458,29.0437908],[84.2308655,29.047718],[84.2196884,29.0531673],[84.2038193,29.0500069],[84.1907349,29.0498981],[84.1881866,29.0555687],[84.1863708,29.0704365],[84.1867752,29.0816917],[84.190506,29.0875244],[84.1928864,29.0946999],[84.1981964,29.1081467],[84.1986465,29.1180267],[84.1994705,29.1247025],[84.1899261,29.1278973],[84.1825638,29.1286259],[84.1748352,29.132555],[84.172554,29.1380043],[84.1716919,29.1478481],[84.1703568,29.1563034],[84.1656189,29.1646709],[84.1650772,29.1729183],[84.1615753,29.1833839],[84.1635971,29.1930733],[84.1655197,29.1981716],[84.1748047,29.202774],[84.1832962,29.2075844],[84.1927795,29.2140236],[84.1973038,29.2198792],[84.1972733,29.2285976],[84.1949844,29.241848],[84.1867371,29.245306],[84.1801758,29.244175],[84.1773529,29.2436867],[84.1694641,29.2441711],[84.1610794,29.2439518],[84.1516647,29.2430191],[84.1363144,29.2394028],[84.1278381,29.2417068],[84.1204071,29.2442627],[84.1120682,29.2578125],[84.1157455,29.2652512],[84.1181488,29.2715111],[84.1111908,29.2830334],[84.1005859,29.293766],[84.0901642,29.298996],[84.0764465,29.2935829],[84.0718765,29.2891006],[84.0637665,29.2884254],[84.0577621,29.2949181],[84.0501938,29.3011398],[84.0407715,29.3004303],[84.0325317,29.295845],[84.0232773,29.2905464],[84.0156555,29.2907982],[84.008728,29.2935944],[84,29.2945004],[83.9933853,29.2980995],[83.9902573,29.2997398],[83.9921494,29.3033924],[83.9953842,29.3088646],[83.9959946,29.3145981],[83.9905624,29.3201656],[83.9822235,29.3246174],[83.9743805,29.3272266],[83.9662552,29.3286934],[83.9612274,29.3264503],[83.955101,29.3210068],[83.9505768,29.316925],[83.9468842,29.315815],[83.9429321,29.3151684],[83.937706,29.3168316],[83.9304047,29.3205814],[83.9154816,29.3246384],[83.9083633,29.322876],[83.899353,29.3172302],[83.8943176,29.3142986],[83.8840408,29.3118782],[83.8748322,29.3105927],[83.8714066,29.3101673],[83.8624344,29.307045],[83.8550339,29.3039055],[83.847641,29.3007622],[83.8364563,29.3005085],[83.8308334,29.3013878],[83.8232117,29.3007736],[83.8155594,29.2980938],[83.8128967,29.2953625],[83.8096695,29.2896538],[83.8046036,29.2837353],[83.8003464,29.2798729],[83.7973938,29.2748528],[83.797348,29.2716389],[83.799118,29.2661133],[83.8016739,29.260582],[83.7978897,29.2525826],[83.7917938,29.2478199],[83.7817764,29.2446995],[83.7754517,29.2431526],[83.7688828,29.2422962],[83.7617798,29.2412148],[83.754715,29.2433434],[83.7442322,29.2443562],[83.7374115,29.2448788],[83.7255783,29.2433777],[83.718483,29.2427521],[83.7140045,29.241415],[83.7087173,29.2387066],[83.7039413,29.2343884],[83.6999664,29.2309799],[83.6958389,29.2247295],[83.6894226,29.2199612],[83.6881638,29.2185879],[83.6847687,29.2111435],[83.6781845,29.209362],[83.669487,29.2062244],[83.6629028,29.2042141],[83.6594238,29.1982746],[83.6593094,29.188406],[83.6591034,29.1835117],[83.6584091,29.1799965],[83.6533279,29.1705532],[83.645668,29.1657982],[83.6348877,29.1638203],[83.6268005,29.1675587],[83.6210861,29.1724262],[83.6179581,29.1745167],[83.6124802,29.1773167],[83.6046143,29.1771488],[83.5914841,29.1765652],[83.5823593,29.1814575],[83.5774765,29.1906757],[83.5764771,29.195734],[83.5728683,29.2017288],[83.5708008,29.2042713],[83.5642395,29.2047806],[83.559227,29.2020645],[83.55159,29.1995983],[83.5426712,29.199894],[83.5327911,29.2086906],[83.5212021,29.2215595],[83.5212021,29.226675],[83.5225677,29.2349339],[83.5216064,29.243433],[83.5156326,29.2499046],[83.5109482,29.2542973],[83.5091324,29.2561474],[83.5020752,29.259182],[83.4997253,29.2605762],[83.4981842,29.2642612],[83.4971695,29.2674809],[83.4925079,29.2744007],[83.4851913,29.2781239],[83.4812469,29.2774639],[83.4746704,29.2763634],[83.4691696,29.2777805],[83.4610825,29.2828846],[83.4579849,29.2891026],[83.4525223,29.2944202],[83.4491425,29.2981148],[83.4473267,29.3001938],[83.4447556,29.3064079],[83.4439926,29.308939],[83.4470291,29.3245239],[83.4465408,29.3282013],[83.447403,29.3357716],[83.4458771,29.3412895],[83.4396439,29.3489056],[83.4336243,29.3516998],[83.4218521,29.3575172],[83.4158707,29.3644428],[83.4156494,29.3690357],[83.4178162,29.3756771],[83.4199677,29.3811722],[83.4224014,29.3878117],[83.4251022,29.3962879],[83.4243622,29.4008827],[83.4202347,29.4098606],[83.4150238,29.4147148],[83.4048157,29.4200611],[83.3972015,29.4214859],[83.3898392,29.4213066],[83.3785629,29.424818],[83.3764801,29.4278145],[83.3689499,29.4381924],[83.3673935,29.441185],[83.3590393,29.4485817],[83.3548584,29.4520493],[83.348587,29.4566784],[83.3481293,29.4644852],[83.3471375,29.4713764],[83.3479691,29.4764214],[83.346962,29.4814777],[83.3428268,29.4904518],[83.3423157,29.4927521],[83.329483,29.4994831],[83.320816,29.5020599],[83.3118668,29.5016518],[83.3021164,29.5007896],[83.2879105,29.5008698],[83.2821198,29.5015926],[83.276619,29.5041447],[83.2732315,29.5089836],[83.2693481,29.5172672],[83.2659836,29.5248604],[83.2636795,29.5326786],[83.2608109,29.5361366],[83.2603226,29.5411892],[83.26194,29.5462284],[83.2640686,29.5494308],[83.2719803,29.5509949],[83.2780533,29.5527973],[83.2770462,29.5592289],[83.2677078,29.5671062],[83.2619019,29.5756092],[83.2526932,29.5770359],[83.244278,29.5786858],[83.2348099,29.580801],[83.2308655,29.5815086],[83.2229996,29.5863686],[83.2174988,29.5905304],[83.210968,29.597908],[83.2075653,29.6009083],[83.204155,29.6029911],[83.1975708,29.6037121],[83.1933517,29.6030426],[83.1848831,29.5980339],[83.1740417,29.5916576],[83.1679916,29.5923767],[83.1648331,29.5933075],[83.161705,29.5986004],[83.1627884,29.6022682],[83.1646652,29.6070805],[83.1654816,29.6109791],[83.1628723,29.6146622],[83.1570969,29.6179028],[83.151825,29.6183853],[83.1460419,29.6202488],[83.1281357,29.6221638],[83.1189041,29.6199093],[83.1143951,29.6155663],[83.1080475,29.6116905],[83.0995941,29.6075935],[83.0919342,29.604641],[83.0845413,29.6016884],[83.0792923,29.6051521],[83.0738297,29.6105404],[83.0677719,29.6175919],[83.0601578,29.6231289],[83.0504379,29.6282139],[83.0446243,29.6346474],[83.0399857,29.6436329],[83.0255356,29.6528664],[83.0202789,29.6558666],[83.0111847,29.6621571],[83.0051575,29.6638622],[82.9889603,29.6656151],[82.9794769,29.6663322],[82.9723511,29.6654396],[82.9649658,29.6645412],[82.9549561,29.6666393],[82.94944,29.6703281],[82.9465561,29.6744671],[82.9458008,29.6813545],[82.9437103,29.6871891],[82.9426727,29.6900864],[82.9376984,29.6979046],[82.9300613,29.7006836],[82.9166412,29.7057686],[82.9073944,29.7030392],[82.900528,29.7005329],[82.8931351,29.6975689],[82.8817673,29.6902504],[82.8733215,29.687746],[82.8643417,29.6845531],[82.8535385,29.685955],[82.8427353,29.6880474],[82.8311386,29.6889896],[82.8261414,29.6935883],[82.8213654,29.7003746],[82.8192139,29.7052937],[82.81987,29.711504],[82.8198853,29.7149467],[82.8159409,29.7195454],[82.8067169,29.7209396],[82.7993317,29.722332],[82.7932663,29.7225723],[82.7882538,29.7221203],[82.7784119,29.7264481],[82.7706223,29.7294865],[82.7675171,29.7327499],[82.7664108,29.7389126],[82.7650986,29.7430458],[82.7608948,29.7478733],[82.7593307,29.7543011],[82.7514343,29.7625771],[82.7451096,29.7662601],[82.7321854,29.7667351],[82.7274323,29.7655926],[82.7202988,29.7635365],[82.7086868,29.7630901],[82.6999817,29.7628708],[82.691803,29.7644863],[82.6875916,29.7695389],[82.6873322,29.7727528],[82.6894608,29.7787209],[82.6992416,29.7874317],[82.7150955,29.7975121],[82.7209091,29.7993412],[82.7367706,29.808733],[82.7373047,29.8101082],[82.7333679,29.8211308],[82.7270508,29.827795],[82.716774,29.836071],[82.7054291,29.8448067],[82.6980438,29.848484],[82.6872253,29.8514786],[82.6790314,29.848505],[82.6711044,29.8448391],[82.662117,29.841404],[82.6512833,29.836132],[82.6425629,29.8331547],[82.63517,29.8310947],[82.6277771,29.8331623],[82.6217041,29.8375263],[82.6235657,29.8432636],[82.6307068,29.8503761],[82.6381073,29.8577156],[82.6407623,29.8641415],[82.6428833,29.8703365],[82.6312714,29.87677],[82.6236115,29.8770046],[82.6096191,29.8820591],[82.6032867,29.8933086],[82.5907059,29.9112072],[82.57267,29.9316444],[82.5650101,29.9424324],[82.5597305,29.9520702],[82.5518036,29.958498],[82.53965,29.9628582],[82.5330353,29.9630871],[82.5248413,29.9612484],[82.5177002,29.9578037],[82.5129395,29.9520645],[82.5081787,29.9493084],[82.4970779,29.9497643],[82.4862366,29.9518223],[82.478508,29.9585705],[82.4751358,29.9623737],[82.4738083,29.9678802],[82.4682541,29.9752216],[82.4608536,29.9802647],[82.450798,29.9830132],[82.4402237,29.9848404],[82.4344025,29.9887371],[82.4285812,29.9926319],[82.420372,30.0027199],[82.4076691,30.0116596],[82.3957596,30.0205956],[82.3793488,30.0283775],[82.374321,30.0263042],[82.3719482,30.018959],[82.3698425,30.0136757],[82.3661423,30.0125237],[82.3629608,30.017107],[82.3499756,30.0306301],[82.3433533,30.0388813],[82.3354034,30.0459843],[82.3269348,30.0461979],[82.315567,30.0397511],[82.3086853,30.0385914],[82.2954559,30.0413189],[82.2917404,30.0442963],[82.2856445,30.0511665],[82.279274,30.0601063],[82.2678833,30.0649014],[82.2554398,30.0667095],[82.2419357,30.0673656],[82.2276459,30.0666428],[82.211647,30.0688438],[82.1983414,30.0682659],[82.1799774,30.0646763],[82.1677933,30.077034],[82.1693649,30.0830059],[82.1770172,30.0924397],[82.1820221,30.0988808],[82.1835861,30.1066875],[82.1827393,30.1232109],[82.1853714,30.1284962],[82.1925125,30.1337948],[82.199379,30.1402416],[82.2054443,30.1476021],[82.2033157,30.1528759],[82.1977997,30.1572208],[82.1937866,30.1595554],[82.1843185,30.1602688],[82.183403,30.1668205],[82.1844406,30.1727905],[82.1862869,30.1769276],[82.1844025,30.1861019],[82.1745834,30.1897469],[82.1671677,30.1899529],[82.1541748,30.1908321],[82.1501923,30.1931152],[82.1435394,30.2008972],[82.134758,30.2107391],[82.1307526,30.2199059],[82.1235809,30.2230949],[82.1113739,30.2271881],[82.1039276,30.232439],[82.0993958,30.239769],[82.1017609,30.2445946],[82.1094131,30.2547188],[82.114418,30.2620811],[82.1173019,30.2728767],[82.1177902,30.2829781],[82.1203766,30.3011169],[82.1211166,30.3153496],[82.117363,30.3268108],[82.1120071,30.3382683],[82.1053467,30.3465061],[82.0979004,30.3503838],[82.0904617,30.3512764],[82.0785141,30.3514633],[82.070816,30.3512039],[82.066864,30.3454514],[82.0597305,30.3378506],[82.0501938,30.3329964],[82.0393066,30.3354797],[82.0240479,30.3348312],[82.0212708,30.3321934],[82.0072556,30.3222656],[81.9990311,30.3220024],[81.9924011,30.3222027],[81.9814835,30.3283539],[81.972702,30.3331318],[81.9647064,30.3402119],[81.9553528,30.3514156],[81.9534683,30.3564548],[81.9463043,30.3566513],[81.9381027,30.350647],[81.9293594,30.3485413],[81.9096832,30.3539543],[81.9011765,30.3564358],[81.8889389,30.3614235],[81.8766937,30.3666382],[81.8716125,30.3721199],[81.8665466,30.3759937],[81.8590927,30.3787117],[81.8527298,30.3770695],[81.8418579,30.3756351],[81.826973,30.3778477],[81.8205948,30.3785],[81.8112793,30.3823509],[81.7985153,30.3852596],[81.7862854,30.3872547],[81.778595,30.3858318],[81.7685013,30.3855438],[81.7549286,30.389822],[81.748024,30.3906975],[81.7408371,30.3927193],[81.7357559,30.3975048],[81.7330475,30.4036865],[81.7277069,30.4080143],[81.7106781,30.4122658],[81.7077332,30.4152298],[81.6882477,30.4265785],[81.6845322,30.4263248],[81.6664505,30.4284992],[81.6597977,30.4298325],[81.6453934,30.4370766],[81.6344528,30.442049],[81.6227417,30.4447212],[81.6158524,30.4430637],[81.615921,30.4350338],[81.6183395,30.4316082],[81.6170883,30.423336],[81.6147385,30.4189587],[81.6097183,30.4157104],[81.6065292,30.4156857],[81.6006775,30.416563],[81.5966797,30.4183712],[81.5820541,30.4203281],[81.5732269,30.4264603],[81.5654984,30.4291553],[81.5612869,30.4254532],[81.5586929,30.4187775],[81.5587616,30.4112015],[81.5556335,30.4052124],[81.5490341,30.4008007],[81.5466766,30.396883],[81.5456848,30.3902187],[81.5491943,30.3842773],[81.5508499,30.377636],[81.5474472,30.3723316],[81.5378799,30.3727169],[81.5286102,30.3705769],[81.5257111,30.3753281],[81.5197906,30.3767052],[81.5118103,30.3782501],[81.4868164,30.3819504],[81.4694519,30.3919067],[81.4515381,30.4036922],[81.4421539,30.4118748],[81.4312363,30.4149952],[81.4157944,30.4183064],[81.4087906,30.4167538],[81.4047089,30.4117832],[81.3992233,30.4027843],[81.4008865,30.3966026],[81.4067841,30.3913765],[81.4190674,30.3855152],[81.4230881,30.3821049],[81.4231262,30.3784332],[81.4202423,30.3747387],[81.4131165,30.3707752],[81.4011993,30.368145],[81.3958893,30.3683281],[81.3964615,30.3644333],[81.3986588,30.3580246],[81.3998108,30.3495445],[81.3988419,30.3412724],[81.3976135,30.3323097],[81.3952866,30.3267841],[81.3974915,30.3194561],[81.4004593,30.3148937],[81.4073792,30.3128872],[81.414566,30.3104248],[81.4172592,30.3070068],[81.413063,30.3026085],[81.404129,30.2944984],[81.4041901,30.2889881],[81.4100647,30.285141],[81.4149246,30.2778378],[81.4139328,30.2711735],[81.4070969,30.2658348],[81.3976593,30.2556515],[81.3914337,30.2432041],[81.3915558,30.2321873],[81.3911285,30.2225456],[81.3936234,30.2131557],[81.3950729,30.2095222],[81.3871536,30.1988697],[81.3742752,30.1891136],[81.3642654,30.1835155],[81.3531647,30.1811199],[81.3434601,30.1727676],[81.3379974,30.1633053],[81.3338318,30.1573009],[81.3240738,30.1537666],[81.3087158,30.1527023],[81.288826,30.154808],[81.2758179,30.1567478],[81.2636414,30.1559391],[81.2603073,30.1493187],[81.2563705,30.1439323],[81.2577515,30.1395855],[81.2687149,30.1314316],[81.2762146,30.1246166],[81.2796936,30.1212082],[81.2889328,30.1020184],[81.2881851,30.0983372],[81.2861633,30.0902863],[81.2850723,30.0844975],[81.2818604,30.0734901],[81.2790375,30.0665741],[81.2738266,30.0594082],[81.2678299,30.0522366],[81.2647247,30.0464668],[81.256073,30.0399551],[81.2481842,30.0357418],[81.2416306,30.0310898],[81.2427444,30.026968],[81.251297,30.0197067],[81.249527,30.0132637],[81.2416229,30.0104313],[81.2313309,30.0087204],[81.2178574,30.007206],[81.2103806,30.012867],[81.2002792,30.0164356],[81.1934738,30.0106277],[81.1837082,30.0086899],[81.1662445,30.0094242],[81.1548615,30.0097618],[81.1276627,30.0197678],[81.122673,30.022728],[81.1058426,30.034708],[81.092598,30.054533],[81.0938187,30.0618896],[81.0986481,30.0759449],[81.1014709,30.082634],[81.0975876,30.0952148],[81.0928192,30.0953903],[81.0829315,30.0966587],[81.0823212,30.1031666],[81.0821991,30.1123619],[81.0816345,30.1189079],[81.083252,30.1336212],[81.0788116,30.1518383],[81.0658112,30.1600571],[81.0560303,30.1686935],[81.0493851,30.1800728],[81.0447769,30.1857052],[81.0401611,30.1928101],[81.037262,30.2014942],[81.0387268,30.2097721],[81.0309219,30.2179451],[81.0306091,30.2211552],[81.0315475,30.2341003],[81.0323257,30.2416534],[81.0296936,30.2473106],[81.0195694,30.2506351],[81.0059967,30.2539196],[80.9968872,30.2600098],[80.9843521,30.264679],[80.9726562,30.2661476],[80.9615021,30.2671585],[80.946701,30.2639961],[80.9307861,30.2640305],[80.9232712,30.2696762],[80.924202,30.2779484],[80.9190369,30.2859173],[80.9090652,30.2958946],[80.9013062,30.2999287],[80.8821793,30.3010635],[80.8688354,30.3059425],[80.8562775,30.3112888],[80.8461761,30.3123074],[80.8328857,30.3135109],[80.8232574,30.317728],[80.8097687,30.3203793],[80.7938614,30.3304386],[80.7841568,30.3388023],[80.7827225,30.3454399],[80.7767105,30.3549995],[80.7661819,30.3651848],[80.7575302,30.3742485],[80.7467422,30.3837395],[80.7362137,30.3936939],[80.7294312,30.4014053],[80.7186432,30.4106655],[80.7098312,30.4135265],[80.7002563,30.4138508],[80.6851959,30.4174747],[80.6776276,30.4258423],[80.6653366,30.4348736],[80.6522522,30.4427471],[80.6392899,30.449934],[80.6261215,30.4575462],[80.6151962,30.4592209],[80.6054993,30.4661942],[80.5946121,30.4655743],[80.5834579,30.4651775],[80.5747223,30.4634399],[80.5660629,30.4578018],[80.5505066,30.4511375],[80.5349426,30.4542027],[80.5321045,30.4547615],[80.5234756,30.4608269],[80.5185471,30.4683247],[80.5032349,30.4808388],[80.4820099,30.4893284],[80.4644089,30.4904289],[80.4430161,30.4989815],[80.4356613,30.5048904],[80.4235153,30.5136471],[80.4050064,30.5213814],[80.3949432,30.5191517],[80.3845367,30.5210457],[80.3732834,30.524992],[80.3578644,30.5247364],[80.3502045,30.5220852],[80.3430939,30.5255814],[80.3369751,30.5318089],[80.3264008,30.5405064],[80.3192825,30.5500259],[80.3165131,30.5550289],[80.3115158,30.564127],[80.302681,30.5667305],[80.2861404,30.5687428],[80.266983,30.5688705],[80.2590332,30.567585],[80.2513351,30.5665321],[80.2397079,30.5748215],[80.2233658,30.5798149],[80.2118149,30.5844307],[80.1985168,30.5841942],[80.1884918,30.5803413],[80.1765671,30.5782928],[80.1683502,30.5767651],[80.1567764,30.5712776],[80.1420822,30.5625172],[80.1321182,30.5563679],[80.123024,30.5584965],[80.1093292,30.5637512],[80.0974655,30.5701885],[80.087204,30.5746574],[80.0815048,30.582201],[80.0757065,30.5897522],[80.0641785,30.5929794],[80.0535049,30.5941544],[80.0417328,30.5966835],[80.0368042,30.6021004],[80.0361862,30.6165485],[80.0343933,30.6243191],[80.0285187,30.6359119],[80.0200882,30.642868],[80.0164795,30.6487675],[80.0122375,30.6589947],[80.0108109,30.6624298],[80.0067291,30.6660252],[79.9932175,30.6735668],[79.9883881,30.6750793],[79.9759674,30.6817245],[79.9662781,30.6854382],[79.9613571,30.6906204],[79.9625015,30.6977577],[79.9660339,30.7056313],[79.9690857,30.7114296],[79.9682922,30.7215137],[79.9660416,30.726059],[79.9537125,30.7412071],[79.9524994,30.746088],[79.9544449,30.7536602],[79.9549789,30.7621346],[79.9514084,30.7769604],[79.9391708,30.7865887],[79.9234848,30.7947693],[79.9173126,30.7962532],[79.9034042,30.7978115],[79.894249,30.8013],[79.8903732,30.8065014],[79.8919983,30.8148193],[79.8955994,30.8151512],[79.8996582,30.815834],[79.9060516,30.8189812],[79.9079895,30.8265934],[79.9062195,30.8329868],[79.9023056,30.8397923],[79.8908539,30.849205],[79.8824387,30.8545418],[79.8746109,30.858057],[79.863739,30.8553123],[79.8515396,30.8525391],[79.8323898,30.8503113],[79.8227005,30.8533249],[79.8179626,30.8607998],[79.8047714,30.8779087],[79.7962952,30.8924332],[79.7845001,30.9057064],[79.7709427,30.9200478],[79.7635422,30.9276066],[79.7547379,30.9370613],[79.7449417,30.9435081],[79.7396011,30.9433956],[79.7272949,30.9442825],[79.7144089,30.9463043],[79.7037964,30.9572258],[79.6987457,30.9624596],[79.6941605,30.9680443],[79.6865005,30.9734116],[79.6784973,30.9788094],[79.6704025,30.9816189],[79.665596,30.9812832],[79.6633606,30.9754963],[79.6622543,30.9674377],[79.6592178,30.9616337],[79.6446075,30.9585609],[79.6394196,30.9533978],[79.6323395,30.9486523],[79.6214523,30.9465752],[79.6107101,30.9392223],[79.6048431,30.9299088],[79.6019135,30.9234562],[79.596283,30.9191418],[79.592926,30.9264317],[79.5917664,30.9296188],[79.5929565,30.9344654],[79.5912018,30.9397049],[79.5827789,30.9445667],[79.5558167,30.9529114],[79.5457458,30.9591122],[79.5419922,30.9686661],[79.5340042,30.9767475],[79.5273285,30.9853191],[79.514946,30.9972],[79.5109558,31.0056],[79.5101013,31.01614],[79.5051956,31.0286636],[79.4979706,31.0316639],[79.479393,31.0324173],[79.4727478,31.0313435],[79.4573135,31.0289192],[79.4424438,31.0255871],[79.4325638,31.0251274],[79.4236755,31.0274448],[79.4188461,31.0365105],[79.4184723,31.0484371],[79.4205399,31.0592747],[79.4179459,31.0654106],[79.4041901,31.068985],[79.3935852,31.065979],[79.3797073,31.0566978],[79.3735809,31.047369],[79.3679352,31.0398903],[79.3621521,31.0369473],[79.3560944,31.033865],[79.3476334,31.0309086],[79.3256531,31.0244083],[79.3167648,31.0182209],[79.3079834,31.0085964],[79.3110886,31.0033932],[79.320816,31.0001888],[79.3291702,30.9980946],[79.3314056,30.9951668],[79.3276062,30.9884167],[79.3271027,30.9707317],[79.3262634,30.9635944],[79.3205185,30.9597855],[79.3170547,30.9592381],[79.3117065,30.9593372],[79.3072968,30.9635906],[79.2927933,30.9659901],[79.2797699,30.9638329],[79.2679291,30.9582596],[79.2514954,30.9541798],[79.2363129,30.9528828],[79.2201843,30.9559212],[79.2118683,30.9648952],[79.2095184,30.9792976],[79.2065125,30.9893208],[79.2026901,30.9997845],[79.1956253,31.0113125],[79.1796799,31.0164185],[79.167984,31.014513],[79.157486,31.0087357],[79.1477509,31.0041237],[79.1362991,31.0029125],[79.1261597,31.0024204],[79.1128769,31.0000114],[79.1016998,30.9985752],[79.0903549,31.0019512],[79.080307,31.0065098],[79.0710144,31.0124645],[79.0564423,31.0240173],[79.0470657,31.0322628],[79.0386581,31.0357132],[79.0264816,31.039753],[79.0097809,31.043211],[78.9992142,31.04706],[78.995285,31.0522327],[78.99086,31.0638218],[78.9893799,31.075489],[78.9885635,31.0832748],[78.9841385,31.0948601],[78.9771805,31.1024799],[78.973877,31.1124897],[78.9762878,31.1274757],[78.9825592,31.1393509],[78.993927,31.1538887],[78.9961853,31.1619282],[78.993576,31.1679268],[78.9767075,31.1759186],[78.9594421,31.1876698],[78.953331,31.195097],[78.9479599,31.2008514],[78.9474716,31.2068062],[78.9427338,31.2119598],[78.93293,31.2165108],[78.9277878,31.2253246],[78.9243088,31.2325745],[78.9168396,31.2463722],[78.9091339,31.2518997],[78.8989334,31.259882],[78.8926315,31.2636108],[78.8878326,31.2701359],[78.8817749,31.2819042],[78.8781738,31.2923641],[78.8724213,31.3029938],[78.8683853,31.3106861],[78.8589859,31.3095779],[78.8539886,31.3037033],[78.8553543,31.2914486],[78.8509674,31.2899132],[78.8457642,31.2908993],[78.8279572,31.2944107],[78.8222961,31.2954025],[78.812973,31.3008785],[78.8048706,31.3024864],[78.789238,31.3045712],[78.7825546,31.3110371],[78.7744675,31.3193016],[78.7628479,31.3345585],[78.763504,31.3396492],[78.7621078,31.3457336],[78.7534866,31.356348],[78.748703,31.3621788],[78.7486115,31.3715878],[78.7532501,31.3836555],[78.7579117,31.3952637],[78.7641449,31.407835],[78.7743378,31.4221249],[78.7812576,31.4308147],[78.7895432,31.4390831],[78.7904968,31.4420929],[78.7801514,31.4477348],[78.7728958,31.4530697],[78.7656784,31.4592934],[78.7600861,31.4722157],[78.7506332,31.4806652],[78.7401962,31.479681],[78.7250519,31.482233],[78.7199173,31.4901161],[78.7191696,31.5024891],[78.7208939,31.5135555],[78.7302246,31.5294304],[78.7417526,31.5373325],[78.7521286,31.5401535],[78.7642136,31.5404968],[78.776535,31.5486488],[78.7848282,31.5569172],[78.7952652,31.5652428],[78.8088531,31.5757217],[78.819809,31.5847511],[78.8302765,31.592062],[78.8412933,31.5997066],[78.8475418,31.6071072],[78.8334198,31.6163406],[78.8177032,31.6264591],[78.8090897,31.633791],[78.8001251,31.6449566],[78.7958832,31.6535759],[78.7946396,31.6602364],[78.7962036,31.6687698],[78.7978592,31.6747818],[78.7944489,31.6795044],[78.7829971,31.6764297],[78.7698746,31.6728249],[78.7547073,31.6770077],[78.749588,31.6842041],[78.7469635,31.6965218],[78.7401657,31.7146702],[78.7345734,31.7220974],[78.7286072,31.7329445],[78.721489,31.7499523],[78.7152634,31.7613049],[78.7122803,31.7660294],[78.6984558,31.7811871],[78.6888275,31.7933006],[78.6826172,31.8004646],[78.6652374,31.8107471],[78.6590881,31.8163052],[78.6488876,31.8222046],[78.6502533,31.8353233],[78.6507568,31.836031],[78.6576614,31.8458652],[78.6629868,31.8545113],[78.6704025,31.8648224],[78.6789093,31.8680496],[78.6917038,31.8718624],[78.6999435,31.875082],[78.7150497,31.8819408],[78.7254868,31.8840752],[78.7374191,31.8878975],[78.7397079,31.8982544],[78.7495651,31.9104576],[78.7591553,31.9205952],[78.7665787,31.9311314],[78.7637329,31.9420643],[78.7540588,31.9479866],[78.7430725,31.9529514],[78.7316666,31.9639587],[78.7257156,31.9679813],[78.7080307,31.9797115],[78.6897964,31.990202],[78.6862793,31.9907284],[78.6800461,31.9929523],[78.6758423,31.9951668],[78.670639,32.0000114],[78.6642761,32.001976],[78.6592026,32.0052757],[78.6533127,32.0079308],[78.6521683,32.0087891],[78.6510391,32.0094147],[78.6439285,32.0103912],[78.6419907,32.0109711],[78.6322556,32.0143242],[78.6306076,32.0146904],[78.6280746,32.0159264],[78.6182709,32.020195],[78.6171265,32.0210495],[78.6157074,32.0218887],[78.6148071,32.0229874],[78.6047516,32.0270119],[78.6035843,32.0280952],[78.6021652,32.0289345],[78.5931091,32.0338593],[78.5935516,32.0391388],[78.5935287,32.0400543],[78.5953217,32.0451202],[78.5981903,32.0499763],[78.6040421,32.0539513],[78.6073303,32.0547333],[78.6080246,32.0569839],[78.6079788,32.0592766],[78.6063156,32.0617752],[78.603035,32.0647125],[78.602211,32.0656166],[78.595726,32.066906],[78.592392,32.0661125],[78.5893631,32.0679741],[78.5861511,32.0710106],[78.5851974,32.0727959],[78.5807724,32.0773697],[78.579895,32.0782394],[78.5783691,32.080452],[78.5774002,32.0824661],[78.567009,32.0906067],[78.5649948,32.0920982],[78.5640793,32.0934258],[78.5554123,32.1002884],[78.5533447,32.1024666],[78.5527344,32.1033516],[78.5515289,32.1048927],[78.5506134,32.1062202],[78.542717,32.1101341],[78.5407791,32.1107101],[78.5397186,32.1104202],[78.5325241,32.1123085],[78.5308685,32.1126709],[78.5288773,32.1139336],[78.5277405,32.1145592],[78.5205841,32.1194344],[78.5204926,32.1205788],[78.5174332,32.1284485],[78.5170517,32.1298065],[78.5166016,32.1320801],[78.5154114,32.1402893],[78.5144196,32.1425323],[78.5137711,32.1438713],[78.509697,32.147316],[78.5085144,32.1486282],[78.5040512,32.1502075],[78.4980469,32.1473312],[78.495697,32.1462746],[78.4849625,32.1415176],[78.4828415,32.140934],[78.4724121,32.1391792],[78.4708328,32.1386261],[78.4689407,32.1385193],[78.4588699,32.1425285],[78.4571228,32.1440392],[78.4553909,32.1453171],[78.4542236,32.1464005],[78.4487152,32.1509056],[78.4482574,32.1531792],[78.447052,32.1547203],[78.4471741,32.1565666],[78.4472351,32.1659966],[78.4468002,32.1680412],[78.4465942,32.1705589],[78.4475098,32.1827965],[78.4476547,32.1844139],[78.4471436,32.1873741],[78.4467087,32.1894188],[78.4406662,32.192791],[78.4345703,32.1950226],[78.4286041,32.1978035],[78.4281158,32.2001801],[78.4301071,32.2033195],[78.4352722,32.2103653],[78.4365234,32.2115898],[78.4504929,32.2234383],[78.452034,32.2244492],[78.453064,32.2251968],[78.464447,32.2320671],[78.4659958,32.233078],[78.4672928,32.2338448],[78.4796829,32.2416916],[78.4817276,32.2431908],[78.4873123,32.2481117],[78.4882812,32.2495461],[78.4884415,32.2509346],[78.4935608,32.2615776],[78.4951706,32.2720184],[78.4957809,32.2745857],[78.4963913,32.2771492],[78.5015488,32.2873306],[78.502182,32.289669],[78.5064697,32.3004951],[78.5074234,32.3021584],[78.5078964,32.3031044],[78.5078049,32.3042488],[78.5089111,32.3107491],[78.5081406,32.313694],[78.5079956,32.3155251],[78.5028152,32.3191376],[78.5022049,32.3200226],[78.5010681,32.3206444],[78.4930954,32.3252449],[78.4911499,32.3258209],[78.4818192,32.3271217],[78.4787979,32.3308563],[78.4787292,32.3317719],[78.4786377,32.3329163],[78.4828873,32.337532],[78.4832764,32.3393936],[78.4849854,32.3452377],[78.485321,32.3477898],[78.4847412,32.3516655],[78.4842682,32.3541679],[78.4811249,32.3595047],[78.4683838,32.3693428],[78.4620514,32.373806],[78.4594727,32.3754959],[78.4588394,32.3766098],[78.4557495,32.3812561],[78.455368,32.3826141],[78.4548035,32.386261],[78.4599686,32.3930016],[78.4692001,32.3965263],[78.4739532,32.4016304],[78.4746017,32.4037361],[78.4748001,32.4046669],[78.4752655,32.4056129],[78.4736633,32.4188576],[78.4735489,32.4202309],[78.4734039,32.4220619],[78.4726181,32.4319038],[78.472435,32.4341927],[78.4726105,32.4353523],[78.4675293,32.4444847],[78.4665756,32.4462738],[78.4659348,32.4473839],[78.4586792,32.4531746],[78.4574051,32.4538803],[78.4558258,32.4553032],[78.4531708,32.464119],[78.4515381,32.4709244],[78.4507599,32.4738693],[78.4503708,32.4752274],[78.4424591,32.482357],[78.4412994,32.4832077],[78.4344788,32.4901695],[78.4335403,32.4917259],[78.4329224,32.4926109],[78.4249268,32.5041008],[78.4234238,32.5058517],[78.4159698,32.5116196],[78.4111938,32.5153465],[78.4076385,32.5167427],[78.4033203,32.5190849],[78.3991241,32.5210762],[78.3962173,32.5245018],[78.3968277,32.5306396],[78.3994293,32.5366516],[78.4005661,32.5394783],[78.4007568,32.5404091],[78.4090271,32.5526161],[78.4104462,32.5552292],[78.4122009,32.5571747],[78.4126511,32.5583496],[78.4256058,32.5664635],[78.4260712,32.5674095],[78.4346542,32.5690575],[78.436554,32.5691681],[78.4376373,32.5692329],[78.4468994,32.5725288],[78.4484863,32.573082],[78.4534378,32.5758972],[78.4552841,32.5766945],[78.4563141,32.577446],[78.4616776,32.5784454],[78.4630356,32.5785217],[78.4646378,32.578846],[78.4706573,32.5785027],[78.473175,32.5777283],[78.4803467,32.5765343],[78.483345,32.5764771],[78.4846878,32.5767822],[78.4945145,32.5798798],[78.4963531,32.580677],[78.497406,32.5811958],[78.498436,32.5819473],[78.5043793,32.585968],[78.5054016,32.5867157],[78.5096893,32.5911026],[78.5102997,32.5936661],[78.5114899,32.5992546],[78.5126801,32.6013908],[78.5134201,32.6023521],[78.5141602,32.6033173],[78.519577,32.6070786],[78.5337677,32.606739],[78.5339661,32.6076698],[78.5428238,32.6093292],[78.5449982,32.6094513],[78.5502014,32.6125069],[78.5512161,32.6134834],[78.5580292,32.6168633],[78.5638351,32.615818],[78.5658417,32.6145515],[78.571701,32.6128159],[78.5728378,32.6121902],[78.5783539,32.6148033],[78.5790787,32.6159935],[78.5797653,32.6176453],[78.5802383,32.6220398],[78.580162,32.6229553],[78.5787888,32.6300049],[78.5784225,32.631134],[78.5783539,32.6320496],[78.5782623,32.633194],[78.5809784,32.6367989],[78.5856094,32.6368294],[78.5960617,32.6355858],[78.5971756,32.6351891],[78.6080856,32.6316681],[78.6103287,32.6308746],[78.611412,32.6309357],[78.6127625,32.631012],[78.6234207,32.6306953],[78.6253128,32.6308022],[78.6324234,32.6339607],[78.6345215,32.6350021],[78.6396484,32.6391983],[78.6406784,32.639946],[78.641983,32.6407089],[78.6496887,32.6466637],[78.6511917,32.6483574],[78.6669312,32.6561394],[78.6674042,32.6570854],[78.6754608,32.6621361],[78.6767273,32.6633568],[78.6799164,32.6679039],[78.6813889,32.6700554],[78.6821442,32.6707878],[78.6878891,32.6775475],[78.6894073,32.6790123],[78.6967773,32.682415],[78.6986084,32.6834335],[78.6999283,32.6839714],[78.7086716,32.6837692],[78.7100449,32.6836128],[78.7158585,32.6860085],[78.7166748,32.6895027],[78.716568,32.690876],[78.7155609,32.6933479],[78.7154388,32.6983986],[78.7207489,32.703125],[78.7304993,32.7070084],[78.7329407,32.7073555],[78.7396545,32.7061844],[78.7478943,32.7018127],[78.7499771,32.6996307],[78.7501144,32.6977959],[78.7484818,32.6942596],[78.7448044,32.6924438],[78.7438049,32.6912422],[78.7434387,32.6889191],[78.7460938,32.686306],[78.7469788,32.6854362],[78.7491455,32.6821098],[78.7463837,32.675518],[78.7450943,32.6745262],[78.7439117,32.6687126],[78.7440338,32.6671104],[78.7412872,32.6602898],[78.7404022,32.657711],[78.7404099,32.6540337],[78.7405701,32.6519699],[78.7442169,32.6471176],[78.746376,32.6437874],[78.7545929,32.6361961],[78.7554626,32.6355515],[78.7670517,32.6265373],[78.7685318,32.6250114],[78.7742615,32.6177406],[78.7757416,32.6162148],[78.7793045,32.6088219],[78.7793121,32.601696],[78.7792664,32.5987053],[78.779068,32.5977745],[78.7787094,32.591774],[78.778038,32.589901],[78.7757874,32.5872459],[78.7742691,32.5857811],[78.7714615,32.5833282],[78.7662277,32.5805092],[78.7649231,32.5797501],[78.7615356,32.5742722],[78.7606506,32.5645676],[78.7608337,32.5550232],[78.7621765,32.5505066],[78.7629471,32.5477448],[78.7639618,32.5442123],[78.7656555,32.5398979],[78.7657394,32.5377617],[78.7680206,32.5347977],[78.7704315,32.5329208],[78.7706757,32.5297165],[78.7725677,32.526371],[78.7740173,32.5216217],[78.7768021,32.5137291],[78.7768707,32.5128136],[78.7772293,32.5045586],[78.7769852,32.5006332],[78.7789001,32.4933853],[78.7797623,32.4892921],[78.7798309,32.4883766],[78.7828522,32.4844055],[78.785553,32.4811058],[78.7881699,32.4789505],[78.7913361,32.4765968],[78.7924728,32.4759712],[78.7947388,32.4734726],[78.7961807,32.4709854],[78.7976837,32.4668961],[78.8003464,32.4621391],[78.8037949,32.4550056],[78.8053818,32.4516106],[78.8083191,32.4430466],[78.8139267,32.437149],[78.8130035,32.4381676],[78.8200607,32.4315109],[78.8211441,32.4315681],[78.8267365,32.4295769],[78.8289871,32.4285507],[78.8306808,32.4277267],[78.8346786,32.4251862],[78.8364258,32.4236717],[78.8377991,32.4198418],[78.8385468,32.4171219],[78.8386154,32.4162064],[78.8407745,32.4128761],[78.841423,32.4115334],[78.8497467,32.4092293],[78.8506088,32.4085884],[78.8590012,32.4090462],[78.8606033,32.4093666],[78.8621979,32.4099121],[78.8635483,32.4099846],[78.8696213,32.4087067],[78.8710327,32.4080963],[78.8739548,32.4052658],[78.8797531,32.4005241],[78.8815308,32.3985519],[78.8875046,32.3949699],[78.888588,32.3950272],[78.8937073,32.3955383],[78.8953018,32.3960838],[78.8992615,32.394001],[78.9008179,32.3913269],[78.901535,32.3890648],[78.903801,32.3841324],[78.9048615,32.38097],[78.9077911,32.3744621],[78.9092178,32.3699417],[78.9163589,32.3652725],[78.918335,32.3642311],[78.9280777,32.3610802],[78.9300919,32.359581],[78.9320679,32.3585396],[78.9334717,32.3579254],[78.9459152,32.3512421],[78.9473572,32.3501701],[78.958313,32.3415642],[78.9597549,32.3404922],[78.9680862,32.3342781],[78.9697647,32.3336754],[78.976181,32.3349419],[78.978241,32.3364334],[78.9809647,32.3400269],[78.9813995,32.3414307],[78.9817886,32.3435173],[78.9824295,32.3458519],[78.9839554,32.3509903],[78.9846802,32.3521767],[78.9858246,32.3549995],[78.9883423,32.3613396],[78.9894943,32.3641624],[78.9899139,32.3657913],[79.0024261,32.3765755],[79.0031738,32.377533],[79.0163422,32.3793869],[79.0182037,32.3799477],[79.0192871,32.3800049],[79.0209045,32.3800926],[79.0363312,32.3809166],[79.0496902,32.3839226],[79.0521393,32.3838234],[79.0532227,32.3838806],[79.0657501,32.3833961],[79.0677185,32.3825798],[79.0688171,32.382412],[79.0791931,32.377903],[79.0894012,32.3720055],[79.0914078,32.3705025],[79.1010284,32.3689384],[79.1026535,32.3690262],[79.1042404,32.3695679],[79.1085434,32.3739319],[79.1090164,32.3748779],[79.1073608,32.3789253],[79.1072617,32.3803024],[79.106926,32.3812027],[79.1044159,32.389576],[79.103981,32.3918495],[79.1038971,32.3929939],[79.1075058,32.4030685],[79.1084137,32.4056435],[79.1168594,32.4127541],[79.124321,32.4147568],[79.1295929,32.4207802],[79.1294556,32.4226112],[79.1248169,32.4304123],[79.1229935,32.433075],[79.1231384,32.442276],[79.1229706,32.4445686],[79.1231232,32.4461823],[79.1277771,32.4570007],[79.12854,32.4577293],[79.1294937,32.4596176],[79.1298218,32.4652252],[79.1320877,32.4732246],[79.1431961,32.4768867],[79.1487198,32.480442],[79.1508484,32.4820557],[79.1525192,32.4850578],[79.154007,32.4872742],[79.1573639,32.4891739],[79.1646881,32.4917984],[79.1725388,32.4922104],[79.174469,32.4918518],[79.1757889,32.4923782],[79.182579,32.4957542],[79.1834717,32.501194],[79.1867905,32.5045776],[79.1906662,32.5103302],[79.1957779,32.5122604],[79.1999207,32.5117264],[79.2084198,32.5076332],[79.2095184,32.5074577],[79.2105865,32.5077438],[79.217392,32.5076332],[79.2192764,32.5079613],[79.2203598,32.5080185],[79.223938,32.5111923],[79.2246857,32.5121498],[79.2251205,32.5137787],[79.2276459,32.5164375],[79.2286301,32.517868],[79.2357101,32.5177727],[79.2370834,32.5176163],[79.2496643,32.5166512],[79.2510681,32.516037],[79.2524261,32.5161057],[79.2540131,32.5166473],[79.2559662,32.5169716],[79.2577286,32.5180283],[79.2583847,32.5193787],[79.2570801,32.5232391],[79.2577133,32.5297089],[79.2584457,32.5308952],[79.2626801,32.5324936],[79.2650909,32.5330734],[79.2716904,32.5359421],[79.2747116,32.5393105],[79.2754593,32.5402718],[79.2774887,32.5424423],[79.2814255,32.5445099],[79.2824783,32.5460625],[79.2822189,32.5474243],[79.2828751,32.5497971],[79.2827148,32.5516052],[79.2811584,32.5529327],[79.279068,32.5537415],[79.2774353,32.5546227],[79.273735,32.5569611],[79.272995,32.5596809],[79.2759094,32.5646553],[79.2776108,32.5675011],[79.281723,32.5709305],[79.2878952,32.5760727],[79.2890549,32.5788879],[79.2918701,32.5891457],[79.2928391,32.5908051],[79.2955093,32.5953064],[79.2965317,32.5962791],[79.2976074,32.5965614],[79.3038101,32.5973396],[79.304863,32.5978508],[79.3059692,32.5993423],[79.3073502,32.6011963],[79.3077927,32.6025963],[79.3076859,32.6041985],[79.3076172,32.6051178],[79.3060303,32.6121597],[79.3054047,32.6132774],[79.29953,32.6194153],[79.2986298,32.6205177],[79.2982788,32.6216507],[79.2979126,32.6230125],[79.2975388,32.6321831],[79.2976913,32.6338043],[79.2967453,32.6394997],[79.2955017,32.6417351],[79.2904968,32.6469955],[79.2895813,32.6483269],[79.284996,32.6515427],[79.2829666,32.6532784],[79.2811737,32.6554871],[79.2799911,32.6568031],[79.2770767,32.6633224],[79.276741,32.6642227],[79.2760696,32.6660271],[79.2732315,32.6713982],[79.2725754,32.6729736],[79.2721939,32.6745644],[79.2720947,32.6759377],[79.2736816,32.6842957],[79.2822571,32.6863403],[79.2838821,32.6864243],[79.290451,32.6899757],[79.2909088,32.6911469],[79.291275,32.6936951],[79.2879105,32.6988106],[79.2872238,32.7008438],[79.286293,32.702404],[79.28479,32.7083054],[79.2883606,32.7117043],[79.2893982,32.7124481],[79.290451,32.7129593],[79.2963791,32.7178574],[79.2988205,32.7218933],[79.2988663,32.7251129],[79.2960968,32.7295685],[79.2929688,32.735157],[79.2917252,32.7373886],[79.2910156,32.7396507],[79.2903748,32.7409973],[79.2864838,32.7497635],[79.2851791,32.7526855],[79.2839127,32.7551498],[79.2835159,32.7569695],[79.2801132,32.766449],[79.2791824,32.7680092],[79.2773895,32.7702179],[79.2770538,32.7711182],[79.2708511,32.7816086],[79.2705154,32.7825089],[79.2540665,32.7874146],[79.2477646,32.7877808],[79.2450638,32.7874146],[79.2431564,32.7873154],[79.2348862,32.7885017],[79.2324142,32.7888336],[79.230423,32.7898827],[79.2259674,32.7949371],[79.2250366,32.7965012],[79.2252121,32.7978859],[79.2245483,32.8033676],[79.225296,32.8043289],[79.2262497,32.8062172],[79.2287827,32.8127823],[79.2294159,32.8153458],[79.2293243,32.8167191],[79.2318649,32.8269615],[79.2317657,32.8283348],[79.2316818,32.8294792],[79.2315979,32.8306274],[79.234375,32.845253],[79.2328262,32.8516083],[79.232666,32.8538971],[79.2311478,32.8597984],[79.2312546,32.8621025],[79.2332611,32.8684082],[79.2333832,32.8704872],[79.2340698,32.8723602],[79.2333832,32.8819809],[79.2332993,32.8831253],[79.2279892,32.8885956],[79.2276001,32.8901863],[79.2302017,32.8958359],[79.2309494,32.8967972],[79.2350769,32.9002228],[79.2358398,32.9048615],[79.2360153,32.90625],[79.2361832,32.9076385],[79.2361069,32.908783],[79.2364502,32.9115601],[79.2371368,32.9134331],[79.2378693,32.9146194],[79.2422638,32.9219704],[79.242981,32.9233856],[79.2442474,32.9248314],[79.2500687,32.9313354],[79.2508316,32.9320641],[79.2528534,32.9420509],[79.2525177,32.942955],[79.2523651,32.945015],[79.2483826,32.9510193],[79.2474518,32.9525795],[79.2407455,32.9584427],[79.2395706,32.9595299],[79.2387085,32.9601784],[79.2287598,32.9607353],[79.2174988,32.9679871],[79.2126007,32.9684067],[79.209877,32.9690742],[79.2082291,32.9702072],[79.2079468,32.9713516],[79.2073822,32.9734077],[79.2076111,32.9768486],[79.2065125,32.9777565],[79.2051468,32.9784355],[79.1980133,32.984108],[79.1919861,32.987957],[79.184906,32.9885864],[79.1828461,32.9886665],[79.1813736,32.988327],[79.1797256,32.9896851],[79.1786194,32.9915123],[79.1783142,32.9938011],[79.1783066,32.9947205],[79.1781616,32.995491],[79.1777191,32.9979248],[79.1774368,32.9990692],[79.1760406,33.0022697],[79.1754837,33.0031815],[79.1697159,33.0081749],[79.1688919,33.0090866],[79.1675186,33.0099907],[79.1642532,33.0111809],[79.1625977,33.0117836],[79.160965,33.0122299],[79.160553,33.0161476],[79.1597824,33.0266838],[79.1598434,33.0296745],[79.1578903,33.0415268],[79.1574783,33.0433426],[79.1576843,33.0442734],[79.1575546,33.0461082],[79.1540146,33.0608673],[79.1538467,33.0631561],[79.1491165,33.0755539],[79.1484222,33.0775871],[79.1482849,33.079422],[79.1481857,33.0807915],[79.1446991,33.0948677],[79.1448669,33.0962524],[79.144989,33.0983276],[79.1449051,33.099472],[79.1454926,33.113987],[79.1459198,33.1156197],[79.1460953,33.1170082],[79.149231,33.1265984],[79.1491623,33.1275101],[79.1496429,33.1284561],[79.1483459,33.1387329],[79.1481781,33.1410217],[79.1468735,33.147625],[79.1470795,33.1485519],[79.148613,33.1539192],[79.1493759,33.1546478],[79.1501465,33.1553802],[79.155838,33.1600418],[79.1571198,33.1612587],[79.1583862,33.1627007],[79.1642609,33.1685257],[79.1656876,33.1715851],[79.1642303,33.1765671],[79.161026,33.1791611],[79.1593018,33.1802216],[79.1568146,33.1818542],[79.1567078,33.1819267],[79.1552429,33.1832275],[79.1498032,33.1863976],[79.1469269,33.1883163],[79.1454544,33.1896172],[79.130394,33.1968842],[79.1289444,33.1979561],[79.0961761,33.2148705],[79.0881042,33.2201958],[79.0860519,33.2219276],[79.07547,33.2278137],[79.074295,33.2289009],[79.0730972,33.230217],[79.069931,33.2360268],[79.070694,33.2367592],[79.074852,33.2399635],[79.0761948,33.2402649],[79.07724,33.2410088],[79.0818939,33.2449303],[79.0825958,33.2465782],[79.0790405,33.2500687],[79.0737686,33.2509422],[79.0715256,33.2515144],[79.067482,33.2542915],[79.0657578,33.2553482],[79.064888,33.2559967],[79.0637589,33.2563934],[79.0570297,33.2583389],[79.0556335,33.258728],[79.0536346,33.2597694],[79.0522156,33.2603874],[79.0510712,33.2610168],[79.0462036,33.2637482],[79.0441513,33.26548],[79.0423813,33.2672272],[79.0369339,33.2740669],[79.0365372,33.2756538],[79.0369873,33.2844124],[79.0371017,33.2864914],[79.0374985,33.2885818],[79.0366135,33.3004875],[79.0362244,33.3020782],[79.0358276,33.3036652],[79.0354843,33.3045692],[79.0322418,33.3076172],[79.0304794,33.3091316],[79.0293045,33.3102188],[79.0270309,33.3149261],[79.0266571,33.316288],[79.026535,33.3178902],[79.0244293,33.3218384],[79.0233002,33.3228912],[79.0216599,33.3243027],[79.0160217,33.3263016],[79.0146561,33.3262291],[79.0135574,33.3261719],[79.0058823,33.3259964],[79.0036621,33.3263359],[79.0022812,33.3264923],[78.988739,33.3276176],[78.9739456,33.3344193],[78.9713669,33.3358917],[78.9690933,33.3369179],[78.9608612,33.3440666],[78.9604874,33.3454285],[78.9598694,33.3463135],[78.9578476,33.351265],[78.9576874,33.3533249],[78.9576035,33.3544731],[78.9556351,33.3624115],[78.9549179,33.3646736],[78.9544373,33.3674049],[78.9543304,33.368782],[78.9519348,33.3750877],[78.9509583,33.3771057],[78.9426041,33.3858604],[78.9408569,33.387146],[78.9321289,33.3898964],[78.9171295,33.3992119],[78.9129868,33.4031258],[78.9112015,33.4048729],[78.9100418,33.4057274],[78.902504,33.4108429],[78.9004822,33.4121132],[78.8937225,33.4142799],[78.8911896,33.415062],[78.8891983,33.4158745],[78.8789978,33.4162445],[78.8778915,33.4164162],[78.8767776,33.4165878],[78.8750839,33.4171829],[78.8623123,33.4187965],[78.8603592,33.4191475],[78.8581009,33.4199448],[78.8482895,33.4224052],[78.8451691,33.4236145],[78.8437347,33.4244576],[78.8400803,33.4290886],[78.8390961,33.4311028],[78.8381042,33.4333496],[78.8359375,33.4435806],[78.8352356,33.44561],[78.8343582,33.4462547],[78.8271713,33.4539108],[78.8256989,33.4552116],[78.819458,33.4647598],[78.8191147,33.4656601],[78.8188553,33.4725456],[78.8189392,33.4750748],[78.8190689,33.4769249],[78.8185043,33.4842529],[78.8181458,33.4853821],[78.8175049,33.486496],[78.8139191,33.4902077],[78.8130112,33.4913101],[78.8074265,33.4923859],[78.8059692,33.493454],[78.804184,33.4951973],[78.7924194,33.5049057],[78.7897797,33.507061],[78.7882996,33.5083618],[78.7871017,33.5096741],[78.7692719,33.5266342],[78.7680435,33.5281754],[78.7668304,33.5297203],[78.7576675,33.5377274],[78.7561417,33.539711],[78.7540283,33.5421257],[78.7527466,33.5443535],[78.7410736,33.5563583],[78.7389755,33.5585442],[78.7371674,33.5605164],[78.7365723,33.564621],[78.737236,33.5667267],[78.7374039,33.5681152],[78.7403946,33.5756378],[78.7418671,33.5780182],[78.7432785,33.5810852],[78.7473373,33.5925789],[78.7479858,33.5949097],[78.7480774,33.5972137],[78.751503,33.606369],[78.7522354,33.607563],[78.7534637,33.6094704],[78.7578125,33.6172943],[78.7580185,33.6182251],[78.7595825,33.6209526],[78.759964,33.6220169],[78.7599106,33.6222382],[78.759819,33.6233826],[78.7600174,33.6243134],[78.7566223,33.6255074],[78.7551956,33.6261177],[78.7505493,33.6256371],[78.7491913,33.6253319],[78.7337341,33.6256332],[78.7301865,33.6252098],[78.7290878,33.625145],[78.7169952,33.6247101],[78.713356,33.6254311],[78.7122421,33.6255989],[78.7047424,33.6297836],[78.7038727,33.6304245],[78.702919,33.6319809],[78.7016449,33.6342125],[78.6967316,33.6406097],[78.6962738,33.6428833],[78.6946487,33.6460114],[78.6880417,33.656456],[78.6874161,33.657341],[78.6864853,33.6586685],[78.6871414,33.6713524],[78.6877518,33.6741447],[78.6882248,33.6750908],[78.6961823,33.6826591],[78.6977539,33.6836662],[78.6987991,33.6844139],[78.7230988,33.6981697],[78.7244034,33.6991615],[78.7257538,33.6994667],[78.7278976,33.7002754],[78.7479172,33.71241],[78.7497482,33.7136612],[78.7508316,33.7139511],[78.7613525,33.7205048],[78.7632065,33.7215271],[78.7642365,33.7224998],[78.7694626,33.7262344],[78.770195,33.7274246],[78.7712631,33.7279434],[78.7773056,33.7354012],[78.7765427,33.7416954],[78.7760239,33.7428894],[78.775116,33.7452354],[78.7741928,33.7464943],[78.7729721,33.7522659],[78.7722702,33.7543678],[78.771637,33.7559052],[78.7712784,33.7569809],[78.7655792,33.7686119],[78.7649765,33.7712097],[78.7642822,33.772522],[78.7640762,33.7744751],[78.760788,33.7845573],[78.7598801,33.7880363],[78.7597733,33.790062],[78.7594986,33.7924194],[78.7612152,33.8037376],[78.7615356,33.8067398],[78.761322,33.8094902],[78.7617493,33.8111229],[78.7624283,33.8129997],[78.7661972,33.8283806],[78.7659683,33.831356],[78.7660675,33.8336639],[78.7662201,33.8458595],[78.7657471,33.848362],[78.7650528,33.8501625],[78.7643661,33.8519669],[78.7635727,33.8585892],[78.7631531,33.8604088],[78.7624359,33.8624382],[78.761116,33.8688049],[78.7607346,33.8701591],[78.7613983,33.8899727],[78.7622757,33.8964577],[78.7624435,33.8978462],[78.7629013,33.899025],[78.7620926,33.9058762],[78.7620239,33.9067917],[78.7616577,33.9079208],[78.7587128,33.9137421],[78.7575073,33.9150543],[78.7499695,33.9194717],[78.7381516,33.9220428],[78.7325211,33.926796],[78.7348862,33.9354324],[78.7355347,33.937767],[78.7362137,33.9396439],[78.7366409,33.9412766],[78.7387543,33.9531212],[78.7394791,33.9545364],[78.7403793,33.957119],[78.7403107,33.9580345],[78.7431488,33.9747429],[78.7438889,33.9759331],[78.7442245,33.9787102],[78.7454071,33.981308],[78.7457504,33.9909821],[78.7453537,33.992569],[78.7451553,33.9950905],[78.7388611,34.0011826],[78.7374115,34.0020256],[78.7283478,34.0081978],[78.7214813,34.0110397],[78.7194748,34.0118484],[78.7177353,34.0129013],[78.7073898,34.0176239],[78.704567,34.0218391],[78.703949,34.0227242],[78.7033234,34.0236092],[78.6958313,34.0273361],[78.6938782,34.0274582],[78.6838303,34.0285149],[78.6824112,34.0288963],[78.6809998,34.0292778],[78.670372,34.0305328],[78.6689987,34.0304565],[78.6667557,34.0307922],[78.6658707,34.0314331],[78.6592407,34.0347443],[78.6580429,34.0358276],[78.6570358,34.0380745],[78.6541977,34.0459633],[78.6546173,34.047596],[78.6555405,34.0499496],[78.6626434,34.0581589],[78.6633606,34.0595779],[78.6687775,34.0647049],[78.670578,34.0664139],[78.6705017,34.0673294],[78.6645355,34.0727501],[78.6636505,34.073391],[78.6583557,34.0772362],[78.6577301,34.0781212],[78.658287,34.085804],[78.6629181,34.0906944],[78.666748,34.0938759],[78.6713257,34.0954285],[78.675499,34.0951996],[78.6762314,34.0929413],[78.6772614,34.0904694],[78.6804733,34.0848961],[78.6811371,34.0835533],[78.6869659,34.0834122],[78.6883621,34.0832634],[78.6917648,34.0857468],[78.6936264,34.0867691],[78.6990814,34.0914383],[78.7004013,34.0922012],[78.7061234,34.0934334],[78.7088318,34.0942726],[78.7264099,34.0927086],[78.7399521,34.0932198],[78.7454147,34.0942039],[78.7481537,34.0945854],[78.7492447,34.0948753],[78.7550125,34.0990982],[78.7563324,34.0998573],[78.7573853,34.100605],[78.7606888,34.1044655],[78.7614441,34.1054268],[78.7619247,34.1063728],[78.7652054,34.1104584],[78.7664948,34.1116791],[78.7708969,34.1121483],[78.7727737,34.1129379],[78.7781525,34.1150703],[78.7788925,34.1162605],[78.7793732,34.1172066],[78.782341,34.1217346],[78.783287,34.1238556],[78.7834702,34.1250153],[78.7913513,34.134182],[78.7923126,34.1360741],[78.8003311,34.1399536],[78.8057251,34.1388474],[78.8117447,34.137188],[78.8153992,34.1358452],[78.8250122,34.1291008],[78.8270721,34.1276016],[78.8318024,34.1273994],[78.8331146,34.1283875],[78.8364868,34.1313286],[78.8366394,34.132946],[78.8376389,34.1343803],[78.8431549,34.1383514],[78.8439255,34.1390877],[78.8504105,34.1412735],[78.851738,34.1420326],[78.8533401,34.1428108],[78.858139,34.1453667],[78.8591385,34.1467972],[78.8598938,34.1477585],[78.8624191,34.1545639],[78.8626099,34.1557198],[78.8633118,34.1573677],[78.8635178,34.1582985],[78.8695831,34.1659813],[78.8765945,34.164978],[78.882019,34.1592903],[78.887825,34.1559219],[78.8887253,34.1550484],[78.8904495,34.1542206],[78.8924713,34.1531792],[78.9042892,34.1473732],[78.9056702,34.1474457],[78.9165039,34.1507797],[78.917572,34.1512985],[78.9192276,34.1513863],[78.9261475,34.155201],[78.9268723,34.15662],[78.9273529,34.1575623],[78.9281921,34.1667213],[78.9283295,34.1682739],[78.9279327,34.1734047],[78.9276352,34.1762695],[78.9279709,34.1784134],[78.9292603,34.1824074],[78.9311066,34.1863098],[78.9324875,34.1884689],[78.9335175,34.1908836],[78.9381943,34.200901],[78.9391098,34.2034798],[78.9389648,34.2053108],[78.9409637,34.2118492],[78.9421234,34.214901],[78.9428101,34.2167778],[78.9435349,34.2181969],[78.9483337,34.2244263],[78.9496078,34.225872],[78.9546204,34.2293549],[78.9566193,34.2322197],[78.958107,34.2345963],[78.9636993,34.2413292],[78.9643555,34.2436638],[78.9648361,34.244606],[78.9679413,34.2548866],[78.9680634,34.2569618],[78.9684448,34.2592812],[78.9724121,34.2728233],[78.973259,34.2763176],[78.973671,34.2781754],[78.9771576,34.2907753],[78.9772415,34.2933083],[78.9773636,34.2953835],[78.9780502,34.304615],[78.9770279,34.3070908],[78.9762878,34.3095818],[78.9741745,34.3154449],[78.9740677,34.3168221],[78.9799118,34.320343],[78.981575,34.3204308],[78.9916916,34.3188934],[79.0195007,34.3185081],[79.0222702,34.3186531],[79.0341187,34.3199615],[79.0376282,34.3212929],[79.0437164,34.3252869],[79.0439301,34.3262177],[79.0438538,34.3271332],[79.0430603,34.3303108],[79.0424423,34.3311958],[79.0390701,34.335392],[79.0326157,34.3329811]]]]},
  1067 +"properties":{
  1068 +"gid":178,
  1069 +"name":"西藏自治区"}
  1070 +},
  1071 +{"type":"Feature",
  1072 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.9521637,36.4558296],[120.9536514,36.4540291],[120.9540329,36.4512901],[120.9524078,36.4487343],[120.9484482,36.4479637],[120.946907,36.4515915],[120.947403,36.4536629],[120.947937,36.4548187],[120.9498901,36.4557762],[120.9521637,36.4558296]]]]},
  1073 +"properties":{
  1074 +"gid":179,
  1075 +"name":"山东省"}
  1076 +},
  1077 +{"type":"Feature",
  1078 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.0010071,36.4406319],[121.0029907,36.4411354],[121.0052795,36.4407272],[121.0073395,36.4384804],[121.0082169,36.4375839],[121.0082779,36.4359818],[121.0074615,36.4348183],[121.0034714,36.4351921],[121.0022964,36.4363136],[121.0016937,36.4374428],[121.0007782,36.4392548],[121.0010071,36.4406319]]]]},
  1079 +"properties":{
  1080 +"gid":180,
  1081 +"name":"山东省"}
  1082 +},
  1083 +{"type":"Feature",
  1084 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.9536667,36.4281578],[120.957962,36.4271088],[120.9608231,36.426712],[120.9648132,36.426342],[120.9670715,36.4268494],[120.969017,36.4280357],[120.9715805,36.428093],[120.9747314,36.4272461],[120.9742432,36.4249458],[120.9731674,36.4230881],[120.9695663,36.4200363],[120.9659271,36.418354],[120.9630814,36.4187469],[120.9610672,36.4193916],[120.9571533,36.4177017],[120.9526215,36.4169159],[120.9460831,36.4169998],[120.9448929,36.418808],[120.9450989,36.4208717],[120.9472885,36.423439],[120.9495163,36.4248619],[120.9506073,36.4258041],[120.9520111,36.4267502],[120.9536667,36.4281578]]]]},
  1085 +"properties":{
  1086 +"gid":181,
  1087 +"name":"山东省"}
  1088 +},
  1089 +{"type":"Feature",
  1090 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.9257431,36.4218178],[120.9283066,36.4214172],[120.9295578,36.4180107],[120.9284592,36.4170685],[120.9231415,36.4146652],[120.919487,36.4134369],[120.9194031,36.4157257],[120.9199066,36.4177971],[120.9207077,36.4191895],[120.9226837,36.4199181],[120.9237823,36.4208603],[120.9257431,36.4218178]]]]},
  1091 +"properties":{
  1092 +"gid":182,
  1093 +"name":"山东省"}
  1094 +},
  1095 +{"type":"Feature",
  1096 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.9815063,36.4200668],[120.9848938,36.420826],[120.9871979,36.41996],[120.9887085,36.417244],[120.9881897,36.4158592],[120.9841995,36.4162331],[120.9816132,36.4173203],[120.9815826,36.4182358],[120.9815063,36.4200668]]]]},
  1097 +"properties":{
  1098 +"gid":183,
  1099 +"name":"山东省"}
  1100 +},
  1101 +{"type":"Feature",
  1102 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.9410629,36.4143715],[120.9411163,36.4123154],[120.9411697,36.4109421],[120.9397736,36.4102249],[120.9360733,36.4105988],[120.9360199,36.411972],[120.9359894,36.4128876],[120.9362488,36.413578],[120.9371033,36.413826],[120.9388199,36.4131775],[120.9410629,36.4143715]]]]},
  1103 +"properties":{
  1104 +"gid":184,
  1105 +"name":"山东省"}
  1106 +},
  1107 +{"type":"Feature",
  1108 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.9276428,36.4078941],[120.9275665,36.4094963],[120.9289398,36.411129],[120.9321136,36.4098282],[120.9313507,36.4072914],[120.930809,36.4063644],[120.9288483,36.405632],[120.9268112,36.4069595],[120.9276428,36.4078941]]]]},
  1109 +"properties":{
  1110 +"gid":185,
  1111 +"name":"山东省"}
  1112 +},
  1113 +{"type":"Feature",
  1114 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.8550797,36.3776474],[120.8565674,36.375618],[120.8583527,36.3733711],[120.8581619,36.3706169],[120.8558578,36.3697052],[120.8524475,36.3716316],[120.8506775,36.3734245],[120.8488922,36.3756714],[120.8491135,36.377739],[120.8496628,36.378437],[120.8519363,36.3780327],[120.8531036,36.37714],[120.8550797,36.3776474]]]]},
  1115 +"properties":{
  1116 +"gid":186,
  1117 +"name":"山东省"}
  1118 +},
  1119 +{"type":"Feature",
  1120 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.7235336,36.3559456],[113.7515564,36.3705635],[113.8081284,36.331871],[113.8431091,36.328701],[113.8434219,36.3450966],[113.8599319,36.3535538],[113.8914566,36.3430977],[113.9089813,36.3470497],[113.9140167,36.3319473],[113.9284134,36.3328094],[113.9505234,36.3383064],[113.9412231,36.3517723],[113.9532394,36.3535194],[113.9661713,36.3234711],[113.983757,36.3153763],[113.9893723,36.3360748],[113.9692535,36.3516083],[113.972702,36.3578606],[113.9969406,36.3501015],[113.9998627,36.3402176],[114.0174484,36.3512115],[114.0179062,36.3203049],[114.0327072,36.2928276],[114.0617828,36.2726746],[114.083107,36.2681961],[114.1326828,36.2787971],[114.1878891,36.2518997],[114.2129669,36.2696648],[114.2282791,36.255455],[114.2478867,36.2648888],[114.2778397,36.2392006],[114.3424377,36.237545],[114.3794632,36.2215424],[114.4023132,36.2243538],[114.4114227,36.2056923],[114.4542084,36.2009506],[114.4809418,36.1760864],[114.5313873,36.1682053],[114.5923615,36.120121],[114.7459869,36.1439476],[114.762207,36.1326256],[114.7733078,36.1270065],[114.8955231,36.1347313],[114.9131775,36.0982437],[114.899147,36.0669899],[114.9102631,36.0481071],[114.914032,36.0464935],[114.9175262,36.0464935],[114.9226379,36.0462227],[114.9247894,36.0481071],[114.9220963,36.0521431],[114.9223709,36.0545654],[114.9237137,36.0588722],[114.9285583,36.0620995],[114.9339371,36.0650597],[114.9385071,36.0672112],[114.9441681,36.067482],[114.9479294,36.067482],[114.9503632,36.0666733],[114.9530487,36.0669441],[114.956543,36.0664062],[114.957077,36.0693665],[114.95681,36.0725937],[114.9589615,36.0731316],[114.961647,36.0736694],[114.9648819,36.0701714],[114.9681168,36.0680199],[114.9705429,36.0682907],[114.9748383,36.0690956],[114.9788666,36.0696335],[114.9842606,36.0707092],[114.9920731,36.0707092],[114.9982529,36.0715179],[115.005249,36.0723267],[115.0079269,36.075016],[115.0047073,36.0769005],[115.0003967,36.0787849],[114.9993286,36.0809364],[114.9996033,36.0836258],[115.0012131,36.0855103],[115.0030975,36.086586],[115.0065918,36.0890083],[115.0100937,36.0903549],[115.0141296,36.0911598],[115.0186996,36.0914307],[115.0227432,36.0914307],[115.0235367,36.0935822],[115.0224686,36.0954666],[115.0192413,36.0986938],[115.02005,36.1005783],[115.0259628,36.101387],[115.0345764,36.0992317],[115.0367279,36.1005783],[115.0372696,36.1032677],[115.0348434,36.1073074],[115.0345764,36.1113434],[115.0485916,36.1652145],[115.0612106,36.1753769],[115.1036377,36.171772],[115.1204987,36.2113571],[115.1420288,36.2084198],[115.1613998,36.191597],[115.2113571,36.2005882],[115.240303,36.188839],[115.2720413,36.1365738],[115.2958298,36.1284485],[115.3000107,36.0948105],[115.3234863,36.0866814],[115.3575974,36.0943871],[115.3856277,36.1320572],[115.4339066,36.1349869],[115.4728699,36.1693611],[115.477623,36.1233177],[115.4695511,36.110939],[115.4652405,36.1007118],[115.4582367,36.0877991],[115.4490967,36.0759583],[115.4453278,36.0684242],[115.4431763,36.0592766],[115.4426422,36.0452843],[115.4421005,36.0329056],[115.4261627,36.0011292],[115.4091492,36.0029297],[115.3884964,35.9831772],[115.3485031,35.9663925],[115.3608704,35.9092484],[115.3324509,35.8639488],[115.3347931,35.8016281],[115.3538437,35.7831955],[115.3656769,35.7912674],[115.3742905,35.7977257],[115.3855972,35.8025703],[115.3974304,35.8084908],[115.4038925,35.8176384],[115.4098129,35.8246346],[115.4130402,35.8316307],[115.4232635,35.84132],[115.4313431,35.8488541],[115.4431763,35.8596153],[115.4517899,35.8666115],[115.4625473,35.8725319],[115.4733124,35.8768387],[115.4835434,35.8816795],[115.4724503,35.9081116],[115.4885635,35.9211388],[115.5070572,35.8940773],[115.5362778,35.8924446],[115.5443497,35.8962097],[115.5513535,35.9005165],[115.5615768,35.9096642],[115.5696487,35.9161224],[115.5782471,35.921505],[115.5879364,35.9247322],[115.6030121,35.9252701],[115.6180801,35.9258118],[115.6374588,35.9241943],[115.6433716,35.9295769],[115.6511765,35.936306],[115.6611328,35.9387245],[115.6667862,35.9395332],[115.6743164,35.9433022],[115.678093,35.9535255],[115.6818466,35.9589081],[115.6866989,35.9642906],[115.6931534,35.9659042],[115.702301,35.9680557],[115.7114563,35.9691315],[115.7205963,35.9691315],[115.7276001,35.9691315],[115.7394333,35.9723625],[115.7528915,35.9750519],[115.7623062,35.97855],[115.7770691,36.0008469],[115.8124237,36.013031],[115.8533096,36.0066299],[115.8902664,36.0249405],[115.9898987,36.051651],[116.0535583,36.1065063],[116.094902,36.1111298],[116.0997391,36.0743637],[116.0686035,36.0451202],[116.0481033,36.0003433],[116.0412369,35.9764214],[116.0222702,35.9643707],[115.9868469,35.9805984],[115.9215088,35.9745674],[115.8589935,35.9048042],[115.8863068,35.8828125],[115.8668823,35.8617859],[115.8075867,35.8534508],[115.7696609,35.8679924],[115.7417679,35.8301277],[115.7159576,35.843853],[115.6993103,35.7905045],[115.646347,35.7415848],[115.5953293,35.7492867],[115.5401917,35.7346802],[115.4957962,35.7332497],[115.4964371,35.6965752],[115.4096298,35.6496696],[115.3817062,35.5665474],[115.3573837,35.5621071],[115.3389206,35.5882339],[115.3199997,35.5801888],[115.3478012,35.5060387],[115.3161469,35.4900284],[115.2127838,35.4193649],[115.1785507,35.4486847],[115.1369629,35.4288177],[115.1050034,35.4047241],[115.0149536,35.3746796],[115.0199432,35.3403587],[114.9865799,35.2717209],[114.9230728,35.2041817],[114.8411026,35.1750488],[114.8394012,35.0871773],[114.7977371,35.0359917],[114.8162766,34.9980087],[114.8723526,35.007],[114.8943329,34.9975052],[114.9135513,34.9748878],[114.9451065,34.9949074],[115.0211563,34.9839668],[115.0949936,35.0098801],[115.1258163,35.0018539],[115.1475983,34.9741936],[115.2124786,34.9625168],[115.2158127,34.9492607],[115.1918793,34.9218559],[115.2494736,34.9102821],[115.2312927,34.8737869],[115.2520523,34.8511429],[115.2928772,34.869133],[115.4249725,34.7963104],[115.4396362,34.7533684],[115.4279099,34.7259293],[115.440773,34.7059021],[115.4388199,34.6753731],[115.4587479,34.6416779],[115.4701309,34.6334572],[115.4890976,34.6043701],[115.5099564,34.5879288],[115.5320969,34.5790787],[115.5738297,34.5765495],[115.5870972,34.5790787],[115.6130295,34.5803413],[115.6275787,34.5790787],[115.6452789,34.570858],[115.6712036,34.5613708],[115.6813202,34.5683289],[115.6857529,34.5803413],[115.6857529,34.5961494],[115.7123032,34.5910912],[115.758461,34.5809746],[115.7900772,34.5746498],[115.8256378,34.5655861],[115.8309326,34.5746498],[115.8739929,34.5799408],[115.9132767,34.5799408],[115.9472885,34.590519],[115.9700317,34.5897713],[115.9759979,34.5950508],[115.9767532,34.6116753],[115.983551,34.623764],[115.9971466,34.6252747],[116.016037,34.605629],[116.0334167,34.5950508],[116.0507965,34.5965614],[116.0772476,34.6094055],[116.0953827,34.6071396],[116.1111603,34.5926743],[116.1187973,34.5754051],[116.1289368,34.5602264],[116.1444931,34.5587845],[116.1716919,34.5716286],[116.1850281,34.5807838],[116.1944885,34.5161629],[116.1757126,34.5091591],[116.1542282,34.4665833],[116.1764374,34.4297981],[116.2104263,34.4045525],[116.2081223,34.3834343],[116.2649078,34.3743706],[116.2961273,34.3433495],[116.3579636,34.3179855],[116.3677979,34.2950935],[116.3580017,34.2737122],[116.4577637,34.2707367],[116.497673,34.2977333],[116.5737534,34.2794266],[116.5353088,34.2297478],[116.574173,34.1862984],[116.5367508,34.1611633],[116.5144272,34.1034164],[116.5298996,34.0966492],[116.5463333,34.0831146],[116.5608368,34.0782776],[116.568573,34.0666771],[116.5743713,34.0541115],[116.5879135,34.0463753],[116.5908127,34.0328407],[116.5917664,34.0241432],[116.5956421,34.0077057],[116.6085968,33.9994469],[116.6410828,33.9825706],[116.6358871,33.8916969],[116.5618668,33.9097557],[116.546257,33.8864098],[116.5214767,33.8872948],[116.5159302,33.8725433],[116.46241,33.8641472],[116.4274902,33.846302],[116.4295578,33.8038673],[116.410347,33.8015251],[116.3683472,33.7822571],[116.3280411,33.7767105],[116.3096619,33.7592659],[116.2757568,33.7498856],[116.2582321,33.7315254],[116.1918564,33.7267456],[116.1608734,33.7095642],[116.1498566,33.7112465],[116.1322327,33.7415276],[116.0908508,33.7638931],[116.0872269,33.7796783],[116.0666275,33.7885437],[116.0400467,33.8335381],[116.0521469,33.8588676],[116.0082703,33.8741302],[115.9739914,33.913311],[115.9948502,33.9664726],[115.9711075,33.9963341],[115.9522324,34.0092545],[115.9144592,34.0123749],[115.8990479,34.0115509],[115.8899994,34.0302849],[115.8769989,34.0342979],[115.8577728,34.0082016],[115.8445816,34.0062447],[115.8398285,34.0323524],[115.8100586,34.0543289],[115.804863,34.0721703],[115.7744827,34.0764656],[115.7575073,34.0678101],[115.7220535,34.0802994],[115.6545105,34.0621567],[115.644783,34.0673294],[115.6292267,34.0391731],[115.5943298,34.0339661],[115.5971222,34.014267],[115.5822601,33.9962044],[115.5442276,33.8812828],[115.5872879,33.871685],[115.6195831,33.8816833],[115.6263123,33.8379364],[115.6122665,33.7870789],[115.6011429,33.7784653],[115.5746307,33.7871132],[115.5607605,33.7786942],[115.5929489,33.7237701],[115.5935516,33.6684837],[115.6222534,33.6222305],[115.6283875,33.5803146],[115.5235672,33.5717697],[115.4986267,33.5554085],[115.4521637,33.5653915],[115.4194107,33.557869],[115.4066467,33.5515099],[115.3889084,33.5026398],[115.357933,33.5196724],[115.339592,33.504055],[115.3399734,33.4551888],[115.3138123,33.4491005],[115.3084335,33.4302101],[115.3267822,33.3999481],[115.3103104,33.3747139],[115.3366165,33.37117],[115.3579178,33.3287811],[115.3330688,33.2988472],[115.3215637,33.2284851],[115.2926025,33.2017021],[115.2870331,33.1376152],[115.2555313,33.1307487],[115.2455521,33.1388664],[115.1788177,33.1222954],[115.1503372,33.0890579],[115.1065903,33.0835762],[115.0550232,33.086441],[115.0390167,33.0949097],[115.0258331,33.0882721],[114.9897766,33.1035194],[114.9820023,33.121521],[114.9643097,33.1320114],[114.9729691,33.1468391],[114.9287796,33.1589508],[114.9210281,33.1406937],[114.8986511,33.1297607],[114.8898773,33.0860138],[114.9055099,33.0709076],[114.9241028,33.0216637],[114.8891373,33.0148697],[114.8793869,32.9784508],[114.9123535,32.9663963],[114.9339981,32.9364777],[114.9991531,32.9423752],[115.0276871,32.9313622],[115.0317612,32.9197273],[115.0185699,32.9137802],[115.0254822,32.9086151],[115.1300507,32.9022179],[115.1519928,32.8669891],[115.1913528,32.8567924],[115.1946411,32.8414688],[115.1778564,32.8384666],[115.1980896,32.7921906],[115.1741714,32.7932167],[115.1726227,32.710598],[115.1737213,32.6700096],[115.189621,32.6750603],[115.1949081,32.6684875],[115.1972504,32.6600342],[115.2091522,32.6613541],[115.2022171,32.6424408],[115.1899033,32.647995],[115.1859512,32.6422005],[115.1910706,32.6303444],[115.183342,32.6240387],[115.1970596,32.6157532],[115.1771317,32.6097221],[115.1940765,32.589325],[115.2198029,32.5899315],[115.2455521,32.6031494],[115.2460403,32.5786095],[115.2746582,32.5836067],[115.2996521,32.5513763],[115.3123779,32.5515556],[115.3264084,32.5689545],[115.3938828,32.5829277],[115.4010086,32.5779762],[115.4024963,32.5548248],[115.4323425,32.5519981],[115.4288483,32.5352058],[115.4707565,32.522892],[115.5020218,32.4826736],[115.5054932,32.453125],[115.5308304,32.4419632],[115.5394363,32.428299],[115.5570602,32.4255257],[115.5462418,32.409111],[115.5880432,32.4329987],[115.6167221,32.4147453],[115.6456528,32.4327316],[115.6477966,32.4155502],[115.6548233,32.4167747],[115.6708069,32.4506683],[115.664299,32.4700966],[115.6896286,32.4767914],[115.6855087,32.4994583],[115.7393265,32.4825859],[115.7603302,32.5101013],[115.7749176,32.4925804],[115.7757416,32.4717178],[115.8314972,32.5119438],[115.8341599,32.5360565],[115.8589478,32.5459213],[115.8855972,32.580574],[115.9026031,32.5855446],[115.9206238,32.5746918],[115.8828964,32.5580711],[115.8629379,32.5298996],[115.8374329,32.5133743],[115.860199,32.5108376],[115.8728333,32.4974174],[115.8738327,32.4811401],[115.8611832,32.4762077],[115.8824387,32.4199753],[115.8989868,32.3260765],[115.8895798,32.3009911],[115.9126205,32.2706909],[115.901001,32.2276955],[115.9266968,32.1758537],[115.9164886,32.1053505],[115.9346237,32.0759239],[115.9125824,32.0266495],[115.9187164,32.0004463],[115.9076385,31.9543343],[115.9157333,31.9167023],[115.9092865,31.8970909],[115.8861923,31.8766689],[115.8854294,31.8567181],[115.9051132,31.8116589],[115.9062271,31.7980461],[115.8697205,31.777565],[115.8431091,31.7863865],[115.8101578,31.7641315],[115.7586288,31.7877407],[115.7268219,31.7815304],[115.7214737,31.7633076],[115.6732788,31.7823772],[115.6415024,31.7582741],[115.4842834,31.6676922],[115.473671,31.6474953],[115.4812775,31.6123867],[115.4359436,31.5876694],[115.419342,31.5386677],[115.3707123,31.5016975],[115.3811035,31.4490108],[115.3775177,31.4202709],[115.3643723,31.4050388],[115.3209763,31.3970585],[115.3034821,31.3844585],[115.2851486,31.4030132],[115.2501068,31.3938484],[115.2465363,31.4191971],[115.2152634,31.4247952],[115.2011337,31.4450493],[115.2105865,31.5099392],[115.2298737,31.5558319],[115.1884613,31.5659695],[115.1668167,31.6002312],[115.1381073,31.6072521],[115.1194229,31.5971222],[115.119072,31.5774002],[115.099762,31.5553303],[115.1046066,31.5258942],[115.0892334,31.5137825],[115.0534515,31.5093632],[115.0129166,31.5245132],[114.9894104,31.4727383],[114.96772,31.5000935],[114.9362335,31.4822369],[114.8765106,31.4734173],[114.8518066,31.4809532],[114.8417435,31.4643841],[114.8275375,31.464426],[114.7796783,31.4877739],[114.76828,31.5243435],[114.7189713,31.5230999],[114.6906815,31.5325584],[114.6925201,31.5465984],[114.6631622,31.5491467],[114.6487427,31.5732327],[114.622757,31.5912342],[114.5710068,31.5579967],[114.5516129,31.5601387],[114.5416336,31.6240139],[114.5502319,31.6552296],[114.582222,31.6990929],[114.5725098,31.7125473],[114.5798721,31.76091],[114.5672226,31.7673931],[114.5440903,31.7611694],[114.5285263,31.7414265],[114.5049362,31.7709408],[114.4982605,31.7388687],[114.4471588,31.7331123],[114.3752136,31.7429371],[114.3376999,31.7577572],[114.2911606,31.7520943],[114.2341232,31.8347759],[114.1820984,31.8536472],[114.1239395,31.8422585],[114.114418,31.8102951],[114.0446167,31.7730217],[113.9758682,31.7568932],[113.9417267,31.80233],[113.9485474,31.8543873],[113.9244614,31.8799782],[113.9041595,31.8779144],[113.8829269,31.8508873],[113.8416367,31.8490658],[113.8273163,31.8708744],[113.8278885,31.9116707],[113.8001175,31.9401112],[113.8063736,31.970171],[113.7598114,31.9836311],[113.7481995,32.0008736],[113.7775269,32.0293312],[113.7773666,32.0398636],[113.7516327,32.0544662],[113.7228088,32.0878563],[113.7195969,32.1213036],[113.7436295,32.1227493],[113.7572174,32.133419],[113.7605209,32.1684303],[113.7781067,32.2008209],[113.7485428,32.2147636],[113.7348099,32.2503433],[113.7416763,32.2910538],[113.7650909,32.3087578],[113.7504425,32.332901],[113.7656479,32.3676033],[113.758667,32.3736038],[113.7377319,32.3622971],[113.744957,32.38377],[113.7136765,32.4254227],[113.66539,32.4280281],[113.6588135,32.4212837],[113.6598206,32.4118881],[113.6359482,32.4056168],[113.6189499,32.3798332],[113.6188126,32.3619728],[113.5877304,32.3669548],[113.5981674,32.3517799],[113.5797501,32.3486748],[113.5752792,32.338974],[113.5118408,32.3232803],[113.4171982,32.2751465],[113.3813782,32.2986412],[113.3483887,32.2973824],[113.3128433,32.3293266],[113.3261719,32.3469124],[113.2999496,32.3499718],[113.2111969,32.4285164],[113.1651688,32.4256325],[113.1409683,32.3826294],[113.1155319,32.3812943],[113.0955429,32.4005547],[113.0541382,32.4058685],[113.02005,32.4269638],[112.9853897,32.4127846],[112.9859238,32.380497],[112.9712982,32.3720322],[112.9483032,32.3908119],[112.9060898,32.3930969],[112.8733521,32.3770523],[112.8646774,32.400177],[112.7497635,32.3450966],[112.7294464,32.3604012],[112.6793976,32.3587036],[112.6687469,32.3731766],[112.5672226,32.3841248],[112.5357132,32.4094429],[112.5128174,32.3846321],[112.4906464,32.3785973],[112.4725266,32.3785248],[112.4406967,32.3575592],[112.4001236,32.3733482],[112.3625183,32.3731766],[112.3390503,32.3627548],[112.3238373,32.3335991],[112.3100891,32.3271179],[112.2658005,32.3541298],[112.2262497,32.3935165],[112.1424026,32.3879509],[112.0627823,32.4478531],[112.0527573,32.4743423],[111.9998398,32.458374],[111.9465866,32.5193176],[111.8754425,32.5086365],[111.856163,32.5341148],[111.7971878,32.5452499],[111.7152634,32.6065102],[111.6642838,32.6224747],[111.6406097,32.6084824],[111.6350327,32.6370468],[111.6126099,32.6299324],[111.5772705,32.5988541],[111.5533295,32.6033897],[111.5302124,32.6235046],[111.5207138,32.6563721],[111.5051498,32.6784019],[111.4164963,32.7318306],[111.4144669,32.7386742],[111.4467316,32.74366],[111.4653702,32.7661018],[111.4630432,32.775692],[111.4540176,32.7783318],[111.4315109,32.7592697],[111.4097137,32.7624359],[111.3739471,32.8306885],[111.2846375,32.8640862],[111.2800827,32.9029617],[111.2705002,32.9053497],[111.2441864,32.8862038],[111.2370224,32.9325981],[111.2473068,32.957737],[111.2678223,32.973793],[111.2529831,33.0084038],[111.2347183,33.0218925],[111.232399,33.0427017],[111.1774368,33.0494766],[111.1423721,33.0441551],[111.1521378,33.0598717],[111.1870499,33.0734367],[111.1850967,33.0885277],[111.0881424,33.182148],[111.0673828,33.1822891],[111.0343018,33.1586418],[111.0507202,33.1944008],[111.0040436,33.2174911],[110.9776611,33.2596741],[110.9806213,33.2977448],[111.002327,33.3054199],[110.9947586,33.3256874],[111.0237732,33.3380585],[111.0204315,33.3769455],[110.991127,33.4376373],[111.0151825,33.4524498],[111.0216064,33.4711075],[111.018837,33.5095444],[110.9955368,33.5455971],[111.0019989,33.5631065],[110.9867935,33.5924149],[110.9253387,33.6264687],[110.8762817,33.6338959],[110.8605881,33.6581421],[110.8272171,33.6747513],[110.817627,33.7288704],[110.8035812,33.752224],[110.7720795,33.8018341],[110.7285538,33.8040352],[110.6995773,33.8385582],[110.6550369,33.8569794],[110.6202087,33.8519745],[110.6029282,33.8596649],[110.5936203,33.8778152],[110.5876007,33.8964806],[110.5958405,33.907177],[110.6191177,33.9124298],[110.6216431,33.9312592],[110.6624222,33.9416428],[110.6711807,33.9541779],[110.6440506,33.9790993],[110.6414337,34.0047073],[110.6162033,34.030117],[110.5890121,34.0252457],[110.580513,34.0335617],[110.5824585,34.1027756],[110.6182632,34.1268196],[110.6359482,34.1567001],[110.6363373,34.1729736],[110.5771103,34.1961327],[110.5566483,34.1961975],[110.5277328,34.2217484],[110.5017319,34.2219238],[110.4791336,34.2386551],[110.4365616,34.2471886],[110.4225998,34.2890549],[110.4456711,34.2950211],[110.4951172,34.3367805],[110.472847,34.3789444],[110.4754028,34.4151878],[110.4246216,34.4106865],[110.4079437,34.4218025],[110.3547897,34.5196609],[110.3691788,34.5396614],[110.4053574,34.555069],[110.4069214,34.5773201],[110.3682632,34.5718155],[110.3641281,34.5797462],[110.3811188,34.6055183],[110.4140472,34.6000099],[110.4633636,34.6140594],[110.540657,34.5915298],[110.6766129,34.5963707],[110.7220306,34.6219215],[110.7516403,34.6581688],[110.8954926,34.6619949],[110.9117432,34.6798897],[110.9138718,34.7296143],[110.9315414,34.7349434],[110.9501266,34.7253952],[110.9602203,34.6983032],[111.0202026,34.7383995],[111.0734177,34.7463074],[111.0997467,34.7615662],[111.1309662,34.7889099],[111.1538086,34.8089561],[111.1949234,34.8049355],[111.2186813,34.7928162],[111.2492294,34.8099251],[111.269783,34.8081284],[111.3290863,34.8315735],[111.3431473,34.8269997],[111.368988,34.8154182],[111.3824005,34.8126144],[111.4351807,34.8357048],[111.4909668,34.8308754],[111.5342636,34.8570213],[111.5639801,34.8456764],[111.5853729,34.8846092],[111.6097336,34.8949509],[111.6281662,34.9283485],[111.6699905,34.9473267],[111.6627808,34.9818306],[111.674408,34.9881325],[111.7921829,35.0282021],[111.8067932,35.0631371],[111.8195267,35.0710411],[111.9080429,35.073864],[111.9302902,35.081604],[111.9678421,35.0704536],[112.0109406,35.0629997],[112.0245209,35.0425186],[112.0507965,35.0506439],[112.055397,35.0646439],[112.0484695,35.0865707],[112.0607529,35.1686172],[112.039299,35.1867752],[112.0718613,35.2291298],[112.0523071,35.2786674],[112.2028275,35.256752],[112.1990585,35.2397919],[112.2108765,35.2316208],[112.2809296,35.2544441],[112.2891083,35.2464714],[112.2795029,35.2221603],[112.2859573,35.218071],[112.3525238,35.2204628],[112.3926315,35.2476578],[112.4470367,35.2263641],[112.5724106,35.2169533],[112.6193771,35.2241783],[112.6252136,35.2549667],[112.6469193,35.2675095],[112.6714096,35.2238426],[112.7503433,35.2036133],[112.7690735,35.2089043],[112.7762909,35.2347832],[112.8098297,35.2572556],[112.9217834,35.2499962],[112.9357605,35.2889099],[112.9825211,35.2921104],[112.9921265,35.3029709],[112.9825211,35.3040085],[112.9816971,35.3456726],[113.0041275,35.3612251],[113.0240173,35.3635025],[113.0920563,35.3348274],[113.1200867,35.3393669],[113.1285172,35.3521729],[113.1351624,35.3710403],[113.1629715,35.3925133],[113.1599426,35.4122047],[113.1736832,35.4101219],[113.1838226,35.4226913],[113.2027664,35.4419937],[113.2361526,35.4453506],[113.2932816,35.4252892],[113.2943497,35.4770126],[113.3439865,35.4741173],[113.4005966,35.5121422],[113.4412766,35.5090141],[113.4905472,35.5305481],[113.5003433,35.5662079],[113.5403137,35.6172905],[113.5444565,35.6477089],[113.5960617,35.6300545],[113.6185989,35.63657],[113.5817032,35.7370033],[113.5929794,35.7753906],[113.5719299,35.8217239],[113.6176529,35.8317833],[113.6350479,35.8227615],[113.6506729,35.8368645],[113.631218,35.8701515],[113.6482468,35.9174194],[113.6416168,35.9673386],[113.6337433,35.9698982],[113.6370392,35.9929924],[113.6801834,35.9865685],[113.69133,36.0025101],[113.674469,36.0149384],[113.6889496,36.0183029],[113.6888733,36.0268707],[113.6541977,36.0348282],[113.6784134,36.0640221],[113.6628571,36.0996132],[113.6499481,36.1064873],[113.6652985,36.113472],[113.6471634,36.1234245],[113.6570435,36.1355934],[113.6789017,36.1257172],[113.697731,36.1311798],[113.6973801,36.149025],[113.6509094,36.1658211],[113.6559067,36.1777992],[113.690773,36.1816177],[113.6923218,36.1879349],[113.6656799,36.2001534],[113.6958771,36.208847],[113.6779404,36.2201729],[113.6903534,36.2355499],[113.7021027,36.296093],[113.7300415,36.3246727],[113.7235336,36.3559456]]]]},
  1121 +"properties":{
  1122 +"gid":187,
  1123 +"name":"河南省"}
  1124 +},
  1125 +{"type":"Feature",
  1126 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.7183075,36.2808647],[120.7147369,36.2851257],[120.7174835,36.287941],[120.7203369,36.287323],[120.7215729,36.284832],[120.7213593,36.2827682],[120.7208405,36.2813797],[120.7183075,36.2808647]]]]},
  1127 +"properties":{
  1128 +"gid":188,
  1129 +"name":"山东省"}
  1130 +},
  1131 +{"type":"Feature",
  1132 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.3838577,36.2719688],[121.3867264,36.270874],[121.3881989,36.2688446],[121.3891068,36.2667999],[121.3888626,36.265419],[121.3877563,36.2642555],[121.384613,36.2651176],[121.3831635,36.2666931],[121.3834076,36.2678413],[121.3836517,36.2689896],[121.3838577,36.2719688]]]]},
  1133 +"properties":{
  1134 +"gid":189,
  1135 +"name":"山东省"}
  1136 +},
  1137 +{"type":"Feature",
  1138 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.7646103,36.2393227],[120.767128,36.2402954],[120.7686234,36.2382736],[120.7698669,36.235096],[120.7699127,36.2339516],[120.7731628,36.2303658],[120.7729263,36.2289886],[120.7712402,36.2262268],[120.7694016,36.2251549],[120.7641983,36.2271767],[120.7632828,36.2292175],[120.7631912,36.2315063],[120.7631302,36.2333336],[120.7633514,36.2349434],[120.7636032,36.2360916],[120.7641068,36.237709],[120.7646103,36.2393227]]]]},
  1139 +"properties":{
  1140 +"gid":190,
  1141 +"name":"山东省"}
  1142 +},
  1143 +{"type":"Feature",
  1144 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.817337,36.2398682],[120.8182602,36.2378311],[120.8183594,36.2350845],[120.818161,36.2327919],[120.8170929,36.2307053],[120.8114014,36.2312584],[120.8113174,36.2337761],[120.8117828,36.236763],[120.8125763,36.2381554],[120.8148117,36.2391243],[120.816803,36.2391701],[120.817337,36.2398682]]]]},
  1145 +"properties":{
  1146 +"gid":191,
  1147 +"name":"山东省"}
  1148 +},
  1149 +{"type":"Feature",
  1150 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.0997086,36.2299385],[120.1048126,36.2289314],[120.108223,36.2288017],[120.1107864,36.2284203],[120.1129837,36.2239037],[120.1130676,36.2218475],[120.1103134,36.2201614],[120.105957,36.2220955],[120.1018906,36.2244949],[120.1009598,36.2262993],[120.1002884,36.228569],[120.0997086,36.2299385]]]]},
  1151 +"properties":{
  1152 +"gid":192,
  1153 +"name":"山东省"}
  1154 +},
  1155 +{"type":"Feature",
  1156 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.9439163,36.1861877],[120.9447708,36.186203],[120.9476471,36.1848946],[120.9485397,36.1837692],[120.9483185,36.1819344],[120.9480667,36.1810112],[120.9464111,36.1796036],[120.94384,36.180233],[120.9435272,36.180912],[120.9434967,36.1820564],[120.9437637,36.1827507],[120.9437332,36.1834335],[120.9439163,36.1861877]]]]},
  1157 +"properties":{
  1158 +"gid":193,
  1159 +"name":"山东省"}
  1160 +},
  1161 +{"type":"Feature",
  1162 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.3090363,36.0932465],[120.3072128,36.0964012],[120.3067398,36.1009674],[120.3093872,36.1051598],[120.3113098,36.1065865],[120.315773,36.1083145],[120.3192062,36.1072655],[120.3201294,36.1056862],[120.3196335,36.1040726],[120.3174286,36.1026344],[120.3137894,36.1016197],[120.3127365,36.0995293],[120.3125687,36.0970078],[120.3120499,36.0958481],[120.3112488,36.0946808],[120.3090363,36.0932465]]]]},
  1163 +"properties":{
  1164 +"gid":194,
  1165 +"name":"山东省"}
  1166 +},
  1167 +{"type":"Feature",
  1168 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.5743637,36.0924683],[120.574173,36.097271],[120.5789413,36.0985374],[120.582077,36.097702],[120.5855865,36.0950394],[120.5880127,36.0909843],[120.5877533,36.0902901],[120.5835037,36.0901794],[120.580307,36.0923882],[120.5783005,36.0930252],[120.5763168,36.0932045],[120.5743637,36.0924683]]]]},
  1169 +"properties":{
  1170 +"gid":195,
  1171 +"name":"山东省"}
  1172 +},
  1173 +{"type":"Feature",
  1174 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.4284134,36.0605354],[120.4287872,36.0580292],[120.4283218,36.0557289],[120.4252472,36.0547295],[120.42379,36.0558357],[120.4237366,36.0572052],[120.4239883,36.0578995],[120.4256363,36.0588608],[120.4284134,36.0605354]]]]},
  1175 +"properties":{
  1176 +"gid":196,
  1177 +"name":"山东省"}
  1178 +},
  1179 +{"type":"Feature",
  1180 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.1936569,36.0320663],[120.1940536,36.0361977],[120.1958618,36.0399132],[120.1979828,36.0431786],[120.2015381,36.0460281],[120.2059174,36.0493622],[120.2094727,36.0524406],[120.211319,36.0554695],[120.2157364,36.0578842],[120.2199402,36.058918],[120.2252808,36.0597572],[120.2286835,36.0596237],[120.2326965,36.0583687],[120.2316971,36.0551338],[120.2279282,36.0506744],[120.2232437,36.0480232],[120.2194138,36.0382996],[120.2144928,36.0342636],[120.2083664,36.0320282],[120.2042236,36.02985],[120.2003708,36.0272217],[120.1986694,36.027401],[120.1980667,36.0283012],[120.1936569,36.0320663]]]]},
  1181 +"properties":{
  1182 +"gid":197,
  1183 +"name":"山东省"}
  1184 +},
  1185 +{"type":"Feature",
  1186 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.2821808,36.0524292],[120.2836533,36.0513268],[120.2860107,36.0488739],[120.2857666,36.0477219],[120.2838364,36.0467529],[120.2812805,36.0469093],[120.281189,36.0491982],[120.2811584,36.0498848],[120.2811203,36.0507965],[120.2821808,36.0524292]]]]},
  1187 +"properties":{
  1188 +"gid":198,
  1189 +"name":"山东省"}
  1190 +},
  1191 +{"type":"Feature",
  1192 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.1840515,36.0317879],[120.1845398,36.033638],[120.1862106,36.0341415],[120.1890869,36.0330811],[120.1908569,36.0312996],[120.1912384,36.0292511],[120.1904907,36.0269394],[120.1853867,36.0270233],[120.1853485,36.027935],[120.1840515,36.0317879]]]]},
  1193 +"properties":{
  1194 +"gid":199,
  1195 +"name":"山东省"}
  1196 +},
  1197 +{"type":"Feature",
  1198 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.0538635,35.8726463],[120.0548096,35.869915],[120.0548477,35.8690033],[120.0530319,35.8650551],[120.0524902,35.8645821],[120.0516815,35.8636436],[120.0497665,35.8619881],[120.0475769,35.8605537],[120.0455933,35.8609619],[120.046051,35.8634987],[120.0465927,35.8642006],[120.0489807,35.8677025],[120.0495071,35.8684044],[120.0508423,35.8705063],[120.0513916,35.8709755],[120.0522232,35.8714561],[120.0533218,35.8719444],[120.0538635,35.8726463]]]]},
  1199 +"properties":{
  1200 +"gid":200,
  1201 +"name":"山东省"}
  1202 +},
  1203 +{"type":"Feature",
  1204 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.1761169,35.7909622],[120.1750565,35.7895508],[120.1746292,35.7867889],[120.1734695,35.7814713],[120.1746902,35.7774506],[120.1744766,35.7759132],[120.1753387,35.7707405],[120.1759262,35.7693901],[120.1773529,35.7661095],[120.177803,35.7656784],[120.1832733,35.7604866],[120.1843872,35.7594147],[120.1847763,35.7566719],[120.1834869,35.7536583],[120.1727295,35.7481117],[120.1691666,35.7452698],[120.1658173,35.7447281],[120.1616516,35.7453003],[120.1610413,35.7455482],[120.1544724,35.7472],[120.1525116,35.7495918],[120.1515198,35.7507935],[120.1495132,35.758007],[120.1492233,35.7641945],[120.1510468,35.7670097],[120.1545486,35.7705574],[120.1588669,35.7745934],[120.1631165,35.7797737],[120.1655807,35.7859726],[120.1669083,35.7893028],[120.1761169,35.7909622]]]]},
  1205 +"properties":{
  1206 +"gid":201,
  1207 +"name":"山东省"}
  1208 +},
  1209 +{"type":"Feature",
  1210 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.9269104,35.6368484],[119.9267197,35.6358376],[119.9243698,35.6323433],[119.9218521,35.630249],[119.9213409,35.627552],[119.9187698,35.6251183],[119.9161835,35.6259651],[119.9159775,35.628231],[119.9180527,35.634697],[119.9222031,35.637619],[119.9269104,35.6368484]]]]},
  1211 +"properties":{
  1212 +"gid":202,
  1213 +"name":"山东省"}
  1214 +},
  1215 +{"type":"Feature",
  1216 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.2559662,35.1280594],[119.2830582,35.1183891],[119.2937469,35.1030426],[119.2939911,35.0972099],[119.2874069,35.0949554],[119.2836685,35.0886765],[119.2708511,35.0850716],[119.2604904,35.0804443],[119.2530136,35.0816689],[119.2458725,35.0702477],[119.2325134,35.0668869],[119.222229,35.067997],[119.2251282,35.0605278],[119.2184372,35.0564346],[119.2138367,35.0405388],[119.20784,35.0203362],[119.2054214,35.0128555],[119.1984024,34.9894753],[119.1986313,34.9703941],[119.2003937,34.9487267],[119.2012711,34.9312286],[119.2028503,34.92519],[119.1955185,34.9238815],[119.1998062,34.916584],[119.1953125,34.9068871],[119.1896362,34.8963203],[119.1876526,34.9094963],[119.1827087,34.8970604],[119.1794128,34.8932877],[119.1814804,34.8860817],[119.1784363,34.8728752],[119.1823196,34.8676643],[119.1801071,34.859024],[119.1708832,34.8584785],[119.16539,34.855484],[119.178421,34.8494415],[119.1833725,34.8391342],[119.1865463,34.8364754],[119.1876526,34.8351326],[119.1959305,34.8255234],[119.2056427,34.8108826],[119.2130432,34.7966805],[119.2207184,34.7847786],[119.2208786,34.7846718],[119.2268829,34.7805405],[119.2342834,34.7731743],[119.2489395,34.7668266],[119.2519531,34.7614174],[119.2581711,34.7584038],[119.2656326,34.7571754],[119.2754364,34.7491875],[119.2975082,34.7455139],[119.3154297,34.7468338],[119.3301773,34.7510414],[119.3312302,34.7588081],[119.32798,34.7692871],[119.328743,34.7697868],[119.3377228,34.7691078],[119.3487396,34.7757721],[119.3699265,34.771431],[119.3626022,34.7657661],[119.3764725,34.7513924],[119.4129562,34.7466278],[119.422287,34.7487564],[119.4312897,34.7499809],[119.4496078,34.7443733],[119.4579773,34.7488403],[119.4576797,34.7398911],[119.4768982,34.7353859],[119.474617,34.7263832],[119.4811707,34.7106514],[119.4728165,34.7068291],[119.4642792,34.7009201],[119.4629822,34.6920929],[119.4514008,34.6896019],[119.4498672,34.6832352],[119.4702072,34.6701775],[119.4917068,34.6538506],[119.4978867,34.6503677],[119.5026703,34.6467133],[119.5181427,34.6363869],[119.5313263,34.6250153],[119.5384903,34.6196442],[119.5464935,34.6098747],[119.5594788,34.604248],[119.577652,34.6013794],[119.5858383,34.5945854],[119.5959396,34.5874786],[119.6071625,34.5846825],[119.6191635,34.5767975],[119.6279373,34.5747986],[119.6380386,34.5676842],[119.6504288,34.561615],[119.6554108,34.5570259],[119.6477966,34.5470238],[119.6348114,34.5356483],[119.6287766,34.5285606],[119.6243668,34.5207138],[119.6146393,34.5080452],[119.6087723,34.5032463],[119.5993805,34.4999809],[119.5856323,34.4936943],[119.5696335,34.4955482],[119.5552673,34.4968681],[119.5564117,34.4961128],[119.5683289,34.4882507],[119.5816803,34.4842148],[119.5877991,34.4800377],[119.5984421,34.4729042],[119.6085129,34.4696999],[119.6162415,34.4688988],[119.6280136,34.4998627],[119.6744919,34.5177879],[119.6797714,34.5260544],[119.6841965,34.5341339],[119.6908264,34.5292358],[119.7006073,34.5384521],[119.7066269,34.5326653],[119.7157364,34.5359306],[119.7230301,34.5326118],[119.7424774,34.528286],[119.7445831,34.5224457],[119.7557373,34.5228577],[119.7639389,34.5167389],[119.7737503,34.5137634],[119.7825012,34.5076141],[119.7912292,34.5010109],[119.7942734,34.4963226],[119.8059921,34.4867477],[119.8133469,34.4807472],[119.8182068,34.4809265],[119.8255997,34.4792023],[119.8340302,34.4723816],[119.845459,34.4729996],[119.8550568,34.467041],[119.8621979,34.4657898],[119.8766479,34.4699478],[119.8858871,34.4669876],[119.8942337,34.4629211],[119.9159927,34.4642067],[119.9297867,34.4628716],[119.9375534,34.4585953],[119.9452209,34.4609947],[119.9554367,34.45224],[119.9681015,34.4504929],[119.9802322,34.4411812],[119.9921265,34.4406204],[120,34.4386368],[120.0030365,34.4330444],[120.0145264,34.4302063],[120.0208969,34.4246712],[120.0218735,34.4244003],[120.0335312,34.4211807],[120.0411301,34.4129257],[120.0537262,34.4101219],[120.0616379,34.406929],[120.0707092,34.4026299],[120.0781403,34.3978119],[120.0855331,34.3939171],[120.0861588,34.3803062],[120.0861664,34.3802109],[120.0964737,34.3848495],[120.105278,34.3803101],[120.1139526,34.3752289],[120.1149597,34.3746452],[120.1261673,34.3717842],[120.1349869,34.3667831],[120.1447983,34.3641052],[120.151413,34.3590355],[120.1623383,34.356163],[120.1713562,34.3525391],[120.1764984,34.3492584],[120.1855011,34.3460922],[120.1961823,34.3425217],[120.2009277,34.3412437],[120.2045898,34.3402596],[120.2132874,34.3375435],[120.2188416,34.3312836],[120.2272263,34.3294792],[120.2399063,34.324585],[120.2505035,34.3228455],[120.2639465,34.3191261],[120.2723923,34.315937],[120.2820816,34.309803],[120.2842789,34.3038979],[120.287323,34.2977905],[120.2835464,34.2891769],[120.2801895,34.2840233],[120.2804337,34.2785149],[120.2817917,34.2728157],[120.2848206,34.2669373],[120.2818298,34.2597389],[120.2795563,34.2548332],[120.2864075,34.2499886],[120.2875977,34.2419891],[120.2876587,34.2344093],[120.2895584,34.2289543],[120.2950287,34.2240677],[120.3003006,34.2173424],[120.2976532,34.2085304],[120.3036804,34.2034302],[120.3111191,34.1914864],[120.3169632,34.1845436],[120.3205795,34.1775322],[120.3236237,34.1711922],[120.3251419,34.1618233],[120.3206329,34.1575508],[120.3285675,34.1529694],[120.3297272,34.1454239],[120.3302383,34.1339531],[120.3344879,34.1251259],[120.3282013,34.1173553],[120.3226471,34.1116753],[120.3147507,34.1093712],[120.3092575,34.1087456],[120.3095093,34.1086693],[120.3190536,34.1058273],[120.3280106,34.1028824],[120.3335495,34.1087914],[120.3408966,34.1048775],[120.3501511,34.0952797],[120.3549194,34.0809517],[120.3565903,34.0743446],[120.3552475,34.0671844],[120.3662186,34.0560265],[120.3765335,34.0347443],[120.3816299,34.0250206],[120.3883667,34.0096054],[120.3931122,34.0019341],[120.3916168,33.991787],[120.4039612,33.9804382],[120.4093094,33.9714088],[120.4148636,33.9577942],[120.418129,33.9521484],[120.4181824,33.9445686],[120.4205933,33.9333878],[120.427887,33.9301567],[120.4325104,33.9185791],[120.4388275,33.9125633],[120.4414673,33.9023056],[120.4466324,33.8974037],[120.4508667,33.88834],[120.4520035,33.881485],[120.4572372,33.8747482],[120.4599228,33.8700027],[120.4650192,33.866478],[120.4710617,33.8602219],[120.4774628,33.8521385],[120.4827499,33.8440247],[120.4860764,33.8367729],[120.4882507,33.8310928],[120.4855728,33.822979],[120.4792099,33.8170509],[120.4713974,33.8131485],[120.4648972,33.8106613],[120.4547272,33.8105927],[120.4571075,33.7998695],[120.4586868,33.7948647],[120.454483,33.7906036],[120.4579697,33.7858849],[120.4433517,33.76754],[120.4409027,33.7637253],[120.4317474,33.7495155],[120.4420929,33.7521133],[120.4521484,33.7675705],[120.459137,33.7776489],[120.4636002,33.7828331],[120.4687805,33.7774696],[120.4730835,33.7732315],[120.4765778,33.7816048],[120.4857407,33.7729149],[120.491478,33.7606773],[120.4784927,33.7559357],[120.4856262,33.7494812],[120.4897766,33.7422523],[120.4943008,33.7327385],[120.502182,33.7283707],[120.5051498,33.7229462],[120.518898,33.7228851],[120.5261002,33.7214851],[120.5293427,33.7160645],[120.528511,33.70961],[120.5243378,33.7044373],[120.5201492,33.6992645],[120.5190964,33.6916504],[120.5256271,33.6865578],[120.5334702,33.6828766],[120.5335236,33.6748428],[120.5384598,33.6685524],[120.5422363,33.6633797],[120.5307007,33.6568451],[120.5231476,33.6603012],[120.5165863,33.6594238],[120.5093613,33.6619644],[120.5165176,33.6479416],[120.5186691,33.6424904],[120.5141068,33.6331711],[120.5280914,33.6271439],[120.5411072,33.6176414],[120.5502472,33.6089439],[120.5587921,33.5947189],[120.562851,33.5826607],[120.5606766,33.5754814],[120.5672531,33.5758972],[120.5647125,33.5707703],[120.5707474,33.5640526],[120.5591965,33.5648727],[120.5532837,33.5619469],[120.5534363,33.5618248],[120.559227,33.5572968],[120.5692596,33.5534439],[120.5804062,33.5491676],[120.583252,33.5398331],[120.5830765,33.5306396],[120.5907669,33.5303993],[120.5984268,33.5170631],[120.5981293,33.5110855],[120.5941772,33.5072975],[120.5959473,33.4974747],[120.600853,33.4914093],[120.5918427,33.4904671],[120.5936966,33.4852371],[120.6019669,33.4840927],[120.6096268,33.477417],[120.6101837,33.4638824],[120.6043472,33.4591255],[120.5956192,33.4515305],[120.6037979,33.4524498],[120.6028671,33.4416275],[120.6056137,33.4279251],[120.6007919,33.4183731],[120.5976868,33.4136925],[120.5969467,33.4049454],[120.5922318,33.3933258],[120.5878601,33.3863144],[120.5860138,33.3777618],[120.5884399,33.3720894],[120.591713,33.3859634],[120.5968628,33.3936882],[120.6009064,33.4018402],[120.6016464,33.4108162],[120.6033401,33.416378],[120.6103134,33.4200211],[120.608902,33.414238],[120.6098938,33.4032402],[120.6101837,33.3894691],[120.6191864,33.3830643],[120.629303,33.3766861],[120.6335831,33.3722115],[120.6349335,33.369545],[120.6365585,33.3663254],[120.6510468,33.3598366],[120.6489182,33.3515129],[120.6462021,33.3440857],[120.6442566,33.3380585],[120.6485214,33.3340454],[120.6448669,33.3295784],[120.6491623,33.3248749],[120.6494598,33.3173065],[120.6545029,33.3144608],[120.6590271,33.3104515],[120.664093,33.3140373],[120.667717,33.3051796],[120.6720276,33.3000183],[120.6749268,33.2955055],[120.6706772,33.2924004],[120.6662369,33.2874565],[120.6763611,33.2872772],[120.6804428,33.2809563],[120.6773529,33.2758217],[120.6763763,33.2683334],[120.6856995,33.2721481],[120.6941376,33.2661781],[120.6958008,33.2720108],[120.6955719,33.2727699],[120.6957779,33.2800026],[120.7025604,33.2813377],[120.7107925,33.2806435],[120.7213211,33.2699089],[120.7277985,33.2581444],[120.7337265,33.245903],[120.7366333,33.234726],[120.7259216,33.2291527],[120.7242737,33.2222176],[120.7315521,33.2178268],[120.7297134,33.2088203],[120.7323837,33.2036095],[120.7303619,33.1922989],[120.7278976,33.1853447],[120.7201767,33.1871986],[120.716362,33.1870956],[120.7138214,33.1822014],[120.7023087,33.1763763],[120.712738,33.1750526],[120.7080078,33.17033],[120.7203522,33.1617126],[120.7241135,33.1565323],[120.7333603,33.1572456],[120.7423172,33.151516],[120.7419128,33.1409378],[120.7510605,33.1441727],[120.7613831,33.1384811],[120.7659225,33.1337814],[120.7602615,33.1249008],[120.7522278,33.1210098],[120.7446899,33.1254005],[120.7341232,33.1163864],[120.7421036,33.114994],[120.7496033,33.118412],[120.766243,33.1186333],[120.780838,33.1220093],[120.787941,33.1217422],[120.7887878,33.1210747],[120.7796936,33.1162376],[120.768959,33.1115875],[120.7588577,33.1117744],[120.7500229,33.1005135],[120.7618332,33.105423],[120.7707672,33.1070442],[120.7694168,33.099659],[120.7779617,33.0973625],[120.7673111,33.0906448],[120.7570419,33.0880699],[120.7789688,33.0854454],[120.7869263,33.0767021],[120.7897263,33.0678215],[120.7793198,33.069149],[120.7896805,33.0618515],[120.780571,33.0577011],[120.783783,33.0522766],[120.7951202,33.0551071],[120.8009033,33.0536537],[120.7934418,33.0490875],[120.7859573,33.0449867],[120.7806168,33.0420876],[120.7737503,33.0363884],[120.7907562,33.0407486],[120.7943878,33.0416489],[120.7980499,33.0425529],[120.791893,33.0325127],[120.8003235,33.0331993],[120.807373,33.0340729],[120.8031616,33.0229378],[120.7921677,33.0254021],[120.7836685,33.0265503],[120.7914963,33.0212517],[120.7975388,33.0202637],[120.8052216,33.0188599],[120.8023987,33.0141945],[120.7997131,33.0063133],[120.8067627,33.0000687],[120.8046036,33.0066719],[120.8084869,33.0118294],[120.8125,33.0066528],[120.8184967,33.0134735],[120.8224792,33.0020981],[120.8293915,32.9992943],[120.8381195,32.9990654],[120.8288803,33.0057106],[120.8326263,33.0147667],[120.8397217,33.0073738],[120.8374863,33.0158119],[120.8440628,33.0224152],[120.8519211,33.0235405],[120.8494034,33.0179634],[120.8466568,33.0112343],[120.8503036,33.0156898],[120.8542633,33.0194702],[120.8627472,33.0183144],[120.8638077,33.0116844],[120.8590698,33.0071945],[120.8548508,33.0034103],[120.8547974,33.0019379],[120.8545837,32.9962845],[120.8589096,32.9897385],[120.8588409,32.9986916],[120.8640671,33.0047989],[120.8741379,33.0050621],[120.8746414,33.0135727],[120.8780136,33.0182533],[120.8806381,33.0135002],[120.8844528,33.0062523],[120.8797684,33.0001564],[120.8825531,32.9915047],[120.8776169,32.9847145],[120.8790436,32.9755669],[120.8787994,32.9675255],[120.8771362,32.9608231],[120.8691864,32.955101],[120.8625183,32.951252],[120.8597031,32.9463577],[120.8550186,32.9407234],[120.85466,32.9356613],[120.8612671,32.9411163],[120.8676682,32.9373779],[120.8676987,32.9438095],[120.8715973,32.9487343],[120.8760376,32.9539032],[120.8817902,32.9455566],[120.8770218,32.934639],[120.8832779,32.934803],[120.8850098,32.9173927],[120.8773117,32.9194908],[120.8714828,32.9080849],[120.8806763,32.9094734],[120.8749084,32.8962326],[120.8852386,32.9038506],[120.8821411,32.8920593],[120.8874435,32.8958702],[120.8937836,32.8935089],[120.8906937,32.8817177],[120.8960419,32.8839226],[120.9075775,32.8810081],[120.9071426,32.8708916],[120.8925629,32.8698654],[120.8991699,32.8656349],[120.9052811,32.8621178],[120.9068527,32.8564186],[120.904953,32.8487892],[120.8939819,32.8512611],[120.9034576,32.8450775],[120.89534,32.8366013],[120.9029465,32.8365669],[120.9028397,32.8322029],[120.895813,32.8237534],[120.89077,32.8204079],[120.8812027,32.8223038],[120.8819199,32.8169632],[120.885437,32.8099327],[120.8848419,32.8041763],[120.8877563,32.7987442],[120.8846283,32.7952156],[120.8784027,32.8021698],[120.8725891,32.8047752],[120.8699036,32.8040161],[120.8660278,32.7984047],[120.8629227,32.7944183],[120.8551483,32.7985764],[120.8512115,32.8021469],[120.8463898,32.8001823],[120.8393173,32.8073463],[120.8344574,32.8138771],[120.8295364,32.8144341],[120.8294296,32.8102989],[120.8379669,32.7999611],[120.8398514,32.7933502],[120.8541794,32.7808685],[120.8600922,32.7752838],[120.8567505,32.7701454],[120.8389969,32.7726593],[120.8322067,32.7724838],[120.8364105,32.7691498],[120.8375015,32.7615967],[120.8444672,32.76408],[120.8501282,32.7656059],[120.8613281,32.7549896],[120.8704529,32.752594],[120.8660431,32.7467384],[120.8775635,32.7440529],[120.8860092,32.7431259],[120.8837204,32.7389336],[120.8828506,32.7329369],[120.8918762,32.7313385],[120.8957672,32.7360344],[120.9033966,32.7357712],[120.9118881,32.7263451],[120.9146194,32.71838],[120.914917,32.7101212],[120.9109192,32.7008324],[120.9063873,32.6910706],[120.8976898,32.6988831],[120.890892,32.6991653],[120.8858414,32.7033958],[120.884201,32.6964607],[120.8949738,32.6914635],[120.8979721,32.691082],[120.8995132,32.6787186],[120.8988266,32.6679115],[120.8899918,32.671814],[120.8857803,32.6756096],[120.8830185,32.6769142],[120.8824463,32.6704712],[120.8756485,32.6707497],[120.8756638,32.6631737],[120.8759766,32.6544571],[120.8912811,32.6516418],[120.9006729,32.6470642],[120.9033127,32.6416206],[120.9021606,32.6360779],[120.8979187,32.6334419],[120.8870087,32.6349983],[120.8817291,32.6309547],[120.8750763,32.6349144],[120.8696136,32.6285706],[120.8614273,32.6370811],[120.8578491,32.6457138],[120.8564529,32.654171],[120.8535233,32.6455994],[120.8529434,32.6391525],[120.8589172,32.6315041],[120.8616867,32.6228523],[120.8751831,32.6248131],[120.8845673,32.6275826],[120.8800507,32.6175919],[120.8717422,32.6148491],[120.8663025,32.6153946],[120.865303,32.6105194],[120.8648682,32.6083679],[120.8644638,32.6063919],[120.8725662,32.6037788],[120.8809433,32.6010818],[120.8910294,32.6068573],[120.9761429,32.555088],[120.9782333,32.5422821],[120.9808807,32.536377],[120.9866104,32.5353737],[120.9870911,32.5294189],[120.9910965,32.5311279],[120.9942932,32.5325851],[120.9967804,32.5388489],[121.0025711,32.5360069],[121.0089188,32.5405312],[121.0220871,32.5358124],[121.0338821,32.531971],[121.0374603,32.5302238],[121.0430679,32.5326576],[121.056427,32.5302353],[121.0670624,32.5284309],[121.0733566,32.5262871],[121.0783463,32.5234261],[121.0859833,32.522007],[121.093689,32.5185204],[121.0962982,32.5135345],[121.0940933,32.5068207],[121.0885086,32.5037003],[121.0804977,32.5080948],[121.0617371,32.5023537],[121.0628967,32.5000877],[121.0736465,32.5026474],[121.0806732,32.5032806],[121.0826035,32.5024071],[121.0784531,32.4970245],[121.088913,32.4998093],[121.0867386,32.4921761],[121.0898819,32.4874306],[121.0946426,32.4907646],[121.0984879,32.4970589],[121.1013412,32.5008011],[121.1059036,32.5022888],[121.1105423,32.5010262],[121.1145172,32.503643],[121.1201477,32.5053902],[121.1324921,32.5006371],[121.1435318,32.4947014],[121.1528473,32.4914818],[121.1662064,32.4888153],[121.1700668,32.4868431],[121.1735611,32.4795761],[121.1748123,32.474556],[121.1771393,32.4697914],[121.1821594,32.4733543],[121.1847916,32.4757118],[121.1871033,32.4716339],[121.1927719,32.4719963],[121.1971664,32.4698067],[121.2013474,32.4662323],[121.2052994,32.4697685],[121.2162704,32.4654312],[121.2245026,32.4621811],[121.2266235,32.455574],[121.235817,32.4555588],[121.2431488,32.45504],[121.2500229,32.4517555],[121.2580032,32.4480362],[121.2649078,32.4433746],[121.2735367,32.4444923],[121.2812576,32.4400749],[121.289238,32.4361267],[121.2982864,32.4324303],[121.3018265,32.4313622],[121.300621,32.4269714],[121.3057022,32.4289246],[121.3136063,32.4272652],[121.3185272,32.4255409],[121.3179321,32.418869],[121.3224564,32.4212685],[121.3259201,32.4229546],[121.3352432,32.4194908],[121.3391571,32.4152145],[121.3393173,32.4101677],[121.3349915,32.4013481],[121.3424301,32.4056473],[121.3495026,32.4044266],[121.3557587,32.4034195],[121.3603668,32.3943405],[121.3608398,32.3879204],[121.3469391,32.3827896],[121.365593,32.3832054],[121.3696823,32.3821487],[121.3511505,32.3778343],[121.3529968,32.3763809],[121.3580627,32.373394],[121.3655472,32.3758583],[121.3712463,32.3750648],[121.3765869,32.3685265],[121.3759003,32.3648376],[121.3692703,32.3605576],[121.3704987,32.3557625],[121.3628006,32.3512306],[121.3701935,32.3484116],[121.3647995,32.3393402],[121.3598404,32.3334885],[121.3602066,32.3268661],[121.3630066,32.2757072],[121.3630066,32.2754784],[121.36586,32.2704887],[121.3736877,32.2708931],[121.3820496,32.27108],[121.387207,32.270504],[121.3937836,32.267662],[121.4006729,32.2632256],[121.4024506,32.2577553],[121.399353,32.2533226],[121.3927994,32.2467499],[121.3832169,32.2421799],[121.376358,32.2457008],[121.3736267,32.2463264],[121.3627701,32.2396584],[121.3603897,32.237999],[121.3452682,32.2381172],[121.336441,32.2353973],[121.3360367,32.2307968],[121.3410873,32.2249413],[121.3397598,32.2157288],[121.3392487,32.2063026],[121.3416977,32.203064],[121.3440323,32.1999855],[121.3526764,32.1997185],[121.3682938,32.2012138],[121.3738937,32.1600189],[121.4129105,32.1631737],[121.4201508,32.1332893],[121.4203186,32.1325722],[121.4252472,32.1301575],[121.4247131,32.1124687],[121.4275513,32.1128235],[121.4381409,32.1141396],[121.4505615,32.1137199],[121.4624023,32.1144333],[121.4711304,32.1109467],[121.4761734,32.1048584],[121.4773865,32.1030846],[121.480957,32.0978432],[121.481781,32.1065826],[121.4818726,32.1125526],[121.4966507,32.1142464],[121.5115509,32.1120338],[121.5270462,32.107769],[121.5333633,32.1062584],[121.5411606,32.104393],[121.5482788,32.1006355],[121.5556564,32.0971184],[121.5668488,32.0925255],[121.5785828,32.0874901],[121.5921478,32.0845528],[121.5959473,32.0830307],[121.6106567,32.077816],[121.6242371,32.0744171],[121.6353912,32.0707359],[121.642807,32.0658379],[121.6545105,32.0617104],[121.6646729,32.0547943],[121.6723404,32.050354],[121.6769638,32.0486107],[121.6884232,32.0437851],[121.7008972,32.0405884],[121.7085266,32.0372925],[121.7134323,32.0350914],[121.7226868,32.0313683],[121.7300797,32.0273819],[121.7334518,32.0219383],[121.7326965,32.0200882],[121.7355194,32.0153198],[121.7422028,32.0071869],[121.7447128,32.0037918],[121.7531967,32.0000114],[121.761261,31.9907131],[121.7668991,31.9852123],[121.7765884,31.9822197],[121.7771072,31.9783268],[121.7775192,31.9687958],[121.7773895,31.9666386],[121.7846069,31.9675617],[121.7918472,31.9615726],[121.7921066,31.9533615],[121.7993698,31.9512863],[121.8006821,31.9393883],[121.8101883,31.9355984],[121.812767,31.9354706],[121.8133087,31.9329529],[121.8248825,31.9336109],[121.8277817,31.9171333],[121.8401337,31.9081783],[121.8406219,31.8951397],[121.8416519,31.8836994],[121.8504715,31.8688049],[121.8520508,31.8596516],[121.8562927,31.8445415],[121.8586884,31.8379002],[121.8626938,31.8305664],[121.875,31.816349],[121.8875427,31.7934341],[121.8960571,31.7764797],[121.8927765,31.7639065],[121.895668,31.7478828],[121.8950806,31.735302],[121.8990173,31.7144699],[121.8995209,31.7071457],[121.895462,31.7002945],[121.8855591,31.6917839],[121.8771515,31.6886806],[121.8583527,31.6878185],[121.8406372,31.6887817],[121.8301697,31.6901817],[121.8110504,31.6948986],[121.7920837,31.7003384],[121.7708511,31.708849],[121.7647171,31.7106934],[121.7542877,31.7141857],[121.74646,31.7146187],[121.7343063,31.7169209],[121.7185364,31.7190151],[121.6978531,31.7229252],[121.6804199,31.7266254],[121.663002,31.7282715],[121.6490021,31.731472],[121.6312866,31.7394981],[121.6126328,31.7465839],[121.6065826,31.7484455],[121.5992432,31.7576275],[121.5896683,31.7580681],[121.5837631,31.759903],[121.5692596,31.7697487],[121.5511627,31.7796803],[121.5359421,31.78372],[121.5195465,31.7894459],[121.5086517,31.7977066],[121.4993973,31.8082066],[121.491539,31.8213234],[121.4830017,31.8274231],[121.4690781,31.8350601],[121.4617462,31.8385124],[121.4614868,31.8386307],[121.4614105,31.8386669],[121.4526062,31.8425179],[121.4399796,31.8457165],[121.4171066,31.8498249],[121.4063568,31.8525639],[121.3899536,31.8548393],[121.3794632,31.8566628],[121.3708496,31.8593998],[121.3563232,31.8639622],[121.3447571,31.8706341],[121.3399429,31.8740349],[121.3315811,31.880888],[121.3086472,31.8861561],[121.2954865,31.8856201],[121.279892,31.8810196],[121.270752,31.8787193],[121.2567673,31.8702297],[121.2398987,31.8631325],[121.226387,31.8644562],[121.2091522,31.8621769],[121.195488,31.855011],[121.1776428,31.8463516],[121.1651306,31.8412151],[121.1507874,31.839962],[121.1379471,31.8464088],[121.120697,31.8568859],[121.1096573,31.8607445],[121.0978394,31.8572769],[121.0855026,31.8490047],[121.0779724,31.8453541],[121.0777969,31.8452702],[121.0669785,31.8400249],[121.057579,31.8374805],[121.0505676,31.8424911],[121.0397263,31.8384228],[121.034462,31.8344288],[121.0253372,31.8289089],[121.0086975,31.8203602],[120.9944916,31.8155289],[120.9781036,31.8114185],[120.9747772,31.8205795],[120.9740982,31.7883301],[120.9735031,31.7599621],[120.9818573,31.7589722],[120.9963684,31.7606277],[121.0035629,31.7569866],[121.0112305,31.7544861],[121.0197906,31.7499599],[121.0289536,31.7456436],[121.0383911,31.7367535],[121.0577698,31.7289982],[121.0598831,31.7287025],[121.0622787,31.728363],[121.0717392,31.7270241],[121.0811462,31.7252235],[121.09758,31.7122307],[121.1018906,31.7085819],[121.1145477,31.6999245],[121.1274567,31.693325],[121.1341934,31.6869373],[121.1523972,31.6804829],[121.1637573,31.6762581],[121.1809769,31.6646309],[121.1917572,31.6490955],[121.1987534,31.646595],[121.2113724,31.6404438],[121.2318115,31.6249275],[121.2380066,31.6134987],[121.2506409,31.6020813],[121.2581787,31.5895119],[121.2651672,31.5833454],[121.2726974,31.5742054],[121.2802429,31.5547676],[121.2899094,31.5470028],[121.2955627,31.53969],[121.3001328,31.5268822],[121.3020172,31.5186462],[121.3041687,31.5163612],[121.3087311,31.5163689],[121.3191833,31.5154648],[121.3310165,31.5061798],[121.3209991,31.5020847],[121.3038177,31.5108643],[121.2952728,31.4936829],[121.2494431,31.4772263],[121.2365265,31.4948215],[121.1911316,31.4739933],[121.1780472,31.4488888],[121.1488495,31.4408321],[121.1648331,31.4279118],[121.1466827,31.4180584],[121.1539764,31.4081364],[121.1413422,31.3864803],[121.1118927,31.3786392],[121.1070328,31.3642864],[121.1143188,31.347023],[121.1298599,31.3467178],[121.1339569,31.3286858],[121.1171036,31.312891],[121.1455536,31.3025723],[121.1446304,31.2825813],[121.0789871,31.2857723],[121.0588379,31.2655258],[121.072113,31.1614094],[121.0437622,31.1544971],[121.0466766,31.1398773],[120.9756393,31.1323204],[120.9587708,31.1408367],[120.8804092,31.1362514],[120.8581619,31.1094856],[120.8735275,31.0984173],[120.8956223,31.0856876],[120.8951187,31.0119781],[120.8390732,30.9840755],[120.8211136,31.0081577],[120.7754593,31.0018635],[120.7416,30.9664898],[120.7027664,30.9706917],[120.6785431,30.9560051],[120.7052994,30.9328766],[120.7052078,30.9007301],[120.6460266,30.8535957],[120.5858612,30.8594475],[120.5297012,30.7992382],[120.5018768,30.762846],[120.4872818,30.7683849],[120.4483109,30.816597],[120.4534073,30.8413219],[120.4359665,30.8573322],[120.4438095,30.8740997],[120.4191971,30.9280148],[120.4077301,30.9216995],[120.4078674,30.892767],[120.3505173,30.887579],[120.3616714,30.9519882],[120.2954025,30.9366283],[120.229187,30.9324894],[120.1533813,30.9406414],[120.1122284,30.9606705],[120.0485764,31.0118694],[119.9989624,31.029089],[119.9188309,31.1749306],[119.8813629,31.1683807],[119.8251038,31.1784763],[119.794487,31.1642838],[119.7797165,31.1827316],[119.720047,31.1731014],[119.6929169,31.1586285],[119.6673584,31.1672897],[119.6370316,31.1516838],[119.6321106,31.1393433],[119.5770721,31.1364918],[119.5289688,31.1651993],[119.4725494,31.1584167],[119.4292068,31.1872902],[119.3856277,31.1817799],[119.4001999,31.203249],[119.3726273,31.1958199],[119.3586197,31.2192574],[119.3805771,31.2679615],[119.3553925,31.3003883],[119.3385773,31.2644901],[119.3107834,31.2662144],[119.2719421,31.2537727],[119.2548828,31.2639217],[119.2414474,31.2515965],[119.2142868,31.2732372],[119.1947632,31.2735348],[119.1844711,31.3019791],[119.159317,31.3009148],[119.1364594,31.2709675],[119.0847168,31.2358246],[119.0320663,31.240303],[119.0184631,31.2462883],[118.9879532,31.2339745],[118.9291611,31.2441521],[118.893837,31.2302208],[118.8740768,31.2412395],[118.7909393,31.2348804],[118.7743683,31.2426758],[118.7580719,31.2781944],[118.7273178,31.2834644],[118.6976166,31.3047657],[118.7115326,31.3052273],[118.7134018,31.3279133],[118.7420273,31.3670959],[118.7629166,31.3595333],[118.7765732,31.3746529],[118.8255768,31.3908978],[118.8665924,31.4291286],[118.8801422,31.493269],[118.8774567,31.5342808],[118.8683624,31.5491791],[118.8740387,31.5803318],[118.8633728,31.6208878],[118.8282471,31.6367798],[118.7954712,31.6266613],[118.7804565,31.657135],[118.7895966,31.6717911],[118.7692032,31.6857719],[118.7466431,31.6821098],[118.7213974,31.6367493],[118.6494522,31.6484032],[118.6421814,31.6800117],[118.6870117,31.7100449],[118.6719513,31.7331734],[118.6238327,31.7674999],[118.5588303,31.7387943],[118.5367966,31.7394485],[118.5246964,31.7460728],[118.5346069,31.7584591],[118.502037,31.779707],[118.4845428,31.7906685],[118.4831467,31.808075],[118.5094528,31.8351517],[118.5008087,31.8475056],[118.4649963,31.858202],[118.4468994,31.8849621],[118.4307098,31.9000416],[118.4102707,31.896328],[118.4034805,31.9150925],[118.3768005,31.9228096],[118.3616486,31.9429226],[118.3610229,31.9655952],[118.3904572,32.0237846],[118.3794785,32.0599213],[118.3863068,32.0827789],[118.4083099,32.0932999],[118.4403,32.0978584],[118.4685364,32.1247864],[118.4941711,32.1276321],[118.4850388,32.1657677],[118.5022888,32.1977959],[118.5157166,32.1915283],[118.5636215,32.2073097],[118.5757065,32.2017288],[118.6249237,32.2123909],[118.6712265,32.2568779],[118.6520386,32.2695312],[118.6652222,32.2948112],[118.649231,32.3058167],[118.6865768,32.323185],[118.677597,32.3338661],[118.6998596,32.3390541],[118.689537,32.3495255],[118.6980972,32.3594971],[118.6872864,32.3722649],[118.6939774,32.3827248],[118.6718369,32.3979454],[118.681282,32.4239655],[118.6767883,32.4428406],[118.6769028,32.4756432],[118.624321,32.471096],[118.5914764,32.4800262],[118.5861969,32.5014305],[118.6088867,32.5137444],[118.6004333,32.5384026],[118.5562897,32.5674324],[118.5664368,32.5895538],[118.586998,32.6018982],[118.6292038,32.5841255],[118.6479721,32.6019936],[118.6703415,32.5959435],[118.6856003,32.5863266],[118.6950226,32.6102791],[118.7167816,32.6108627],[118.7296982,32.5932388],[118.7643433,32.604435],[118.7820969,32.5855865],[118.8145294,32.607357],[118.8121796,32.5860519],[118.833252,32.5708199],[118.86586,32.5753632],[118.8781128,32.5900879],[118.8982086,32.5925217],[118.8844528,32.5587807],[118.9003067,32.5532532],[118.9294281,32.5594444],[118.9745636,32.508461],[119.0283737,32.5174294],[119.0573578,32.4850388],[119.0577087,32.4657631],[119.0796204,32.4546013],[119.1290131,32.4934273],[119.1423035,32.4945679],[119.1367874,32.5013161],[119.1482925,32.5284157],[119.1629486,32.5405426],[119.1483688,32.5637512],[119.1750336,32.6002121],[119.2068863,32.5748482],[119.2236633,32.6048279],[119.1866989,32.674572],[119.2035217,32.7169456],[119.1789169,32.8311806],[119.103653,32.8258934],[119.0501175,32.8814316],[119.038353,32.9121475],[119.0121307,32.9073105],[119.0222168,32.931694],[119.015831,32.9600258],[118.9285812,32.9403458],[118.888382,32.9430466],[118.8773422,32.960659],[118.8452072,32.959549],[118.8348999,32.9229965],[118.8035431,32.9193382],[118.8049927,32.8594284],[118.7855835,32.8542137],[118.7471237,32.8605156],[118.7372208,32.8546944],[118.7333984,32.7744446],[118.7304764,32.7646179],[118.7473526,32.7533607],[118.7468338,32.741436],[118.6961365,32.7173843],[118.6937332,32.7323303],[118.630249,32.7472076],[118.5749969,32.7243156],[118.5461273,32.7336388],[118.4760284,32.7280998],[118.4455872,32.7415504],[118.4167328,32.7196388],[118.3619919,32.7237167],[118.3555069,32.7761002],[118.3287125,32.7635536],[118.3175735,32.7804222],[118.2966232,32.7774429],[118.3007431,32.8159409],[118.2818527,32.8588181],[118.2447128,32.8472824],[118.2398376,32.8666039],[118.2287979,32.9293556],[118.2551804,32.9476624],[118.3073807,32.9631653],[118.2472916,32.9839973],[118.2299118,33.0608101],[118.2073822,33.0658569],[118.2198334,33.0792694],[118.2014771,33.0913849],[118.2182312,33.1003952],[118.1974182,33.1123047],[118.2142029,33.1231499],[118.2136765,33.1811638],[118.1987991,33.2081985],[118.1675568,33.2181435],[118.1512299,33.2013206],[118.1476135,33.1763458],[118.0659866,33.1495667],[118.0342712,33.1420441],[118.0271072,33.1586266],[117.9891129,33.1736298],[117.9833069,33.2131424],[117.972847,33.2288284],[117.9318924,33.22686],[117.9377899,33.2653618],[117.9647293,33.2809753],[117.9798737,33.3141212],[117.9754333,33.332283],[117.9617233,33.35075],[117.998909,33.3527412],[118.0191422,33.375515],[118.0142899,33.426033],[118.0323868,33.4738312],[118.0542908,33.4958954],[118.0990372,33.4851723],[118.1010818,33.5356293],[118.1065903,33.6195564],[118.1559906,33.6626854],[118.1616364,33.7137947],[118.146431,33.7254143],[118.1762009,33.7343063],[118.1790695,33.7427673],[118.1608734,33.7513962],[118.1448288,33.7483711],[118.106102,33.7680092],[118.0442276,33.7612152],[117.977951,33.7535133],[117.9596634,33.7623787],[117.9376221,33.7322655],[117.88517,33.7301407],[117.796608,33.7408562],[117.7467499,33.7221336],[117.714592,33.7484856],[117.7361526,33.7641869],[117.7507706,33.8907394],[117.7351227,33.893364],[117.7097092,33.8806686],[117.6979599,33.889225],[117.6669998,33.9364357],[117.6573715,33.9702148],[117.6644363,33.9926567],[117.6494064,34.0069656],[117.6069107,34.0324249],[117.6100082,34.0044174],[117.5660934,33.9851341],[117.539032,34.0150871],[117.5378189,34.0400963],[117.5123291,34.0603981],[117.4991226,34.0629768],[117.4946518,34.0535927],[117.42453,34.0283966],[117.4044266,34.0282402],[117.3959427,34.0385895],[117.3822632,34.0567627],[117.3651962,34.0618629],[117.3696671,34.0765305],[117.3471375,34.091053],[117.3143234,34.0860977],[117.3029404,34.0686951],[117.2770767,34.0804596],[117.2599564,34.0704041],[117.2133865,34.072567],[117.1822586,34.0744553],[117.1255264,34.0990829],[117.1212997,34.1271019],[117.0423813,34.1580467],[117.0192871,34.1776314],[117.0499496,34.2365799],[117.0460129,34.2445831],[117.0232773,34.2468109],[116.9649506,34.2821198],[116.9707031,34.3147507],[116.9557114,34.3206062],[116.9725571,34.3501015],[116.9585266,34.3697357],[116.9560699,34.3938141],[116.9152298,34.4084244],[116.8229828,34.3900185],[116.8064194,34.4089241],[116.7714233,34.4405212],[116.7208176,34.4774742],[116.6180573,34.4872589],[116.5626831,34.4944077],[116.5612564,34.5010567],[116.5866928,34.5110054],[116.4891434,34.5696068],[116.4716797,34.6161003],[116.4319534,34.6269417],[116.4237366,34.6537437],[116.3686066,34.6408691],[116.3588104,34.6527481],[116.3872986,34.7070198],[116.3563538,34.7245331],[116.3639526,34.7500305],[116.3975067,34.7570724],[116.4066086,34.852993],[116.4480286,34.9034081],[116.5495529,34.9143524],[116.6240463,34.9402733],[116.693367,34.9406853],[116.7270966,34.9283752],[116.7641373,34.9178925],[116.7794037,34.9440651],[116.8172913,34.9285278],[116.8470764,34.9285622],[116.9061203,34.8953552],[116.9136429,34.8820572],[116.9612198,34.8765678],[116.9804077,34.8215218],[116.9943008,34.8034019],[117.0448685,34.7770081],[117.0437317,34.7579727],[117.0595627,34.7510834],[117.0581512,34.7334213],[117.0825729,34.7113838],[117.0678329,34.6978645],[117.0594635,34.6561203],[117.0705338,34.6434975],[117.1090927,34.6377335],[117.1312408,34.6127052],[117.1569138,34.5592232],[117.1424332,34.5298805],[117.1600876,34.4968262],[117.1844788,34.5022926],[117.1708527,34.4818993],[117.1946182,34.4648857],[117.2109833,34.47472],[117.2048492,34.4591293],[117.2319717,34.4581604],[117.2383881,34.4712257],[117.2477875,34.4677658],[117.2523499,34.5065193],[117.2648392,34.5126877],[117.2580032,34.5358696],[117.2860184,34.5461273],[117.2863464,34.5605774],[117.3193588,34.5669136],[117.3199463,34.576088],[117.3066406,34.5742912],[117.3469391,34.5955086],[117.3818207,34.5846214],[117.4017334,34.5737762],[117.4007874,34.5540504],[117.4140015,34.5356522],[117.4804535,34.4817238],[117.5430069,34.4771004],[117.5639725,34.4662209],[117.5944214,34.4741325],[117.607132,34.4881516],[117.6506119,34.5024567],[117.6793594,34.5442619],[117.7217865,34.5417938],[117.7863998,34.5207329],[117.7947235,34.5225754],[117.7849884,34.5854416],[117.7941284,34.6400528],[117.8042603,34.6513138],[117.896019,34.6486473],[117.9018631,34.6749802],[117.9496536,34.6785164],[118.0029068,34.6535454],[118.0221634,34.661644],[118.0870132,34.6544304],[118.1071167,34.6237411],[118.1088409,34.6072083],[118.0850983,34.5737],[118.1698227,34.5467644],[118.1654663,34.5128555],[118.1377029,34.5087585],[118.1283875,34.4959984],[118.1734772,34.4528999],[118.1626663,34.3933601],[118.1984711,34.386982],[118.231987,34.4086647],[118.2635727,34.4101753],[118.2898636,34.4277916],[118.3608932,34.4217377],[118.3996506,34.4380417],[118.4354324,34.5204315],[118.420517,34.602726],[118.4532166,34.6316986],[118.4569168,34.652298],[118.4612732,34.6781654],[118.491272,34.6796379],[118.515213,34.6981506],[118.5194626,34.7173653],[118.5501633,34.710556],[118.5903168,34.7192154],[118.6110611,34.7003632],[118.6320267,34.6934319],[118.6588516,34.7015572],[118.6829529,34.6849403],[118.7299423,34.7014885],[118.7680283,34.7291565],[118.7658234,34.7422638],[118.7228928,34.7486115],[118.7150803,34.7608757],[118.7313919,34.7959709],[118.7621536,34.791172],[118.7689438,34.797039],[118.7594833,34.8483238],[118.7901382,34.8508644],[118.8180695,34.9057274],[118.8572083,34.9496346],[118.8516617,35.0242577],[118.9139481,35.0650482],[118.9410706,35.0444374],[119.0102997,35.0589218],[119.1070633,35.0582237],[119.1363373,35.1008377],[119.1915207,35.1189041],[119.2128372,35.1125565],[119.2559662,35.1280594]]]]},
  1217 +"properties":{
  1218 +"gid":203,
  1219 +"name":"江苏省"}
  1220 +},
  1221 +{"type":"Feature",
  1222 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.4393387,34.7712402],[119.4419098,34.7766457],[119.4493866,34.7802315],[119.453537,34.7710915],[119.4682388,34.7697716],[119.477211,34.7661667],[119.4917374,34.7625542],[119.4964828,34.7579842],[119.4863129,34.7558937],[119.4781494,34.7505035],[119.4702835,34.7538261],[119.4616089,34.7532806],[119.4566498,34.7629166],[119.4393387,34.7712402]]]]},
  1223 +"properties":{
  1224 +"gid":204,
  1225 +"name":"江苏省"}
  1226 +},
  1227 +{"type":"Feature",
  1228 +"geometry":{"type":"MultiPolygon","coordinates":[[[[116.3686066,34.6408691],[116.4237366,34.6537437],[116.4319534,34.6269417],[116.4716797,34.6161003],[116.4891434,34.5696068],[116.5866928,34.5110054],[116.5612564,34.5010567],[116.5626831,34.4944077],[116.6180573,34.4872589],[116.7208176,34.4774742],[116.7714233,34.4405212],[116.8064194,34.4089241],[116.8229828,34.3900185],[116.9152298,34.4084244],[116.9560699,34.3938141],[116.9585266,34.3697357],[116.9725571,34.3501015],[116.9557114,34.3206062],[116.9707031,34.3147507],[116.9649506,34.2821198],[117.0232773,34.2468109],[117.0460129,34.2445831],[117.0499496,34.2365799],[117.0192871,34.1776314],[117.0423813,34.1580467],[117.1212997,34.1271019],[117.1255264,34.0990829],[117.1822586,34.0744553],[117.2133865,34.072567],[117.2599564,34.0704041],[117.2770767,34.0804596],[117.3029404,34.0686951],[117.3143234,34.0860977],[117.3471375,34.091053],[117.3696671,34.0765305],[117.3651962,34.0618629],[117.3822632,34.0567627],[117.3959427,34.0385895],[117.4044266,34.0282402],[117.42453,34.0283966],[117.4946518,34.0535927],[117.4991226,34.0629768],[117.5123291,34.0603981],[117.5378189,34.0400963],[117.539032,34.0150871],[117.5660934,33.9851341],[117.6100082,34.0044174],[117.6069107,34.0324249],[117.6494064,34.0069656],[117.6644363,33.9926567],[117.6573715,33.9702148],[117.6669998,33.9364357],[117.6979599,33.889225],[117.7097092,33.8806686],[117.7351227,33.893364],[117.7507706,33.8907394],[117.7361526,33.7641869],[117.714592,33.7484856],[117.7467499,33.7221336],[117.796608,33.7408562],[117.88517,33.7301407],[117.9376221,33.7322655],[117.9596634,33.7623787],[117.977951,33.7535133],[118.0442276,33.7612152],[118.106102,33.7680092],[118.1448288,33.7483711],[118.1608734,33.7513962],[118.1790695,33.7427673],[118.1762009,33.7343063],[118.146431,33.7254143],[118.1616364,33.7137947],[118.1559906,33.6626854],[118.1065903,33.6195564],[118.1010818,33.5356293],[118.0990372,33.4851723],[118.0542908,33.4958954],[118.0323868,33.4738312],[118.0142899,33.426033],[118.0191422,33.375515],[117.998909,33.3527412],[117.9617233,33.35075],[117.9754333,33.332283],[117.9798737,33.3141212],[117.9647293,33.2809753],[117.9377899,33.2653618],[117.9318924,33.22686],[117.972847,33.2288284],[117.9833069,33.2131424],[117.9891129,33.1736298],[118.0271072,33.1586266],[118.0342712,33.1420441],[118.0659866,33.1495667],[118.1476135,33.1763458],[118.1512299,33.2013206],[118.1675568,33.2181435],[118.1987991,33.2081985],[118.2136765,33.1811638],[118.2142029,33.1231499],[118.1974182,33.1123047],[118.2182312,33.1003952],[118.2014771,33.0913849],[118.2198334,33.0792694],[118.2073822,33.0658569],[118.2299118,33.0608101],[118.2472916,32.9839973],[118.3073807,32.9631653],[118.2551804,32.9476624],[118.2287979,32.9293556],[118.2398376,32.8666039],[118.2447128,32.8472824],[118.2818527,32.8588181],[118.3007431,32.8159409],[118.2966232,32.7774429],[118.3175735,32.7804222],[118.3287125,32.7635536],[118.3555069,32.7761002],[118.3619919,32.7237167],[118.4167328,32.7196388],[118.4455872,32.7415504],[118.4760284,32.7280998],[118.5461273,32.7336388],[118.5749969,32.7243156],[118.630249,32.7472076],[118.6937332,32.7323303],[118.6961365,32.7173843],[118.7468338,32.741436],[118.7473526,32.7533607],[118.7304764,32.7646179],[118.7333984,32.7744446],[118.7372208,32.8546944],[118.7471237,32.8605156],[118.7855835,32.8542137],[118.8049927,32.8594284],[118.8035431,32.9193382],[118.8348999,32.9229965],[118.8452072,32.959549],[118.8773422,32.960659],[118.888382,32.9430466],[118.9285812,32.9403458],[119.015831,32.9600258],[119.0222168,32.931694],[119.0121307,32.9073105],[119.038353,32.9121475],[119.0501175,32.8814316],[119.103653,32.8258934],[119.1789169,32.8311806],[119.2035217,32.7169456],[119.1866989,32.674572],[119.2236633,32.6048279],[119.2068863,32.5748482],[119.1750336,32.6002121],[119.1483688,32.5637512],[119.1629486,32.5405426],[119.1482925,32.5284157],[119.1367874,32.5013161],[119.1423035,32.4945679],[119.1290131,32.4934273],[119.0796204,32.4546013],[119.0577087,32.4657631],[119.0573578,32.4850388],[119.0283737,32.5174294],[118.9745636,32.508461],[118.9294281,32.5594444],[118.9003067,32.5532532],[118.8844528,32.5587807],[118.8982086,32.5925217],[118.8781128,32.5900879],[118.86586,32.5753632],[118.833252,32.5708199],[118.8121796,32.5860519],[118.8145294,32.607357],[118.7820969,32.5855865],[118.7643433,32.604435],[118.7296982,32.5932388],[118.7167816,32.6108627],[118.6950226,32.6102791],[118.6856003,32.5863266],[118.6703415,32.5959435],[118.6479721,32.6019936],[118.6292038,32.5841255],[118.586998,32.6018982],[118.5664368,32.5895538],[118.5562897,32.5674324],[118.6004333,32.5384026],[118.6088867,32.5137444],[118.5861969,32.5014305],[118.5914764,32.4800262],[118.624321,32.471096],[118.6769028,32.4756432],[118.6767883,32.4428406],[118.681282,32.4239655],[118.6718369,32.3979454],[118.6939774,32.3827248],[118.6872864,32.3722649],[118.6980972,32.3594971],[118.689537,32.3495255],[118.6998596,32.3390541],[118.677597,32.3338661],[118.6865768,32.323185],[118.649231,32.3058167],[118.6652222,32.2948112],[118.6520386,32.2695312],[118.6712265,32.2568779],[118.6249237,32.2123909],[118.5757065,32.2017288],[118.5636215,32.2073097],[118.5157166,32.1915283],[118.5022888,32.1977959],[118.4850388,32.1657677],[118.4941711,32.1276321],[118.4685364,32.1247864],[118.4403,32.0978584],[118.4083099,32.0932999],[118.3863068,32.0827789],[118.3794785,32.0599213],[118.3904572,32.0237846],[118.3610229,31.9655952],[118.3616486,31.9429226],[118.3768005,31.9228096],[118.4034805,31.9150925],[118.4102707,31.896328],[118.4307098,31.9000416],[118.4468994,31.8849621],[118.4649963,31.858202],[118.5008087,31.8475056],[118.5094528,31.8351517],[118.4831467,31.808075],[118.4845428,31.7906685],[118.502037,31.779707],[118.5346069,31.7584591],[118.5246964,31.7460728],[118.5367966,31.7394485],[118.5588303,31.7387943],[118.6238327,31.7674999],[118.6719513,31.7331734],[118.6870117,31.7100449],[118.6421814,31.6800117],[118.6494522,31.6484032],[118.7213974,31.6367493],[118.7466431,31.6821098],[118.7692032,31.6857719],[118.7895966,31.6717911],[118.7804565,31.657135],[118.7954712,31.6266613],[118.8282471,31.6367798],[118.8633728,31.6208878],[118.8740387,31.5803318],[118.8683624,31.5491791],[118.8774567,31.5342808],[118.8801422,31.493269],[118.8665924,31.4291286],[118.8255768,31.3908978],[118.7765732,31.3746529],[118.7629166,31.3595333],[118.7420273,31.3670959],[118.7134018,31.3279133],[118.7115326,31.3052273],[118.6976166,31.3047657],[118.7273178,31.2834644],[118.7580719,31.2781944],[118.7743683,31.2426758],[118.7909393,31.2348804],[118.8740768,31.2412395],[118.893837,31.2302208],[118.9291611,31.2441521],[118.9879532,31.2339745],[119.0184631,31.2462883],[119.0320663,31.240303],[119.0847168,31.2358246],[119.1364594,31.2709675],[119.159317,31.3009148],[119.1844711,31.3019791],[119.1947632,31.2735348],[119.2142868,31.2732372],[119.2414474,31.2515965],[119.2548828,31.2639217],[119.2719421,31.2537727],[119.3107834,31.2662144],[119.3385773,31.2644901],[119.3553925,31.3003883],[119.3805771,31.2679615],[119.3586197,31.2192574],[119.3726273,31.1958199],[119.4001999,31.203249],[119.3856277,31.1817799],[119.4292068,31.1872902],[119.4725494,31.1584167],[119.5289688,31.1651993],[119.5770721,31.1364918],[119.6321106,31.1393433],[119.6444397,31.1156559],[119.6247025,31.0878315],[119.6291733,31.021801],[119.5825882,30.9709988],[119.5589371,30.9166012],[119.5554581,30.8827057],[119.5722809,30.8569317],[119.5702667,30.8388386],[119.5312195,30.7842999],[119.5117416,30.7779961],[119.4961472,30.7909203],[119.4851837,30.7829609],[119.4865265,30.7178612],[119.43927,30.6527977],[119.4100113,30.6485939],[119.3969498,30.6821232],[119.3805084,30.6881618],[119.3431931,30.6720638],[119.3112793,30.6243],[119.2381897,30.6177177],[119.2634964,30.582325],[119.2391968,30.5558281],[119.2388535,30.5400162],[119.269783,30.5153694],[119.3229599,30.5339432],[119.3458786,30.4201508],[119.3769836,30.3918114],[119.4105682,30.3815594],[119.3637619,30.3558865],[119.3478775,30.357336],[119.3228073,30.3762436],[119.2831802,30.3489056],[119.2484589,30.3462925],[119.2251587,30.2954922],[119.120369,30.3118801],[119.0852127,30.3296242],[119.053093,30.3083878],[119.0422363,30.3104744],[118.9528427,30.3640556],[118.8791122,30.3169346],[118.8750916,30.2859936],[118.8898392,30.2346306],[118.9210281,30.2146492],[118.899559,30.1912956],[118.8476868,30.1665916],[118.8577194,30.1539764],[118.8817978,30.1635799],[118.8920975,30.1557751],[118.8941803,30.1399555],[118.865593,30.1083508],[118.89505,30.0221291],[118.8915024,29.9512978],[118.835022,29.941494],[118.8410568,29.909853],[118.8341827,29.895647],[118.7795715,29.8482227],[118.7558365,29.8489132],[118.7484589,29.8392849],[118.7534637,29.8211765],[118.7331772,29.8149872],[118.7431793,29.7567596],[118.7223816,29.7166405],[118.6910629,29.6998978],[118.6432037,29.6487484],[118.6150436,29.652853],[118.5724487,29.6379032],[118.4955368,29.5667133],[118.4833069,29.5206127],[118.4436493,29.5129623],[118.4021683,29.5055275],[118.3972626,29.4800663],[118.3814697,29.4901123],[118.3373718,29.4824181],[118.3168182,29.4979401],[118.3037262,29.489645],[118.3112717,29.4433613],[118.302948,29.4249954],[118.2404327,29.4346275],[118.1894531,29.3952217],[118.1268234,29.4249725],[118.1342926,29.4474754],[118.1223068,29.4744701],[118.1384964,29.492197],[118.1320877,29.5086727],[118.092247,29.535532],[118.0454025,29.5456085],[118.0376282,29.5687199],[118.0088882,29.5797939],[117.9933929,29.5787907],[117.9758911,29.5635586],[117.9597931,29.5726337],[117.9284134,29.5518112],[117.9157486,29.5572338],[117.8713989,29.5489216],[117.8067474,29.5766754],[117.7656403,29.559639],[117.7477264,29.5629425],[117.7023773,29.5515862],[117.6796112,29.5667648],[117.6758881,29.5960789],[117.6427765,29.6175842],[117.5844803,29.5870495],[117.5356903,29.599678],[117.5085297,29.6273937],[117.5252838,29.6566658],[117.507782,29.6668186],[117.4815063,29.6638165],[117.4485397,29.6905499],[117.4496002,29.7515411],[117.4291611,29.7634888],[117.404213,29.7976265],[117.4192429,29.8369808],[117.4153671,29.8513851],[117.3785324,29.8459644],[117.3704529,29.8204327],[117.353653,29.8149834],[117.3312531,29.8525715],[117.2945023,29.8416271],[117.2870865,29.8252678],[117.2527084,29.8335953],[117.2441101,29.8442726],[117.2564468,29.8831558],[117.2483826,29.9114933],[117.200882,29.9299736],[117.1292267,29.9061871],[117.1248627,29.8664722],[117.0679169,29.8345776],[117.0872726,29.8118973],[117.1225433,29.7981243],[117.1310272,29.7775936],[117.1032333,29.7543221],[117.1145325,29.722826],[117.0854034,29.7015972],[117.0367432,29.683321],[116.9908981,29.6859264],[116.9695129,29.6601887],[116.9346771,29.6510029],[116.8724365,29.6157379],[116.8426666,29.5770206],[116.8262329,29.5703621],[116.7865067,29.5709209],[116.7554169,29.601635],[116.7163773,29.567564],[116.7037964,29.5923595],[116.6840363,29.6067257],[116.6470566,29.6398449],[116.6765137,29.6786022],[116.6492767,29.6974297],[116.6664734,29.7061863],[116.6821518,29.7373848],[116.7342987,29.7767124],[116.7470093,29.800293],[116.7574463,29.8050346],[116.7758331,29.7949963],[116.8073425,29.8142643],[116.8777695,29.8962135],[116.8952103,29.9521713],[116.8637466,29.9831352],[116.824852,29.9740906],[116.8190689,30.0139008],[116.7954712,30.0055294],[116.7784729,30.0376015],[116.7339096,30.0562763],[116.628067,30.0799809],[116.6018829,30.0690136],[116.5814667,30.0475864],[116.5514069,29.9241962],[116.5376816,29.9005814],[116.4651413,29.9004898],[116.3961334,29.8623619],[116.3230591,29.8305416],[116.283577,29.7956448],[116.2564468,29.784586],[116.2120972,29.8295994],[116.1726379,29.8368568],[116.1283264,29.8272705],[116.1271896,29.891222],[116.0687637,29.9657154],[116.0737381,30.0164928],[116.0863571,30.0385303],[116.0735168,30.0644112],[116.0797424,30.1285076],[116.0512772,30.1737881],[116.0601807,30.2069874],[116.0264893,30.2294579],[116.0194702,30.244215],[115.9897232,30.2575855],[115.9758835,30.2983398],[115.9488297,30.3090038],[115.9169235,30.3039684],[115.8994522,30.3127632],[115.9114609,30.3377857],[115.879097,30.3850098],[115.9391479,30.4273396],[115.9124069,30.4347954],[115.8898087,30.4554024],[115.8967896,30.4711437],[115.8897171,30.4863548],[115.9086533,30.5204659],[115.8762665,30.5571404],[115.8701096,30.5865841],[115.8253326,30.6101379],[115.8068237,30.5980339],[115.8005676,30.6476498],[115.7609634,30.6742764],[115.7576981,30.7120323],[115.7755127,30.7571392],[115.7830734,30.762352],[115.8173676,30.7541714],[115.8455582,30.7639618],[115.8634186,30.781086],[115.8524399,30.7925396],[115.856163,30.8111897],[115.8370438,30.8366795],[115.8624878,30.868412],[115.9186325,30.8893337],[115.9935074,30.9470673],[116.0409164,30.9585838],[116.0668793,30.9549828],[116.0692291,30.9664917],[116.0365982,31.0190125],[116.0097885,31.0141087],[116.0014191,31.0368595],[115.9605331,31.0486183],[115.9355087,31.0462589],[115.9355927,31.071476],[115.8876572,31.1043816],[115.8813171,31.1296902],[115.8620529,31.1496754],[115.8324509,31.1293201],[115.7926331,31.1300468],[115.7733307,31.1144905],[115.7587433,31.1203537],[115.7505188,31.1446953],[115.695549,31.2032776],[115.6578369,31.2124958],[115.638382,31.2104397],[115.6238937,31.1869488],[115.5985718,31.1760406],[115.5889969,31.1494522],[115.5764999,31.1475506],[115.5372086,31.1892471],[115.5344162,31.2341099],[115.5216827,31.255579],[115.4992371,31.2710819],[115.4707565,31.2667198],[115.4539337,31.2821198],[115.4573822,31.3152142],[115.442627,31.3159962],[115.4288406,31.3521023],[115.4018326,31.343174],[115.3774033,31.3531075],[115.3726425,31.3747616],[115.3851929,31.3915825],[115.3643723,31.4050388],[115.3775177,31.4202709],[115.3811035,31.4490108],[115.3707123,31.5016975],[115.419342,31.5386677],[115.4359436,31.5876694],[115.4812775,31.6123867],[115.473671,31.6474953],[115.4842834,31.6676922],[115.6415024,31.7582741],[115.6732788,31.7823772],[115.7214737,31.7633076],[115.7268219,31.7815304],[115.7586288,31.7877407],[115.8101578,31.7641315],[115.8431091,31.7863865],[115.8697205,31.777565],[115.9062271,31.7980461],[115.9051132,31.8116589],[115.8854294,31.8567181],[115.8861923,31.8766689],[115.9092865,31.8970909],[115.9157333,31.9167023],[115.9076385,31.9543343],[115.9187164,32.0004463],[115.9125824,32.0266495],[115.9346237,32.0759239],[115.9164886,32.1053505],[115.9266968,32.1758537],[115.901001,32.2276955],[115.9126205,32.2706909],[115.8895798,32.3009911],[115.8989868,32.3260765],[115.8824387,32.4199753],[115.8611832,32.4762077],[115.8738327,32.4811401],[115.8728333,32.4974174],[115.860199,32.5108376],[115.8374329,32.5133743],[115.8629379,32.5298996],[115.8828964,32.5580711],[115.9206238,32.5746918],[115.9026031,32.5855446],[115.8855972,32.580574],[115.8589478,32.5459213],[115.8341599,32.5360565],[115.8314972,32.5119438],[115.7757416,32.4717178],[115.7749176,32.4925804],[115.7603302,32.5101013],[115.7393265,32.4825859],[115.6855087,32.4994583],[115.6896286,32.4767914],[115.664299,32.4700966],[115.6708069,32.4506683],[115.6548233,32.4167747],[115.6477966,32.4155502],[115.6456528,32.4327316],[115.6167221,32.4147453],[115.5880432,32.4329987],[115.5462418,32.409111],[115.5570602,32.4255257],[115.5394363,32.428299],[115.5308304,32.4419632],[115.5054932,32.453125],[115.5020218,32.4826736],[115.4707565,32.522892],[115.4288483,32.5352058],[115.4323425,32.5519981],[115.4024963,32.5548248],[115.4010086,32.5779762],[115.3938828,32.5829277],[115.3264084,32.5689545],[115.3123779,32.5515556],[115.2996521,32.5513763],[115.2746582,32.5836067],[115.2460403,32.5786095],[115.2455521,32.6031494],[115.2198029,32.5899315],[115.1940765,32.589325],[115.1771317,32.6097221],[115.1970596,32.6157532],[115.183342,32.6240387],[115.1910706,32.6303444],[115.1859512,32.6422005],[115.1899033,32.647995],[115.2022171,32.6424408],[115.2091522,32.6613541],[115.1972504,32.6600342],[115.1949081,32.6684875],[115.189621,32.6750603],[115.1737213,32.6700096],[115.1726227,32.710598],[115.1741714,32.7932167],[115.1980896,32.7921906],[115.1778564,32.8384666],[115.1946411,32.8414688],[115.1913528,32.8567924],[115.1519928,32.8669891],[115.1300507,32.9022179],[115.0254822,32.9086151],[115.0185699,32.9137802],[115.0317612,32.9197273],[115.0276871,32.9313622],[114.9991531,32.9423752],[114.9339981,32.9364777],[114.9123535,32.9663963],[114.8793869,32.9784508],[114.8891373,33.0148697],[114.9241028,33.0216637],[114.9055099,33.0709076],[114.8898773,33.0860138],[114.8986511,33.1297607],[114.9210281,33.1406937],[114.9287796,33.1589508],[114.9729691,33.1468391],[114.9643097,33.1320114],[114.9820023,33.121521],[114.9897766,33.1035194],[115.0258331,33.0882721],[115.0390167,33.0949097],[115.0550232,33.086441],[115.1065903,33.0835762],[115.1503372,33.0890579],[115.1788177,33.1222954],[115.2455521,33.1388664],[115.2555313,33.1307487],[115.2870331,33.1376152],[115.2926025,33.2017021],[115.3215637,33.2284851],[115.3330688,33.2988472],[115.3579178,33.3287811],[115.3366165,33.37117],[115.3103104,33.3747139],[115.3267822,33.3999481],[115.3084335,33.4302101],[115.3138123,33.4491005],[115.3399734,33.4551888],[115.339592,33.504055],[115.357933,33.5196724],[115.3889084,33.5026398],[115.4066467,33.5515099],[115.4194107,33.557869],[115.4521637,33.5653915],[115.4986267,33.5554085],[115.5235672,33.5717697],[115.6283875,33.5803146],[115.6222534,33.6222305],[115.5935516,33.6684837],[115.5929489,33.7237701],[115.5607605,33.7786942],[115.5746307,33.7871132],[115.6011429,33.7784653],[115.6122665,33.7870789],[115.6263123,33.8379364],[115.6195831,33.8816833],[115.5872879,33.871685],[115.5442276,33.8812828],[115.5822601,33.9962044],[115.5971222,34.014267],[115.5943298,34.0339661],[115.6292267,34.0391731],[115.644783,34.0673294],[115.6545105,34.0621567],[115.7220535,34.0802994],[115.7575073,34.0678101],[115.7744827,34.0764656],[115.804863,34.0721703],[115.8100586,34.0543289],[115.8398285,34.0323524],[115.8445816,34.0062447],[115.8577728,34.0082016],[115.8769989,34.0342979],[115.8899994,34.0302849],[115.8990479,34.0115509],[115.9144592,34.0123749],[115.9522324,34.0092545],[115.9711075,33.9963341],[115.9948502,33.9664726],[115.9739914,33.913311],[116.0082703,33.8741302],[116.0521469,33.8588676],[116.0400467,33.8335381],[116.0666275,33.7885437],[116.0872269,33.7796783],[116.0908508,33.7638931],[116.1322327,33.7415276],[116.1498566,33.7112465],[116.1608734,33.7095642],[116.1918564,33.7267456],[116.2582321,33.7315254],[116.2757568,33.7498856],[116.3096619,33.7592659],[116.3280411,33.7767105],[116.3683472,33.7822571],[116.410347,33.8015251],[116.4295578,33.8038673],[116.4274902,33.846302],[116.46241,33.8641472],[116.5159302,33.8725433],[116.5214767,33.8872948],[116.546257,33.8864098],[116.5618668,33.9097557],[116.6358871,33.8916969],[116.6410828,33.9825706],[116.6085968,33.9994469],[116.5956421,34.0077057],[116.5917664,34.0241432],[116.5908127,34.0328407],[116.5879135,34.0463753],[116.5743713,34.0541115],[116.568573,34.0666771],[116.5608368,34.0782776],[116.5463333,34.0831146],[116.5298996,34.0966492],[116.5144272,34.1034164],[116.5367508,34.1611633],[116.574173,34.1862984],[116.5353088,34.2297478],[116.5737534,34.2794266],[116.497673,34.2977333],[116.4577637,34.2707367],[116.3580017,34.2737122],[116.3677979,34.2950935],[116.3579636,34.3179855],[116.2961273,34.3433495],[116.2649078,34.3743706],[116.2081223,34.3834343],[116.2104263,34.4045525],[116.1764374,34.4297981],[116.1542282,34.4665833],[116.1757126,34.5091591],[116.1944885,34.5161629],[116.1850281,34.5807838],[116.1917801,34.5820351],[116.2031631,34.5818214],[116.2117462,34.5762405],[116.2207565,34.5614281],[116.234787,34.5538826],[116.2511902,34.5817375],[116.2716599,34.5871315],[116.27565,34.60849],[116.3125763,34.6020393],[116.3212967,34.6234207],[116.3686066,34.6408691]]]]},
  1229 +"properties":{
  1230 +"gid":205,
  1231 +"name":"安徽省"}
  1232 +},
  1233 +{"type":"Feature",
  1234 +"geometry":{"type":"MultiPolygon","coordinates":[[[[102.4469528,33.5661316],[102.4385834,33.5773773],[102.4010925,33.5819016],[102.3787231,33.6005707],[102.3311768,33.616497],[102.3099289,33.6764603],[102.3356171,33.7303467],[102.3167191,33.7358017],[102.3001099,33.7103615],[102.2830734,33.7174644],[102.2814331,33.7314072],[102.317337,33.7553062],[102.2967606,33.7829552],[102.2326584,33.7901421],[102.2335968,33.801403],[102.2619171,33.8225899],[102.2575684,33.8426476],[102.192543,33.927063],[102.1839828,33.9483795],[102.1904373,33.9591064],[102.2093964,33.9536743],[102.2403107,33.9595718],[102.2572098,33.9925919],[102.2721634,33.9980469],[102.2895203,33.9911804],[102.3140335,33.9991798],[102.3380585,33.9837723],[102.3855667,33.9813652],[102.4259033,34.0904083],[102.4692612,34.0745583],[102.555809,34.0932503],[102.6049728,34.0843773],[102.6200867,34.0941467],[102.6560822,34.0830956],[102.6541367,34.1151466],[102.5968933,34.1495171],[102.6115417,34.1647797],[102.6390228,34.1691132],[102.6531067,34.1928368],[102.6917572,34.2020149],[102.7168274,34.2291985],[102.7280807,34.2643089],[102.781517,34.2875557],[102.8428268,34.2738228],[102.862587,34.3127785],[102.9213562,34.3094902],[102.9475937,34.2935562],[102.956398,34.2685318],[102.9753723,34.2540436],[102.9718781,34.2149963],[102.9801712,34.1970673],[103.0081787,34.1848259],[103.078598,34.1860695],[103.1070023,34.1783981],[103.1280823,34.146965],[103.1250534,34.118248],[103.1674423,34.0936546],[103.1618423,34.0770416],[103.1223297,34.0599709],[103.1455307,34.0372734],[103.1528473,34.0060272],[103.1160431,33.963562],[103.1267471,33.9358139],[103.1624374,33.9308052],[103.1789474,33.9022484],[103.1492691,33.8328857],[103.1501465,33.8118134],[103.2018433,33.7933578],[103.2428665,33.7909508],[103.3472137,33.745018],[103.4292068,33.752243],[103.4620132,33.8039398],[103.5124664,33.8100891],[103.526619,33.7933693],[103.5263367,33.7711296],[103.4803925,33.727932],[103.4999237,33.6824265],[103.5266724,33.677845],[103.5481033,33.6775208],[103.562027,33.7038841],[103.5865021,33.7143784],[103.6307831,33.7008972],[103.6451492,33.6848526],[103.6804199,33.6796875],[103.6983566,33.6877632],[103.766243,33.6603851],[103.8593903,33.6839943],[103.9686432,33.6722183],[104.0435867,33.6878738],[104.100853,33.6649895],[104.1668167,33.6107826],[104.1715469,33.5906677],[104.1526337,33.5418549],[104.1781387,33.4747734],[104.2153931,33.4410591],[104.2173767,33.4028053],[104.2444534,33.4040298],[104.264328,33.3934784],[104.2931366,33.3346634],[104.3711929,33.346489],[104.4269791,33.3192863],[104.3991165,33.285347],[104.3734512,33.3027344],[104.3423233,33.3005791],[104.3216095,33.3143425],[104.3034592,33.3029175],[104.3481827,33.1608353],[104.3750916,33.1109238],[104.3329773,33.0437889],[104.3574295,33.0302963],[104.3993378,33.0348511],[104.424118,33.016304],[104.3808136,32.9961586],[104.3756638,32.9550819],[104.3638229,32.9455643],[104.2854691,32.9417496],[104.2720871,32.8909531],[104.2971725,32.8332443],[104.3536301,32.821701],[104.4530029,32.7498207],[104.4971771,32.7571144],[104.5309982,32.7248764],[104.5678635,32.731163],[104.5885925,32.7001762],[104.6329727,32.6643333],[104.6627731,32.664299],[104.6940918,32.675808],[104.7307281,32.6394043],[104.7937469,32.6426811],[104.8153763,32.6615524],[104.8289566,32.6626091],[104.8494568,32.6487236],[104.8826599,32.5985298],[105.0395966,32.6470299],[105.079567,32.6320915],[105.1001205,32.5968933],[105.1136932,32.5939713],[105.1932907,32.6197128],[105.2237396,32.6658745],[105.2702026,32.6520386],[105.2940521,32.6571465],[105.3663712,32.7052155],[105.4491272,32.7362938],[105.4591522,32.7493706],[105.4542389,32.7651749],[105.4254227,32.7724648],[105.4079437,32.8157501],[105.3842163,32.8402252],[105.3776093,32.8755035],[105.4015198,32.8895264],[105.4107132,32.9186478],[105.4506912,32.9303932],[105.4953537,32.9107399],[105.4917908,32.8752861],[105.5212097,32.8475838],[105.5283279,32.8024445],[105.5601578,32.7696915],[105.5569229,32.7321053],[105.579483,32.7222633],[105.5925217,32.6998062],[105.6207733,32.7016449],[105.7490463,32.7694168],[105.7895203,32.7510338],[105.8140182,32.7695618],[105.8231125,32.8217964],[105.8394165,32.81604],[105.8786163,32.8290291],[105.9237518,32.8266335],[105.9589233,32.8478546],[106.0053635,32.8305321],[106.0417328,32.868454],[106.0539627,32.8654327],[106.0907135,32.8190002],[106.0927734,32.7999725],[106.0586472,32.7732849],[106.0932465,32.7390099],[106.1755371,32.6928291],[106.2352905,32.6927719],[106.2701263,32.6678429],[106.2867126,32.6693573],[106.3155212,32.674469],[106.3515472,32.6639442],[106.3744888,32.6493645],[106.3905487,32.6236],[106.413269,32.6163483],[106.4344864,32.623085],[106.45298,32.6541252],[106.4908905,32.6453819],[106.5283279,32.6693993],[106.5585098,32.6735268],[106.5950165,32.6615486],[106.625061,32.675972],[106.6711502,32.6927719],[106.7284088,32.7314529],[106.7618866,32.7364159],[106.7783737,32.7298431],[106.7817993,32.701622],[106.829422,32.7084923],[106.8573303,32.7224197],[106.8920364,32.7183952],[106.9069901,32.7005882],[106.9536285,32.71315],[106.9780197,32.7094421],[107.0119476,32.7246437],[107.0549316,32.711998],[107.0581589,32.6775818],[107.0830078,32.6699486],[107.094368,32.6514778],[107.1030273,32.6027832],[107.0909271,32.5614471],[107.0754623,32.5444489],[107.1224136,32.4845161],[107.1804504,32.4730148],[107.2105103,32.4283905],[107.2593536,32.4055099],[107.2974319,32.4845123],[107.3520966,32.5084953],[107.3730927,32.5409698],[107.4012833,32.5412445],[107.4349136,32.5283699],[107.4398422,32.4794769],[107.4628906,32.4552956],[107.4588165,32.4292297],[107.4850464,32.4274521],[107.5077515,32.3885994],[107.5285263,32.3859787],[107.5935898,32.4140434],[107.6373291,32.4087372],[107.674469,32.3884048],[107.7068405,32.3275719],[107.752861,32.3292885],[107.7922974,32.2628098],[107.8460464,32.2086601],[107.8639526,32.2007637],[107.9010696,32.2053413],[107.9730072,32.1491852],[107.9915009,32.1540909],[108.014183,32.1777191],[108.0216522,32.222496],[108.0542831,32.2240524],[108.0720291,32.2403564],[108.1292801,32.2222557],[108.1545792,32.2441254],[108.184639,32.2285805],[108.2135925,32.2679977],[108.2341232,32.278656],[108.3229828,32.2408371],[108.3463516,32.2641945],[108.3713608,32.2619362],[108.3941422,32.2710457],[108.420723,32.2644844],[108.4637985,32.2736549],[108.476059,32.2720451],[108.5026474,32.2439232],[108.5145493,32.2120438],[108.4814911,32.1901245],[108.4052734,32.2056122],[108.3737106,32.1886101],[108.370163,32.1534119],[108.4105377,32.140728],[108.44767,32.0807037],[108.4266663,32.0638809],[108.3747787,32.0807114],[108.3414383,32.0780678],[108.3534164,32.0505676],[108.3286438,32.0289955],[108.3616867,31.9896641],[108.3480225,31.980854],[108.3131027,31.9980049],[108.2643967,31.9902897],[108.2613831,31.9691849],[108.2776566,31.9560261],[108.2824707,31.9331493],[108.3171921,31.9063816],[108.3477325,31.8644485],[108.3819733,31.8569088],[108.3899918,31.8324451],[108.4235001,31.8148079],[108.4560623,31.8134212],[108.4490128,31.7879391],[108.4933472,31.7914371],[108.4991074,31.7768078],[108.5271683,31.7627735],[108.5072174,31.7342339],[108.5202866,31.7107086],[108.5123367,31.6957645],[108.5342331,31.6771069],[108.4745636,31.6473961],[108.4690018,31.6379623],[108.477417,31.625185],[108.4378433,31.6393604],[108.4279404,31.6349373],[108.3787003,31.5860023],[108.3792496,31.5534592],[108.335289,31.5496979],[108.3392792,31.5233688],[108.3248978,31.5127163],[108.2302322,31.5131054],[108.1923065,31.4976559],[108.1924133,31.488945],[108.2232132,31.4662857],[108.2082367,31.4104595],[108.1526108,31.377655],[108.1785126,31.3347874],[108.0833969,31.2738609],[108.0245819,31.248991],[108.0227737,31.2221527],[108.0743637,31.2235699],[108.0852509,31.2067108],[108.0096512,31.1158733],[108.018692,31.0763035],[108.0487595,31.0626125],[108.0497284,31.0486374],[107.9998627,31.0295467],[107.9812088,30.994812],[107.9414673,30.9828377],[107.9330826,30.926466],[107.9780502,30.9075317],[107.8690033,30.8088493],[107.8348999,30.7959728],[107.8172073,30.7992992],[107.7916336,30.8228321],[107.7620316,30.8152962],[107.7485428,30.8294888],[107.7366333,30.8745937],[107.7155838,30.8867283],[107.6773376,30.8643055],[107.6350327,30.8140221],[107.5794296,30.853117],[107.5106812,30.844883],[107.497467,30.8076668],[107.4683533,30.7851448],[107.4573593,30.7629967],[107.4199371,30.7448387],[107.4619217,30.6708927],[107.5037766,30.6547318],[107.5070267,30.6429348],[107.4394226,30.5660572],[107.4272766,30.5274239],[107.3990936,30.5190792],[107.3472366,30.4410019],[107.3563766,30.4111099],[107.3349609,30.4052391],[107.307457,30.3643951],[107.2767487,30.3299503],[107.2276306,30.2274399],[107.1046219,30.1030846],[107.0745316,30.0889912],[107.0703735,30.0611229],[107.040863,30.0554924],[107.0301666,30.036972],[106.9991226,30.047657],[106.9703064,30.0846539],[106.9349823,30.0403919],[106.8606873,30.0292263],[106.8439636,30.042263],[106.8219528,30.0311203],[106.7592468,30.0267181],[106.7250137,30.0371895],[106.6951981,30.0872192],[106.6927872,30.1109009],[106.6753693,30.1198025],[106.6691666,30.1575623],[106.6133499,30.2233276],[106.6381073,30.2704449],[106.560379,30.3068867],[106.5007782,30.2876091],[106.4664764,30.3000736],[106.4475937,30.2965946],[106.4212799,30.2749329],[106.4261093,30.250288],[106.3898392,30.2490196],[106.3587418,30.2347889],[106.2992935,30.2365112],[106.2888718,30.204628],[106.2663879,30.2041817],[106.2355194,30.1873932],[106.2247772,30.2105446],[106.1917419,30.2203922],[106.1579514,30.3020153],[106.1393814,30.3200397],[106.1084366,30.3213387],[106.0844803,30.3465729],[105.9810867,30.3836212],[105.9723434,30.3727779],[105.8987503,30.3956776],[105.8887711,30.4103012],[105.8726807,30.3910999],[105.8589935,30.4055576],[105.8422775,30.3934708],[105.824173,30.4346008],[105.7907867,30.4234848],[105.7658463,30.387228],[105.7382584,30.3613262],[105.7409286,30.3505039],[105.7122421,30.3106327],[105.7121506,30.2948112],[105.7278366,30.2748318],[105.7255936,30.2569847],[105.6648712,30.2621136],[105.6178436,30.2766266],[105.6192627,30.2440453],[105.6523666,30.2095814],[105.629158,30.1877136],[105.5550537,30.1826878],[105.53479,30.174057],[105.5368805,30.1600399],[105.5732269,30.1546631],[105.5717697,30.1349659],[105.58461,30.117569],[105.6239471,30.1041069],[105.6402664,30.0774765],[105.6704788,30.0703354],[105.6909637,30.0408802],[105.7392273,30.0279236],[105.7088699,29.932127],[105.7111816,29.9174099],[105.7264786,29.90592],[105.7211075,29.85396],[105.6803284,29.8562393],[105.6015778,29.8322887],[105.5680008,29.7748051],[105.5672607,29.7390461],[105.5178833,29.7044964],[105.477417,29.7197819],[105.4692078,29.6770248],[105.4496994,29.6743336],[105.4191513,29.6855545],[105.3824692,29.6649876],[105.3796234,29.6249008],[105.369751,29.6174736],[105.3495636,29.6198196],[105.3377533,29.5917816],[105.3106766,29.6059132],[105.3070908,29.5818863],[105.2872162,29.557621],[105.2905273,29.5371704],[105.3059998,29.5209103],[105.3053818,29.4867535],[105.319603,29.4459724],[105.3399734,29.440876],[105.3816071,29.4508381],[105.3871994,29.4411278],[105.3779831,29.4254379],[105.4156265,29.4189377],[105.4311371,29.4067879],[105.4328003,29.370533],[105.4144897,29.3453484],[105.4231567,29.3190823],[105.4570465,29.3234005],[105.4491425,29.2939396],[105.4907227,29.2901077],[105.5116882,29.2778664],[105.6092072,29.2694645],[105.6339264,29.2745705],[105.6499863,29.2534409],[105.6759872,29.2692947],[105.6916122,29.2892151],[105.7189636,29.1511745],[105.737648,29.1332016],[105.7163391,29.103754],[105.7582321,29.0713978],[105.7435837,29.0468845],[105.7592773,29.0250607],[105.7617569,28.9954395],[105.7988663,28.9622345],[105.7926636,28.9414768],[105.8263474,28.9424896],[105.8790665,28.9305382],[105.8868637,28.9067783],[105.9032288,28.9034977],[105.9595566,28.9662018],[105.9780731,28.9651661],[105.9753113,28.9805813],[105.9824295,28.9831982],[106.0097275,28.9569969],[106.0427628,28.9520035],[106.0448227,28.9095421],[106.0688629,28.9207687],[106.1121674,28.8999615],[106.1689224,28.9146423],[106.2133331,28.8963032],[106.2549667,28.8539295],[106.2491302,28.7930527],[106.3091507,28.6732273],[106.3026733,28.6458473],[106.3336716,28.6376133],[106.3260269,28.6155338],[106.3373718,28.5932751],[106.3296127,28.5574436],[106.3735809,28.5304852],[106.3793335,28.4910355],[106.3609467,28.4806042],[106.3177032,28.4945812],[106.2851028,28.5402908],[106.2499237,28.5494785],[106.2226562,28.5738602],[106.1838074,28.5850697],[106.1596069,28.6395302],[106.1078873,28.6320305],[106.07724,28.677475],[106.0296326,28.6977539],[106.0052338,28.7384129],[105.9690933,28.7550926],[105.9240265,28.6869736],[105.8871078,28.6604652],[105.8980637,28.6160336],[105.890152,28.6021881],[105.8627167,28.5902233],[105.7855377,28.6037006],[105.7627563,28.5949745],[105.7359467,28.6146679],[105.6873322,28.5930309],[105.6745071,28.5793476],[105.6628876,28.5376701],[105.6237335,28.5126705],[105.6167297,28.458416],[105.6180267,28.440527],[105.6340637,28.4283123],[105.632843,28.4051151],[105.6465683,28.3896599],[105.6487503,28.346302],[105.6369781,28.3170185],[105.6643677,28.3069954],[105.7234802,28.2718277],[105.7366409,28.2770157],[105.7450485,28.3074017],[105.778923,28.3355255],[105.8150711,28.3090324],[105.8480988,28.2616119],[105.8652573,28.2581024],[105.883522,28.2481766],[105.8606567,28.1683178],[105.8800735,28.1276455],[105.9490204,28.1438847],[105.9699631,28.125248],[105.9965668,28.1302967],[106.0230865,28.1204205],[106.0268707,28.1305504],[106.0376129,28.1437206],[106.0804214,28.1617355],[106.1430588,28.1674919],[106.2036209,28.1345692],[106.2627487,28.0744495],[106.2544327,28.0181675],[106.295433,28.0009098],[106.3200912,27.9683228],[106.3009872,27.9104404],[106.32267,27.8975582],[106.3326797,27.8792114],[106.3349304,27.8595104],[106.3149567,27.8407879],[106.3335037,27.824934],[106.297287,27.8147297],[106.2436676,27.7740974],[106.1909332,27.7572594],[106.1196976,27.7844009],[106.0912781,27.784668],[106.0718994,27.7803402],[106.0403519,27.7554073],[106.0070267,27.7492504],[105.9884262,27.7540703],[105.9300537,27.7359962],[105.9096603,27.7504253],[105.8758316,27.7414894],[105.8456192,27.7117062],[105.7712631,27.7178383],[105.7297134,27.7086315],[105.708313,27.6815796],[105.6659775,27.6860962],[105.6306686,27.6615257],[105.5951691,27.7207718],[105.5522995,27.7247944],[105.5372391,27.7524681],[105.4862671,27.7768326],[105.4002914,27.7676277],[105.3897629,27.7559109],[105.3549118,27.7498283],[105.3104172,27.7116356],[105.2988968,27.7143326],[105.2956696,27.7191315],[105.2936401,27.762867],[105.2798233,27.7868557],[105.3088684,27.8174343],[105.2516937,27.8293247],[105.2324524,27.8972511],[105.2442627,27.913105],[105.2788162,27.9315777],[105.2749863,27.9732361],[105.2633972,28.0008373],[105.2474289,28.0111256],[105.2047272,27.9939804],[105.1889267,27.9961948],[105.173317,28.0169296],[105.1814575,28.0654812],[105.1219864,28.0753746],[105.0533981,28.1004753],[105.0301437,28.0854149],[104.9701233,28.0591927],[104.956131,28.0109901],[104.9045181,27.9633827],[104.9144974,27.9451313],[104.8821411,27.9171982],[104.855072,27.9076195],[104.7987137,27.9049129],[104.7783966,27.8921623],[104.7481537,27.8930721],[104.7258301,27.9002209],[104.6282883,27.8570366],[104.5717926,27.8466854],[104.5406036,27.8841839],[104.5069885,27.8838673],[104.4529724,27.9234161],[104.3934708,27.9649506],[104.3669128,28.0053902],[104.3107071,28.035181],[104.3038864,28.0481186],[104.3198624,28.0601711],[104.3845291,28.0620041],[104.3897095,28.1006775],[104.4383698,28.1212006],[104.4562912,28.1787281],[104.4089279,28.1763763],[104.3967972,28.1938],[104.4089966,28.2082539],[104.4450073,28.2232647],[104.4562073,28.2510414],[104.443161,28.2741909],[104.3951797,28.2738895],[104.3843536,28.3193493],[104.3709183,28.3362846],[104.3542404,28.3386879],[104.3117905,28.3157425],[104.2909317,28.3283787],[104.2714462,28.3566532],[104.2698593,28.3828545],[104.2651978,28.3921852],[104.2537918,28.3968506],[104.2563782,28.4191418],[104.2657089,28.438324],[104.2600098,28.4523201],[104.2605286,28.4642429],[104.2636414,28.4735737],[104.2610474,28.4854984],[104.2615738,28.5015678],[104.2444611,28.5181561],[104.2434769,28.528698],[104.2470474,28.5337086],[104.253273,28.5383739],[104.2667465,28.540966],[104.2791901,28.5363007],[104.2942276,28.5399303],[104.3097763,28.5388927],[104.321701,28.5471878],[104.333107,28.5601482],[104.3512497,28.5617027],[104.3569489,28.5658493],[104.3569489,28.5705147],[104.3667984,28.5871048],[104.3740616,28.5933247],[104.3813171,28.5969543],[104.397377,28.5985088],[104.407753,28.6031742],[104.411377,28.6176891],[104.4181213,28.6306496],[104.4108734,28.6363525],[104.3914566,28.6446037],[104.3743668,28.6486549],[104.3525238,28.6458073],[104.33638,28.6382084],[104.3097916,28.6230125],[104.3021927,28.6249123],[104.2917404,28.6353588],[104.2733994,28.6393356],[104.2613297,28.642746],[104.2461472,28.6700249],[104.242569,28.6708069],[104.2366562,28.6529293],[104.2294998,28.6450329],[104.2024689,28.640583],[104.1839981,28.6400127],[104.1559296,28.640583],[104.1428833,28.6422157],[104.1292877,28.6403809],[104.1193695,28.6367092],[104.1103363,28.6291866],[104.0989532,28.6120911],[104.0866928,28.6122894],[104.0628586,28.6301365],[104.042923,28.6301365],[104.0121536,28.6240406],[103.981308,28.6108208],[103.9498367,28.605444],[103.9405365,28.606781],[103.9343033,28.6124725],[103.9276962,28.6233063],[103.9203491,28.6286297],[103.91185,28.6291866],[103.8985519,28.6234875],[103.8786087,28.6253872],[103.8691101,28.6367836],[103.8700638,28.6586285],[103.8671799,28.6652374],[103.8627014,28.6743469],[103.8549881,28.67453],[103.841568,28.669075],[103.8358917,28.6547012],[103.8351593,28.6345062],[103.8314896,28.615778],[103.8336868,28.6029263],[103.8333435,28.5927448],[103.8178329,28.576952],[103.8018875,28.5673809],[103.7988434,28.5532074],[103.7959824,28.5456104],[103.7844772,28.5327911],[103.7836227,28.5294838],[103.783638,28.5171185],[103.8165665,28.4761295],[103.8249512,28.4617958],[103.8277969,28.4356785],[103.8425217,28.4133606],[103.8510971,28.3970909],[103.8515396,28.3710976],[103.8529663,28.3554268],[103.8634186,28.3421307],[103.8697586,28.3252296],[103.8695908,28.3155384],[103.864357,28.3065147],[103.8425217,28.2917938],[103.8287506,28.2865715],[103.8026428,28.2656765],[103.7793732,28.254755],[103.7644272,28.2369175],[103.7394714,28.2367096],[103.7294998,28.2310123],[103.7162094,28.2096424],[103.7086105,28.205843],[103.6972122,28.205368],[103.6938934,28.2091675],[103.6834412,28.240984],[103.6630173,28.2452583],[103.6501999,28.2561798],[103.6317368,28.2642002],[103.6065063,28.2433586],[103.5856171,28.23386],[103.5627365,28.2272034],[103.5523834,28.2020454],[103.5425262,28.1896801],[103.5329132,28.1792507],[103.5129623,28.1635799],[103.4944534,28.1431618],[103.4630966,28.1293907],[103.4474335,28.1279659],[103.4455338,28.1175194],[103.4521866,28.099453],[103.4474335,28.0909271],[103.4322433,28.0733566],[103.4270172,28.0581608],[103.4270172,28.0548363],[103.4403076,28.0287189],[103.4483795,28.0253944],[103.4721222,28.0353661],[103.479248,28.0344181],[103.4868469,28.0315685],[103.4911194,28.0263443],[103.4930191,28.0201721],[103.4944534,28.0054512],[103.4939728,27.978384],[103.5039368,27.9712601],[103.5153885,27.9688454],[103.5310135,27.9688854],[103.5523834,27.9817066],[103.559967,27.9779091],[103.559967,27.9693604],[103.549057,27.9570141],[103.5269775,27.9459019],[103.5039368,27.9195004],[103.4977722,27.9047794],[103.4972916,27.8862591],[103.4996567,27.8563423],[103.502037,27.8401966],[103.4920731,27.8169289],[103.46595,27.7827377],[103.4388885,27.7528229],[103.4137192,27.7399998],[103.3934174,27.7185287],[103.3880768,27.7148323],[103.3724136,27.7110329],[103.3612137,27.7035408],[103.337738,27.6777935],[103.3177872,27.6654472],[103.2935791,27.6436024],[103.2826233,27.6384716],[103.2745819,27.6326809],[103.2745819,27.6236591],[103.2840805,27.6141605],[103.2907333,27.5994396],[103.2902527,27.5780716],[103.2869263,27.5704727],[103.2826538,27.5681],[103.2603378,27.5704727],[103.2432404,27.5737972],[103.2237701,27.5733223],[103.2137985,27.5624008],[103.2066727,27.5486298],[103.2028732,27.5386581],[103.1781769,27.5191879],[103.1682129,27.497345],[103.146843,27.4736004],[103.1378174,27.4531822],[103.1363983,27.4246902],[103.0998306,27.4045086],[103.0741882,27.4049835],[103.0594711,27.4149551],[103.0523529,27.4135303],[103.0305023,27.3940601],[102.9858627,27.373642],[102.9777908,27.373167],[102.9649734,27.3812389],[102.9540482,27.4078312],[102.9464493,27.4189911],[102.9402771,27.4189911],[102.9317322,27.4047451],[102.9217529,27.3762531],[102.899437,27.3377895],[102.8956375,27.3216438],[102.8809204,27.3031235],[102.8799667,27.2691708],[102.8970566,27.2349815],[102.8975372,27.2093391],[102.9018097,27.196043],[102.9022903,27.1836948],[102.9070435,27.15378],[102.9075089,27.1381092],[102.9070435,27.125288],[102.89991,27.1001186],[102.8823395,27.06213],[102.8752213,27.0573807],[102.8676224,27.0317383],[102.8837738,27.011795],[102.8889923,27.0008717],[102.8885193,26.9809284],[102.8866196,26.9700069],[102.8889923,26.9386654],[102.8913727,26.9353409],[102.8946915,26.9149208],[102.9198608,26.8769321],[102.9298325,26.8624496],[102.9611664,26.8370438],[102.9663925,26.8175735],[102.9787369,26.79953],[102.9820633,26.7819595],[102.9801636,26.7710381],[102.9801636,26.7601147],[102.993927,26.7406464],[102.9953613,26.7235508],[103.0001068,26.7112045],[103.0001068,26.6898346],[103.0034332,26.6822376],[103.018631,26.6703663],[103.0214767,26.6637173],[103.0210037,26.6504211],[103.0229034,26.6328506],[103.0252838,26.6119576],[103.0171967,26.5991364],[103.0162582,26.5905876],[103.0276489,26.56637],[103.0494919,26.552124],[103.0556717,26.5393028],[103.0542374,26.5279064],[103.0419006,26.5084362],[103.018631,26.4875431],[102.9910889,26.4861183],[102.9887238,26.4785194],[102.9934616,26.4505024],[102.9877625,26.42486],[102.9857483,26.4088783],[102.9925079,26.3844967],[102.9929886,26.3735752],[102.9844437,26.3554688],[102.9716187,26.3460331],[102.9663086,26.3457031],[102.9417038,26.3460331],[102.9265137,26.3408089],[102.9084625,26.3446083],[102.8933563,26.3437443],[102.8837738,26.3631287],[102.8771591,26.3683929],[102.8733215,26.3664513],[102.8685684,26.3636036],[102.8619232,26.3450832],[102.8434067,26.326088],[102.8239365,26.3137417],[102.8051605,26.3100204],[102.7919464,26.3103313],[102.7796631,26.3061371],[102.7685928,26.2977505],[102.7581482,26.2856693],[102.7419281,26.2785797],[102.7335434,26.2663002],[102.7203064,26.2447395],[102.7164612,26.2252636],[102.7119675,26.2204704],[102.7056808,26.2171745],[102.7009964,26.216938],[102.6886368,26.2177105],[102.677063,26.2123051],[102.6687927,26.2107544],[102.657753,26.2159767],[102.6460724,26.2303543],[102.6331863,26.2351475],[102.6167068,26.2474289],[102.5992737,26.2536526],[102.5982895,26.2601852],[102.60215,26.2702236],[102.6077271,26.2845707],[102.6176071,26.2986488],[102.623909,26.3043404],[102.6315002,26.3111534],[102.6334915,26.3190174],[102.6266022,26.3390865],[102.6206131,26.3450775],[102.60215,26.3513107],[102.5810699,26.3588562],[102.5762787,26.3634987],[102.564003,26.3679924],[102.5520172,26.367094],[102.5465469,26.362896],[102.538063,26.3513107],[102.530777,26.3389549],[102.4870834,26.3277569],[102.4492416,26.3107681],[102.4013596,26.3053608],[102.3939972,26.3033772],[102.3828278,26.2960949],[102.3557968,26.2590256],[102.3434372,26.2482147],[102.3241272,26.2381744],[102.2878418,26.2289085],[102.2543564,26.2224312],[102.2445908,26.2142353],[102.2345428,26.1868534],[102.2160187,26.1748486],[102.1928635,26.1624928],[102.1804962,26.1586323],[102.1735535,26.1539993],[102.1573029,26.122282],[102.1326065,26.1099796],[102.1303024,26.0937614],[102.1164017,26.089901],[102.1096802,26.0813751],[102.0782623,26.0683937],[102.0135498,26.1001396],[101.9609222,26.0863876],[101.932869,26.1141186],[101.9239273,26.1133957],[101.9001923,26.1026516],[101.8703079,26.0607853],[101.8388901,26.0476685],[101.8259735,26.0477676],[101.8186111,26.0515442],[101.8212128,26.0832005],[101.8006287,26.1256828],[101.7987671,26.1627159],[101.7785721,26.1709499],[101.7694702,26.1941166],[101.7450638,26.2072582],[101.7303238,26.2298489],[101.6993866,26.2277203],[101.6962433,26.2447872],[101.672493,26.2330875],[101.6418533,26.2325497],[101.6274567,26.2066402],[101.6153107,26.253294],[101.5815582,26.2829037],[101.6203918,26.3163795],[101.6610031,26.306612],[101.6429367,26.3301792],[101.6603699,26.3436184],[101.6585999,26.3549118],[101.6352463,26.3505497],[101.6297836,26.3566322],[101.6395035,26.3888359],[101.6346664,26.4004192],[101.5930862,26.4242115],[101.5679932,26.4543362],[101.5330429,26.4687901],[101.5117569,26.4988327],[101.4665909,26.5028954],[101.3949585,26.5591183],[101.39534,26.5993137],[101.4532394,26.6023922],[101.4649277,26.6097565],[101.4626617,26.6454086],[101.4853973,26.6766891],[101.4540329,26.6935825],[101.4541016,26.7082825],[101.4987411,26.7336407],[101.4958267,26.7518444],[101.5139694,26.7604618],[101.5141296,26.7673512],[101.4794083,26.7845421],[101.4520111,26.7857399],[101.4476471,26.7741032],[101.46064,26.7366486],[101.4310379,26.7422466],[101.4178467,26.7252598],[101.3927536,26.7254848],[101.3620834,26.7756538],[101.3803101,26.7888813],[101.3772964,26.8034077],[101.3998718,26.8386078],[101.3967667,26.8494606],[101.3665771,26.8874454],[101.3234406,26.8854523],[101.3138733,26.9058342],[101.2909088,26.900032],[101.2679977,26.9084663],[101.2538605,26.9316788],[101.2663879,26.9537468],[101.2341919,26.9604969],[101.2227097,26.9889412],[101.1396484,27.0334988],[101.1605072,27.1128597],[101.1497192,27.1385307],[101.1732178,27.1686935],[101.1721725,27.2061462],[101.118103,27.2162132],[101.0670624,27.197504],[101.0467072,27.2228565],[101.0570221,27.2902145],[101.0104218,27.3168888],[101.0211563,27.3403778],[100.975563,27.3941212],[100.9359512,27.4681969],[100.9257889,27.4761543],[100.905899,27.4599113],[100.9003296,27.4655037],[100.8851166,27.4944286],[100.8817062,27.5488987],[100.8911285,27.5705757],[100.8792191,27.6113892],[100.8630829,27.6038132],[100.8516235,27.6273975],[100.8293076,27.6208229],[100.8289871,27.6621571],[100.8419724,27.6803417],[100.787323,27.6863861],[100.7701187,27.7532024],[100.7110291,27.8058796],[100.7081985,27.8378277],[100.7207565,27.8626842],[100.7025681,27.8730278],[100.6890335,27.9156723],[100.6700516,27.9262486],[100.6228867,27.9061928],[100.608223,27.8606949],[100.5477829,27.8150654],[100.5358124,27.8280659],[100.5064011,27.8323193],[100.5004578,27.8505249],[100.4835434,27.8608246],[100.4480133,27.8720245],[100.4338226,27.8570347],[100.4261093,27.8603344],[100.4077301,27.8407993],[100.3771896,27.7586498],[100.3520432,27.760273],[100.3447418,27.7537823],[100.3390579,27.732687],[100.3252563,27.7213287],[100.3139114,27.7270088],[100.3139114,27.7278194],[100.288208,27.8168335],[100.3054962,27.8345585],[100.3077164,27.8659859],[100.2969513,27.8732147],[100.2364426,27.8752079],[100.1757202,27.9022007],[100.1719208,27.9095821],[100.1908188,27.9318962],[100.1863632,27.948925],[100.1775513,27.9694386],[100.1318665,28.0005913],[100.0651398,28.0386715],[100.0516434,28.096199],[100.0189438,28.1479893],[100.035347,28.1852112],[100.0529938,28.1912289],[100.0890808,28.1867294],[100.1251831,28.2113209],[100.1632767,28.2165813],[100.1940308,28.2596798],[100.1502914,28.284874],[100.1786499,28.3150024],[100.1770935,28.3262863],[100.1242676,28.3582191],[100.0593796,28.3763561],[100.0732422,28.4370384],[99.9914169,28.4793396],[99.9825897,28.5273075],[99.9680099,28.5388145],[99.9605179,28.5640507],[99.9425201,28.5869007],[99.8874817,28.6082687],[99.8558197,28.5738335],[99.8243256,28.57971],[99.8495483,28.6283474],[99.8439636,28.662447],[99.7948074,28.7014465],[99.7573166,28.7020073],[99.7410202,28.7174416],[99.7173538,28.8451557],[99.6894302,28.8194885],[99.6218643,28.8127346],[99.6048737,28.7335491],[99.5692291,28.7218533],[99.5387115,28.6879921],[99.5457458,28.6353054],[99.5190659,28.5855122],[99.4814453,28.581646],[99.456604,28.551487],[99.4075623,28.5545979],[99.379303,28.5364418],[99.3811569,28.4958382],[99.4010239,28.4645367],[99.387352,28.3847752],[99.4109955,28.3577099],[99.3964996,28.3107357],[99.4205627,28.2884674],[99.4216461,28.2757874],[99.4178772,28.2732773],[99.4133606,28.271019],[99.4080887,28.2687588],[99.4055786,28.2662487],[99.4033203,28.263237],[99.4020615,28.2592201],[99.4023132,28.2554531],[99.4023132,28.2511864],[99.4015656,28.2481747],[99.3988037,28.2434044],[99.3957901,28.2403927],[99.3917694,28.2363758],[99.3905182,28.2293453],[99.3905182,28.2243252],[99.3897629,28.2172966],[99.3892593,28.2100163],[99.3880081,28.2032375],[99.3880081,28.1967106],[99.388504,28.1906853],[99.3905182,28.1861668],[99.3930283,28.1801434],[99.3927765,28.1748714],[99.3925476,28.1690693],[99.3952866,28.163826],[99.3963394,28.1595993],[99.3943634,28.1612453],[99.3905411,28.1631565],[99.3875427,28.166975],[99.3864517,28.1699753],[99.3856277,28.1737938],[99.3847122,28.1770935],[99.381813,28.1792507],[99.3793564,28.1806145],[99.3744431,28.1814327],[99.3684464,28.182251],[99.3638077,28.1841602],[99.359169,28.1863422],[99.3561707,28.1898899],[99.3542633,28.1926174],[99.351532,28.1972542],[99.3490753,28.1999817],[99.3466187,28.2010727],[99.344986,28.2035294],[99.3422546,28.2065296],[99.3389816,28.2095299],[99.334343,28.2119846],[99.3269806,28.2125301],[99.3207092,28.2141666],[99.3160706,28.2155304],[99.3123856,28.218441],[99.3097916,28.2226238],[99.3087006,28.2264423],[99.3084335,28.2318993],[99.3081589,28.2373543],[99.3078842,28.2414455],[99.3078842,28.248539],[99.3073425,28.2531757],[99.3059769,28.2580872],[99.3002472,28.2610874],[99.2939758,28.2602692],[99.2898788,28.2597237],[99.2844238,28.2602692],[99.2827911,28.2624512],[99.2819672,28.2654514],[99.2848206,28.269537],[99.2866974,28.2765827],[99.2885742,28.2840996],[99.2885742,28.290678],[99.2871704,28.2967854],[99.2843475,28.3014832],[99.2773056,28.3033619],[99.2688446,28.3038311],[99.2594528,28.3052406],[99.2519302,28.3080597],[99.2462997,28.3120193],[99.2425385,28.3179264],[99.2378387,28.3245029],[99.2350235,28.3306103],[99.233139,28.3376579],[99.2336121,28.3428249],[99.2336121,28.3494034],[99.2307892,28.3541012],[99.2251511,28.3545704],[99.2209244,28.3569202],[99.2134094,28.3602085],[99.2073822,28.3626308],[99.2049561,28.3677254],[99.2020264,28.3827229],[99.1993179,28.3865185],[99.1955566,28.3888664],[99.1885071,28.3921547],[99.1842804,28.3977928],[99.1800537,28.4024906],[99.1773605,28.4088516],[99.1739426,28.4156456],[99.1723709,28.4220524],[99.1725388,28.4269218],[99.1739426,28.4311485],[99.1772308,28.4325581],[99.1814651,28.4363174],[99.1880417,28.4443035],[99.1842804,28.4598064],[99.1861954,28.4711094],[99.1899185,28.4809494],[99.1915207,28.4851818],[99.1917953,28.4950428],[99.19133,28.5002098],[99.1842804,28.5147743],[99.1835632,28.5199203],[99.1809921,28.5307484],[99.1782837,28.5383892],[99.175354,28.5467205],[99.1748886,28.5542374],[99.1727753,28.5645199],[99.1744156,28.5702114],[99.1762924,28.5749092],[99.1786423,28.5800781],[99.1819305,28.5871239],[99.1814651,28.5908833],[99.1769638,28.5924759],[99.1701889,28.5984001],[99.1692505,28.6030979],[99.1711273,28.6153126],[99.1631393,28.6232986],[99.162674,28.6336346],[99.1570358,28.6378632],[99.1505814,28.6426067],[99.1453018,28.6544781],[99.1434097,28.663702],[99.1439819,28.6703091],[99.1368332,28.6815548],[99.1311951,28.692831],[99.1294403,28.7002239],[99.1321335,28.7130318],[99.1350327,28.7259502],[99.1321335,28.7337036],[99.1264954,28.74263],[99.1199188,28.7524967],[99.117569,28.7604828],[99.1161575,28.7745762],[99.1149597,28.7837601],[99.1105194,28.7961884],[99.1069565,28.8092117],[99.1072311,28.8206177],[99.1077042,28.8314228],[99.1086426,28.8455181],[99.1096878,28.8563156],[99.1124039,28.8699474],[99.1161575,28.8802834],[99.120842,28.885107],[99.1297531,28.904541],[99.1270523,28.9331284],[99.1308289,28.9444561],[99.1302872,28.9563217],[99.1292114,28.9644127],[99.1254349,28.9746609],[99.1243591,28.9881458],[99.1243591,29.0005512],[99.1259766,29.0107994],[99.1259766,29.0215874],[99.1238174,29.0350723],[99.1194992,29.0485573],[99.1162643,29.0593452],[99.1141052,29.0744476],[99.1141052,29.0917091],[99.1146469,29.1046543],[99.1151886,29.1143627],[99.1162643,29.1235313],[99.1149597,29.1305866],[99.1124878,29.1353989],[99.1105957,29.1398468],[99.1108704,29.145647],[99.1135712,29.1515808],[99.1130295,29.156435],[99.1100693,29.1616821],[99.1095505,29.1657009],[99.1119461,29.172617],[99.113739,29.178978],[99.1146469,29.1834049],[99.116806,29.1893368],[99.1184235,29.1925735],[99.1179352,29.198019],[99.1173401,29.2028217],[99.1144409,29.2062283],[99.1123428,29.2104225],[99.1130371,29.2172356],[99.1144409,29.2233486],[99.116806,29.2346458],[99.116806,29.2411194],[99.1146469,29.2459736],[99.1118011,29.2509918],[99.1011581,29.2615185],[99.0969696,29.2699051],[99.0948715,29.2789879],[99.0927734,29.2859764],[99.0850906,29.2908669],[99.078804,29.2950592],[99.0731964,29.3004074],[99.0718155,29.3076382],[99.0725098,29.3118305],[99.0711136,29.3188171],[99.0711136,29.3258057],[99.0683212,29.3334923],[99.0662231,29.3411789],[99.062767,29.3545341],[99.0627289,29.3649368],[99.0655212,29.3719254],[99.0655212,29.3803101],[99.0638962,29.3878098],[99.0641251,29.3900928],[99.0624771,29.3963356],[99.0621185,29.4030857],[99.0617676,29.4098358],[99.0635376,29.413744],[99.0635376,29.4169407],[99.0649643,29.4226246],[99.0653152,29.430439],[99.0628281,29.4421635],[99.0606995,29.4517536],[99.0599899,29.456728],[99.0582123,29.4627666],[99.0596313,29.4684505],[99.0603714,29.473959],[99.0599899,29.478754],[99.0567932,29.483017],[99.0532379,29.4862137],[99.0514603,29.4894104],[99.0486221,29.4958057],[99.0493317,29.5029106],[99.0493317,29.5117912],[99.0493317,29.5199623],[99.047554,29.5256462],[99.047554,29.5316849],[99.0493317,29.5373688],[99.0518188,29.5458946],[99.0518188,29.5569077],[99.0496826,29.5668545],[99.0443573,29.5736027],[99.0397415,29.5792866],[99.0354767,29.5856819],[99.03228,29.5917206],[99.026947,29.5981159],[99.0226898,29.6023788],[99.0187836,29.6062851],[99.0159378,29.6126804],[99.0123825,29.6197853],[99.011322,29.6247578],[99.0088348,29.6315079],[99.0059891,29.6386127],[99.0038605,29.6442966],[99.0003052,29.6531792],[98.9971085,29.6609936],[98.995079,29.6663132],[98.994133,29.6731968],[98.9944916,29.6795864],[98.9959106,29.6870384],[98.9969788,29.7054939],[98.9973297,29.717207],[98.9998169,29.7324677],[99.002655,29.7406311],[99.0083313,29.7519875],[99.0108185,29.76157],[99.011528,29.7707977],[99.0140152,29.780735],[99.0172043,29.7871246],[99.0196915,29.7928028],[99.0196915,29.798481],[99.0175629,29.8038044],[99.0157852,29.808773],[99.0147247,29.8137417],[99.0140152,29.8180008],[99.0161438,29.8261642],[99.0211105,29.8346825],[99.0235977,29.8435555],[99.0253677,29.8510094],[99.0296249,29.8584614],[99.0328217,29.8666248],[99.0367279,29.8733673],[99.0402756,29.8786907],[99.0434723,29.884016],[99.0463104,29.8893394],[99.0491486,29.8967915],[99.0526962,29.9049549],[99.0537643,29.9134731],[99.0555954,29.9169292],[99.0566864,29.9199352],[99.0596466,29.9243755],[99.0659332,29.9265957],[99.0688934,29.9288158],[99.0706024,29.931179],[99.0700073,29.9347363],[99.0666733,29.9369564],[99.062233,29.9388065],[99.0585327,29.9406567],[99.0548325,29.9439869],[99.0529861,29.9465771],[99.0514984,29.950489],[99.0511322,29.9543476],[99.0500259,29.9580479],[99.050766,29.9654484],[99.051506,29.9724789],[99.050766,29.9791393],[99.0503922,29.9854298],[99.0500259,29.9917202],[99.0478058,29.9972706],[99.0459518,30.002821],[99.0433655,30.0098515],[99.0407715,30.0157719],[99.0396652,30.017992],[99.0381851,30.0213223],[99.0372772,30.0269337],[99.0381851,30.0339031],[99.0396652,30.0379734],[99.0389252,30.0431538],[99.0385513,30.0524044],[99.0396652,30.061655],[99.0404053,30.0690556],[99.0415115,30.0734959],[99.0426254,30.0779362],[99.0426254,30.0823765],[99.040451,30.0875568],[99.0378113,30.0923672],[99.0344849,30.0975475],[99.0289307,30.104948],[99.0252304,30.1067982],[99.0207901,30.1108685],[99.0163803,30.1168442],[99.0148697,30.1230793],[99.0133896,30.1267796],[99.0133896,30.1345501],[99.0141296,30.1397305],[99.0139618,30.1462307],[99.0119095,30.1497211],[99.0063629,30.1504612],[99.0004425,30.1512012],[98.993042,30.1512012],[98.9889679,30.1523113],[98.9863815,30.1556416],[98.9852676,30.1611919],[98.9852676,30.1652622],[98.9871216,30.1689625],[98.9867477,30.1726627],[98.9845276,30.1782131],[98.9823074,30.1837635],[98.9812012,30.1885738],[98.9826813,30.1952343],[98.9863815,30.1981945],[98.9893417,30.2033749],[98.9908218,30.2074451],[98.9915619,30.2129955],[98.9886017,30.2178059],[98.9841614,30.2226162],[98.9797211,30.2274265],[98.9760208,30.2326069],[98.9734268,30.2385273],[98.9715805,30.2444477],[98.9697266,30.2503681],[98.9693604,30.2555485],[98.9701004,30.2614689],[98.9723206,30.2670193],[98.9760208,30.2729397],[98.9797211,30.27738],[98.9833145,30.2849579],[98.9808273,30.2936611],[98.9797211,30.2999516],[98.979744,30.3040676],[98.9786072,30.3114223],[98.9786072,30.3173428],[98.9778671,30.3251133],[98.9745407,30.3314037],[98.9701004,30.3384342],[98.9693604,30.3439846],[98.9682465,30.3487949],[98.9689865,30.3558254],[98.9689865,30.363596],[98.9678802,30.3680363],[98.9660263,30.3743267],[98.9715805,30.3850574],[98.9749069,30.3906078],[98.9738007,30.3965282],[98.9726868,30.4020786],[98.9701004,30.4057789],[98.9667664,30.4087391],[98.9634399,30.4124393],[98.9608459,30.4179897],[98.9589996,30.4235401],[98.9604797,30.4294605],[98.9619598,30.436861],[98.9634399,30.4424114],[98.96418,30.4475918],[98.9626999,30.4535122],[98.959465,30.4619751],[98.9552994,30.4664631],[98.9519653,30.4697933],[98.9482651,30.4727535],[98.946785,30.4775639],[98.9445648,30.4820042],[98.9438248,30.4857044],[98.9427185,30.4912548],[98.9416046,30.4960651],[98.9404984,30.5001354],[98.9386444,30.5049458],[98.935318,30.5119762],[98.9319839,30.5167866],[98.9297638,30.5215969],[98.9305038,30.5302925],[98.9319839,30.5388031],[98.9330978,30.5462036],[98.9331436,30.5533733],[98.9297638,30.5591545],[98.9275436,30.5628548],[98.9249573,30.566185],[98.9245834,30.5713654],[98.9258728,30.5737228],[98.9297638,30.580246],[98.9338379,30.5850563],[98.9375381,30.5898666],[98.9386444,30.5928268],[98.9386444,30.5968971],[98.936058,30.6009674],[98.9316177,30.6024475],[98.9282837,30.6046677],[98.9253235,30.6072578],[98.9231033,30.610218],[98.9208832,30.6146584],[98.920517,30.6202087],[98.921257,30.624279],[98.9216232,30.6301994],[98.9223633,30.6353798],[98.9223633,30.6394501],[98.9216232,30.6446304],[98.9199371,30.6492329],[98.917923,30.653141],[98.9153366,30.6586914],[98.9131165,30.6642418],[98.9116364,30.6701622],[98.9101562,30.6760826],[98.9075623,30.6801529],[98.9053421,30.6842232],[98.903862,30.6894035],[98.9039078,30.6936283],[98.9046021,30.696434],[98.9053421,30.6990242],[98.9090424,30.7019844],[98.9138565,30.7042046],[98.9182968,30.7049446],[98.9234772,30.7060547],[98.9279175,30.7079048],[98.9312439,30.7093849],[98.9342041,30.7119751],[98.935318,30.7153053],[98.9379044,30.7193756],[98.9416046,30.7230759],[98.946785,30.7241859],[98.9519653,30.725296],[98.9567795,30.7278862],[98.9604797,30.7312164],[98.962326,30.7349167],[98.9626999,30.7386169],[98.9612198,30.7423172],[98.9612198,30.7467575],[98.9612198,30.7530479],[98.961586,30.7578583],[98.9619598,30.7626686],[98.9589996,30.768589],[98.9556656,30.7737694],[98.9527054,30.7763596],[98.9453049,30.7796898],[98.936058,30.7811699],[98.9271774,30.7819099],[98.917923,30.78302],[98.9083023,30.7867203],[98.8976288,30.7911282],[98.8912811,30.797821],[98.8879547,30.8011513],[98.8842545,30.8089218],[98.8801804,30.8141022],[98.8787003,30.8196526],[98.8764801,30.8248329],[98.8742599,30.8277931],[98.8698196,30.8296432],[98.863533,30.8326035],[98.8605728,30.8340836],[98.8568726,30.840374],[98.8550186,30.8455544],[98.8525162,30.8502369],[98.8490982,30.8536949],[98.8439178,30.8570251],[98.8391113,30.8599854],[98.8328171,30.8625755],[98.8276367,30.8651657],[98.8202362,30.869976],[98.8128357,30.8744164],[98.8054352,30.8784866],[98.7980347,30.8829269],[98.791748,30.8855171],[98.7880478,30.8862572],[98.7854538,30.8888474],[98.7832336,30.8921776],[98.7808304,30.8962536],[98.7780533,30.8995781],[98.7765732,30.9036484],[98.774353,30.9077187],[98.773613,30.9117889],[98.774353,30.9169693],[98.7774506,30.92313],[98.7813873,30.9291801],[98.7858276,30.9351006],[98.791008,30.9406509],[98.7939682,30.9447212],[98.7961807,30.9503708],[98.7991486,30.956562],[98.8006287,30.9628525],[98.7995148,30.9680328],[98.7987747,30.9728432],[98.7998886,30.9780235],[98.8028488,30.985424],[98.8043289,30.9906044],[98.803833,30.9968948],[98.8043289,31.0009651],[98.8028488,31.0057755],[98.7991486,31.0102158],[98.7954483,31.014286],[98.7906342,31.0168762],[98.7873077,31.0179863],[98.7843475,31.0220566],[98.7799072,31.0268669],[98.7721329,31.0329723],[98.7647324,31.0344524],[98.7484512,31.0396328],[98.7374573,31.0459557],[98.732666,31.0573254],[98.7336807,31.0677757],[98.7262497,31.071455],[98.7203293,31.0744133],[98.715889,31.0810738],[98.7104187,31.0913696],[98.7084885,31.099575],[98.710083,31.1102467],[98.7084885,31.1180763],[98.7044907,31.1243935],[98.6944275,31.1321373],[98.6855469,31.1350975],[98.6825867,31.1373177],[98.6788864,31.1447182],[98.6729584,31.1569862],[98.6633453,31.1609993],[98.6552048,31.1646996],[98.6478043,31.1683998],[98.6419907,31.1759777],[98.6399689,31.1796856],[98.6353226,31.182621],[98.6258087,31.1827202],[98.6140137,31.1813717],[98.6079483,31.1837311],[98.60289,31.1891232],[98.6025543,31.1924953],[98.6042404,31.1965389],[98.6108017,31.199482],[98.6184006,31.2052345],[98.6226425,31.215023],[98.6207581,31.2231693],[98.6153641,31.2282257],[98.6099701,31.228899],[98.6049118,31.2322712],[98.6025543,31.2359791],[98.6018753,31.2457542],[98.6017303,31.2569256],[98.60289,31.2630272],[98.6046295,31.2731953],[98.6118927,31.2903385],[98.61306,31.2973118],[98.6162567,31.304575],[98.618576,31.3127098],[98.6217728,31.3208447],[98.6246796,31.3292713],[98.628746,31.3327579],[98.6342697,31.3400211],[98.6435623,31.3432159],[98.6543121,31.3443794],[98.6625824,31.3445301],[98.6700058,31.3440876],[98.674942,31.3426361],[98.6804657,31.3403111],[98.6862717,31.3388596],[98.6906357,31.3365345],[98.6964417,31.3321762],[98.7013855,31.3278179],[98.7048721,31.3246212],[98.7095184,31.3188114],[98.715332,31.3109665],[98.721138,31.3007984],[98.7275314,31.2920818],[98.7327652,31.283947],[98.7379913,31.2758102],[98.7443848,31.2694187],[98.7504883,31.2656422],[98.7557144,31.2644806],[98.7603607,31.2636089],[98.7647247,31.2612839],[98.7676239,31.2580872],[98.7725677,31.255764],[98.7769241,31.2546005],[98.7804108,31.2548923],[98.7830276,31.2580872],[98.7838974,31.2618656],[98.785347,31.2653522],[98.7900009,31.2694187],[98.7946472,31.2731953],[98.7987137,31.2769737],[98.8019104,31.2795887],[98.8045273,31.2830753],[98.805687,31.2885952],[98.8059769,31.294405],[98.8065567,31.2999268],[98.8068466,31.3051567],[98.8091736,31.3112564],[98.8122635,31.3174934],[98.8167267,31.3243313],[98.8231201,31.3298512],[98.8277359,31.333313],[98.8336411,31.3366203],[98.8397827,31.3392181],[98.85466,31.3470116],[98.8638687,31.3550415],[98.8707199,31.3590565],[98.876152,31.3644886],[98.8811111,31.3692131],[98.8839493,31.3762989],[98.8834763,31.3805504],[98.8801651,31.3836193],[98.876152,31.3895245],[98.8737869,31.3940125],[98.8714294,31.3980274],[98.8610382,31.4071198],[98.854866,31.4081135],[98.8497162,31.4101734],[98.8466263,31.414978],[98.8445663,31.4208126],[98.8428497,31.4263039],[98.8421631,31.4311085],[98.8404465,31.4345398],[98.8377075,31.4369431],[98.8342743,31.4386597],[98.8311844,31.441061],[98.8260345,31.441061],[98.8205414,31.4427776],[98.8157349,31.4451809],[98.8116226,31.4468956],[98.8075027,31.4513588],[98.8033829,31.4554768],[98.7996063,31.461998],[98.7958298,31.4678326],[98.7896729,31.4764957],[98.7814178,31.4801884],[98.7745514,31.4815598],[98.7656326,31.4843063],[98.7594528,31.4867077],[98.7536163,31.4891109],[98.7477798,31.4932289],[98.7402344,31.4976921],[98.7289505,31.5036392],[98.719986,31.5083313],[98.7148361,31.5124493],[98.7089996,31.5158806],[98.7045364,31.5220585],[98.7021332,31.526865],[98.7000732,31.5320129],[98.6956177,31.5381908],[98.6914978,31.5436821],[98.6887512,31.5474567],[98.6854477,31.5509415],[98.6798248,31.556036],[98.6757126,31.5598125],[98.6685028,31.5635872],[98.661293,31.5690784],[98.6551132,31.5735397],[98.651001,31.576973],[98.6475677,31.5824642],[98.6413879,31.5848675],[98.6328049,31.5872688],[98.6266098,31.5892067],[98.6211395,31.5931034],[98.6190796,31.5975647],[98.6166763,31.6003113],[98.6142731,31.6061459],[98.6080933,31.6106071],[98.6036377,31.6143818],[98.5984879,31.6171284],[98.594368,31.6191883],[98.5929947,31.6233063],[98.5905914,31.6284542],[98.5885315,31.6325722],[98.5861282,31.6370354],[98.5813293,31.6401234],[98.5758362,31.6432114],[98.570343,31.6452713],[98.5658798,31.6483612],[98.5624466,31.6504192],[98.5597076,31.6545391],[98.5590439,31.6592369],[98.5559311,31.6631184],[98.5545578,31.6682663],[98.5545578,31.6730709],[98.5566177,31.6771908],[98.5545578,31.6819954],[98.5521545,31.6847401],[98.548378,31.6864567],[98.5466614,31.6874866],[98.5476913,31.689888],[98.5521545,31.6912613],[98.5545578,31.6926346],[98.5542145,31.6957226],[98.5528412,31.6998425],[98.5504379,31.7008724],[98.548378,31.7032738],[98.5470047,31.7063637],[98.5463181,31.7091084],[98.5459747,31.7132263],[98.5459747,31.7170029],[98.5449448,31.7197475],[98.5432281,31.7218075],[98.5408401,31.7226295],[98.5380783,31.7221508],[98.5339661,31.7207775],[98.5295029,31.7197475],[98.526413,31.7190609],[98.5226364,31.7197475],[98.5193787,31.7230988],[98.5180817,31.7265263],[98.5167999,31.7303867],[98.5157471,31.7341633],[98.5137177,31.7382812],[98.5126877,31.7420559],[98.5109711,31.7472057],[98.5082245,31.752697],[98.5054626,31.7573853],[98.503418,31.7602463],[98.4996414,31.7640228],[98.4955215,31.7660809],[98.4914017,31.7677975],[98.4875336,31.7686081],[98.4853516,31.771101],[98.4827042,31.7763996],[98.4805679,31.7809734],[98.4774094,31.7854404],[98.4711685,31.7860622],[98.4671173,31.7859077],[98.4630661,31.785284],[98.4588623,31.7865314],[98.4566803,31.7894917],[98.4574585,31.7915173],[98.4588623,31.7930775],[98.4607315,31.7952595],[98.4622803,31.7985497],[98.4626007,31.8011818],[98.4590149,31.8049221],[98.4562073,31.8058567],[98.4529343,31.8075714],[98.4501343,31.8088188],[98.4474792,31.8099098],[98.4463882,31.8120918],[98.4449844,31.8144283],[98.4431152,31.816143],[98.4418716,31.8181686],[98.4410934,31.8208199],[98.4406204,31.8247147],[98.440155,31.8291569],[98.4385986,31.8328972],[98.431427,31.8328972],[98.4239502,31.8319626],[98.4189606,31.8322735],[98.4149094,31.8335209],[98.4130402,31.8378849],[98.4127274,31.8413143],[98.415535,31.8497295],[98.4186478,31.8587704],[98.4198914,31.8643799],[98.417717,31.8693676],[98.4127274,31.8759136],[98.4086761,31.8799667],[98.4058685,31.8827705],[98.4027481,31.8893166],[98.4018173,31.8930588],[98.3993225,31.89711],[98.3983841,31.9011631],[98.3968353,31.9043655],[98.3980789,31.9077091],[98.4049301,31.9120731],[98.4108582,31.9158134],[98.417717,31.9211121],[98.4233246,31.925787],[98.4273758,31.9307747],[98.4280014,31.9335804],[98.4283142,31.9360733],[98.4267502,31.938879],[98.4255066,31.9419956],[98.4230118,31.9451141],[98.4217682,31.9488544],[98.4242554,31.9529057],[98.4261322,31.9572697],[98.4295578,31.9625702],[98.431427,31.9672451],[98.431427,31.9712963],[98.4298706,31.9775314],[98.4289322,31.980648],[98.4283142,31.9878178],[98.4273758,31.9968567],[98.4311142,32.0021553],[98.4311142,32.0074539],[98.431427,32.0136909],[98.4239502,32.0189896],[98.413353,32.0252228],[98.4033737,32.0317688],[98.4030609,32.0476646],[98.3572388,32.0894356],[98.3435287,32.0903702],[98.3410339,32.1006584],[98.3319931,32.103775],[98.3248215,32.1137505],[98.3117294,32.1156197],[98.3120422,32.1271515],[98.2996368,32.1287651],[98.2973938,32.1393089],[98.294899,32.1505318],[98.2892914,32.1583252],[98.2852325,32.1636238],[98.2774429,32.1773376],[98.2687149,32.1935463],[98.2590561,32.2125626],[98.2493896,32.2215996],[98.2409744,32.2297058],[98.2257004,32.2328224],[98.2207108,32.2415504],[98.2203979,32.2602539],[98.2307739,32.2687721],[98.224144,32.2836304],[98.2157211,32.3023338],[98.2069931,32.3207245],[98.2116699,32.3456612],[98.2023239,32.355793],[98.1951523,32.3626518],[98.1848679,32.3642082],[98.1770706,32.371067],[98.1708374,32.3769875],[98.156189,32.3785477],[98.1399765,32.3791695],[98.1309357,32.3931961],[98.1237869,32.4044189],[98.109169,32.3948097],[98.0959091,32.4046593],[98.0785751,32.4028587],[98.0729599,32.4203148],[98.0633011,32.4206276],[98.0567551,32.4259262],[98.0505142,32.430603],[98.0374298,32.432785],[98.0221558,32.4536705],[98.0112457,32.4533577],[98.0037613,32.4583435],[97.9888,32.4655151],[97.9693909,32.4746895],[97.9594955,32.4754906],[97.9479675,32.4736176],[97.9407959,32.4776726],[97.9367447,32.4845276],[97.9323807,32.4860878],[97.9264603,32.4860878],[97.920845,32.485775],[97.9171066,32.485775],[97.9111862,32.4876442],[97.9021454,32.4904518],[97.8921661,32.4907646],[97.8800125,32.4907646],[97.8725281,32.4932556],[97.861618,32.4954376],[97.846344,32.5016747],[97.8311234,32.507473],[97.8220367,32.5079079],[97.8136215,32.5057259],[97.8080063,32.5044785],[97.7955399,32.5150757],[97.7949142,32.5206871],[97.7868118,32.5238037],[97.7774582,32.5253639],[97.7653046,32.5197525],[97.7573013,32.5363884],[97.730751,32.5308189],[97.709816,32.5345573],[97.6987305,32.5389709],[97.6886215,32.548275],[97.6705399,32.552639],[97.6636887,32.5607414],[97.6505966,32.5676003],[97.6387482,32.5781975],[97.6239395,32.581768],[97.6100693,32.5950317],[97.6058273,32.6181107],[97.587944,32.6139221],[97.5782776,32.6193428],[97.5477219,32.6242867],[97.5383759,32.6286964],[97.5340118,32.6392937],[97.5180435,32.638813],[97.5128174,32.6480217],[97.4861679,32.6551514],[97.4641876,32.6735802],[97.4486008,32.6879196],[97.4436188,32.6929092],[97.441124,32.6991425],[97.4276886,32.7050056],[97.4242935,32.7147255],[97.4261627,32.7215843],[97.4130707,32.7402878],[97.4018478,32.7639771],[97.3843918,32.7870445],[97.3813019,32.7961235],[97.3781586,32.8182144],[97.3787842,32.8269424],[97.3881302,32.8294373],[97.3918533,32.8362579],[97.3825226,32.8574905],[97.3856354,32.8680878],[97.3719254,32.8762207],[97.3737946,32.887413],[97.3625488,32.8905945],[97.3562088,32.9119949],[97.368103,32.9553604],[97.4360352,32.9795532],[97.493515,32.9830475],[97.5195999,32.9957657],[97.5013962,33.0266075],[97.539505,33.0377731],[97.5429688,33.0501595],[97.5172958,33.0970039],[97.4890747,33.1124535],[97.4957047,33.1406593],[97.4848938,33.1642036],[97.526413,33.2047119],[97.5580521,33.2149277],[97.5993423,33.2583885],[97.6196899,33.3377266],[97.6305923,33.3471565],[97.6751938,33.3489113],[97.7016144,33.3776283],[97.7410126,33.3857574],[97.7726898,33.4092026],[97.7531357,33.4352684],[97.7170105,33.4264679],[97.6854782,33.4323273],[97.6253204,33.4612198],[97.5971146,33.4581375],[97.5819397,33.4743423],[97.558136,33.467144],[97.5136414,33.5223885],[97.5192719,33.5833511],[97.4456635,33.5905571],[97.4080963,33.619915],[97.4049683,33.6336441],[97.428772,33.6805],[97.4274979,33.7040901],[97.4058914,33.7935448],[97.3708725,33.8355026],[97.3957825,33.8530502],[97.3907623,33.8949432],[97.4541397,33.892067],[97.5068817,33.913166],[97.5328217,33.9066391],[97.5990601,33.9334793],[97.6382446,33.9239998],[97.6601028,33.9623299],[97.6568222,34.0113411],[97.6927261,34.0187187],[97.7284393,33.9876709],[97.7808609,33.9761162],[97.7807465,33.9314537],[97.7439804,33.8944817],[97.7484589,33.8777733],[97.7708054,33.8652306],[97.798317,33.869873],[97.8225784,33.8596153],[97.9177399,33.8996201],[97.9449387,33.9365273],[97.9961777,33.940918],[98.0204163,33.9514618],[98.0804901,33.932457],[98.1300888,33.944809],[98.2463226,33.9201813],[98.2716141,33.8958588],[98.256134,33.8645058],[98.2607727,33.8447952],[98.3356552,33.8510666],[98.3557816,33.8640747],[98.4078369,33.8712692],[98.4328079,33.8494377],[98.4680328,33.84795],[98.5244675,33.796669],[98.5281677,33.7673378],[98.5548172,33.761734],[98.5687103,33.7387733],[98.6037903,33.7209816],[98.615387,33.684967],[98.6621323,33.6508446],[98.6211548,33.640274],[98.6234894,33.6178131],[98.6535339,33.5956802],[98.6501999,33.5466805],[98.7261734,33.5098686],[98.7257462,33.4890251],[98.7418518,33.4800034],[98.7334366,33.4170532],[98.7817535,33.363636],[98.7614365,33.285183],[98.7906494,33.2790565],[98.8091202,33.2642822],[98.8041534,33.2256012],[98.8446121,33.1653328],[98.9173737,33.1215477],[98.9672699,33.1170654],[98.9728546,33.1021309],[98.9948349,33.0905113],[99.0157928,33.0862274],[99.0328064,33.0954857],[99.0925827,33.0741463],[99.1296539,33.0490875],[99.1691818,33.0475883],[99.1870575,33.0382614],[99.2111359,33.0025291],[99.233284,32.9876595],[99.2300186,32.9668427],[99.2453308,32.9508896],[99.2449951,32.9254646],[99.2709045,32.8883324],[99.3135529,32.8821716],[99.3426437,32.8992805],[99.3707962,32.9021072],[99.403389,32.889328],[99.4193649,32.8835793],[99.4500351,32.8637695],[99.4768677,32.8599358],[99.501152,32.856102],[99.515213,32.8484344],[99.5677795,32.8311195],[99.6146393,32.7805557],[99.6489716,32.7907944],[99.6646576,32.7707214],[99.7052155,32.7631454],[99.7139359,32.7385292],[99.7341614,32.7170753],[99.7695694,32.7760925],[99.7948227,32.8635483],[99.774147,32.9374161],[99.7865982,32.9511108],[99.8351059,32.9345932],[99.8496628,32.9379082],[99.8901901,33.0057182],[99.8968124,33.0392685],[99.9185944,33.0222206],[99.9644089,32.9451752],[100.0267334,32.945343],[100.0262527,32.8993034],[100.0718384,32.8928299],[100.0822372,32.8713531],[100.109169,32.8592186],[100.1157227,32.7901497],[100.1350098,32.7318611],[100.0874481,32.6724129],[100.1184464,32.6398201],[100.1887665,32.6289825],[100.2123871,32.607029],[100.2362366,32.7156525],[100.2608566,32.7438469],[100.3328934,32.7234993],[100.3909302,32.7501221],[100.4341507,32.6997948],[100.44664,32.6995506],[100.4541702,32.7021446],[100.4667435,32.695858],[100.4715195,32.6756897],[100.48246,32.6688232],[100.4969177,32.6581345],[100.5052032,32.6466064],[100.5120087,32.6361313],[100.5113831,32.6317291],[100.5044632,32.6298447],[100.5120087,32.6222992],[100.5104828,32.6116753],[100.5321274,32.6072121],[100.5271301,32.5959854],[100.5371399,32.5948639],[100.5333862,32.5808067],[100.5428238,32.5713768],[100.5667038,32.5707474],[100.5710831,32.5673599],[100.5695877,32.5537109],[100.5473328,32.5344276],[100.4874573,32.5107574],[100.4517899,32.4613533],[100.4682388,32.4198189],[100.5063629,32.4108963],[100.5092392,32.3956718],[100.5358124,32.3934746],[100.6192169,32.4393654],[100.6348038,32.4673233],[100.6266327,32.4978485],[100.6650772,32.5150108],[100.6560287,32.5598412],[100.6614227,32.6225014],[100.67379,32.627964],[100.7170334,32.612587],[100.7082825,32.6466904],[100.6807327,32.6695099],[100.6799927,32.6812134],[100.7410583,32.6530724],[100.763443,32.6654053],[100.7747803,32.6459045],[100.8440323,32.6463928],[100.8822174,32.6349678],[100.9306412,32.6047325],[100.9565201,32.624279],[101.0011063,32.6344337],[101.0258713,32.6597404],[101.0478668,32.6817398],[101.0625381,32.6836967],[101.0659637,32.6817398],[101.0742722,32.6822281],[101.093338,32.6729393],[101.1094666,32.6748962],[101.1133804,32.6734314],[101.1065369,32.6470299],[101.1080017,32.6396942],[101.1168137,32.6367607],[101.1199417,32.6553192],[101.1546173,32.6606255],[101.2169037,32.7160759],[101.2304001,32.7434502],[101.2370834,32.8152313],[101.2217636,32.8580246],[101.1861801,32.8905716],[101.119957,32.9126511],[101.1339798,32.9549217],[101.1160965,33.0358086],[101.1309814,33.0540085],[101.1443481,33.0554886],[101.145401,33.0852547],[101.1643219,33.1031075],[101.1521301,33.1366463],[101.1647034,33.1597023],[101.2323837,33.1804161],[101.3114014,33.1893311],[101.3366013,33.2127228],[101.3660431,33.1674652],[101.3878326,33.1512871],[101.3889465,33.2094688],[101.4084778,33.2265816],[101.4911499,33.2224503],[101.5936127,33.1335716],[101.6316605,33.1090851],[101.6470871,33.1125259],[101.6622086,33.1611328],[101.6822662,33.1836853],[101.6810303,33.1997681],[101.7225571,33.2253418],[101.7342682,33.2758751],[101.7165833,33.297493],[101.678421,33.3011513],[101.6502304,33.3210106],[101.6567307,33.3588638],[101.6970367,33.4321632],[101.7557068,33.4391136],[101.7742767,33.4500122],[101.774231,33.5480423],[101.8053436,33.5661926],[101.7999573,33.6195374],[101.8342209,33.616787],[101.8470535,33.602459],[101.8583603,33.5888824],[101.882103,33.5764275],[101.8907928,33.5775681],[101.9013519,33.5700226],[101.910408,33.5556946],[101.8953171,33.5277863],[101.9028625,33.5066681],[101.9005508,33.484848],[101.9066315,33.4795113],[101.9239807,33.4734802],[101.9266663,33.4677467],[101.9232635,33.4562683],[101.9307938,33.4477692],[101.9385376,33.445137],[101.8816986,33.3809128],[101.8735504,33.3201942],[101.8319473,33.2887077],[101.8184433,33.2673492],[101.767128,33.2617378],[101.764183,33.2437248],[101.8320236,33.2084808],[101.840889,33.1735954],[101.8234406,33.1241646],[101.8639908,33.1084633],[101.93293,33.1663475],[101.9516907,33.1948586],[101.9448624,33.2193756],[101.9537125,33.2399559],[101.9896164,33.2248611],[102.0001678,33.2247086],[102.0503998,33.1972466],[102.0728683,33.19561],[102.0880508,33.2186699],[102.0880508,33.2272606],[102.0971527,33.2383804],[102.0965424,33.2517891],[102.1272812,33.260067],[102.1820374,33.2213821],[102.1992569,33.2216835],[102.208107,33.2949333],[102.1613464,33.3332138],[102.1785202,33.3359222],[102.1850891,33.3424911],[102.2037888,33.3490639],[102.2118835,33.3546219],[102.2154236,33.3583069],[102.2217331,33.3711281],[102.2248383,33.3860855],[102.2402115,33.3910446],[102.2476501,33.3960037],[102.2516174,33.4123726],[102.2605515,33.4193153],[102.2714615,33.4133644],[102.2858429,33.4153481],[102.2942734,33.4133644],[102.3086624,33.4029465],[102.3174973,33.4028893],[102.3248367,33.3989792],[102.3375397,33.3994675],[102.3544464,33.3935623],[102.3697891,33.3984909],[102.3854218,33.4028893],[102.3924789,33.4133644],[102.3952637,33.4223938],[102.4138107,33.4317169],[102.423233,33.4416351],[102.4382324,33.4528694],[102.4450607,33.4560204],[102.4567566,33.4532166],[102.4594421,33.4545326],[102.4500198,33.4708977],[102.4564667,33.4733772],[102.4678726,33.4629631],[102.474823,33.4624672],[102.4763031,33.4654427],[102.4743195,33.4704018],[102.4539871,33.4842911],[102.4554672,33.5026436],[102.4475403,33.5239716],[102.4470291,33.5342636],[102.4504089,33.5362816],[102.4650726,33.5343285],[102.4698868,33.5389824],[102.4714203,33.5411682],[102.4665375,33.5524063],[102.4469528,33.5661316]]]]},
  1235 +"properties":{
  1236 +"gid":206,
  1237 +"name":"四川省"}
  1238 +},
  1239 +{"type":"Feature",
  1240 +"geometry":{"type":"MultiPolygon","coordinates":[[[[109.7570267,32.9120445],[109.7823105,33.002243],[109.7863235,33.0717735],[109.6991501,33.1038513],[109.6830368,33.1185455],[109.6283569,33.1200485],[109.5970764,33.1102562],[109.5873489,33.1216736],[109.5713272,33.1122971],[109.5554428,33.1276665],[109.5172272,33.1405754],[109.4633713,33.1420288],[109.43367,33.1537781],[109.493187,33.2090988],[109.509201,33.2395668],[109.5324783,33.2454948],[109.5958099,33.2344131],[109.6114197,33.2760887],[109.6386032,33.2733879],[109.6476822,33.250721],[109.6879501,33.2561569],[109.7127991,33.2352753],[109.7936935,33.2362442],[109.8470688,33.2497559],[109.9241409,33.2274017],[109.9631271,33.2068214],[110.0011597,33.2134743],[110.0258789,33.193676],[110.1597595,33.21101],[110.2272034,33.1609802],[110.3618317,33.1801682],[110.4123383,33.1720657],[110.4556808,33.184639],[110.4790268,33.2087097],[110.5226364,33.2322578],[110.5285797,33.2545967],[110.5662766,33.2553368],[110.5888672,33.2090454],[110.5960464,33.1564941],[110.618721,33.1459312],[110.6459427,33.1595039],[110.6700363,33.125824],[110.6972198,33.0990715],[110.7146225,33.1014519],[110.7166824,33.1276016],[110.7401581,33.1488762],[110.8127136,33.1526833],[110.8097534,33.1835556],[110.8198776,33.2050362],[110.8600464,33.2160339],[110.9080734,33.2081413],[110.9550629,33.2556419],[110.9776611,33.2596741],[111.0040436,33.2174911],[111.0507202,33.1944008],[111.0343018,33.1586418],[111.0673828,33.1822891],[111.0881424,33.182148],[111.1850967,33.0885277],[111.1870499,33.0734367],[111.1521378,33.0598717],[111.1423721,33.0441551],[111.1774368,33.0494766],[111.232399,33.0427017],[111.2347183,33.0218925],[111.2529831,33.0084038],[111.2678223,32.973793],[111.2473068,32.957737],[111.2370224,32.9325981],[111.2441864,32.8862038],[111.2705002,32.9053497],[111.2800827,32.9029617],[111.2846375,32.8640862],[111.3739471,32.8306885],[111.4097137,32.7624359],[111.4315109,32.7592697],[111.4540176,32.7783318],[111.4630432,32.775692],[111.4653702,32.7661018],[111.4467316,32.74366],[111.4144669,32.7386742],[111.4164963,32.7318306],[111.5051498,32.6784019],[111.5207138,32.6563721],[111.5302124,32.6235046],[111.5533295,32.6033897],[111.5772705,32.5988541],[111.6126099,32.6299324],[111.6350327,32.6370468],[111.6406097,32.6084824],[111.6642838,32.6224747],[111.7152634,32.6065102],[111.7971878,32.5452499],[111.856163,32.5341148],[111.8754425,32.5086365],[111.9465866,32.5193176],[111.9998398,32.458374],[112.0527573,32.4743423],[112.0627823,32.4478531],[112.1424026,32.3879509],[112.2262497,32.3935165],[112.2658005,32.3541298],[112.3100891,32.3271179],[112.3238373,32.3335991],[112.3390503,32.3627548],[112.3625183,32.3731766],[112.4001236,32.3733482],[112.4406967,32.3575592],[112.4725266,32.3785248],[112.4906464,32.3785973],[112.5128174,32.3846321],[112.5357132,32.4094429],[112.5672226,32.3841248],[112.6687469,32.3731766],[112.6793976,32.3587036],[112.7294464,32.3604012],[112.7497635,32.3450966],[112.8646774,32.400177],[112.8733521,32.3770523],[112.9060898,32.3930969],[112.9483032,32.3908119],[112.9712982,32.3720322],[112.9859238,32.380497],[112.9853897,32.4127846],[113.02005,32.4269638],[113.0541382,32.4058685],[113.0955429,32.4005547],[113.1155319,32.3812943],[113.1409683,32.3826294],[113.1651688,32.4256325],[113.2111969,32.4285164],[113.2999496,32.3499718],[113.3261719,32.3469124],[113.3128433,32.3293266],[113.3483887,32.2973824],[113.3813782,32.2986412],[113.4171982,32.2751465],[113.5118408,32.3232803],[113.5752792,32.338974],[113.5797501,32.3486748],[113.5981674,32.3517799],[113.5877304,32.3669548],[113.6188126,32.3619728],[113.6189499,32.3798332],[113.6359482,32.4056168],[113.6598206,32.4118881],[113.6588135,32.4212837],[113.66539,32.4280281],[113.7136765,32.4254227],[113.744957,32.38377],[113.7377319,32.3622971],[113.758667,32.3736038],[113.7656479,32.3676033],[113.7504425,32.332901],[113.7650909,32.3087578],[113.7416763,32.2910538],[113.7348099,32.2503433],[113.7485428,32.2147636],[113.7781067,32.2008209],[113.7605209,32.1684303],[113.7572174,32.133419],[113.7436295,32.1227493],[113.7195969,32.1213036],[113.7228088,32.0878563],[113.7516327,32.0544662],[113.7773666,32.0398636],[113.7775269,32.0293312],[113.7481995,32.0008736],[113.7598114,31.9836311],[113.8063736,31.970171],[113.8001175,31.9401112],[113.8278885,31.9116707],[113.8273163,31.8708744],[113.8416367,31.8490658],[113.8829269,31.8508873],[113.9041595,31.8779144],[113.9244614,31.8799782],[113.9485474,31.8543873],[113.9417267,31.80233],[113.9758682,31.7568932],[114.0446167,31.7730217],[114.114418,31.8102951],[114.1239395,31.8422585],[114.1820984,31.8536472],[114.2341232,31.8347759],[114.2911606,31.7520943],[114.3376999,31.7577572],[114.3752136,31.7429371],[114.4471588,31.7331123],[114.4982605,31.7388687],[114.5049362,31.7709408],[114.5285263,31.7414265],[114.5440903,31.7611694],[114.5672226,31.7673931],[114.5798721,31.76091],[114.5725098,31.7125473],[114.582222,31.6990929],[114.5502319,31.6552296],[114.5416336,31.6240139],[114.5516129,31.5601387],[114.5710068,31.5579967],[114.622757,31.5912342],[114.6487427,31.5732327],[114.6631622,31.5491467],[114.6925201,31.5465984],[114.6906815,31.5325584],[114.7189713,31.5230999],[114.76828,31.5243435],[114.7796783,31.4877739],[114.8275375,31.464426],[114.8417435,31.4643841],[114.8518066,31.4809532],[114.8765106,31.4734173],[114.9362335,31.4822369],[114.96772,31.5000935],[114.9894104,31.4727383],[115.0129166,31.5245132],[115.0534515,31.5093632],[115.0892334,31.5137825],[115.1046066,31.5258942],[115.099762,31.5553303],[115.119072,31.5774002],[115.1194229,31.5971222],[115.1381073,31.6072521],[115.1668167,31.6002312],[115.1884613,31.5659695],[115.2298737,31.5558319],[115.2105865,31.5099392],[115.2011337,31.4450493],[115.2152634,31.4247952],[115.2465363,31.4191971],[115.2501068,31.3938484],[115.2851486,31.4030132],[115.3034821,31.3844585],[115.3209763,31.3970585],[115.3643723,31.4050388],[115.3851929,31.3915825],[115.3726425,31.3747616],[115.3774033,31.3531075],[115.4018326,31.343174],[115.4288406,31.3521023],[115.442627,31.3159962],[115.4573822,31.3152142],[115.4539337,31.2821198],[115.4707565,31.2667198],[115.4992371,31.2710819],[115.5216827,31.255579],[115.5344162,31.2341099],[115.5372086,31.1892471],[115.5764999,31.1475506],[115.5889969,31.1494522],[115.5985718,31.1760406],[115.6238937,31.1869488],[115.638382,31.2104397],[115.6578369,31.2124958],[115.695549,31.2032776],[115.7505188,31.1446953],[115.7587433,31.1203537],[115.7733307,31.1144905],[115.7926331,31.1300468],[115.8324509,31.1293201],[115.8620529,31.1496754],[115.8813171,31.1296902],[115.8876572,31.1043816],[115.9355927,31.071476],[115.9355087,31.0462589],[115.9605331,31.0486183],[116.0014191,31.0368595],[116.0097885,31.0141087],[116.0365982,31.0190125],[116.0692291,30.9664917],[116.0668793,30.9549828],[116.0409164,30.9585838],[115.9935074,30.9470673],[115.9186325,30.8893337],[115.8624878,30.868412],[115.8370438,30.8366795],[115.856163,30.8111897],[115.8524399,30.7925396],[115.8634186,30.781086],[115.8455582,30.7639618],[115.8173676,30.7541714],[115.7830734,30.762352],[115.7755127,30.7571392],[115.7576981,30.7120323],[115.7609634,30.6742764],[115.8005676,30.6476498],[115.8068237,30.5980339],[115.8253326,30.6101379],[115.8701096,30.5865841],[115.8762665,30.5571404],[115.9086533,30.5204659],[115.8897171,30.4863548],[115.8967896,30.4711437],[115.8898087,30.4554024],[115.9124069,30.4347954],[115.9391479,30.4273396],[115.879097,30.3850098],[115.9114609,30.3377857],[115.8994522,30.3127632],[115.9169235,30.3039684],[115.9488297,30.3090038],[115.9758835,30.2983398],[115.9897232,30.2575855],[116.0194702,30.244215],[116.0264893,30.2294579],[116.0601807,30.2069874],[116.0512772,30.1737881],[116.0797424,30.1285076],[116.0735168,30.0644112],[116.0863571,30.0385303],[116.0737381,30.0164928],[116.0687637,29.9657154],[116.1271896,29.891222],[116.1283264,29.8272705],[116.0463104,29.7696629],[115.9462891,29.7285881],[115.9145126,29.7256126],[115.8293915,29.7544804],[115.7295685,29.8150616],[115.6884079,29.8510323],[115.6663437,29.8569393],[115.6448669,29.8518467],[115.5935135,29.8416843],[115.5051727,29.8418293],[115.4711609,29.8091087],[115.4611511,29.7687263],[115.4651794,29.7422237],[115.4032364,29.687685],[115.2834473,29.6265583],[115.2643738,29.6301804],[115.2606277,29.6624184],[115.1713104,29.6572647],[115.141037,29.664465],[115.1167374,29.6885662],[115.1057663,29.6859684],[115.1036224,29.6654968],[115.1378403,29.6510735],[115.1291122,29.6010628],[115.1672134,29.5949974],[115.1471634,29.5524769],[115.1521072,29.517065],[115.1299362,29.5120964],[115.069397,29.5289917],[115.0889435,29.5483437],[115.0893936,29.5648708],[115.0326538,29.555706],[114.995903,29.575304],[114.9490128,29.5491848],[114.9391479,29.5319233],[114.9604034,29.5263462],[114.9512024,29.5052071],[114.9290466,29.5070877],[114.9178238,29.5257988],[114.9012604,29.5188904],[114.8970337,29.5332165],[114.8637238,29.4836082],[114.874733,29.4568672],[114.890007,29.4488297],[114.9130707,29.4573078],[114.8982773,29.4731579],[114.9138336,29.4857712],[114.9307785,29.4892464],[114.9367371,29.4777222],[114.9356308,29.4581947],[114.9067917,29.4360199],[114.8908386,29.3999977],[114.8770676,29.3961525],[114.8493881,29.4058819],[114.8034592,29.3850098],[114.7695694,29.3855915],[114.7480164,29.366354],[114.7276382,29.3969269],[114.6682129,29.3989868],[114.6168671,29.3829269],[114.5846634,29.355526],[114.5134125,29.3270912],[114.3970413,29.342083],[114.3438797,29.3274574],[114.3105698,29.3628101],[114.2878418,29.3661652],[114.2539673,29.3484898],[114.2434082,29.2384644],[114.1504593,29.2182522],[114.0611115,29.2116356],[114.0543289,29.188448],[114.0299835,29.1710548],[114.0290909,29.1563377],[113.9998474,29.1478081],[113.9679413,29.105135],[113.9502029,29.1011715],[113.9401321,29.0482807],[113.900032,29.0361443],[113.8715897,29.0380535],[113.8725662,29.0708408],[113.8436127,29.0615158],[113.8269806,29.0988083],[113.811348,29.1064606],[113.7666168,29.0962772],[113.73423,29.0631771],[113.7195435,29.1095695],[113.6811218,29.0879021],[113.6825867,29.120903],[113.6491394,29.1587276],[113.653183,29.1732826],[113.6904678,29.2041779],[113.6889572,29.2352104],[113.6420898,29.23699],[113.6310425,29.2543354],[113.5966415,29.2595901],[113.6256638,29.3171635],[113.6567078,29.3427639],[113.6573563,29.3813019],[113.721077,29.3966255],[113.7328568,29.4074783],[113.7450409,29.4504452],[113.734108,29.4703217],[113.6705475,29.5192528],[113.6316376,29.5117435],[113.6261978,29.5256882],[113.7010498,29.5585632],[113.7077332,29.5725708],[113.730423,29.5798454],[113.7334671,29.5948906],[113.7142563,29.6125088],[113.6983032,29.6146469],[113.6971207,29.6353397],[113.6637268,29.6421795],[113.6595306,29.6840801],[113.6333389,29.6695652],[113.5952377,29.6714897],[113.5501938,29.6741791],[113.5436935,29.6824188],[113.5561829,29.819025],[113.5739822,29.8340588],[113.5651398,29.8492603],[113.5181885,29.8250561],[113.4899292,29.7933636],[113.4612427,29.7783241],[113.4161835,29.7476044],[113.3540421,29.6854954],[113.3142166,29.6429768],[113.260788,29.5875816],[113.2138214,29.5446911],[113.1592636,29.4685097],[113.1317215,29.443079],[113.1153107,29.4385223],[113.0979919,29.4339657],[113.0834122,29.4321423],[113.0733871,29.4321423],[113.0660934,29.4372311],[113.0565872,29.4567738],[113.062233,29.4873562],[113.0524216,29.5032368],[113.033493,29.5127163],[113.0059433,29.5023251],[112.9822388,29.4895649],[112.9529572,29.471632],[112.9332428,29.4893417],[112.9128418,29.5917625],[112.9060364,29.6331367],[112.9915466,29.6883812],[113.0160599,29.7183132],[113.0215683,29.772995],[113.0066986,29.770195],[112.989769,29.7477245],[112.9320831,29.6895618],[112.9178925,29.697752],[112.9192429,29.736124],[112.8940735,29.7966824],[112.8815308,29.7997761],[112.8491898,29.7804508],[112.8000565,29.7389946],[112.7803268,29.7179451],[112.7877502,29.6968708],[112.7509308,29.6608906],[112.7072906,29.6475639],[112.6781693,29.5969105],[112.6622772,29.6014462],[112.6406326,29.5918961],[112.6256714,29.6161327],[112.6016235,29.6128311],[112.5641327,29.6247692],[112.5304871,29.6026497],[112.4996033,29.615097],[112.4854584,29.6335602],[112.4431381,29.6352577],[112.423172,29.6281548],[112.4197388,29.6030006],[112.3802109,29.5506954],[112.3598633,29.5390072],[112.3222198,29.5462894],[112.3158188,29.5215168],[112.2861633,29.5108566],[112.2822571,29.4988747],[112.2724991,29.523407],[112.2904129,29.5500755],[112.2975464,29.5854702],[112.2915802,29.5968437],[112.235939,29.6184959],[112.2389069,29.6608505],[112.2392883,29.6645145],[112.1913528,29.6290359],[112.1749802,29.6626549],[112.1261902,29.6595688],[112.0956573,29.6770248],[112.0585938,29.6876659],[112.0723114,29.7440567],[112.0585938,29.7731667],[112.0495071,29.7687645],[112.0605011,29.7476616],[112.0378571,29.757534],[111.9485779,29.8072796],[111.9544601,29.8392792],[111.9306335,29.8356209],[111.894577,29.8585758],[111.8018723,29.8940639],[111.7919693,29.9089298],[111.7545471,29.9107666],[111.7414398,29.9205608],[111.6937103,29.8899899],[111.5637436,29.8980694],[111.5334396,29.8999538],[111.5196075,29.9297733],[111.4440231,29.9282322],[111.4336014,29.9341297],[111.4073105,29.9150486],[111.3867264,29.9146824],[111.3712387,29.9550533],[111.3454285,29.9455872],[111.3376923,29.9541893],[111.323967,29.9791641],[111.3167114,29.9730816],[111.2935715,29.9903965],[111.2882309,30.0127201],[111.2695236,30.0150585],[111.2447128,30.0433865],[110.9236832,30.0674057],[110.9181366,30.1144886],[110.8202667,30.128006],[110.8044968,30.1167145],[110.7620468,30.1247463],[110.7423401,30.1148663],[110.7586823,30.0773087],[110.751442,30.0533028],[110.735733,30.0447559],[110.7044678,30.0393486],[110.6853333,30.0668373],[110.6461411,30.0803032],[110.60569,30.0598259],[110.5227585,30.0624275],[110.4929276,30.0232449],[110.5492935,29.9913197],[110.5040894,29.9458561],[110.5010605,29.9149208],[110.528801,29.8974724],[110.5420227,29.8592796],[110.5864868,29.8331776],[110.6089325,29.835947],[110.6305237,29.7958298],[110.6332169,29.7636948],[110.5156326,29.6946106],[110.4620132,29.7115517],[110.4361572,29.6649857],[110.3684311,29.6345692],[110.3509064,29.6445637],[110.3422394,29.668251],[110.2949829,29.6649742],[110.2850571,29.6989899],[110.2409363,29.734848],[110.1942596,29.7555714],[110.1558075,29.7562714],[110.1084518,29.7921047],[110.0192337,29.7721825],[109.9428635,29.7762222],[109.9032669,29.7669926],[109.8651428,29.7774696],[109.7870865,29.7660599],[109.7646179,29.7498493],[109.7598267,29.6920681],[109.6939163,29.6702442],[109.7075272,29.6557579],[109.7147064,29.6165218],[109.7025909,29.6110497],[109.6567688,29.5992432],[109.6453171,29.626791],[109.602211,29.6369724],[109.5764008,29.6299095],[109.5600281,29.6109047],[109.5145569,29.6217499],[109.5100479,29.6066189],[109.4984665,29.608696],[109.4910126,29.5699463],[109.4620132,29.5549374],[109.4578018,29.5470028],[109.456871,29.5395355],[109.4564133,29.5297337],[109.456871,29.5241318],[109.4587402,29.5208664],[109.4601364,29.5119972],[109.4573364,29.5091972],[109.4517365,29.5101299],[109.4461365,29.5143318],[109.4414673,29.5208664],[109.4372711,29.5250664],[109.4307327,29.5264664],[109.4279327,29.5255337],[109.4265366,29.5231991],[109.4255981,29.5171318],[109.427002,29.5110645],[109.4302673,29.50453],[109.4307327,29.5021973],[109.4326019,29.4979954],[109.4363327,29.4909954],[109.4368134,29.4877281],[109.4358673,29.4844608],[109.4311981,29.4849281],[109.4265366,29.4900608],[109.4199982,29.4937954],[109.4148636,29.4947281],[109.4092636,29.4933281],[109.4092636,29.4797935],[109.406929,29.4741936],[109.4004593,29.4681187],[109.4036636,29.4606571],[109.407402,29.4541225],[109.4134674,29.4461899],[109.4111328,29.4443226],[109.4045868,29.4443226],[109.3999329,29.441988],[109.4008636,29.4368553],[109.4027328,29.433588],[109.401329,29.4293861],[109.3905869,29.433588],[109.3845291,29.4340534],[109.3793869,29.4312534],[109.3728638,29.4261189],[109.3672638,29.4200516],[109.3644638,29.406517],[109.3733292,29.3962498],[109.3789291,29.3855152],[109.3401413,29.3679733],[109.3387222,29.2702732],[109.2537766,29.2268982],[109.2687073,29.2032852],[109.268692,29.1732407],[109.257431,29.166584],[109.2519226,29.1216278],[109.2414474,29.1156597],[109.2285995,29.1224556],[109.1652069,29.176506],[109.138237,29.1730232],[109.1078262,29.2030163],[109.1308212,29.2663574],[109.1029892,29.2984161],[109.1071091,29.3594322],[109.0532532,29.402668],[109.031517,29.3682137],[108.9948273,29.3536682],[108.9712677,29.3308964],[108.9091187,29.3256531],[108.9307404,29.3766422],[108.9329834,29.4190807],[108.8664398,29.4498119],[108.8595276,29.4731827],[108.8851318,29.514328],[108.8734665,29.542038],[108.9033432,29.5708141],[108.8993073,29.5969448],[108.8790817,29.5904522],[108.8648605,29.5954456],[108.8784332,29.6264591],[108.8449173,29.6517906],[108.8228073,29.6521626],[108.8089218,29.6392612],[108.7865829,29.6348095],[108.7775879,29.6441746],[108.7835083,29.6735573],[108.759819,29.6745987],[108.7541504,29.6477394],[108.7161179,29.675312],[108.7157669,29.6927414],[108.6749573,29.6936836],[108.6823807,29.7317944],[108.6743317,29.8060627],[108.6566772,29.8511524],[108.6267929,29.8663597],[108.5935822,29.8634186],[108.5721588,29.8325615],[108.5375519,29.8055153],[108.5222321,29.7719364],[108.5340729,29.7378349],[108.5148468,29.7356491],[108.5042267,29.7121849],[108.4502716,29.7423325],[108.4334564,29.7364826],[108.4360962,29.7699852],[108.4093781,29.7828712],[108.4186401,29.8109188],[108.3946991,29.8368931],[108.3830338,29.8143311],[108.3696136,29.8415222],[108.3854904,29.8661823],[108.3997269,29.865139],[108.431488,29.8848591],[108.4603729,29.8676281],[108.4898529,29.8770008],[108.5036163,29.8679161],[108.5165329,29.8705215],[108.521843,29.9026623],[108.5135803,29.9507751],[108.5341492,29.9912701],[108.523201,30.008173],[108.5236435,30.0593204],[108.4983063,30.0538845],[108.5332031,30.0905724],[108.558197,30.1439323],[108.5456238,30.1679363],[108.5694122,30.248806],[108.5244064,30.2859154],[108.4741364,30.3484287],[108.4568329,30.3609238],[108.4247437,30.3620796],[108.3996506,30.3843746],[108.4203491,30.4138775],[108.4086838,30.4454422],[108.4205322,30.4890976],[108.4653625,30.4914703],[108.5013733,30.5036316],[108.5261536,30.49049],[108.5441666,30.4935818],[108.5655212,30.4751339],[108.5749588,30.4923878],[108.6359863,30.5372219],[108.6402664,30.5787506],[108.6571884,30.5912247],[108.6835327,30.5835629],[108.7285767,30.5007706],[108.7834625,30.5115662],[108.8196182,30.4981861],[108.9015121,30.5740814],[108.973999,30.6335545],[109.0077515,30.6327286],[109.0478516,30.6481895],[109.1089935,30.6412086],[109.0809021,30.5895596],[109.083847,30.5638828],[109.1401825,30.5353203],[109.2424088,30.5845165],[109.2315063,30.5934505],[109.3011475,30.6352291],[109.3157501,30.6217079],[109.3130722,30.5893726],[109.331131,30.5891476],[109.3449173,30.5662174],[109.3337173,30.5311298],[109.3443069,30.4962788],[109.374588,30.5146198],[109.4584732,30.6274014],[109.4869232,30.634943],[109.5351486,30.67593],[109.5643234,30.6531849],[109.576561,30.6591263],[109.5844193,30.6999302],[109.6424713,30.7188492],[109.6578293,30.7639847],[109.7008133,30.7911663],[109.7313309,30.8279972],[109.7735367,30.8526325],[109.8883286,30.8909702],[109.9189682,30.889925],[109.9601364,30.8732338],[110.0029831,30.900774],[110.0155334,30.8372002],[110.0530624,30.8026142],[110.0757065,30.8040962],[110.1075363,30.852047],[110.1467514,30.9150906],[110.1419067,30.9380436],[110.1671295,30.9830532],[110.1611176,30.9952412],[110.1378174,31.008522],[110.1131363,31.0813618],[110.1300201,31.116806],[110.176033,31.1254654],[110.1904297,31.1506004],[110.1551895,31.2650127],[110.1603394,31.3002911],[110.1358337,31.3976555],[110.1019974,31.4164276],[110.0529938,31.4169292],[109.9851837,31.4796391],[109.9455185,31.4798241],[109.9402237,31.487875],[109.9781036,31.5158558],[109.8995285,31.5280991],[109.8638763,31.5365715],[109.8131332,31.5695477],[109.7376633,31.5519123],[109.7237396,31.5556221],[109.7214432,31.577177],[109.7481995,31.6151524],[109.7341232,31.6427059],[109.7279816,31.7016354],[109.6944809,31.7175465],[109.6415863,31.7254715],[109.6090469,31.7179775],[109.5766068,31.7331676],[109.5936584,31.7545109],[109.5870667,31.7911892],[109.599762,31.8060608],[109.6334229,31.8133259],[109.6027527,31.8839626],[109.5802002,31.9027939],[109.5897064,31.9256916],[109.6231537,31.9400597],[109.6264877,31.964571],[109.5840378,32.0142899],[109.5795593,32.0395927],[109.6175232,32.1050186],[109.5841293,32.1521988],[109.598999,32.2080498],[109.5879364,32.2217178],[109.5455627,32.2271729],[109.5237808,32.2726059],[109.4904175,32.3025856],[109.5078125,32.3346977],[109.4977264,32.3909988],[109.5213928,32.4022102],[109.5219727,32.4356804],[109.5367203,32.4466324],[109.5478973,32.4794807],[109.5607529,32.4835091],[109.5734406,32.5127296],[109.6132889,32.5271187],[109.6319275,32.5434418],[109.6111298,32.5834236],[109.6200027,32.5999336],[109.7216568,32.6104698],[109.75,32.5926628],[109.8120728,32.5796204],[109.9056931,32.5950623],[109.939888,32.5791931],[109.9661865,32.5798416],[109.9907074,32.552948],[110.0125427,32.5491257],[110.0789566,32.5827866],[110.0848236,32.6191216],[110.1187592,32.6187706],[110.1485596,32.5951805],[110.1599274,32.5959015],[110.1798096,32.6194916],[110.2013016,32.6351013],[110.1492462,32.6920967],[110.1589737,32.7528],[110.1543732,32.7691879],[110.1246033,32.7735405],[110.1340332,32.8122902],[110.0178986,32.8753052],[109.9763565,32.8875847],[109.9286804,32.8882446],[109.9090271,32.9049416],[109.8571396,32.9164619],[109.8443909,32.8994102],[109.8164368,32.8898087],[109.7872772,32.8819008],[109.7570267,32.9120445]]]]},
  1241 +"properties":{
  1242 +"gid":207,
  1243 +"name":"湖北省"}
  1244 +},
  1245 +{"type":"Feature",
  1246 +"geometry":{"type":"MultiPolygon","coordinates":[[[[108.5145493,32.2120438],[108.5308228,32.1949959],[108.5807724,32.1796265],[108.6092072,32.1510887],[108.6404266,32.137085],[108.664093,32.111805],[108.7403107,32.1099052],[108.7525024,32.0697708],[108.8093567,32.0543213],[108.8835602,31.9966736],[108.9789581,31.9871044],[109.0280228,31.9679737],[109.0805893,31.9323196],[109.1274796,31.8925304],[109.1710815,31.8740253],[109.1937027,31.8476944],[109.1969299,31.8238583],[109.2708664,31.8042011],[109.2719421,31.7858639],[109.2555389,31.7718754],[109.2770233,31.7436924],[109.2788925,31.7235222],[109.3135376,31.7143612],[109.3890228,31.7127476],[109.4328537,31.7287693],[109.4545898,31.7209568],[109.5766068,31.7331676],[109.6090469,31.7179775],[109.6415863,31.7254715],[109.6944809,31.7175465],[109.7279816,31.7016354],[109.7341232,31.6427059],[109.7481995,31.6151524],[109.7214432,31.577177],[109.7237396,31.5556221],[109.7376633,31.5519123],[109.8131332,31.5695477],[109.8638763,31.5365715],[109.8995285,31.5280991],[109.9781036,31.5158558],[109.9402237,31.487875],[109.9455185,31.4798241],[109.9851837,31.4796391],[110.0529938,31.4169292],[110.1019974,31.4164276],[110.1358337,31.3976555],[110.1603394,31.3002911],[110.1551895,31.2650127],[110.1904297,31.1506004],[110.176033,31.1254654],[110.1300201,31.116806],[110.1131363,31.0813618],[110.1378174,31.008522],[110.1611176,30.9952412],[110.1671295,30.9830532],[110.1419067,30.9380436],[110.1467514,30.9150906],[110.1075363,30.852047],[110.0757065,30.8040962],[110.0530624,30.8026142],[110.0155334,30.8372002],[110.0029831,30.900774],[109.9601364,30.8732338],[109.9189682,30.889925],[109.8883286,30.8909702],[109.7735367,30.8526325],[109.7313309,30.8279972],[109.7008133,30.7911663],[109.6578293,30.7639847],[109.6424713,30.7188492],[109.5844193,30.6999302],[109.576561,30.6591263],[109.5643234,30.6531849],[109.5351486,30.67593],[109.4869232,30.634943],[109.4584732,30.6274014],[109.374588,30.5146198],[109.3443069,30.4962788],[109.3337173,30.5311298],[109.3449173,30.5662174],[109.331131,30.5891476],[109.3130722,30.5893726],[109.3157501,30.6217079],[109.3011475,30.6352291],[109.2315063,30.5934505],[109.2424088,30.5845165],[109.1401825,30.5353203],[109.083847,30.5638828],[109.0809021,30.5895596],[109.1089935,30.6412086],[109.0478516,30.6481895],[109.0077515,30.6327286],[108.973999,30.6335545],[108.9015121,30.5740814],[108.8196182,30.4981861],[108.7834625,30.5115662],[108.7285767,30.5007706],[108.6835327,30.5835629],[108.6571884,30.5912247],[108.6402664,30.5787506],[108.6359863,30.5372219],[108.5749588,30.4923878],[108.5655212,30.4751339],[108.5441666,30.4935818],[108.5261536,30.49049],[108.5013733,30.5036316],[108.4653625,30.4914703],[108.4205322,30.4890976],[108.4086838,30.4454422],[108.4203491,30.4138775],[108.3996506,30.3843746],[108.4247437,30.3620796],[108.4568329,30.3609238],[108.4741364,30.3484287],[108.5244064,30.2859154],[108.5694122,30.248806],[108.5456238,30.1679363],[108.558197,30.1439323],[108.5332031,30.0905724],[108.4983063,30.0538845],[108.5236435,30.0593204],[108.523201,30.008173],[108.5341492,29.9912701],[108.5135803,29.9507751],[108.521843,29.9026623],[108.5165329,29.8705215],[108.5036163,29.8679161],[108.4898529,29.8770008],[108.4603729,29.8676281],[108.431488,29.8848591],[108.3997269,29.865139],[108.3854904,29.8661823],[108.3696136,29.8415222],[108.3830338,29.8143311],[108.3946991,29.8368931],[108.4186401,29.8109188],[108.4093781,29.7828712],[108.4360962,29.7699852],[108.4334564,29.7364826],[108.4502716,29.7423325],[108.5042267,29.7121849],[108.5148468,29.7356491],[108.5340729,29.7378349],[108.5222321,29.7719364],[108.5375519,29.8055153],[108.5721588,29.8325615],[108.5935822,29.8634186],[108.6267929,29.8663597],[108.6566772,29.8511524],[108.6743317,29.8060627],[108.6823807,29.7317944],[108.6749573,29.6936836],[108.7157669,29.6927414],[108.7161179,29.675312],[108.7541504,29.6477394],[108.759819,29.6745987],[108.7835083,29.6735573],[108.7775879,29.6441746],[108.7865829,29.6348095],[108.8089218,29.6392612],[108.8228073,29.6521626],[108.8449173,29.6517906],[108.8784332,29.6264591],[108.8648605,29.5954456],[108.8790817,29.5904522],[108.8993073,29.5969448],[108.9033432,29.5708141],[108.8734665,29.542038],[108.8851318,29.514328],[108.8595276,29.4731827],[108.8664398,29.4498119],[108.9329834,29.4190807],[108.9307404,29.3766422],[108.9091187,29.3256531],[108.9712677,29.3308964],[108.9948273,29.3536682],[109.031517,29.3682137],[109.0532532,29.402668],[109.1071091,29.3594322],[109.1029892,29.2984161],[109.1308212,29.2663574],[109.1078262,29.2030163],[109.138237,29.1730232],[109.1652069,29.176506],[109.2285995,29.1224556],[109.2246704,29.0935535],[109.3002777,29.0649376],[109.3156967,29.0472832],[109.2913589,29.0195236],[109.2861099,28.9860382],[109.2536774,28.9539089],[109.231987,28.8788967],[109.2432098,28.8114815],[109.2377167,28.7800598],[109.2442474,28.771122],[109.2558365,28.7663708],[109.2559586,28.7636662],[109.2851562,28.7542839],[109.2997513,28.7368641],[109.2906494,28.7161121],[109.2491913,28.6942997],[109.2648163,28.6688557],[109.2121811,28.6483974],[109.1796265,28.6235924],[109.1960373,28.6025143],[109.2246933,28.6144714],[109.2470932,28.6076126],[109.2864227,28.6204796],[109.3158264,28.5936604],[109.3126831,28.5731106],[109.3048172,28.5721855],[109.2974167,28.5689468],[109.2913208,28.5627632],[109.2886276,28.5555344],[109.2858505,28.549057],[109.2830734,28.5407314],[109.27845,28.5365696],[109.2740631,28.5342503],[109.2710495,28.5314808],[109.2710495,28.5277805],[109.2729034,28.5226917],[109.2738266,28.5162163],[109.2733612,28.5088158],[109.2698975,28.5022907],[109.238739,28.4805603],[109.20961,28.4800739],[109.1893234,28.4674377],[109.174263,28.4337101],[109.1498337,28.4125767],[109.1270676,28.3098106],[109.0801468,28.2480392],[109.0934372,28.2150478],[109.0877533,28.19417],[109.0711594,28.1909237],[109.0228729,28.2139702],[109.0050735,28.1715031],[108.9908218,28.1641273],[108.9295425,28.1935215],[108.9305267,28.2084274],[108.9152069,28.2168598],[108.8902817,28.2218189],[108.8449478,28.2033062],[108.8167572,28.2440071],[108.8066406,28.2464867],[108.7531204,28.2035999],[108.7538376,28.2162151],[108.7324829,28.2351456],[108.7349777,28.2544193],[108.7203674,28.2692528],[108.7239075,28.2878437],[108.7681732,28.3157959],[108.7598267,28.3242435],[108.7764587,28.3807297],[108.7550583,28.3992043],[108.7715302,28.4359703],[108.7496109,28.4519215],[108.7456284,28.4693336],[108.7242737,28.4756527],[108.716362,28.4964809],[108.7065506,28.4979305],[108.6894836,28.4781227],[108.6421967,28.4700794],[108.6412277,28.4586067],[108.6738586,28.4349327],[108.6849518,28.4015121],[108.6500702,28.3664742],[108.6719818,28.3505383],[108.6694336,28.3427277],[108.610527,28.3325481],[108.5739822,28.3616867],[108.5742493,28.4004421],[108.6014023,28.4226112],[108.5723038,28.5015564],[108.5776367,28.519474],[108.5694733,28.5363941],[108.6084518,28.545105],[108.6024475,28.5902481],[108.6331482,28.637661],[108.6224136,28.6476917],[108.5859375,28.6474819],[108.5717468,28.6648293],[108.5522995,28.6520977],[108.5257263,28.6517029],[108.5017319,28.62286],[108.4973831,28.6236286],[108.4866333,28.6231174],[108.4789429,28.6236286],[108.4697266,28.6246529],[108.4635773,28.6261902],[108.4584579,28.6297741],[108.4523163,28.6302872],[108.4425812,28.6302872],[108.4310608,28.6336155],[108.4231262,28.6379681],[108.4103165,28.6430893],[108.4000778,28.6466732],[108.3877869,28.6512833],[108.3790817,28.654356],[108.3708878,28.6574287],[108.3606491,28.6605015],[108.3524628,28.6635742],[108.34272,28.666647],[108.3365707,28.6693764],[108.3311996,28.6741505],[108.3288116,28.6747475],[108.3278122,28.6769352],[108.3270187,28.6801186],[108.3264236,28.6821079],[108.3262329,28.686285],[108.3268204,28.6898651],[108.3274231,28.6984177],[108.3280182,28.7049828],[108.3315964,28.7113476],[108.3355484,28.7168331],[108.3376007,28.7209301],[108.3411865,28.7245159],[108.3452835,28.7286129],[108.3504028,28.7321968],[108.3570633,28.737318],[108.359108,28.7429504],[108.3611603,28.7490959],[108.3657684,28.7521687],[108.3724213,28.7572899],[108.3775482,28.7618999],[108.3813934,28.7693253],[108.3821564,28.7757263],[108.3826675,28.7849445],[108.380867,28.7923698],[108.3785706,28.7962112],[108.3708878,28.8003082],[108.3611603,28.803381],[108.3527069,28.8077335],[108.3498917,28.8120861],[108.3483582,28.8172073],[108.3488693,28.8228416],[108.346817,28.827961],[108.34272,28.8335953],[108.3401566,28.8402519],[108.3400269,28.8459797],[108.34272,28.8525429],[108.3493805,28.8632984],[108.3542404,28.8748207],[108.3539886,28.8807087],[108.3529663,28.8868542],[108.3493805,28.8909512],[108.3463135,28.898634],[108.3452835,28.9083633],[108.3447723,28.9180946],[108.3455429,28.9265442],[108.3391266,28.9375534],[108.3319702,28.9436989],[108.3232727,28.9472847],[108.3171234,28.9513817],[108.3112335,28.9618797],[108.3089218,28.9795475],[108.3075867,29.0000496],[108.3037033,29.0099068],[108.2992706,29.0280457],[108.2960129,29.0371056],[108.2988663,29.0534382],[108.3024979,29.0695591],[108.304512,29.0816517],[108.3049164,29.0928993],[108.2634964,29.0742931],[108.2491837,29.0411491],[108.2343674,29.03162],[108.1923828,29.0704746],[108.1743317,29.0703144],[108.1473236,29.0521793],[108.0781403,29.0859299],[108.0635071,29.0815639],[107.9979935,29.030468],[107.9468231,29.0354023],[107.9281769,29.0249634],[107.9141312,28.9993401],[107.8830719,29.0022888],[107.8584976,28.9647846],[107.8430786,28.9623489],[107.8264389,28.9732323],[107.8088531,29.0353127],[107.7854996,29.0602322],[107.8001633,29.139122],[107.7526093,29.189188],[107.7279663,29.1828804],[107.7131729,29.1581593],[107.6884766,29.142664],[107.6670609,29.1468906],[107.6444473,29.1749973],[107.5881577,29.1681042],[107.5619583,29.2191639],[107.4835205,29.1739655],[107.4501266,29.2041359],[107.4087296,29.1870232],[107.4028778,29.1546669],[107.4124222,29.1107998],[107.3700333,29.0984993],[107.367897,29.0831242],[107.3879166,29.0403805],[107.3645782,29.0103588],[107.3867569,28.9997501],[107.4007874,28.9749279],[107.4362183,28.9470634],[107.3927231,28.8911572],[107.3862991,28.8592148],[107.3667831,28.8494358],[107.3409729,28.8497181],[107.3278732,28.820816],[107.2597733,28.7954407],[107.2467117,28.7729607],[107.2203979,28.7814827],[107.2087173,28.8324547],[107.1787262,28.8434963],[107.1625671,28.8653107],[107.12397,28.891037],[107.1010132,28.8931046],[107.0660629,28.8696861],[107.0462265,28.8758793],[107.0237885,28.8813782],[107.007637,28.857954],[106.9839096,28.8464565],[106.9777527,28.7766685],[106.9681168,28.7686272],[106.8942719,28.8126068],[106.8732224,28.781353],[106.8315582,28.7684212],[106.8167572,28.7465839],[106.8444595,28.717947],[106.8455429,28.7025681],[106.8729019,28.6961918],[106.8784027,28.6824284],[106.8591919,28.6601276],[106.8592606,28.6316662],[106.8291016,28.6226559],[106.818779,28.5925655],[106.7969284,28.5920563],[106.7773132,28.6250629],[106.7697601,28.6238976],[106.7599487,28.6016083],[106.7738571,28.565834],[106.7403488,28.5556469],[106.7235031,28.5402203],[106.7251587,28.5147476],[106.7442474,28.4840431],[106.7359924,28.4679527],[106.710228,28.453701],[106.6946869,28.4630127],[106.6831284,28.4955692],[106.6582336,28.4835529],[106.640213,28.5020828],[106.5905075,28.5136051],[106.5875015,28.4920158],[106.5669785,28.4910183],[106.5696869,28.5185738],[106.6103592,28.5478821],[106.6056824,28.5988216],[106.6282578,28.6103821],[106.6231689,28.6413517],[106.6520004,28.6543083],[106.6532593,28.6628056],[106.6477737,28.6694431],[106.6202011,28.6620007],[106.6094131,28.6849155],[106.576828,28.6914463],[106.5683899,28.711153],[106.5907364,28.719965],[106.5615387,28.7255859],[106.5527573,28.7583752],[106.5085068,28.7953701],[106.4860382,28.8023834],[106.4602585,28.8392181],[106.4469833,28.8359394],[106.4410934,28.8184662],[106.4497528,28.7709904],[106.4621277,28.7510796],[106.5050278,28.7228184],[106.5183334,28.6753597],[106.5009766,28.6158314],[106.4706268,28.6009979],[106.4647369,28.586277],[106.4959793,28.5409775],[106.4762497,28.5362949],[106.3992615,28.5760727],[106.3735809,28.5304852],[106.3296127,28.5574436],[106.3373718,28.5932751],[106.3260269,28.6155338],[106.3336716,28.6376133],[106.3026733,28.6458473],[106.3091507,28.6732273],[106.2491302,28.7930527],[106.2549667,28.8539295],[106.2133331,28.8963032],[106.1689224,28.9146423],[106.1121674,28.8999615],[106.0688629,28.9207687],[106.0448227,28.9095421],[106.0427628,28.9520035],[106.0097275,28.9569969],[105.9824295,28.9831982],[105.9753113,28.9805813],[105.9780731,28.9651661],[105.9595566,28.9662018],[105.9032288,28.9034977],[105.8868637,28.9067783],[105.8790665,28.9305382],[105.8263474,28.9424896],[105.7926636,28.9414768],[105.7988663,28.9622345],[105.7617569,28.9954395],[105.7592773,29.0250607],[105.7435837,29.0468845],[105.7582321,29.0713978],[105.7163391,29.103754],[105.737648,29.1332016],[105.7189636,29.1511745],[105.6916122,29.2892151],[105.6759872,29.2692947],[105.6499863,29.2534409],[105.6339264,29.2745705],[105.6092072,29.2694645],[105.5116882,29.2778664],[105.4907227,29.2901077],[105.4491425,29.2939396],[105.4570465,29.3234005],[105.4231567,29.3190823],[105.4144897,29.3453484],[105.4328003,29.370533],[105.4311371,29.4067879],[105.4156265,29.4189377],[105.3779831,29.4254379],[105.3871994,29.4411278],[105.3816071,29.4508381],[105.3399734,29.440876],[105.319603,29.4459724],[105.3053818,29.4867535],[105.3059998,29.5209103],[105.2905273,29.5371704],[105.2872162,29.557621],[105.3070908,29.5818863],[105.3106766,29.6059132],[105.3377533,29.5917816],[105.3495636,29.6198196],[105.369751,29.6174736],[105.3796234,29.6249008],[105.3824692,29.6649876],[105.4191513,29.6855545],[105.4496994,29.6743336],[105.4692078,29.6770248],[105.477417,29.7197819],[105.5178833,29.7044964],[105.5672607,29.7390461],[105.5680008,29.7748051],[105.6015778,29.8322887],[105.6803284,29.8562393],[105.7211075,29.85396],[105.7264786,29.90592],[105.7111816,29.9174099],[105.7088699,29.932127],[105.7392273,30.0279236],[105.6909637,30.0408802],[105.6704788,30.0703354],[105.6402664,30.0774765],[105.6239471,30.1041069],[105.58461,30.117569],[105.5717697,30.1349659],[105.5732269,30.1546631],[105.5368805,30.1600399],[105.53479,30.174057],[105.5550537,30.1826878],[105.629158,30.1877136],[105.6523666,30.2095814],[105.6192627,30.2440453],[105.6178436,30.2766266],[105.6648712,30.2621136],[105.7255936,30.2569847],[105.7278366,30.2748318],[105.7121506,30.2948112],[105.7122421,30.3106327],[105.7409286,30.3505039],[105.7382584,30.3613262],[105.7658463,30.387228],[105.7907867,30.4234848],[105.824173,30.4346008],[105.8422775,30.3934708],[105.8589935,30.4055576],[105.8726807,30.3910999],[105.8887711,30.4103012],[105.8987503,30.3956776],[105.9723434,30.3727779],[105.9810867,30.3836212],[106.0844803,30.3465729],[106.1084366,30.3213387],[106.1393814,30.3200397],[106.1579514,30.3020153],[106.1917419,30.2203922],[106.2247772,30.2105446],[106.2355194,30.1873932],[106.2663879,30.2041817],[106.2888718,30.204628],[106.2992935,30.2365112],[106.3587418,30.2347889],[106.3898392,30.2490196],[106.4261093,30.250288],[106.4212799,30.2749329],[106.4475937,30.2965946],[106.4664764,30.3000736],[106.5007782,30.2876091],[106.560379,30.3068867],[106.6381073,30.2704449],[106.6133499,30.2233276],[106.6691666,30.1575623],[106.6753693,30.1198025],[106.6927872,30.1109009],[106.6951981,30.0872192],[106.7250137,30.0371895],[106.7592468,30.0267181],[106.8219528,30.0311203],[106.8439636,30.042263],[106.8606873,30.0292263],[106.9349823,30.0403919],[106.9703064,30.0846539],[106.9991226,30.047657],[107.0301666,30.036972],[107.040863,30.0554924],[107.0703735,30.0611229],[107.0745316,30.0889912],[107.1046219,30.1030846],[107.2276306,30.2274399],[107.2767487,30.3299503],[107.307457,30.3643951],[107.3349609,30.4052391],[107.3563766,30.4111099],[107.3472366,30.4410019],[107.3990936,30.5190792],[107.4272766,30.5274239],[107.4394226,30.5660572],[107.5070267,30.6429348],[107.5037766,30.6547318],[107.4619217,30.6708927],[107.4199371,30.7448387],[107.4573593,30.7629967],[107.4683533,30.7851448],[107.497467,30.8076668],[107.5106812,30.844883],[107.5794296,30.853117],[107.6350327,30.8140221],[107.6773376,30.8643055],[107.7155838,30.8867283],[107.7366333,30.8745937],[107.7485428,30.8294888],[107.7620316,30.8152962],[107.7916336,30.8228321],[107.8172073,30.7992992],[107.8348999,30.7959728],[107.8690033,30.8088493],[107.9780502,30.9075317],[107.9330826,30.926466],[107.9414673,30.9828377],[107.9812088,30.994812],[107.9998627,31.0295467],[108.0497284,31.0486374],[108.0487595,31.0626125],[108.018692,31.0763035],[108.0096512,31.1158733],[108.0852509,31.2067108],[108.0743637,31.2235699],[108.0227737,31.2221527],[108.0245819,31.248991],[108.0833969,31.2738609],[108.1785126,31.3347874],[108.1526108,31.377655],[108.2082367,31.4104595],[108.2232132,31.4662857],[108.1924133,31.488945],[108.1923065,31.4976559],[108.2302322,31.5131054],[108.3248978,31.5127163],[108.3392792,31.5233688],[108.335289,31.5496979],[108.3792496,31.5534592],[108.3787003,31.5860023],[108.4279404,31.6349373],[108.4378433,31.6393604],[108.477417,31.625185],[108.4690018,31.6379623],[108.4745636,31.6473961],[108.5342331,31.6771069],[108.5123367,31.6957645],[108.5202866,31.7107086],[108.5072174,31.7342339],[108.5271683,31.7627735],[108.4991074,31.7768078],[108.4933472,31.7914371],[108.4490128,31.7879391],[108.4560623,31.8134212],[108.4235001,31.8148079],[108.3899918,31.8324451],[108.3819733,31.8569088],[108.3477325,31.8644485],[108.3171921,31.9063816],[108.2824707,31.9331493],[108.2776566,31.9560261],[108.2613831,31.9691849],[108.2643967,31.9902897],[108.3131027,31.9980049],[108.3480225,31.980854],[108.3616867,31.9896641],[108.3286438,32.0289955],[108.3534164,32.0505676],[108.3414383,32.0780678],[108.3747787,32.0807114],[108.4266663,32.0638809],[108.44767,32.0807037],[108.4105377,32.140728],[108.370163,32.1534119],[108.3737106,32.1886101],[108.4052734,32.2056122],[108.4814911,32.1901245],[108.5145493,32.2120438]]]]},
  1247 +"properties":{
  1248 +"gid":208,
  1249 +"name":"重庆市"}
  1250 +},
  1251 +{"type":"Feature",
  1252 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.2784119,31.8502789],[121.2872162,31.8503075],[121.2977066,31.8494072],[121.3125076,31.8459949],[121.3396835,31.8405361],[121.3676529,31.8346138],[121.383522,31.8257046],[121.4010162,31.8039799],[121.4101562,31.7888832],[121.4217224,31.7708149],[121.4292526,31.7596054],[121.4378204,31.7537155],[121.4418793,31.7509155],[121.4483871,31.7452717],[121.4571533,31.7435322],[121.4741211,31.7367363],[121.5020523,31.7291851],[121.5259476,31.7113323],[121.5396423,31.7131577],[121.5512619,31.7046089],[121.5640564,31.6952972],[121.5702286,31.6852264],[121.5780029,31.6712608],[121.5919495,31.6630135],[121.6109924,31.6543026],[121.6303101,31.6508522],[121.6458664,31.6478577],[121.6651764,31.6405106],[121.6882401,31.6326981],[121.7102203,31.6232796],[121.7303238,31.6143208],[121.7394333,31.6097279],[121.7546921,31.5998592],[121.7718277,31.5899811],[121.7972565,31.5752792],[121.8202972,31.5695019],[121.8355789,31.5662613],[121.8596802,31.5595589],[121.8746872,31.5569992],[121.8813934,31.5562916],[121.8899307,31.5482559],[121.8920364,31.5381813],[121.891449,31.5274277],[121.8900833,31.518507],[121.8849335,31.5066223],[121.8795166,31.4942799],[121.873642,31.4956722],[121.8629074,31.4940987],[121.8588486,31.484499],[121.8542709,31.4799347],[121.8435211,31.4701233],[121.8298264,31.4648952],[121.8226089,31.4653721],[121.8125,31.4668903],[121.8049393,31.4686203],[121.7969131,31.4697819],[121.7850494,31.4736805],[121.7821884,31.4746227],[121.7768173,31.4741764],[121.7701416,31.4769382],[121.749733,31.4809132],[121.7423019,31.4850025],[121.736412,31.4879894],[121.7281113,31.4961567],[121.7214432,31.5008316],[121.7092209,31.5030556],[121.6946564,31.5079708],[121.6841888,31.5110989],[121.6815414,31.5118885],[121.6740265,31.5121212],[121.6578827,31.517992],[121.6485901,31.5201645],[121.6325073,31.5245304],[121.6233978,31.5224819],[121.6108017,31.5243244],[121.5995331,31.527317],[121.5888367,31.5323524],[121.5775833,31.5385399],[121.5591583,31.5496006],[121.5529327,31.5515995],[121.5389862,31.5575542],[121.5263977,31.5625935],[121.5157471,31.5683746],[121.5076294,31.5749569],[121.4944916,31.5822811],[121.4777527,31.5894222],[121.4757233,31.5902901],[121.4679413,31.5909748],[121.4612427,31.5928059],[121.4460907,31.5980377],[121.4384308,31.601038],[121.4301071,31.6067543],[121.4158936,31.6133842],[121.4046173,31.6181812],[121.3928223,31.6188602],[121.3815536,31.6204548],[121.3748322,31.6279755],[121.3718796,31.634407],[121.3681183,31.6394367],[121.3573837,31.6410294],[121.351738,31.6453724],[121.3412933,31.6522846],[121.3332138,31.6547337],[121.3219299,31.6588383],[121.3133316,31.666378],[121.3095627,31.6752586],[121.3012924,31.6807671],[121.2980576,31.6869392],[121.2903366,31.7026787],[121.2816467,31.7020187],[121.2741318,31.7056656],[121.2609406,31.7191448],[121.25914,31.7248554],[121.2575226,31.7345371],[121.2669067,31.741188],[121.2604828,31.7467117],[121.2534485,31.7546654],[121.2472534,31.7631187],[121.2351227,31.7777443],[121.2248917,31.7859592],[121.2071304,31.7971344],[121.1979294,31.8007889],[121.196579,31.8013248],[121.1938477,31.8012066],[121.1848373,31.8008251],[121.1772766,31.8005028],[121.1596832,31.7885113],[121.1626129,31.7958412],[121.1671677,31.8001976],[121.1787033,31.8077755],[121.1931763,31.8203926],[121.2219086,31.8362389],[121.2361526,31.8412991],[121.2466278,31.845892],[121.2784119,31.8502789]]]]},
  1253 +"properties":{
  1254 +"gid":209,
  1255 +"name":"上海市"}
  1256 +},
  1257 +{"type":"Feature",
  1258 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.0611801,31.8115978],[121.0560989,31.8127022],[121.043457,31.814949],[121.0375137,31.820879],[121.0423279,31.8279858],[121.0527878,31.8323689],[121.0654297,31.8328667],[121.0672913,31.8330517],[121.0820923,31.8345184],[121.0904007,31.8414078],[121.0997772,31.8478413],[121.1081467,31.8490334],[121.1140823,31.8474483],[121.1175995,31.8399086],[121.1251373,31.8358097],[121.1340637,31.8259945],[121.1308517,31.8186646],[121.1233521,31.8113232],[121.1105194,31.8035526],[121.1077576,31.8018761],[121.1024323,31.7968502],[121.0916977,31.7936172],[121.0821533,31.7971153],[121.0736237,31.8031483],[121.0652771,31.810709],[121.0611801,31.8115978]]]]},
  1259 +"properties":{
  1260 +"gid":210,
  1261 +"name":"江苏省"}
  1262 +},
  1263 +{"type":"Feature",
  1264 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.4289627,31.7818413],[121.4262772,31.7847748],[121.4192963,31.7959805],[121.4214401,31.8033028],[121.4284286,31.7991886],[121.4367676,31.7955322],[121.4377365,31.7953186],[121.4483337,31.7930183],[121.4582672,31.7845554],[121.46875,31.7774639],[121.4811096,31.7744904],[121.4907837,31.7641926],[121.4898071,31.7574005],[121.4786911,31.7596188],[121.4709015,31.761219],[121.4617615,31.7660236],[121.4485931,31.7701397],[121.4351578,31.7751675],[121.4289627,31.7818413]]]]},
  1265 +"properties":{
  1266 +"gid":211,
  1267 +"name":"江苏省"}
  1268 +},
  1269 +{"type":"Feature",
  1270 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.1807022,31.7665939],[121.1728973,31.771841],[121.162117,31.7791348],[121.1645203,31.7871513],[121.1747131,31.7919788],[121.185997,31.7938347],[121.1970215,31.7936306],[121.1997299,31.7858562],[121.1959763,31.7812729],[121.1906281,31.7727947],[121.1854706,31.7612572],[121.1807022,31.7665939]]]]},
  1271 +"properties":{
  1272 +"gid":212,
  1273 +"name":"上海市"}
  1274 +},
  1275 +{"type":"Feature",
  1276 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.2270279,31.721386],[121.2189713,31.722744],[121.2106323,31.7259312],[121.2049789,31.7327824],[121.1982269,31.7414646],[121.193367,31.7519798],[121.1946869,31.7602196],[121.1978912,31.7698364],[121.20298,31.7755661],[121.2096863,31.7790146],[121.2207108,31.7778912],[121.2301331,31.7698994],[121.2347336,31.7561817],[121.2320709,31.7479401],[121.2259216,31.7355709],[121.2270279,31.721386]]]]},
  1277 +"properties":{
  1278 +"gid":213,
  1279 +"name":"上海市"}
  1280 +},
  1281 +{"type":"Feature",
  1282 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.4467468,31.7551498],[121.4345322,31.7617188],[121.427002,31.7694969],[121.4257507,31.772646],[121.4345169,31.7722454],[121.4417801,31.7665272],[121.4516373,31.7559376],[121.4467468,31.7551498]]]]},
  1283 +"properties":{
  1284 +"gid":214,
  1285 +"name":"上海市"}
  1286 +},
  1287 +{"type":"Feature",
  1288 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.5044937,31.7710571],[121.5106583,31.7687035],[121.5173721,31.7654991],[121.5259705,31.7561169],[121.5326767,31.743988],[121.5291901,31.7413063],[121.5141373,31.7481098],[121.5068893,31.7547474],[121.4990997,31.7627563],[121.5044937,31.7710571]]]]},
  1289 +"properties":{
  1290 +"gid":215,
  1291 +"name":"江苏省"}
  1292 +},
  1293 +{"type":"Feature",
  1294 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.2366791,31.7289562],[121.2326736,31.7348595],[121.2329178,31.7410374],[121.2366714,31.7460785],[121.2455292,31.7495251],[121.2493134,31.7424412],[121.2487869,31.7291679],[121.2452164,31.7229977],[121.2366791,31.7289562]]]]},
  1295 +"properties":{
  1296 +"gid":216,
  1297 +"name":"上海市"}
  1298 +},
  1299 +{"type":"Feature",
  1300 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.3569565,31.6149902],[121.3614731,31.6145115],[121.3676682,31.6113644],[121.369873,31.6072598],[121.3667068,31.6035576],[121.3591919,31.6050854],[121.3546219,31.6064148],[121.3510818,31.6102753],[121.3545303,31.6128349],[121.3569565,31.6149902]]]]},
  1301 +"properties":{
  1302 +"gid":217,
  1303 +"name":"上海市"}
  1304 +},
  1305 +{"type":"Feature",
  1306 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.8951187,31.0119781],[120.8956223,31.0856876],[120.8735275,31.0984173],[120.8581619,31.1094856],[120.8804092,31.1362514],[120.9587708,31.1408367],[120.9756393,31.1323204],[121.0466766,31.1398773],[121.0437622,31.1544971],[121.072113,31.1614094],[121.0588379,31.2655258],[121.0789871,31.2857723],[121.1446304,31.2825813],[121.1455536,31.3025723],[121.1171036,31.312891],[121.1339569,31.3286858],[121.1298599,31.3467178],[121.1143188,31.347023],[121.1070328,31.3642864],[121.1118927,31.3786392],[121.1413422,31.3864803],[121.1539764,31.4081364],[121.1466827,31.4180584],[121.1648331,31.4279118],[121.1488495,31.4408321],[121.1780472,31.4488888],[121.1911316,31.4739933],[121.2365265,31.4948215],[121.2494431,31.4772263],[121.2952728,31.4936829],[121.3038177,31.5108643],[121.3209991,31.5020847],[121.3310165,31.5061798],[121.3363571,31.5019855],[121.3529663,31.4976578],[121.3634262,31.4878273],[121.369873,31.4814281],[121.3816681,31.4777756],[121.4049835,31.4697838],[121.4189529,31.4643497],[121.4333878,31.4592724],[121.4457092,31.4450912],[121.4596405,31.4293041],[121.4725494,31.4223289],[121.4848099,31.4178658],[121.499527,31.4080276],[121.5070267,31.3920078],[121.5137329,31.3909321],[121.524147,31.3892593],[121.5485077,31.3812389],[121.5808868,31.3718395],[121.6038818,31.3576336],[121.6330185,31.3395271],[121.6532364,31.3255196],[121.6674881,31.3145428],[121.6811218,31.3131504],[121.6893921,31.3021526],[121.6984634,31.2932148],[121.7139282,31.2751102],[121.724617,31.2728024],[121.7355423,31.2574501],[121.7347183,31.251503],[121.7437668,31.2400417],[121.7570877,31.2219353],[121.7775803,31.1944294],[121.7874222,31.1811352],[121.7905884,31.170372],[121.7996292,31.1584492],[121.8089294,31.1442375],[121.8049088,31.1392117],[121.8059387,31.1374588],[121.8139267,31.1238556],[121.8301163,31.0970383],[121.8508072,31.0667725],[121.8627472,31.049345],[121.8677826,31.0406322],[121.8738632,31.0257378],[121.8865738,31.0034981],[121.8926468,30.9922199],[121.8989868,30.9798393],[121.9026489,30.9619751],[121.9009171,30.9342842],[121.8986816,30.9086552],[121.8973236,30.8999634],[121.892189,30.8853283],[121.8857422,30.8713837],[121.8756027,30.8647766],[121.8555984,30.8591118],[121.8444366,30.857832],[121.8305588,30.8555145],[121.8036575,30.8523769],[121.7791519,30.8485394],[121.7608185,30.8474178],[121.7538528,30.8469906],[121.7235031,30.8472767],[121.6944809,30.8454933],[121.6598663,30.8446274],[121.6279297,30.8462658],[121.6045074,30.8485794],[121.5845337,30.844244],[121.562439,30.842886],[121.5392838,30.8415203],[121.5243835,30.8396492],[121.5150528,30.8319149],[121.5043106,30.8270054],[121.494278,30.8209305],[121.4852295,30.816124],[121.4631424,30.8083382],[121.4532928,30.8126831],[121.4413223,30.8007774],[121.4398422,30.7994137],[121.4365311,30.7961979],[121.4213715,30.7897816],[121.4136581,30.7799339],[121.3945236,30.7659588],[121.3846893,30.7467232],[121.374588,30.7407646],[121.3626328,30.727932],[121.3485489,30.7212811],[121.3310089,30.7162266],[121.3233032,30.7098064],[121.3092194,30.7072697],[121.2845001,30.7044868],[121.2675705,30.7018089],[121.2636032,30.734026],[121.2341537,30.7558231],[121.2218628,30.7812405],[121.1720428,30.7747498],[121.1185074,30.7839909],[121.1172638,30.8046227],[121.1321335,30.8293285],[121.1145477,30.8527699],[121.0614014,30.849369],[121.036377,30.8262348],[121.0085373,30.8381481],[120.9830322,30.8289948],[121.0118027,30.8738213],[121.0082626,30.883604],[120.9814606,30.8953094],[120.9889908,30.9455566],[120.9950027,31.0015011],[120.9839172,31.0126953],[120.9549026,31.0261745],[120.8951187,31.0119781]]]]},
  1307 +"properties":{
  1308 +"gid":218,
  1309 +"name":"上海市"}
  1310 +},
  1311 +{"type":"Feature",
  1312 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.5951767,31.4516106],[121.5986404,31.4463501],[121.5960464,31.4396782],[121.5896683,31.4373283],[121.5805664,31.4381695],[121.5765381,31.4397392],[121.5764771,31.4440956],[121.5863037,31.4506016],[121.5921478,31.4527168],[121.5951767,31.4516106]]]]},
  1313 +"properties":{
  1314 +"gid":219,
  1315 +"name":"上海市"}
  1316 +},
  1317 +{"type":"Feature",
  1318 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.7333832,31.3584614],[121.7285767,31.3616734],[121.7221603,31.3662624],[121.7071915,31.3720093],[121.6924896,31.3786716],[121.6799164,31.3853283],[121.6670914,31.391983],[121.6579971,31.3967991],[121.647583,31.4064255],[121.630722,31.4142265],[121.6213608,31.4199562],[121.6090622,31.4304981],[121.6055908,31.4407978],[121.6093521,31.4481201],[121.621933,31.4446735],[121.6353073,31.4387093],[121.6489563,31.4357166],[121.6578064,31.4347916],[121.6677017,31.4302025],[121.6711807,31.4295082],[121.6792068,31.424921],[121.6912537,31.4198685],[121.7011414,31.4168777],[121.7166595,31.4120445],[121.7284317,31.4079056],[121.7417908,31.4000988],[121.7524567,31.3870316],[121.7636566,31.3723621],[121.7716675,31.3661671],[121.7801971,31.3549328],[121.7839127,31.3450832],[121.7849503,31.3345528],[121.7849197,31.3256283],[121.7795563,31.3208313],[121.7715225,31.3185596],[121.7645721,31.3210926],[121.7565689,31.3282051],[121.745369,31.3392143],[121.7370987,31.3486118],[121.7333832,31.3584614]]]]},
  1319 +"properties":{
  1320 +"gid":220,
  1321 +"name":"上海市"}
  1322 +},
  1323 +{"type":"Feature",
  1324 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.5952682,31.4340038],[121.5979385,31.4328499],[121.5995331,31.4310131],[121.5971222,31.4282665],[121.5941772,31.4282742],[121.5920486,31.4312611],[121.5925903,31.4333229],[121.5952682,31.4340038]]]]},
  1325 +"properties":{
  1326 +"gid":221,
  1327 +"name":"上海市"}
  1328 +},
  1329 +{"type":"Feature",
  1330 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.8003616,31.3832664],[121.8164062,31.3804798],[121.8263092,31.3790817],[121.8463593,31.3733063],[121.8567734,31.3668709],[121.8713837,31.3559742],[121.8739166,31.3547516],[121.8747101,31.3543682],[121.8778534,31.35285],[121.8812637,31.3345299],[121.8769302,31.3240147],[121.865921,31.3137474],[121.8544998,31.3008747],[121.8439331,31.2991619],[121.8386002,31.3032951],[121.8298035,31.3104115],[121.8183289,31.3173084],[121.8132706,31.3244152],[121.8119736,31.334259],[121.8098679,31.3457069],[121.8032227,31.3567772],[121.8029709,31.3571815],[121.7976303,31.3672504],[121.7861633,31.3784924],[121.7915268,31.3846607],[121.8003616,31.3832664]]]]},
  1331 +"properties":{
  1332 +"gid":222,
  1333 +"name":"上海市"}
  1334 +},
  1335 +{"type":"Feature",
  1336 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.6321106,31.1393433],[119.6370316,31.1516838],[119.6673584,31.1672897],[119.6929169,31.1586285],[119.720047,31.1731014],[119.7797165,31.1827316],[119.794487,31.1642838],[119.8251038,31.1784763],[119.8813629,31.1683807],[119.9188309,31.1749306],[119.9989624,31.029089],[120.0485764,31.0118694],[120.1122284,30.9606705],[120.1533813,30.9406414],[120.229187,30.9324894],[120.2954025,30.9366283],[120.3616714,30.9519882],[120.3505173,30.887579],[120.4078674,30.892767],[120.4077301,30.9216995],[120.4191971,30.9280148],[120.4438095,30.8740997],[120.4359665,30.8573322],[120.4534073,30.8413219],[120.4483109,30.816597],[120.4872818,30.7683849],[120.5018768,30.762846],[120.5297012,30.7992382],[120.5858612,30.8594475],[120.6460266,30.8535957],[120.7052078,30.9007301],[120.7052994,30.9328766],[120.6785431,30.9560051],[120.7027664,30.9706917],[120.7416,30.9664898],[120.7754593,31.0018635],[120.8211136,31.0081577],[120.8390732,30.9840755],[120.8951187,31.0119781],[120.9549026,31.0261745],[120.9839172,31.0126953],[120.9950027,31.0015011],[120.9889908,30.9455566],[120.9814606,30.8953094],[121.0082626,30.883604],[121.0118027,30.8738213],[120.9830322,30.8289948],[121.0085373,30.8381481],[121.036377,30.8262348],[121.0614014,30.849369],[121.1145477,30.8527699],[121.1321335,30.8293285],[121.1172638,30.8046227],[121.1185074,30.7839909],[121.1720428,30.7747498],[121.2218628,30.7812405],[121.2341537,30.7558231],[121.2636032,30.734026],[121.2675705,30.7018089],[121.2581863,30.7003231],[121.2382812,30.6899853],[121.2162476,30.6762066],[121.1958237,30.664259],[121.1738129,30.651619],[121.155777,30.6387539],[121.1470337,30.6300335],[121.1462708,30.6206455],[121.1404495,30.6130772],[121.1396866,30.6027718],[121.1296005,30.6022873],[121.1152802,30.5965252],[121.107048,30.595356],[121.0937805,30.5939445],[121.0812683,30.600544],[121.0618973,30.5975075],[121.0449219,30.5928726],[121.0430603,30.591692],[121.0282364,30.5822868],[121.0139389,30.5749092],[120.9975281,30.5638599],[120.9843063,30.5538063],[120.9827194,30.5525894],[120.967392,30.5387955],[120.9626465,30.5309906],[120.95504,30.5156231],[120.9452667,30.5055084],[120.9450836,30.5050526],[120.9357986,30.4910927],[120.9347992,30.4798717],[120.9396515,30.4652424],[120.9373322,30.4521828],[120.9432068,30.4428196],[120.9516907,30.4437695],[120.9593964,30.4401379],[120.953331,30.4348469],[120.9512405,30.4293442],[120.9403687,30.4293003],[120.9441223,30.4222183],[120.9356689,30.4166908],[120.9319229,30.4219398],[120.9186707,30.4221115],[120.9054413,30.417017],[120.8994064,30.4050865],[120.9077072,30.3918438],[120.917778,30.3918896],[120.9138565,30.3817978],[120.9046173,30.3758049],[120.8958511,30.3803444],[120.8847427,30.3764019],[120.876297,30.3699532],[120.8670273,30.3683071],[120.8545837,30.3693924],[120.8485336,30.3631821],[120.8398132,30.3590183],[120.836441,30.3523865],[120.8353577,30.350069],[120.8322678,30.3509998],[120.8275375,30.3524246],[120.8215408,30.3568668],[120.8043671,30.349453],[120.7932892,30.343214],[120.787529,30.3333378],[120.7866821,30.3411179],[120.7830963,30.3484001],[120.7676086,30.3488655],[120.7556305,30.3491917],[120.7489624,30.3555641],[120.738327,30.3605404],[120.7369537,30.3676281],[120.7337112,30.3760815],[120.7217331,30.3847141],[120.7004471,30.3935146],[120.6818771,30.3970661],[120.664093,30.4006195],[120.6524734,30.3868885],[120.6115494,30.3467102],[120.6164627,30.3307133],[120.6206131,30.3087635],[120.6218719,30.2858772],[120.6263504,30.2566013],[120.6347427,30.2353649],[120.6489334,30.2148495],[120.6654282,30.2021332],[120.6650391,30.1847286],[120.6620407,30.1629601],[120.6521301,30.1471004],[120.6434021,30.1378326],[120.6539612,30.1379623],[120.6551285,30.1379757],[120.6754074,30.1447277],[120.6920471,30.1464329],[120.713501,30.1415253],[120.7370834,30.1343346],[120.7646027,30.1294498],[120.7926483,30.1250248],[120.8127365,30.124897],[120.8253937,30.1297722],[120.8319168,30.1414814],[120.8577728,30.1519108],[120.884407,30.1625671],[120.9171295,30.1732426],[120.9175262,30.1734123],[120.9511719,30.187355],[120.95961,30.191967],[120.9695892,30.1900215],[120.9749069,30.1998119],[121.0049667,30.2182426],[121.0350571,30.2362061],[121.056427,30.2511597],[121.0704117,30.2601337],[121.0711594,30.2601357],[121.0764999,30.2601528],[121.0807037,30.2686367],[121.0920563,30.2739372],[121.0997314,30.2771664],[121.1014328,30.278616],[121.1121521,30.2817802],[121.1293411,30.287323],[121.1408234,30.2941685],[121.1526031,30.3006649],[121.1652908,30.3055038],[121.1675568,30.3062859],[121.1880264,30.3133411],[121.2045898,30.3174877],[121.2256165,30.3177719],[121.2370071,30.3171062],[121.2568817,30.3157711],[121.2733002,30.3144245],[121.2813187,30.3129559],[121.2987289,30.3101139],[121.310379,30.3078403],[121.3183136,30.3140335],[121.3294373,30.308094],[121.3278732,30.3032837],[121.3397827,30.297575],[121.3400574,30.2904797],[121.3591232,30.2838593],[121.3681183,30.2891331],[121.3718338,30.2806664],[121.3904572,30.2709713],[121.408371,30.2621498],[121.4250488,30.2507114],[121.4308777,30.2454491],[121.4422531,30.2374401],[121.4539032,30.2243938],[121.4594574,30.216383],[121.4650116,30.2102013],[121.4716263,30.2026482],[121.4893417,30.1937218],[121.5004501,30.1863937],[121.5070572,30.1774635],[121.5157776,30.1644135],[121.5226364,30.1538792],[121.5263367,30.1490726],[121.5355835,30.135561],[121.5442963,30.1199894],[121.5509033,30.1087666],[121.5601273,30.1037273],[121.5736237,30.1037178],[121.5762405,30.0915833],[121.5793991,30.0773849],[121.5888901,30.0604362],[121.5989227,30.0549335],[121.6035919,30.0505257],[121.6081467,30.0462246],[121.6165771,30.0375156],[121.6186905,30.0320206],[121.6234283,30.0212555],[121.6397705,30.006813],[121.6511002,29.9971828],[121.661911,29.9909878],[121.6727066,29.9786091],[121.682457,29.9692097],[121.6979904,29.9572811],[121.7119904,29.9627533],[121.7246704,29.9679966],[121.7246475,29.9606705],[121.7352219,29.9654598],[121.745903,29.9715977],[121.7560806,29.970686],[121.7618866,29.9734192],[121.7695465,29.973175],[121.7761383,29.972702],[121.7726974,29.9679031],[121.7827072,29.9649048],[121.7890472,29.9674072],[121.7993164,29.9602871],[121.8088074,29.9552269],[121.8063965,29.948822],[121.8153534,29.9412441],[121.8229828,29.9334412],[121.8430405,29.9388847],[121.8496475,29.9411545],[121.8475189,29.9363518],[121.8438034,29.9290352],[121.8595963,29.9239559],[121.8716125,29.921627],[121.8875504,29.921814],[121.9038925,29.9192448],[121.9120331,29.9105186],[121.9251938,29.9056683],[121.9291077,29.8967247],[121.9293365,29.8914585],[121.9469986,29.8888798],[121.9670486,29.8908691],[121.9865723,29.89217],[122.0034485,29.8934784],[122.0110092,29.8771935],[122.0205536,29.8858566],[122.0234909,29.8929405],[122.0458832,29.8903313],[122.0611801,29.8902664],[122.06987,29.8879375],[122.0764771,29.8913441],[122.0836411,29.8981781],[122.0947571,29.9049969],[122.1026611,29.9035873],[122.1124573,29.9099522],[122.1192932,29.9067135],[122.1221619,29.9016628],[122.1319199,29.9020729],[122.1357803,29.8876305],[122.1312637,29.8807831],[122.115387,29.8742199],[122.0966415,29.8685837],[122.0834274,29.8631496],[122.0789032,29.8563004],[122.072052,29.8541241],[122.0593719,29.8520374],[122.0453491,29.8427086],[122.0387192,29.8360958],[122.0315933,29.8329201],[122.0246582,29.8336353],[122.0070572,29.8293571],[121.9898987,29.8223267],[121.978508,29.8163662],[121.9642563,29.8079967],[121.9531631,29.8004799],[121.9441605,29.7913532],[121.931633,29.7885265],[121.9253922,29.7763042],[121.9206085,29.767849],[121.9116364,29.7621555],[121.9068222,29.7465992],[121.8879166,29.758564],[121.8813705,29.7663708],[121.8771896,29.7759991],[121.8692474,29.7650299],[121.8618164,29.7517719],[121.8614578,29.7507324],[121.8570328,29.7378197],[121.8574829,29.7199593],[121.8510818,29.6986828],[121.8386765,29.6872692],[121.8350067,29.6948338],[121.8284073,29.6868382],[121.8163605,29.681675],[121.8015213,29.6733971],[121.7909927,29.6669693],[121.7798996,29.6574173],[121.7701263,29.6443882],[121.7708969,29.6382046],[121.7603607,29.6327324],[121.7584229,29.6303864],[121.7495422,29.6197033],[121.7447891,29.6116982],[121.7334595,29.6037064],[121.7150192,29.5900021],[121.6987534,29.5987301],[121.6971436,29.591177],[121.7023773,29.5806351],[121.7060471,29.5742188],[121.7010269,29.5648403],[121.6926117,29.5614185],[121.685791,29.5657787],[121.6720963,29.5566406],[121.6526413,29.5502548],[121.6471405,29.5573597],[121.6442719,29.5722446],[121.6401978,29.5787258],[121.639801,29.5715637],[121.6421509,29.561945],[121.6366272,29.5571442],[121.6416016,29.548666],[121.6297836,29.5477638],[121.6192703,29.5491486],[121.6124268,29.5436592],[121.5948181,29.5400105],[121.5780106,29.5475788],[121.5711823,29.5510178],[121.5656586,29.5459843],[121.5593491,29.5377426],[121.5472565,29.5352325],[121.5388412,29.5242443],[121.5359421,29.513485],[121.52491,29.5077629],[121.5165024,29.5084534],[121.5220337,29.5153217],[121.5194016,29.5281448],[121.5175705,29.541193],[121.5141602,29.5524158],[121.5126038,29.5571899],[121.5005035,29.546463],[121.4834137,29.5411987],[121.4752731,29.5297489],[121.4702835,29.5208187],[121.4592438,29.5253963],[121.4470978,29.5156002],[121.4545135,29.5047874],[121.4563522,29.4963169],[121.4458466,29.4899025],[121.4411163,29.4846363],[121.4406128,29.4791393],[121.4295731,29.47616],[121.4256363,29.4667683],[121.4348297,29.4564705],[121.4421768,29.4470844],[121.4427109,29.4367828],[121.4393005,29.423502],[121.4421921,29.4161758],[121.4545212,29.4207573],[121.4623871,29.4216766],[121.4639664,29.4328957],[121.4645004,29.4436569],[121.4723663,29.4539604],[121.4768372,29.4706783],[121.4852371,29.4777756],[121.4920731,29.4839573],[121.4994278,29.4947186],[121.5073013,29.4919682],[121.5117569,29.4857864],[121.5052032,29.473196],[121.5038834,29.4644947],[121.5067673,29.4573975],[121.5154266,29.4546471],[121.528038,29.4640331],[121.5214615,29.4521275],[121.5193634,29.4452591],[121.5143738,29.4516716],[121.513588,29.441597],[121.5106888,29.4306087],[121.5125275,29.4216766],[121.4988785,29.4205341],[121.4860229,29.4116039],[121.4825974,29.40382],[121.4847031,29.3958073],[121.4899368,29.3912277],[121.4944077,29.3948898],[121.5004425,29.3987827],[121.5117264,29.4015293],[121.5193405,29.4122887],[121.5348434,29.4237328],[121.5413971,29.4317436],[121.5484924,29.4365501],[121.5495529,29.4489117],[121.5482483,29.4601326],[121.5545425,29.4564648],[121.5671616,29.4729443],[121.5677032,29.4731579],[121.5897522,29.4818592],[121.6186523,29.4896183],[121.6333694,29.4937229],[121.6525497,29.4989681],[121.6672668,29.5035267],[121.6701736,29.5087891],[121.6712265,29.5149727],[121.6820068,29.5174751],[121.681839,29.5206242],[121.6815033,29.527319],[121.7027969,29.5359879],[121.7225189,29.5414505],[121.733551,29.5402832],[121.7361679,29.5343285],[121.7348328,29.5270023],[121.74823,29.5283489],[121.7584763,29.5310783],[121.7737427,29.5349369],[121.7660828,29.523962],[121.7594681,29.5074921],[121.7596817,29.4916935],[121.7677689,29.4729004],[121.7816772,29.46875],[121.7885437,29.4788074],[121.8024368,29.4778595],[121.8066711,29.4851761],[121.8156204,29.4917965],[121.8167267,29.508276],[121.8241501,29.5254307],[121.8289108,29.5350342],[121.8401871,29.5295105],[121.8509521,29.5269623],[121.8533325,29.5319939],[121.8586197,29.5390759],[121.8444138,29.5354519],[121.8339462,29.5487595],[121.8210831,29.5487919],[121.8118896,29.55019],[121.7990036,29.5465584],[121.7811432,29.5479717],[121.7737885,29.5507355],[121.7648392,29.5470905],[121.7537994,29.5445957],[121.744072,29.5436993],[121.7440872,29.5519409],[121.7441177,29.5597267],[121.7588577,29.5681686],[121.7709732,29.5736389],[121.7775726,29.5859871],[121.7873306,29.5962696],[121.7870865,29.6017647],[121.7936707,29.6056404],[121.8052368,29.6037827],[121.8133926,29.6035328],[121.8184128,29.6129093],[121.8249969,29.6149521],[121.8402328,29.6087303],[121.8486404,29.6093941],[121.8544388,29.6132717],[121.867897,29.6246815],[121.8760071,29.6175613],[121.8839264,29.624176],[121.8936081,29.624588],[121.9052582,29.630064],[121.9089737,29.6362343],[121.9079437,29.6431065],[121.9197922,29.645586],[121.9307938,29.6345596],[121.9421234,29.6377258],[121.9523468,29.6340275],[121.9449692,29.6292458],[121.9494095,29.6237354],[121.9475327,29.616642],[121.9530334,29.6122742],[121.9672775,29.6211529],[121.9766922,29.6096687],[121.9766388,29.599596],[121.9908371,29.6013737],[121.9873734,29.5903969],[121.9936829,29.5892277],[121.9815369,29.5812607],[121.9720383,29.5746555],[121.9785919,29.5714245],[121.9559708,29.5678444],[121.9483185,29.5610046],[121.9482727,29.5516148],[121.9566269,29.5399075],[121.9453201,29.5381184],[121.9358902,29.5438747],[121.9200974,29.5388889],[121.9161301,29.5324917],[121.9228973,29.518961],[121.9365616,29.5198307],[121.9430923,29.5122509],[121.9546509,29.5122108],[121.9559174,29.5025902],[121.9441071,29.5042343],[121.9469528,29.4948368],[121.939827,29.4898243],[121.950798,29.4753628],[121.9565964,29.4794617],[121.97229,29.4679565],[121.9801407,29.4624329],[121.983757,29.4528027],[121.9727402,29.452158],[121.9747772,29.4411602],[121.9624329,29.4396019],[121.9694901,29.432478],[121.9613266,29.4283867],[121.9681015,29.4176006],[121.9552689,29.4199276],[121.9424133,29.4296379],[121.9301071,29.4300995],[121.9250488,29.4248848],[121.9181137,29.4201469],[121.9124527,29.4127541],[121.9105835,29.4065781],[121.9142303,29.4017582],[121.9005432,29.3917294],[121.8963165,29.3846436],[121.9085999,29.3745308],[121.9175034,29.369236],[121.9253769,29.3731022],[121.9311371,29.3701057],[121.9190369,29.3623619],[121.9108582,29.3509407],[121.9186783,29.3410702],[121.9312668,29.3426323],[121.940979,29.342598],[121.9504166,29.3434811],[121.9380417,29.332304],[121.9424667,29.3270226],[121.927002,29.325016],[121.9207306,29.3305302],[121.9125977,29.3287258],[121.9117813,29.3218613],[121.9292908,29.3098946],[121.9110718,29.3066463],[121.9106369,29.3001118],[121.9187393,29.2950497],[121.9250031,29.2877007],[121.9213028,29.2817593],[121.9403992,29.274828],[121.9553223,29.2724838],[121.9729233,29.2795181],[121.9813385,29.2877293],[121.9941635,29.2814999],[121.9859772,29.2737446],[121.9966965,29.2663784],[121.9796524,29.2655277],[121.9660263,29.2646618],[121.9693909,29.2564068],[121.9583893,29.2564468],[121.9599228,29.2470531],[121.970047,29.2316761],[121.9734192,29.2241077],[121.9660721,29.2204723],[121.9605484,29.2170582],[121.9551163,29.2296715],[121.951973,29.2324028],[121.9448318,29.2155113],[121.9377213,29.2068348],[121.9272079,29.1997738],[121.9120026,29.195013],[121.9023132,29.1927547],[121.8907394,29.1829453],[121.8791885,29.1754265],[121.8749771,29.1713181],[121.8637314,29.1713486],[121.8440704,29.1643066],[121.8359909,29.1755486],[121.8255463,29.1815281],[121.8192978,29.191618],[121.8104935,29.1980114],[121.7996826,29.1992207],[121.7989197,29.2054043],[121.8128433,29.2193375],[121.8241501,29.2307568],[121.8317719,29.2385216],[121.8312836,29.2476826],[121.8242264,29.2545681],[121.8171768,29.2609978],[121.8177567,29.2751923],[121.8178024,29.2882423],[121.8259125,29.2845573],[121.8338089,29.2943821],[121.8364487,29.3001003],[121.8317566,29.305378],[121.8123474,29.3035965],[121.8065567,29.2981167],[121.8021393,29.3070545],[121.8105469,29.3132172],[121.8095169,29.3191738],[121.8197327,29.315485],[121.8205566,29.3267021],[121.8297272,29.3253021],[121.8383865,29.3271141],[121.8313293,29.3330841],[121.8198013,29.3347168],[121.8324127,29.3413239],[121.8124695,29.338171],[121.79776,29.3313351],[121.7883301,29.3341064],[121.7964706,29.3372917],[121.7917709,29.3444004],[121.7973022,29.3512573],[121.8009872,29.3585739],[121.7905121,29.3608894],[121.8015671,29.3713951],[121.8057327,29.3783913],[121.792923,29.373476],[121.7768936,29.3652687],[121.7700882,29.3726101],[121.7718964,29.3639069],[121.7671585,29.355444],[121.7813187,29.356102],[121.7857437,29.3451004],[121.7841492,29.3375492],[121.7668304,29.3350697],[121.7807083,29.3299999],[121.7851334,29.3192291],[121.7783127,29.3169575],[121.7777634,29.3080273],[121.7706528,29.2981987],[121.7810898,29.2826061],[121.7811737,29.2809048],[121.7815781,29.2711563],[121.7791901,29.2613163],[121.7757568,29.2521648],[121.7731171,29.2459888],[121.7680817,29.2279129],[121.7649231,29.2202415],[121.764122,29.2183037],[121.7577972,29.203207],[121.749382,29.1920052],[121.7352371,29.1895142],[121.7287216,29.200058],[121.7295227,29.214632],[121.7245483,29.2073917],[121.7177429,29.2074032],[121.7229538,29.1984653],[121.7161331,29.1886311],[121.7048492,29.1829262],[121.681282,29.1793003],[121.6687698,29.1817818],[121.6598129,29.1793289],[121.6558914,29.1855164],[121.6564331,29.191927],[121.6522522,29.1976566],[121.6514893,29.2058659],[121.6462631,29.2134609],[121.6457596,29.2269707],[121.6503677,29.234354],[121.6483994,29.2391014],[121.6484222,29.2537556],[121.6497574,29.2663479],[121.6455765,29.2761974],[121.656601,29.2807617],[121.6495285,29.2835197],[121.6532211,29.2942753],[121.6697464,29.3011227],[121.6616364,29.3121243],[121.6713028,29.3234024],[121.6585083,29.3176231],[121.6508789,29.3064137],[121.6427383,29.2986374],[121.6398773,29.3084888],[121.6278763,29.3049355],[121.6238708,29.299118],[121.6301422,29.2869759],[121.6377411,29.2890282],[121.6392899,29.2732277],[121.637413,29.2501049],[121.6371231,29.2343082],[121.6347504,29.2244644],[121.6378632,29.2054577],[121.6399384,29.1928635],[121.6375732,29.1830196],[121.6234436,29.1947117],[121.6242371,29.2050152],[121.6182327,29.2132645],[121.6169434,29.2203617],[121.6038513,29.2283859],[121.6051712,29.2373161],[121.6001968,29.2405262],[121.5996933,29.2533474],[121.6002274,29.2629623],[121.5952606,29.2705231],[121.5842514,29.2641201],[121.5743027,29.267334],[121.5693283,29.2755795],[121.561203,29.2703171],[121.5507202,29.2739868],[121.5389328,29.2787991],[121.5276566,29.2781162],[121.5245132,29.2717056],[121.5357819,29.2755947],[121.5438995,29.2694092],[121.5496521,29.2517776],[121.547287,29.2421627],[121.538887,29.2334652],[121.5307693,29.2256832],[121.5283966,29.2181301],[121.5260468,29.2094288],[121.5166168,29.210804],[121.520813,29.2018738],[121.523407,29.1908855],[121.5310135,29.1888199],[121.5145111,29.1814976],[121.5061264,29.1755486],[121.5014114,29.1668453],[121.4951172,29.1604366],[121.4898987,29.1721134],[121.4906769,29.1826458],[121.4872818,29.1977558],[121.4788971,29.2011909],[121.4846573,29.1863079],[121.481781,29.1716557],[121.4741898,29.1622658],[121.4634628,29.1553955],[121.4587402,29.1640968],[121.4399033,29.1693554],[121.4197388,29.1698055],[121.41922,29.1604176],[121.4231415,29.150259],[121.4320374,29.1576748],[121.4380569,29.1601963],[121.439949,29.1589127],[121.4498367,29.1521893],[121.4443512,29.1439438],[121.4480133,29.1375332],[121.4626694,29.1398296],[121.4621506,29.1322727],[121.4490738,29.1260872],[121.4508972,29.1169281],[121.4448776,29.1132622],[121.4569168,29.1038799],[121.4668579,29.0983887],[121.4901428,29.1031971],[121.5045319,29.101593],[121.5228424,29.109375],[121.5293884,29.1079998],[121.5458832,29.1148624],[121.5579071,29.1189766],[121.5623627,29.1176014],[121.5725632,29.1173668],[121.5830307,29.1180477],[121.59375,29.1134586],[121.5992432,29.1107063],[121.6125793,29.1086349],[121.6217422,29.1090832],[121.6293182,29.1049557],[121.6395264,29.105629],[121.6460571,29.1026459],[121.6303635,29.098774],[121.6332169,29.0886936],[121.6279678,29.0781689],[121.6308365,29.0710678],[121.6292496,29.0635147],[121.6315918,29.0529785],[121.6290817,29.0436993],[121.6246567,29.0419827],[121.6166916,29.0429573],[121.6056976,29.0465946],[121.5881729,29.0440922],[121.5811234,29.0507355],[121.5782623,29.0564117],[121.5636063,29.0555553],[121.546608,29.0539608],[121.5342407,29.0591774],[121.5406036,29.0486946],[121.535881,29.0393105],[121.5424118,29.0377064],[121.5358734,29.0253448],[121.5282898,29.0221405],[121.5285034,29.0118523],[121.5293198,29.004055],[121.5293198,29.0013065],[121.5450134,29.0070267],[121.5565109,29.0154915],[121.5502472,29.0232792],[121.5426636,29.0209923],[121.5476379,29.0319805],[121.5502625,29.0475483],[121.5698776,29.0514278],[121.5803223,29.0411186],[121.5881577,29.0331001],[121.593399,29.039278],[121.6001892,29.038126],[121.6097488,29.0387573],[121.625267,29.0367546],[121.6363525,29.0405598],[121.6443863,29.0497589],[121.6543427,29.0527248],[121.6616592,29.0538597],[121.6653137,29.0488167],[121.6556168,29.0382977],[121.6545563,29.0330334],[121.6644821,29.0243206],[121.6712875,29.0304928],[121.6760101,29.0378113],[121.6827927,29.0309334],[121.6796417,29.0240707],[121.6924591,29.0277138],[121.6961136,29.021986],[121.7123032,29.0144043],[121.7020874,29.0107574],[121.6889496,29.0134106],[121.6818771,29.0151119],[121.6837921,29.0096416],[121.6798172,29.0028782],[121.6829605,28.9872036],[121.667038,28.99547],[121.6664963,28.9897461],[121.6709366,28.9847031],[121.6682968,28.9753208],[121.6756134,28.9723339],[121.6810837,28.9631672],[121.6889267,28.9729996],[121.6946869,28.9768829],[121.6946716,28.9677258],[121.6936035,28.9530735],[121.7038116,28.9640465],[121.7145081,28.9592209],[121.7043076,28.9530563],[121.7058563,28.9464149],[121.7267685,28.9518738],[121.7296066,28.9422512],[121.7186432,28.9372349],[121.7065964,28.9296989],[121.7076263,28.9214554],[121.6942825,28.9120903],[121.6913071,28.9160938],[121.6817627,28.9155445],[121.6739273,28.9164715],[121.6674728,28.9083443],[121.6488495,28.9089489],[121.6449432,28.9171944],[121.6246033,28.9259186],[121.6159821,28.9327946],[121.6073532,28.9204407],[121.5997772,28.9243393],[121.5796738,28.9280186],[121.5673828,28.934988],[121.5572281,28.9419956],[121.5511475,28.9517937],[121.5410538,28.9564285],[121.5319138,28.9557438],[121.5143967,28.9394932],[121.5211868,28.9404087],[121.5308533,28.9317036],[121.5227432,28.9159107],[121.5391769,28.9133873],[121.5491104,28.9115505],[121.550148,28.9046822],[121.5632019,28.9049034],[121.5749435,28.898716],[121.5814667,28.8927574],[121.5945282,28.8996162],[121.6000137,28.8957195],[121.6075821,28.9025822],[121.614357,28.8957081],[121.6195831,28.8899784],[121.6216507,28.8837948],[121.6281662,28.8812695],[121.6420135,28.8837738],[121.6349411,28.8672962],[121.6342163,28.8635178],[121.6353302,28.8554497],[121.635437,28.8547039],[121.6484833,28.8526287],[121.6628494,28.8594799],[121.669632,28.8590107],[121.6719971,28.8651886],[121.6811371,28.867466],[121.6690903,28.8484802],[121.6641235,28.838871],[121.6716766,28.8370285],[121.6818466,28.8358707],[121.6802673,28.8264866],[121.6781693,28.8209934],[121.6719131,28.824894],[121.6640778,28.8212433],[121.6640701,28.8139172],[121.6510162,28.8118744],[121.6533432,28.7979031],[121.6677017,28.805212],[121.6797028,28.8042793],[121.6781235,28.7978706],[121.6812363,28.792141],[121.6723633,28.7873478],[121.6671524,28.7910194],[121.6616669,28.7887344],[121.6520233,28.7910366],[121.6478271,28.7823429],[121.6383286,28.7795029],[121.6334763,28.7695389],[121.6297913,28.7514553],[121.6290131,28.7401695],[121.6294937,28.7283325],[121.6268768,28.7249031],[121.6180115,28.7178154],[121.6049805,28.7196579],[121.5925827,28.7185764],[121.5843887,28.7162418],[121.578392,28.713726],[121.5710907,28.7091522],[121.5604324,28.7053928],[121.550499,28.6997757],[121.540863,28.6961174],[121.537468,28.6993237],[121.5239182,28.6954365],[121.5230865,28.6953812],[121.5001984,28.6643047],[121.5042725,28.6528511],[121.5082626,28.6416397],[121.5126801,28.6228657],[121.5170975,28.6043224],[121.5210037,28.5871525],[121.5280228,28.5715828],[121.5373688,28.5592155],[121.5441208,28.5404415],[121.557373,28.5257835],[121.5685501,28.5166206],[121.5750427,28.5035667],[121.5716629,28.4992199],[121.5736389,28.4967022],[121.5810013,28.4873085],[121.5828171,28.4818134],[121.5820312,28.4776955],[121.572403,28.4657955],[121.5679703,28.4570999],[121.5671768,28.45298],[121.5695114,28.4406166],[121.5765228,28.4291649],[121.5819702,28.4220657],[121.5954666,28.4080906],[121.6014175,28.3941231],[121.5975037,28.3810768],[121.5928116,28.3659744],[121.6013794,28.3611565],[121.6104736,28.3641281],[121.6185226,28.3583965],[121.616951,28.3547344],[121.6190186,28.3485508],[121.6273193,28.3453388],[121.640831,28.3508167],[121.6551285,28.3567524],[121.651207,28.3457699],[121.65979,28.350563],[121.6680984,28.3512421],[121.6537933,28.340044],[121.6475372,28.3297501],[121.6542892,28.3242474],[121.641037,28.3185406],[121.6410065,28.3059502],[121.6316528,28.2961159],[121.6389084,28.2903862],[121.6401978,28.2846622],[121.628273,28.28582],[121.6195984,28.2792377],[121.6160583,28.2771339],[121.6220169,28.2734661],[121.6173401,28.2670612],[121.6266785,28.2665939],[121.6160278,28.2574482],[121.6056366,28.2540245],[121.5970764,28.2554054],[121.5931931,28.2494564],[121.5817719,28.2476349],[121.5854111,28.2547264],[121.5789337,28.2545052],[121.5926895,28.2641068],[121.5945129,28.2760086],[121.5841599,28.2934132],[121.5831375,28.306921],[121.5696487,28.3135681],[121.5601501,28.3192387],[121.5470734,28.3144951],[121.5452499,28.3236523],[121.5263138,28.3316708],[121.5115509,28.3358479],[121.5000916,28.3376293],[121.4896011,28.3398571],[121.4694519,28.3389988],[121.4640579,28.334837],[121.4507599,28.3245754],[121.4517975,28.3156471],[121.4593277,28.311985],[121.4647827,28.3005409],[121.4476471,28.3053436],[121.4427185,28.2957287],[121.4292221,28.301445],[121.4227295,28.3083096],[121.4128571,28.3050995],[121.4092331,28.3112774],[121.4014435,28.3098984],[121.3998871,28.3002834],[121.4032669,28.2918167],[121.4131393,28.2913666],[121.4037933,28.2860947],[121.4128876,28.2755699],[121.4250793,28.274662],[121.4315567,28.2682552],[121.4383163,28.2659683],[121.4222336,28.2602386],[121.4224472,28.2591095],[121.4232712,28.2547436],[121.4147186,28.2428379],[121.4040909,28.2313862],[121.4010468,28.2306538],[121.383049,28.2328625],[121.374527,28.2265568],[121.3659668,28.2228851],[121.3633881,28.2139549],[121.3737564,28.2089291],[121.3774033,28.1981754],[121.3691101,28.196106],[121.3621063,28.1938114],[121.3613129,28.1905174],[121.3712006,28.1807709],[121.3797531,28.1869583],[121.3888168,28.1931477],[121.3896027,28.1839924],[121.3826065,28.1766624],[121.3823471,28.165905],[121.3753662,28.159029],[121.3686218,28.1601677],[121.3631973,28.1491756],[121.3572464,28.1402435],[121.3488235,28.138895],[121.3380737,28.1418247],[121.3473816,28.1532803],[121.3297577,28.1502838],[121.3307877,28.1592121],[121.3266296,28.167448],[121.3121109,28.1697178],[121.3053589,28.1781769],[121.2973099,28.1838875],[121.2923737,28.1939507],[121.2830429,28.1916485],[121.2742081,28.2010193],[121.2702866,28.2106266],[121.2705383,28.2229881],[121.2645493,28.2328186],[121.2577667,28.2524948],[121.2598877,28.2562561],[121.2556686,28.2639351],[121.2586823,28.2695007],[121.2618713,28.2753925],[121.2701569,28.2852497],[121.2527771,28.2758331],[121.2533035,28.2827015],[121.2589874,28.288435],[121.2496185,28.3026104],[121.2405167,28.3062553],[121.2306595,28.306694],[121.2179031,28.3210907],[121.2142487,28.3320694],[121.2163086,28.3382549],[121.227211,28.3394222],[121.2432938,28.34655],[121.2554932,28.3461132],[121.2663879,28.3527737],[121.2733917,28.358736],[121.2767487,28.3660679],[121.2710266,28.3683453],[121.2440567,28.3522739],[121.2235565,28.3469677],[121.2116089,28.3469429],[121.21418,28.3597679],[121.2097473,28.3636513],[121.2062225,28.3713608],[121.2050476,28.3739395],[121.1967163,28.3807907],[121.2008667,28.3865223],[121.1933212,28.3903961],[121.1818771,28.3908272],[121.1782837,28.3791447],[121.1717834,28.3809586],[121.1793365,28.3715935],[121.1796265,28.3599186],[121.1658936,28.3543911],[121.1599274,28.3493404],[121.1550064,28.3479557],[121.1503372,28.3431358],[121.1373672,28.3417263],[121.1358337,28.3353119],[121.1446762,28.327095],[121.1431427,28.3209095],[121.1340714,28.3169937],[121.1281128,28.3135452],[121.1263199,28.3075886],[121.1343765,28.3032608],[121.1307602,28.2984447],[121.1219482,28.2954426],[121.1160126,28.2855816],[121.0965424,28.286211],[121.0812302,28.2866211],[121.0809326,28.2969208],[121.0775223,28.3060684],[121.0676804,28.3007717],[121.0606689,28.3014355],[121.0598679,28.3083],[121.0528488,28.3098793],[121.0450668,28.3098507],[121.0479507,28.3018494],[121.0438232,28.2977142],[121.0357666,28.2972298],[121.0329437,28.2914963],[121.04776,28.2858238],[121.0566025,28.2812767],[121.0662003,28.2826824],[121.0903473,28.2779522],[121.1046066,28.2784519],[121.1134491,28.2764187],[121.1152802,28.2720737],[121.116333,28.2663555],[121.1166077,28.2620049],[121.124939,28.2544765],[121.1314392,28.2483139],[121.1246033,28.2405014],[121.1260529,28.2334213],[121.1175232,28.2244701],[121.1162491,28.2169113],[121.1193771,28.2114277],[121.1064224,28.2081833],[121.1009979,28.2017574],[121.0935135,28.1939526],[121.0943069,28.1864014],[121.1013336,28.1827602],[121.0954666,28.1757278],[121.0938568,28.16786],[121.0770111,28.1691799],[121.0718536,28.1645851],[121.0656281,28.1650238],[121.0607071,28.162487],[121.0586624,28.1560726],[121.0480728,28.1482544],[121.0358963,28.1438618],[121.0252609,28.1479454],[121.0183029,28.139452],[121.0082626,28.1268253],[121.002327,28.1176453],[120.9977036,28.1105328],[120.9977417,28.1036663],[120.9916229,28.1025581],[120.9946823,28.0922089],[120.9975586,28.0871849],[120.98983,28.0773144],[120.9910812,28.0744896],[120.9927368,28.0654221],[120.9958801,28.0583382],[120.9969482,28.0514736],[120.9920731,28.040699],[120.9910812,28.0319977],[120.9851379,28.0294571],[120.9859467,28.02351],[120.9807968,28.0166206],[120.9759064,28.0111103],[120.9685898,28.009531],[120.9668732,28.0000095],[120.9596863,27.9939842],[120.9621964,27.9931087],[120.9695435,27.9872417],[120.9654922,27.9819221],[120.9538879,27.9794922],[120.9450836,27.9792728],[120.9328613,27.9835892],[120.9242477,27.9900532],[120.9185028,27.9935265],[120.9083862,27.9959774],[120.9025269,27.9965515],[120.8990631,27.9965992],[120.8827515,27.9980907],[120.8586884,27.9976921],[120.8419189,27.9929943],[120.8264008,27.9905891],[120.817627,27.9807415],[120.8112564,27.9735928],[120.8233337,27.9628582],[120.8466873,27.953867],[120.8444672,27.9433193],[120.8573837,27.9447842],[120.8678589,27.9308891],[120.8651276,27.9191914],[120.8606873,27.8962574],[120.858551,27.8765469],[120.8473969,27.8685131],[120.8405838,27.8635941],[120.8225632,27.8572769],[120.8123322,27.8450642],[120.7986908,27.8322887],[120.7985229,27.8321285],[120.7821426,27.815979],[120.7719269,27.804203],[120.7640305,27.7929382],[120.7572021,27.7789135],[120.7483673,27.7593765],[120.7400589,27.7396126],[120.7298508,27.7280788],[120.7157669,27.7172031],[120.70224,27.7146606],[120.6820831,27.7050362],[120.6770172,27.6960411],[120.6681519,27.6834984],[120.6660995,27.6806011],[120.6600723,27.6661205],[120.6650925,27.6553974],[120.6770935,27.6431293],[120.6743164,27.6376076],[120.6676102,27.6373234],[120.6631622,27.6201057],[120.6542435,27.6113262],[120.6470032,27.6126385],[120.6406937,27.6009026],[120.6214066,27.5954666],[120.6102829,27.5992622],[120.6010284,27.595974],[120.5992737,27.5956287],[120.5976181,27.5900478],[120.5965195,27.5863228],[120.5958481,27.5757694],[120.5983124,27.5651684],[120.598053,27.5416584],[120.605217,27.5236244],[120.6167908,27.5037975],[120.6364136,27.4984684],[120.6482391,27.502924],[120.6631775,27.5032825],[120.6648331,27.49436],[120.670372,27.4820366],[120.6871414,27.479887],[120.6798096,27.4669971],[120.6663132,27.4535961],[120.6615524,27.4414158],[120.651413,27.4500332],[120.6505585,27.4342213],[120.6444397,27.428669],[120.6453323,27.4179115],[120.6390381,27.4054852],[120.6482773,27.4073982],[120.6468506,27.3975334],[120.656723,27.3896008],[120.6490631,27.3838081],[120.6500092,27.3689251],[120.6430969,27.3649712],[120.6279068,27.3655262],[120.6155472,27.3656483],[120.6196136,27.3782711],[120.6131668,27.3793087],[120.6099472,27.3827801],[120.6106033,27.3940105],[120.5898819,27.3823719],[120.5798111,27.3848019],[120.5753174,27.395298],[120.5670471,27.3968277],[120.5561371,27.4052048],[120.5458832,27.4031391],[120.552948,27.3925743],[120.5409164,27.3876534],[120.552063,27.3835678],[120.5602875,27.382103],[120.5567932,27.3729076],[120.5463409,27.3643341],[120.5304871,27.3554821],[120.5404282,27.3427429],[120.5332413,27.341301],[120.5178299,27.3395538],[120.5080414,27.3413658],[120.5127411,27.3349228],[120.5233688,27.3286095],[120.5410767,27.3310661],[120.5410767,27.3206806],[120.5532837,27.3222427],[120.5529327,27.309639],[120.5411835,27.3026581],[120.5540314,27.3034649],[120.5651932,27.2955475],[120.5572433,27.2929535],[120.5467834,27.285984],[120.5386734,27.276516],[120.5311966,27.2771339],[120.5188599,27.2770176],[120.5259323,27.2665462],[120.5170517,27.256609],[120.5215302,27.2481747],[120.5362167,27.2446461],[120.5324936,27.2354469],[120.5295334,27.225338],[120.5115738,27.2215042],[120.5088425,27.2139168],[120.5120087,27.2073021],[120.5197983,27.2009602],[120.5121613,27.194931],[120.4965668,27.1888237],[120.4872284,27.1749878],[120.4747162,27.169138],[120.4664307,27.1743259],[120.4637299,27.1841507],[120.4612808,27.1948967],[120.466423,27.1990719],[120.4676208,27.2080803],[120.4630432,27.2182846],[120.4537506,27.2216644],[120.4448929,27.2107716],[120.4330063,27.2150059],[120.4290695,27.2016773],[120.4229431,27.1990948],[120.4268723,27.1927185],[120.4383163,27.182066],[120.4355621,27.1769962],[120.4354935,27.1706543],[120.4074783,27.2028656],[120.4106522,27.2265854],[120.4001007,27.2447186],[120.422493,27.2624359],[120.3523636,27.3469601],[120.34655,27.3959599],[120.3240738,27.3984318],[120.3175507,27.4099922],[120.2739334,27.3956718],[120.2566376,27.4310856],[120.2436371,27.4346867],[120.1345291,27.4222202],[120.1223068,27.4010334],[120.1039124,27.396225],[120.0578308,27.3546867],[120.0318985,27.3444004],[119.9984436,27.3821468],[119.965477,27.3716583],[119.9367371,27.3424702],[119.9367599,27.3165169],[119.9003601,27.3155746],[119.8715286,27.3036003],[119.8427963,27.3210125],[119.8333435,27.3167057],[119.8309097,27.3002453],[119.7797623,27.3045444],[119.7656937,27.3077202],[119.7650833,27.3189907],[119.7781906,27.3245697],[119.7357712,27.363039],[119.740593,27.3746071],[119.728653,27.3935623],[119.7045517,27.4048367],[119.6808472,27.4342365],[119.7021866,27.4597893],[119.6999512,27.5108318],[119.6873627,27.5337048],[119.6587906,27.5368328],[119.6626434,27.5711651],[119.6250534,27.5965919],[119.6223831,27.6228428],[119.6420135,27.636282],[119.6332169,27.6739616],[119.5511398,27.6797962],[119.5378265,27.6709023],[119.5333328,27.6479511],[119.4892273,27.660326],[119.4915237,27.623436],[119.4615707,27.5295429],[119.4334564,27.5118237],[119.4116211,27.5426846],[119.3717728,27.5380173],[119.3341904,27.5065594],[119.3354034,27.4869633],[119.2801437,27.4608383],[119.2611618,27.432703],[119.2202835,27.423687],[119.1265411,27.4375114],[119.1194077,27.4427223],[119.1265869,27.4761047],[119.119072,27.4870777],[119.0858231,27.472559],[119.052887,27.4740944],[119.0063629,27.5000095],[118.9812164,27.47929],[118.9532471,27.4816895],[118.9514465,27.4624863],[118.9113922,27.4616127],[118.8983383,27.4710255],[118.8767395,27.5192471],[118.8547134,27.5256805],[118.8943405,27.5433636],[118.9042816,27.5763798],[118.8965302,27.6505165],[118.8673782,27.6984348],[118.8707275,27.7099743],[118.8913879,27.7173939],[118.8628616,27.7475891],[118.8283768,27.8449192],[118.8261566,27.8583527],[118.8261566,27.8820057],[118.8030472,27.9245338],[118.7917099,27.9372902],[118.7438965,27.9551296],[118.7228928,27.9787064],[118.7256317,28.0380516],[118.7124329,28.0627995],[118.7486877,28.1003876],[118.7924805,28.1232948],[118.8000107,28.1468983],[118.7917404,28.1741734],[118.7611465,28.1778488],[118.8008423,28.2241325],[118.8026733,28.2410927],[118.7679062,28.2511864],[118.7315903,28.2745647],[118.7193909,28.3082561],[118.6936874,28.3100815],[118.6695633,28.2802753],[118.6034088,28.2573032],[118.572998,28.2921028],[118.5187912,28.2729969],[118.495163,28.2821217],[118.4853973,28.2413082],[118.4357605,28.2687016],[118.4242706,28.2922821],[118.4569397,28.3054218],[118.4810104,28.3357277],[118.4389877,28.4089775],[118.4674072,28.4734478],[118.4166336,28.4969406],[118.4313889,28.5205841],[118.4235535,28.5329418],[118.40905,28.5906677],[118.4310913,28.6186867],[118.4122467,28.6472931],[118.4322433,28.67416],[118.4008636,28.7089252],[118.3805237,28.7840557],[118.3603363,28.811964],[118.2968369,28.8360596],[118.275383,28.9081898],[118.2507401,28.9262085],[118.1946716,28.9099407],[118.2164536,28.941206],[118.181221,28.9823208],[118.0964737,28.9936199],[118.0644531,29.0539761],[118.0687332,29.0789871],[118.0403366,29.09832],[118.0464783,29.1199036],[118.0282669,29.1789494],[118.0345993,29.2101612],[118.0745468,29.2287102],[118.0707703,29.2860031],[118.0736008,29.2938118],[118.0972366,29.2875137],[118.1116028,29.2956066],[118.1444168,29.2872791],[118.1658478,29.2990665],[118.1641693,29.3185444],[118.2069931,29.3542576],[118.1894531,29.3952217],[118.2404327,29.4346275],[118.302948,29.4249954],[118.3112717,29.4433613],[118.3037262,29.489645],[118.3168182,29.4979401],[118.3373718,29.4824181],[118.3814697,29.4901123],[118.3972626,29.4800663],[118.4021683,29.5055275],[118.4436493,29.5129623],[118.4833069,29.5206127],[118.4955368,29.5667133],[118.5724487,29.6379032],[118.6150436,29.652853],[118.6432037,29.6487484],[118.6910629,29.6998978],[118.7223816,29.7166405],[118.7431793,29.7567596],[118.7331772,29.8149872],[118.7534637,29.8211765],[118.7484589,29.8392849],[118.7558365,29.8489132],[118.7795715,29.8482227],[118.8341827,29.895647],[118.8410568,29.909853],[118.835022,29.941494],[118.8915024,29.9512978],[118.89505,30.0221291],[118.865593,30.1083508],[118.8941803,30.1399555],[118.8920975,30.1557751],[118.8817978,30.1635799],[118.8577194,30.1539764],[118.8476868,30.1665916],[118.899559,30.1912956],[118.9210281,30.2146492],[118.8898392,30.2346306],[118.8750916,30.2859936],[118.8791122,30.3169346],[118.9528427,30.3640556],[119.0422363,30.3104744],[119.053093,30.3083878],[119.0852127,30.3296242],[119.120369,30.3118801],[119.2251587,30.2954922],[119.2484589,30.3462925],[119.2831802,30.3489056],[119.3228073,30.3762436],[119.3478775,30.357336],[119.3637619,30.3558865],[119.4105682,30.3815594],[119.3769836,30.3918114],[119.3458786,30.4201508],[119.3229599,30.5339432],[119.269783,30.5153694],[119.2388535,30.5400162],[119.2391968,30.5558281],[119.2634964,30.582325],[119.2381897,30.6177177],[119.3112793,30.6243],[119.3431931,30.6720638],[119.3805084,30.6881618],[119.3969498,30.6821232],[119.4100113,30.6485939],[119.43927,30.6527977],[119.4865265,30.7178612],[119.4851837,30.7829609],[119.4961472,30.7909203],[119.5117416,30.7779961],[119.5312195,30.7842999],[119.5702667,30.8388386],[119.5722809,30.8569317],[119.5554581,30.8827057],[119.5589371,30.9166012],[119.5825882,30.9709988],[119.6291733,31.021801],[119.6247025,31.0878315],[119.6444397,31.1156559],[119.6321106,31.1393433]]]]},
  1337 +"properties":{
  1338 +"gid":223,
  1339 +"name":"浙江省"}
  1340 +},
  1341 +{"type":"Feature",
  1342 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.673027,30.8461418],[122.6647873,30.8469009],[122.6631012,30.848526],[122.659523,30.851984],[122.6675262,30.8532867],[122.6681595,30.8615246],[122.682991,30.8552094],[122.6957703,30.8553219],[122.6980667,30.847517],[122.6884766,30.8471451],[122.6865234,30.8386936],[122.673027,30.8461418]]]]},
  1343 +"properties":{
  1344 +"gid":224,
  1345 +"name":"浙江省"}
  1346 +},
  1347 +{"type":"Feature",
  1348 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.6408463,30.8190384],[122.6421738,30.8229408],[122.6418915,30.8279877],[122.6443634,30.8303776],[122.6464005,30.8289089],[122.6514511,30.82547],[122.6573029,30.8236389],[122.6599731,30.8195114],[122.6557236,30.8185902],[122.6466904,30.8165207],[122.6408463,30.8190384]]]]},
  1349 +"properties":{
  1350 +"gid":225,
  1351 +"name":"浙江省"}
  1352 +},
  1353 +{"type":"Feature",
  1354 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.6288528,30.8179703],[122.6241074,30.8197155],[122.6185303,30.8204002],[122.6121597,30.8197041],[122.6076431,30.8206177],[122.6087036,30.824749],[122.6156006,30.8263607],[122.6230316,30.8279724],[122.6294098,30.8263721],[122.6326065,30.8222466],[122.6288528,30.8179703]]]]},
  1355 +"properties":{
  1356 +"gid":226,
  1357 +"name":"浙江省"}
  1358 +},
  1359 +{"type":"Feature",
  1360 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.7600021,30.793335],[122.7603378,30.7949047],[122.7629929,30.7967548],[122.7654724,30.796032],[122.7670364,30.7928562],[122.767601,30.7901707],[122.7658768,30.7891464],[122.7630997,30.7902412],[122.7615509,30.7917881],[122.7600021,30.793335]]]]},
  1361 +"properties":{
  1362 +"gid":227,
  1363 +"name":"浙江省"}
  1364 +},
  1365 +{"type":"Feature",
  1366 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.7756805,30.7927723],[122.7785263,30.7919922],[122.7804413,30.7903881],[122.7836227,30.7911758],[122.7843933,30.7930012],[122.7859116,30.7930832],[122.7880478,30.7907906],[122.7877426,30.7875919],[122.7874298,30.7843933],[122.7856369,30.7830563],[122.7828598,30.7841511],[122.78022,30.7858734],[122.7770462,30.7886543],[122.7736893,30.7904949],[122.7736664,30.7921219],[122.7756805,30.7927723]]]]},
  1367 +"properties":{
  1368 +"gid":228,
  1369 +"name":"浙江省"}
  1370 +},
  1371 +{"type":"Feature",
  1372 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.3851471,30.7588139],[122.3861923,30.7619553],[122.3899612,30.7616959],[122.3935318,30.7604733],[122.3934326,30.7581787],[122.3925934,30.7559986],[122.389122,30.7558823],[122.3853531,30.7561417],[122.3851471,30.7588139]]]]},
  1373 +"properties":{
  1374 +"gid":229,
  1375 +"name":"浙江省"}
  1376 +},
  1377 +{"type":"Feature",
  1378 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.4652481,30.7570896],[122.4649963,30.7536488],[122.4628906,30.7485981],[122.4512177,30.7469673],[122.4472198,30.7526951],[122.4469299,30.7586575],[122.4535675,30.7591324],[122.459137,30.7563896],[122.4652481,30.7570896]]]]},
  1379 +"properties":{
  1380 +"gid":230,
  1381 +"name":"浙江省"}
  1382 +},
  1383 +{"type":"Feature",
  1384 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.4951172,30.7107086],[122.4849319,30.7025433],[122.4780579,30.706028],[122.462883,30.7024784],[122.4608917,30.690588],[122.450882,30.6995907],[122.4293137,30.6951656],[122.4227829,30.7075768],[122.4297409,30.7123356],[122.4343338,30.7196274],[122.4355392,30.734272],[122.426033,30.7414379],[122.4180603,30.7417221],[122.4199829,30.7476597],[122.4300766,30.7469025],[122.4401932,30.7475166],[122.4538422,30.7297897],[122.4605103,30.7322598],[122.4665604,30.7255745],[122.4656982,30.7187119],[122.4770813,30.714735],[122.4986267,30.7157173],[122.5024338,30.7237034],[122.5121918,30.7162991],[122.5197601,30.727459],[122.5319901,30.7278214],[122.5302963,30.7191353],[122.5217819,30.7180576],[122.5220032,30.7125607],[122.5330811,30.7056046],[122.5290527,30.7010593],[122.5205994,30.7063904],[122.5099411,30.7041817],[122.4963303,30.6992512],[122.4987869,30.7051849],[122.4951172,30.7107086]]]]},
  1385 +"properties":{
  1386 +"gid":231,
  1387 +"name":"浙江省"}
  1388 +},
  1389 +{"type":"Feature",
  1390 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.8054428,30.7155361],[122.8020172,30.7194614],[122.798111,30.7247658],[122.8053665,30.7304173],[122.8105011,30.7365494],[122.8170624,30.730072],[122.8251038,30.7343407],[122.8281937,30.726984],[122.8288498,30.7173595],[122.8308182,30.7054367],[122.8255615,30.709837],[122.8240433,30.7155781],[122.815567,30.7186394],[122.8054428,30.7155361]]]]},
  1391 +"properties":{
  1392 +"gid":232,
  1393 +"name":"浙江省"}
  1394 +},
  1395 +{"type":"Feature",
  1396 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.7563934,30.706171],[122.7506638,30.7149258],[122.7576523,30.7214985],[122.7685928,30.7236805],[122.7739868,30.7300415],[122.7814484,30.7313404],[122.7881317,30.734251],[122.789917,30.728281],[122.7932663,30.7209206],[122.7869415,30.7246475],[122.780777,30.7215023],[122.7806931,30.7139473],[122.7850037,30.6983376],[122.7725372,30.701664],[122.7647324,30.7136459],[122.7563934,30.706171]]]]},
  1397 +"properties":{
  1398 +"gid":233,
  1399 +"name":"浙江省"}
  1400 +},
  1401 +{"type":"Feature",
  1402 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.4139862,30.6952038],[121.4150314,30.6975555],[121.4173431,30.6989651],[121.4201965,30.6987934],[121.4233398,30.6970749],[121.4227676,30.6941566],[121.4217224,30.6918087],[121.4192276,30.6909256],[121.4153824,30.6919937],[121.413887,30.6932182],[121.4139862,30.6952038]]]]},
  1403 +"properties":{
  1404 +"gid":234,
  1405 +"name":"上海市"}
  1406 +},
  1407 +{"type":"Feature",
  1408 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.4319229,30.6765919],[122.4310684,30.6751194],[122.4263077,30.6723557],[122.4217834,30.6767044],[122.4156799,30.6766891],[122.40905,30.6762142],[122.4124832,30.6808109],[122.4182892,30.6874771],[122.4236069,30.6840477],[122.4268036,30.6801567],[122.4319229,30.6765919]]]]},
  1409 +"properties":{
  1410 +"gid":235,
  1411 +"name":"浙江省"}
  1412 +},
  1413 +{"type":"Feature",
  1414 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.5569382,30.6509228],[122.5495071,30.6516705],[122.5418472,30.656311],[122.5495834,30.6587696],[122.5411987,30.6695976],[122.5500183,30.6741047],[122.5551605,30.6827621],[122.5607071,30.6804276],[122.564888,30.6730671],[122.5828476,30.6635323],[122.5798569,30.657835],[122.5694504,30.6535702],[122.5615387,30.6584415],[122.5680389,30.6457958],[122.5569382,30.6509228]]]]},
  1415 +"properties":{
  1416 +"gid":236,
  1417 +"name":"浙江省"}
  1418 +},
  1419 +{"type":"Feature",
  1420 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.5297928,30.6644306],[122.5278931,30.6647549],[122.524437,30.6679592],[122.5220413,30.6723156],[122.5249405,30.6764507],[122.5297165,30.6748505],[122.5339737,30.6737099],[122.5371628,30.6705036],[122.5392914,30.6663761],[122.5419617,30.6608753],[122.536377,30.6622429],[122.5297928,30.6644306]]]]},
  1421 +"properties":{
  1422 +"gid":237,
  1423 +"name":"浙江省"}
  1424 +},
  1425 +{"type":"Feature",
  1426 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.0308533,30.6534176],[122.0329285,30.6556358],[122.035202,30.655571],[122.0387573,30.6538925],[122.0387802,30.6507893],[122.0366592,30.6499882],[122.0332718,30.6493797],[122.0307083,30.6511841],[122.0308533,30.6534176]]]]},
  1427 +"properties":{
  1428 +"gid":238,
  1429 +"name":"浙江省"}
  1430 +},
  1431 +{"type":"Feature",
  1432 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.2868271,30.6459198],[122.283493,30.6492329],[122.2853165,30.6535988],[122.2919464,30.6540794],[122.2943802,30.6465187],[122.2930832,30.6428413],[122.2877808,30.6405315],[122.2819595,30.6391335],[122.2769165,30.6384296],[122.2761078,30.6425552],[122.2811432,30.6437206],[122.2864304,30.644886],[122.2868271,30.6459198]]]]},
  1433 +"properties":{
  1434 +"gid":239,
  1435 +"name":"浙江省"}
  1436 +},
  1437 +{"type":"Feature",
  1438 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.5120621,30.6425991],[122.5101929,30.6456833],[122.51017,30.650732],[122.5165405,30.648447],[122.5202637,30.6454716],[122.5210724,30.6418018],[122.516037,30.6399593],[122.5120621,30.6425991]]]]},
  1439 +"properties":{
  1440 +"gid":240,
  1441 +"name":"浙江省"}
  1442 +},
  1443 +{"type":"Feature",
  1444 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.0548019,30.6410561],[122.0612869,30.6455078],[122.0678864,30.6442242],[122.0627594,30.6408901],[122.0636597,30.6353626],[122.0704269,30.6310902],[122.0611191,30.6299095],[122.0542679,30.6314316],[122.0503998,30.6354122],[122.0443268,30.6364574],[122.0479126,30.641201],[122.0548019,30.6410561]]]]},
  1445 +"properties":{
  1446 +"gid":241,
  1447 +"name":"浙江省"}
  1448 +},
  1449 +{"type":"Feature",
  1450 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.137207,30.6149597],[122.1424026,30.6176567],[122.1473618,30.6154175],[122.1451263,30.611124],[122.1407318,30.6109352],[122.137207,30.6149597]]]]},
  1451 +"properties":{
  1452 +"gid":242,
  1453 +"name":"浙江省"}
  1454 +},
  1455 +{"type":"Feature",
  1456 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.618782,30.613348],[121.6225891,30.6146202],[121.62603,30.6141033],[121.6299286,30.6122913],[121.6301422,30.6098022],[121.6274338,30.6086731],[121.6235199,30.6086464],[121.6194534,30.6114044],[121.618782,30.613348]]]]},
  1457 +"properties":{
  1458 +"gid":243,
  1459 +"name":"浙江省"}
  1460 +},
  1461 +{"type":"Feature",
  1462 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.1207504,30.6050396],[122.1225662,30.6073666],[122.1307526,30.6063919],[122.1289978,30.6011562],[122.1235733,30.6008358],[122.1207504,30.6050396]]]]},
  1463 +"properties":{
  1464 +"gid":244,
  1465 +"name":"浙江省"}
  1466 +},
  1467 +{"type":"Feature",
  1468 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.3733673,30.5898647],[122.3718033,30.588253],[122.3662262,30.5891552],[122.3603973,30.5889091],[122.3527069,30.5898037],[122.3550797,30.5930233],[122.3547897,30.5971527],[122.3574295,30.6006012],[122.3627319,30.5992393],[122.3680496,30.5955849],[122.3733673,30.5898647]]]]},
  1469 +"properties":{
  1470 +"gid":245,
  1471 +"name":"浙江省"}
  1472 +},
  1473 +{"type":"Feature",
  1474 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.0661163,30.5885086],[122.0517731,30.5874233],[122.050499,30.5972748],[122.0651016,30.5974407],[122.0722885,30.5994701],[122.0789032,30.5941753],[122.0916367,30.5943451],[122.0806732,30.5818043],[122.0716171,30.5779514],[122.0631332,30.5777588],[122.0661163,30.5885086]]]]},
  1475 +"properties":{
  1476 +"gid":246,
  1477 +"name":"浙江省"}
  1478 +},
  1479 +{"type":"Feature",
  1480 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.3402863,30.5944805],[122.3357391,30.5913601],[122.3314972,30.5906582],[122.3230209,30.5922394],[122.3253784,30.597065],[122.340477,30.5987167],[122.3402863,30.5944805]]]]},
  1481 +"properties":{
  1482 +"gid":247,
  1483 +"name":"浙江省"}
  1484 +},
  1485 +{"type":"Feature",
  1486 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.1228485,30.587616],[122.1245117,30.5897121],[122.1272736,30.5912304],[122.1302185,30.5905991],[122.1316528,30.5886078],[122.1319809,30.586256],[122.129982,30.5855026],[122.1271667,30.5857601],[122.1248627,30.5864697],[122.1228485,30.587616]]]]},
  1487 +"properties":{
  1488 +"gid":248,
  1489 +"name":"浙江省"}
  1490 +},
  1491 +{"type":"Feature",
  1492 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.1156998,30.5807838],[121.1154327,30.5837002],[121.1184082,30.5861473],[121.1236572,30.5853825],[121.1291199,30.5835094],[121.1288528,30.5799541],[121.1264114,30.5759907],[121.1204834,30.5732574],[121.1154327,30.5750694],[121.1156998,30.5807838]]]]},
  1493 +"properties":{
  1494 +"gid":249,
  1495 +"name":"浙江省"}
  1496 +},
  1497 +{"type":"Feature",
  1498 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.3159409,30.5242119],[122.3227921,30.5186749],[122.3307495,30.5188522],[122.3396072,30.5307026],[122.3442764,30.5187664],[122.3434372,30.5130463],[122.3404312,30.5036793],[122.3311691,30.5060291],[122.3251114,30.5108757],[122.314537,30.5152931],[122.3159409,30.5242119]]]]},
  1499 +"properties":{
  1500 +"gid":250,
  1501 +"name":"浙江省"}
  1502 +},
  1503 +{"type":"Feature",
  1504 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.2599716,30.527071],[122.2716599,30.5281467],[122.2724075,30.5219612],[122.2696915,30.5146503],[122.2651672,30.5136719],[122.2577362,30.5131626],[122.2514038,30.5156727],[122.25457,30.5226746],[122.2599716,30.527071]]]]},
  1505 +"properties":{
  1506 +"gid":251,
  1507 +"name":"浙江省"}
  1508 +},
  1509 +{"type":"Feature",
  1510 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.3906326,30.4234371],[122.3945389,30.4172287],[122.3892517,30.4184093],[122.3834534,30.4223404],[122.3786469,30.4180241],[122.3735733,30.4143944],[122.3645935,30.4174309],[122.3559036,30.4227543],[122.3514404,30.4289646],[122.3442764,30.4290123],[122.3460464,30.419157],[122.3386078,30.416914],[122.3355103,30.4256344],[122.3275528,30.4243126],[122.3203964,30.4264202],[122.3189926,30.4163532],[122.3096771,30.411808],[122.3028564,30.420805],[122.2875137,30.4188938],[122.275322,30.4246349],[122.2846375,30.4286995],[122.2857819,30.4385376],[122.2773438,30.4440842],[122.2747421,30.4505119],[122.2827072,30.4525223],[122.2774429,30.4569073],[122.2841034,30.4603004],[122.276207,30.4688206],[122.2707138,30.476635],[122.2810669,30.4793243],[122.2902832,30.4703369],[122.3021469,30.4627094],[122.3093719,30.4699898],[122.3239517,30.4694405],[122.3275909,30.4600315],[122.3337173,30.4643421],[122.3463974,30.4583054],[122.3583221,30.4573116],[122.3539124,30.4683304],[122.3616104,30.4694271],[122.3694,30.4796753],[122.3788681,30.4715996],[122.3668823,30.465498],[122.3721237,30.4579086],[122.3806229,30.4599094],[122.3816071,30.4523487],[122.3996735,30.4558868],[122.4070435,30.4491978],[122.4142075,30.4502926],[122.4170532,30.4424877],[122.4324799,30.4478703],[122.4231262,30.4408417],[122.4206009,30.4300289],[122.4109421,30.4317722],[122.4084091,30.4265194],[122.4160767,30.4250927],[122.4242935,30.4232006],[122.4337692,30.417181],[122.4276123,30.411272],[122.4162216,30.411581],[122.4048462,30.4148674],[122.4001312,30.4197083],[122.3906326,30.4234371]]]]},
  1511 +"properties":{
  1512 +"gid":252,
  1513 +"name":"浙江省"}
  1514 +},
  1515 +{"type":"Feature",
  1516 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.9558868,30.4628181],[120.9581223,30.465868],[120.9626923,30.4670849],[120.9692764,30.4675426],[120.9716492,30.4629803],[120.9699783,30.4571247],[120.9655914,30.4540062],[120.9597092,30.4543839],[120.9549713,30.4578819],[120.9558868,30.4628181]]]]},
  1517 +"properties":{
  1518 +"gid":253,
  1519 +"name":"浙江省"}
  1520 +},
  1521 +{"type":"Feature",
  1522 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.4635315,30.4252071],[122.4566193,30.422739],[122.4452362,30.4253407],[122.4534988,30.4289455],[122.4562302,30.4369373],[122.4634399,30.4423809],[122.4713593,30.4386578],[122.471283,30.4304161],[122.4759827,30.4232826],[122.4806671,30.4159203],[122.4720535,30.414917],[122.4655838,30.4180946],[122.4635315,30.4252071]]]]},
  1523 +"properties":{
  1524 +"gid":254,
  1525 +"name":"浙江省"}
  1526 +},
  1527 +{"type":"Feature",
  1528 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.9302063,30.4383774],[122.9307785,30.4399261],[122.9339371,30.439209],[122.9350967,30.4379921],[122.9346085,30.436842],[122.9332733,30.435009],[122.9315414,30.4346752],[122.9301071,30.4357262],[122.9299088,30.4369907],[122.9302063,30.4383774]]]]},
  1529 +"properties":{
  1530 +"gid":255,
  1531 +"name":"浙江省"}
  1532 +},
  1533 +{"type":"Feature",
  1534 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.941658,30.4387741],[122.9427872,30.4396172],[122.9447021,30.4397163],[122.9458237,30.4383049],[122.9452362,30.4367561],[122.9432907,30.4364586],[122.9414368,30.4377842],[122.941658,30.4387741]]]]},
  1535 +"properties":{
  1536 +"gid":256,
  1537 +"name":"浙江省"}
  1538 +},
  1539 +{"type":"Feature",
  1540 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.9699783,30.3416405],[121.9714203,30.3468819],[121.980423,30.3452454],[121.9787903,30.3367786],[121.9708099,30.32971],[121.970787,30.3267345],[121.9699173,30.3225155],[121.969429,30.3200874],[121.9683685,30.3149261],[121.9707718,30.3099079],[121.9641418,30.3028126],[121.9614868,30.2992153],[121.9569397,30.2957973],[121.9502182,30.2926941],[121.9497223,30.3034248],[121.9468765,30.3096466],[121.95298,30.3136959],[121.9577408,30.3169212],[121.9556732,30.3203793],[121.956749,30.3256416],[121.9570465,30.3322792],[121.9608688,30.3334885],[121.9642105,30.3345432],[121.9705582,30.3333759],[121.9699783,30.3416405]]]]},
  1541 +"properties":{
  1542 +"gid":257,
  1543 +"name":"浙江省"}
  1544 +},
  1545 +{"type":"Feature",
  1546 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.116333,30.2686481],[122.1073608,30.2746449],[122.0939178,30.2834091],[122.0764465,30.2846317],[122.0828476,30.2912445],[122.0937424,30.2973766],[122.0850372,30.3017673],[122.0951538,30.3095036],[122.1031189,30.3142757],[122.1148071,30.3217754],[122.1222076,30.3187637],[122.1311493,30.3097916],[122.1372986,30.3175468],[122.1505432,30.3186245],[122.1619492,30.3222294],[122.1731033,30.3260651],[122.1768875,30.3368053],[122.1827316,30.3392944],[122.1855698,30.3296623],[122.2014923,30.3332405],[122.2142181,30.3359203],[122.218689,30.3310871],[122.2138596,30.3228703],[122.2201004,30.3084087],[122.2367935,30.3096905],[122.2394028,30.3034916],[122.2303619,30.2994232],[122.2162704,30.2917175],[122.2212067,30.280241],[122.2296371,30.2744694],[122.2211227,30.2687931],[122.2096863,30.261528],[122.2114487,30.2489243],[122.2185593,30.2440777],[122.2235336,30.2369499],[122.2174301,30.2351437],[122.2100372,30.2370262],[122.2028503,30.2313423],[122.2026291,30.2370663],[122.1957932,30.2412262],[122.1902771,30.2476673],[122.1765137,30.2477379],[122.153511,30.2503777],[122.1498489,30.2563477],[122.1437531,30.2552319],[122.1384888,30.2593803],[122.1313629,30.2619362],[122.116333,30.2686481]]]]},
  1547 +"properties":{
  1548 +"gid":258,
  1549 +"name":"浙江省"}
  1550 +},
  1551 +{"type":"Feature",
  1552 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.0493088,30.3035583],[122.0570831,30.3045902],[122.0684433,30.3039608],[122.0729523,30.301918],[122.0737686,30.2977905],[122.0706329,30.2936459],[122.0656281,30.2913265],[122.0534668,30.292181],[122.0502701,30.2958355],[122.0502396,30.3004265],[122.0493088,30.3035583]]]]},
  1553 +"properties":{
  1554 +"gid":259,
  1555 +"name":"浙江省"}
  1556 +},
  1557 +{"type":"Feature",
  1558 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.409317,30.2474537],[122.4074631,30.2422047],[122.3980713,30.2390728],[122.4038162,30.2349586],[122.395813,30.2315636],[122.3901825,30.2333946],[122.3878632,30.2403927],[122.381752,30.2400188],[122.3759995,30.2449398],[122.3795776,30.2511044],[122.3737106,30.2548008],[122.3782425,30.2586632],[122.3825073,30.2629852],[122.3730164,30.26717],[122.3697968,30.2612381],[122.3657303,30.2553997],[122.3550034,30.2617645],[122.3530884,30.257],[122.3556595,30.2485104],[122.3503036,30.2414474],[122.3388824,30.2369423],[122.3195496,30.2347775],[122.3137665,30.2398491],[122.3087234,30.2362194],[122.3050537,30.240591],[122.2988968,30.2323856],[122.2917862,30.2365513],[122.2822037,30.2292824],[122.2757568,30.2308884],[122.26931,30.237833],[122.2743683,30.2421532],[122.2823105,30.2425632],[122.2976837,30.2454472],[122.3112335,30.2508564],[122.3121033,30.2611561],[122.3184662,30.2627182],[122.3121872,30.2716885],[122.3241272,30.2741299],[122.3384171,30.274725],[122.346077,30.2723846],[122.3585281,30.2734509],[122.371521,30.2761116],[122.3781128,30.2728615],[122.3966675,30.2766266],[122.4071884,30.2692261],[122.4028931,30.2619286],[122.4100113,30.2602768],[122.4141998,30.2554379],[122.4220963,30.2514896],[122.4104538,30.2506561],[122.409317,30.2474537]]]]},
  1559 +"properties":{
  1560 +"gid":260,
  1561 +"name":"浙江省"}
  1562 +},
  1563 +{"type":"Feature",
  1564 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.2941971,30.2724857],[122.2986908,30.2659073],[122.3004837,30.2632885],[122.3089066,30.2588863],[122.3078232,30.2543125],[122.2995987,30.2527599],[122.2887421,30.2523689],[122.27285,30.2506332],[122.2576065,30.2398453],[122.2505417,30.2395439],[122.2511902,30.2424812],[122.2500534,30.244585],[122.25177,30.2524471],[122.2490311,30.255909],[122.252037,30.2631207],[122.2573929,30.2690449],[122.2597885,30.2686138],[122.2653427,30.2684956],[122.2693787,30.2684078],[122.2722092,30.2689552],[122.2846375,30.2681942],[122.2941971,30.2724857]]]]},
  1565 +"properties":{
  1566 +"gid":261,
  1567 +"name":"浙江省"}
  1568 +},
  1569 +{"type":"Feature",
  1570 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.4930878,30.2321892],[122.5012589,30.2293797],[122.4953232,30.2179775],[122.4844437,30.2183571],[122.4744186,30.2219467],[122.4716568,30.2330399],[122.4777908,30.236887],[122.4845886,30.2295074],[122.4930878,30.2321892]]]]},
  1571 +"properties":{
  1572 +"gid":262,
  1573 +"name":"浙江省"}
  1574 +},
  1575 +{"type":"Feature",
  1576 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.1718063,30.2179966],[122.1755676,30.2262211],[122.1713715,30.231739],[122.1764221,30.2346878],[122.1877899,30.2337132],[122.1943436,30.2247467],[122.2011566,30.2166958],[122.1933365,30.2134514],[122.1847534,30.2151814],[122.1818771,30.2204647],[122.1718063,30.2179966]]]]},
  1577 +"properties":{
  1578 +"gid":263,
  1579 +"name":"浙江省"}
  1580 +},
  1581 +{"type":"Feature",
  1582 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.5546417,30.2217789],[122.5545273,30.2232418],[122.557663,30.2241917],[122.5602493,30.2226944],[122.5594788,30.2210102],[122.5570984,30.2195797],[122.5547485,30.220314],[122.5546417,30.2217789]]]]},
  1583 +"properties":{
  1584 +"gid":264,
  1585 +"name":"浙江省"}
  1586 +},
  1587 +{"type":"Feature",
  1588 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.1196671,30.2148228],[122.1241913,30.2182369],[122.1300507,30.2237034],[122.13797,30.2220631],[122.144577,30.2206535],[122.1413727,30.2151756],[122.1323471,30.212244],[122.1180496,30.2091084],[122.1196671,30.2148228]]]]},
  1589 +"properties":{
  1590 +"gid":265,
  1591 +"name":"浙江省"}
  1592 +},
  1593 +{"type":"Feature",
  1594 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.6366196,30.1989574],[122.63591,30.2062912],[122.6381226,30.2145157],[122.6444397,30.2117119],[122.6443481,30.2036991],[122.649231,30.1922073],[122.6465836,30.1873264],[122.64077,30.1922817],[122.6366196,30.1989574]]]]},
  1595 +"properties":{
  1596 +"gid":266,
  1597 +"name":"浙江省"}
  1598 +},
  1599 +{"type":"Feature",
  1600 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.592247,30.2125301],[122.5942383,30.2140236],[122.5976105,30.2142086],[122.5992813,30.2103233],[122.5969009,30.2088966],[122.593277,30.2094746],[122.5927734,30.2110043],[122.592247,30.2125301]]]]},
  1601 +"properties":{
  1602 +"gid":267,
  1603 +"name":"浙江省"}
  1604 +},
  1605 +{"type":"Feature",
  1606 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.6814575,30.1910133],[122.6740265,30.1913147],[122.6704025,30.1966305],[122.6702728,30.2039261],[122.6690826,30.2080803],[122.6708832,30.2110195],[122.6750183,30.2103806],[122.6792984,30.2070522],[122.6863708,30.2012615],[122.6894913,30.1935692],[122.6897888,30.1837616],[122.6855164,30.1797142],[122.6827469,30.1810455],[122.6822205,30.1849747],[122.6814575,30.1910133]]]]},
  1607 +"properties":{
  1608 +"gid":268,
  1609 +"name":"浙江省"}
  1610 +},
  1611 +{"type":"Feature",
  1612 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.703949,30.2007122],[122.7039871,30.2024822],[122.702713,30.2044601],[122.7038498,30.2066441],[122.7073288,30.2069721],[122.7133484,30.2000904],[122.7151718,30.1974297],[122.7153168,30.1965218],[122.7121429,30.1976204],[122.7100372,30.1973686],[122.709137,30.1963272],[122.7108994,30.1933861],[122.7130508,30.1906719],[122.7130432,30.1874218],[122.710762,30.1863098],[122.7084274,30.1881618],[122.7052078,30.1922302],[122.7023468,30.1980114],[122.7020035,30.1995449],[122.703949,30.2007122]]]]},
  1613 +"properties":{
  1614 +"gid":269,
  1615 +"name":"浙江省"}
  1616 +},
  1617 +{"type":"Feature",
  1618 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.5834427,30.2023621],[122.5831528,30.2049408],[122.5867462,30.2061749],[122.5904465,30.2059479],[122.5911407,30.2033043],[122.5898132,30.200983],[122.5870285,30.1996212],[122.5834427,30.1983852],[122.5821228,30.2000408],[122.5834427,30.2023621]]]]},
  1619 +"properties":{
  1620 +"gid":270,
  1621 +"name":"浙江省"}
  1622 +},
  1623 +{"type":"Feature",
  1624 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.0258102,30.1742573],[122.0211029,30.1834335],[122.0070724,30.1814289],[122.0079117,30.1901283],[122.0200729,30.1893902],[122.0182724,30.198328],[122.0270081,30.1996689],[122.0312119,30.1946125],[122.0381393,30.2041988],[122.0489578,30.1995754],[122.0589523,30.1906013],[122.0520477,30.1851368],[122.0430069,30.1764736],[122.0302734,30.1678257],[122.0173035,30.1669636],[122.0258102,30.1742573]]]]},
  1625 +"properties":{
  1626 +"gid":271,
  1627 +"name":"浙江省"}
  1628 +},
  1629 +{"type":"Feature",
  1630 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.2120895,30.1928234],[122.207283,30.1871262],[122.1993332,30.1841908],[122.1987686,30.1798439],[122.1987305,30.1741199],[122.1862869,30.1732712],[122.1796722,30.1710167],[122.1782608,30.1586571],[122.1689835,30.154356],[122.1638718,30.1429329],[122.1548996,30.1448135],[122.1483307,30.1501122],[122.1412735,30.1629696],[122.1381302,30.1664181],[122.1379089,30.1735191],[122.1382217,30.1808453],[122.1411972,30.1911354],[122.1496735,30.1910915],[122.1581879,30.1995201],[122.1672134,30.2031384],[122.1700592,30.1957951],[122.1798477,30.1962032],[122.1885834,30.1961575],[122.1858826,30.1888428],[122.2020416,30.1933365],[122.2120895,30.1928234]]]]},
  1631 +"properties":{
  1632 +"gid":272,
  1633 +"name":"浙江省"}
  1634 +},
  1635 +{"type":"Feature",
  1636 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.9757233,30.1522427],[121.9820633,30.1497002],[121.9836731,30.156105],[121.9976273,30.1466618],[122.006897,30.1507473],[122.0077286,30.1564674],[122.0272064,30.1417351],[122.0369873,30.141695],[122.0539169,30.1439133],[122.0623932,30.1468544],[122.0658569,30.1516457],[122.0735168,30.1504669],[122.083847,30.1536255],[122.0955276,30.1604424],[122.0962601,30.1517372],[122.1044388,30.1491814],[122.1121063,30.1509762],[122.1109695,30.1408348],[122.1228638,30.1371841],[122.1330719,30.1215668],[122.1438522,30.1144123],[122.1557236,30.1102333],[122.1602783,30.120285],[122.1678925,30.1133766],[122.1774216,30.115387],[122.1839066,30.0990944],[122.1762085,30.0931835],[122.1856766,30.0871792],[122.1964569,30.081625],[122.2046738,30.0831833],[122.2031708,30.0955563],[122.2131729,30.0906925],[122.2187805,30.0989056],[122.228302,30.0997677],[122.2253265,30.0917702],[122.2368469,30.0784245],[122.2439728,30.0767803],[122.2527008,30.0781021],[122.2484283,30.072176],[122.2510071,30.0639172],[122.2573471,30.0645676],[122.255722,30.0588512],[122.2694397,30.0576267],[122.2716064,30.0644817],[122.282692,30.0628128],[122.2881927,30.0572834],[122.2973938,30.0517311],[122.3002396,30.0457611],[122.3072968,30.036787],[122.3191528,30.0339642],[122.3185577,30.0261822],[122.3232574,30.0195122],[122.3359833,30.0249252],[122.3398514,30.0152836],[122.3303604,30.0167198],[122.3240433,29.9968681],[122.3139572,29.9855404],[122.3059921,29.9713249],[122.3082199,29.9586964],[122.3155136,29.9478893],[122.3023071,29.946825],[122.2830429,29.9446545],[122.2656479,29.9470501],[122.2535934,29.9560509],[122.235733,29.967144],[122.2302475,29.9742756],[122.2183533,29.9722805],[122.2057266,29.9778442],[122.1925735,29.9820385],[122.1897964,29.9887218],[122.1825714,29.9862137],[122.17733,29.9919662],[122.1639099,29.9975319],[122.1491165,29.9955463],[122.1335373,29.9953938],[122.1182175,29.9924927],[122.1098175,29.9994011],[122.1009216,30.0113525],[122.0753174,30.0121555],[122.0615921,30.0119877],[122.0517883,30.0063076],[122.0443726,30.0013008],[122.0308838,29.9974632],[122.0192871,30.0000286],[122.0175018,30.0105705],[122.0127869,30.0183754],[122.0049286,30.029398],[121.9985809,30.0379353],[121.9975891,30.0392704],[121.9881363,30.0491543],[121.97995,30.0496426],[121.9749985,30.0618],[121.9793396,30.0712757],[121.9803391,30.0734539],[121.9856567,30.0796185],[121.9833069,30.0860386],[121.9823074,30.0963459],[121.9820938,30.1068802],[121.9702682,30.1195164],[121.9724121,30.1254635],[121.9642868,30.1378574],[121.9563904,30.1447544],[121.9481964,30.1445541],[121.945343,30.1541824],[121.9368973,30.1587906],[121.9319,30.1643047],[121.9343185,30.1734543],[121.9446335,30.1720467],[121.9417419,30.1780071],[121.9465408,30.1855469],[121.9618378,30.1777096],[121.9734421,30.1719418],[121.9710236,30.1632481],[121.9757233,30.1522427]]]]},
  1637 +"properties":{
  1638 +"gid":273,
  1639 +"name":"浙江省"}
  1640 +},
  1641 +{"type":"Feature",
  1642 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.9441605,30.1731491],[122.9441071,30.1767292],[122.9467163,30.1773758],[122.9508591,30.1756287],[122.9519272,30.1729546],[122.9494934,30.1712074],[122.9458466,30.1714439],[122.9448776,30.1726723],[122.9441605,30.1731491]]]]},
  1643 +"properties":{
  1644 +"gid":274,
  1645 +"name":"浙江省"}
  1646 +},
  1647 +{"type":"Feature",
  1648 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.9427185,30.1683807],[122.9453964,30.1693726],[122.9484329,30.1681671],[122.9505234,30.1663971],[122.9494934,30.1654911],[122.9477768,30.163269],[122.9442825,30.164196],[122.941803,30.166029],[122.9427185,30.1683807]]]]},
  1649 +"properties":{
  1650 +"gid":275,
  1651 +"name":"浙江省"}
  1652 +},
  1653 +{"type":"Feature",
  1654 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.8699875,30.1609077],[122.870903,30.1632595],[122.8749466,30.162962],[122.8752213,30.1604156],[122.875,30.1593819],[122.8727188,30.1583214],[122.8695374,30.1588364],[122.8693619,30.1599369],[122.8699875,30.1609077]]]]},
  1655 +"properties":{
  1656 +"gid":276,
  1657 +"name":"浙江省"}
  1658 +},
  1659 +{"type":"Feature",
  1660 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.7838516,30.129631],[122.7771835,30.1282749],[122.7684708,30.1288166],[122.7607574,30.125],[122.7552872,30.131464],[122.7503662,30.1399822],[122.7557373,30.1454258],[122.7649536,30.1423607],[122.7723465,30.1420593],[122.7743683,30.13517],[122.7838516,30.129631]]]]},
  1661 +"properties":{
  1662 +"gid":277,
  1663 +"name":"浙江省"}
  1664 +},
  1665 +{"type":"Feature",
  1666 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.2695236,30.0150585],[111.2882309,30.0127201],[111.2935715,29.9903965],[111.3167114,29.9730816],[111.323967,29.9791641],[111.3376923,29.9541893],[111.3454285,29.9455872],[111.3712387,29.9550533],[111.3867264,29.9146824],[111.4073105,29.9150486],[111.4336014,29.9341297],[111.4440231,29.9282322],[111.5196075,29.9297733],[111.5334396,29.8999538],[111.5637436,29.8980694],[111.6937103,29.8899899],[111.7414398,29.9205608],[111.7545471,29.9107666],[111.7919693,29.9089298],[111.8018723,29.8940639],[111.894577,29.8585758],[111.9306335,29.8356209],[111.9544601,29.8392792],[111.9485779,29.8072796],[112.0378571,29.757534],[112.0605011,29.7476616],[112.0495071,29.7687645],[112.0585938,29.7731667],[112.0723114,29.7440567],[112.0585938,29.6876659],[112.0956573,29.6770248],[112.1261902,29.6595688],[112.1749802,29.6626549],[112.1913528,29.6290359],[112.2392883,29.6645145],[112.2389069,29.6608505],[112.235939,29.6184959],[112.2915802,29.5968437],[112.2975464,29.5854702],[112.2904129,29.5500755],[112.2724991,29.523407],[112.2822571,29.4988747],[112.2861633,29.5108566],[112.3158188,29.5215168],[112.3222198,29.5462894],[112.3598633,29.5390072],[112.3802109,29.5506954],[112.4197388,29.6030006],[112.423172,29.6281548],[112.4431381,29.6352577],[112.4854584,29.6335602],[112.4996033,29.615097],[112.5304871,29.6026497],[112.5641327,29.6247692],[112.6016235,29.6128311],[112.6256714,29.6161327],[112.6406326,29.5918961],[112.6622772,29.6014462],[112.6781693,29.5969105],[112.7072906,29.6475639],[112.7509308,29.6608906],[112.7877502,29.6968708],[112.7803268,29.7179451],[112.8000565,29.7389946],[112.8491898,29.7804508],[112.8815308,29.7997761],[112.8940735,29.7966824],[112.9192429,29.736124],[112.9178925,29.697752],[112.9320831,29.6895618],[112.989769,29.7477245],[113.0066986,29.770195],[113.0215683,29.772995],[113.0160599,29.7183132],[112.9915466,29.6883812],[112.9060364,29.6331367],[112.9128418,29.5917625],[112.9332428,29.4893417],[112.9529572,29.471632],[112.9822388,29.4895649],[113.0059433,29.5023251],[113.033493,29.5127163],[113.0524216,29.5032368],[113.062233,29.4873562],[113.0565872,29.4567738],[113.0660934,29.4372311],[113.0733871,29.4321423],[113.0834122,29.4321423],[113.0979919,29.4339657],[113.1153107,29.4385223],[113.1317215,29.443079],[113.1592636,29.4685097],[113.2138214,29.5446911],[113.260788,29.5875816],[113.3142166,29.6429768],[113.3540421,29.6854954],[113.4161835,29.7476044],[113.4612427,29.7783241],[113.4899292,29.7933636],[113.5181885,29.8250561],[113.5651398,29.8492603],[113.5739822,29.8340588],[113.5561829,29.819025],[113.5436935,29.6824188],[113.5501938,29.6741791],[113.5952377,29.6714897],[113.6333389,29.6695652],[113.6595306,29.6840801],[113.6637268,29.6421795],[113.6971207,29.6353397],[113.6983032,29.6146469],[113.7142563,29.6125088],[113.7334671,29.5948906],[113.730423,29.5798454],[113.7077332,29.5725708],[113.7010498,29.5585632],[113.6261978,29.5256882],[113.6316376,29.5117435],[113.6705475,29.5192528],[113.734108,29.4703217],[113.7450409,29.4504452],[113.7328568,29.4074783],[113.721077,29.3966255],[113.6573563,29.3813019],[113.6567078,29.3427639],[113.6256638,29.3171635],[113.5966415,29.2595901],[113.6310425,29.2543354],[113.6420898,29.23699],[113.6889572,29.2352104],[113.6904678,29.2041779],[113.653183,29.1732826],[113.6491394,29.1587276],[113.6825867,29.120903],[113.6811218,29.0879021],[113.7195435,29.1095695],[113.73423,29.0631771],[113.7666168,29.0962772],[113.811348,29.1064606],[113.8269806,29.0988083],[113.8436127,29.0615158],[113.8725662,29.0708408],[113.8715897,29.0380535],[113.900032,29.0361443],[113.9401321,29.0482807],[113.9550171,29.0029964],[113.9580231,28.949646],[113.9708328,28.9439106],[114.0007172,28.9569263],[114.0185776,28.9056492],[114.0584106,28.8976822],[114.051918,28.8687706],[114.0642776,28.8444386],[114.083107,28.838232],[114.116333,28.8428593],[114.1395111,28.8326702],[114.145401,28.8179665],[114.1311111,28.7878666],[114.1456909,28.7714081],[114.1378632,28.7140064],[114.1218109,28.6886616],[114.1226273,28.6077099],[114.0777435,28.5583878],[114.0883179,28.5436268],[114.1229935,28.5370674],[114.1482773,28.5076866],[114.2080307,28.4870815],[114.2074966,28.4698582],[114.1699219,28.4375687],[114.1950378,28.4285908],[114.2174835,28.4036865],[114.2499466,28.3983936],[114.2539291,28.3849983],[114.2476273,28.3274345],[114.198143,28.2954292],[114.1747665,28.2604313],[114.1391525,28.2499924],[114.0899963,28.1890564],[114.0343628,28.1803894],[113.9998474,28.1889973],[113.9877472,28.1772614],[113.9912262,28.1518955],[114.0094376,28.1358967],[114.0167007,28.1079502],[114.0345001,28.0874977],[114.0347137,28.0661755],[114.0233536,28.0485573],[113.9998398,28.0543098],[113.9534836,28.0433369],[113.9556503,28.0230675],[113.9259415,28.019537],[113.9183273,28.0004444],[113.8710632,27.9946804],[113.8606186,28.0135784],[113.8530197,28.0117779],[113.8404999,27.9820385],[113.8000488,27.9800873],[113.767189,27.9541531],[113.7271729,27.8895226],[113.7312927,27.8738594],[113.7537766,27.8586369],[113.7617188,27.8114777],[113.6959229,27.7481041],[113.6908112,27.7222347],[113.6466827,27.6670399],[113.6061172,27.6365738],[113.5962906,27.5894146],[113.5734024,27.5486145],[113.5779572,27.5281258],[113.6218414,27.513567],[113.6037674,27.4825783],[113.5863037,27.4710922],[113.5923462,27.4322205],[113.6025467,27.4242191],[113.6255264,27.4132004],[113.59729,27.3892269],[113.61129,27.3488731],[113.6392136,27.3537941],[113.673912,27.3349724],[113.6942673,27.335392],[113.717247,27.3523026],[113.7352524,27.3506794],[113.7574005,27.364151],[113.8208694,27.3683128],[113.8673782,27.3883057],[113.8676834,27.3501911],[113.8493729,27.308672],[113.867363,27.2934875],[113.8477707,27.2382088],[113.7695618,27.1280537],[113.7697067,27.0942059],[113.7827377,27.0898914],[113.8022308,27.101099],[113.8155136,27.0412102],[113.8377609,27.035841],[113.8428574,27.020153],[113.8610992,27.0198879],[113.8662491,26.9936371],[113.8873367,26.968298],[113.9162369,26.9621296],[113.9228897,26.9480228],[113.9028473,26.9340839],[113.8831177,26.8693905],[113.8347397,26.8074036],[113.8474503,26.7746105],[113.8575211,26.7512703],[113.8631668,26.657259],[113.9064789,26.6189575],[113.9350586,26.6139355],[113.9754181,26.6222782],[113.9955063,26.6155357],[114.0280228,26.5853443],[114.0997696,26.5805016],[114.0695801,26.4964218],[114.0754166,26.4846039],[114.0947266,26.4796352],[114.0787125,26.451725],[114.0818863,26.4149475],[114.0554886,26.4106464],[114.0285416,26.3840904],[114.0177231,26.3475838],[114.0311737,26.3129025],[113.9957809,26.2478256],[113.9650726,26.2439384],[113.963501,26.2030773],[113.940567,26.1914845],[113.9445801,26.1751156],[113.9362869,26.1688099],[113.9553833,26.1535892],[113.9681473,26.1545429],[114.0005417,26.1842136],[114.0351334,26.191431],[114.0585632,26.169632],[114.0786133,26.1660233],[114.1014023,26.1910458],[114.1676865,26.212204],[114.1799088,26.2011681],[114.2059479,26.2024708],[114.2183838,26.1900501],[114.2133102,26.171566],[114.2278976,26.1540527],[114.1946411,26.1288071],[114.102562,26.1035881],[114.1125565,26.085947],[114.0933609,26.071413],[114.0400085,26.0763626],[114.005127,26.0123215],[114.0185623,25.9886551],[114.0152588,25.9781628],[114.0257111,25.9260941],[114.0166779,25.899189],[113.9646072,25.8346348],[113.9530411,25.7764702],[113.9146423,25.7363987],[113.9120636,25.7079544],[113.9445801,25.6167297],[113.9717712,25.6052856],[113.9856262,25.5621166],[113.9771271,25.5296307],[113.9559784,25.525135],[113.9373627,25.4808598],[113.9571686,25.4692993],[113.9592133,25.4573231],[113.9347076,25.4358788],[113.8837738,25.4364166],[113.8776321,25.3937836],[113.8656464,25.3767357],[113.8324432,25.3613739],[113.8256836,25.338501],[113.8120728,25.3281326],[113.7621689,25.3281555],[113.7548828,25.3592663],[113.7453232,25.3630753],[113.7268066,25.348402],[113.7148209,25.3575249],[113.682251,25.3494701],[113.6710434,25.3305569],[113.6396866,25.3339615],[113.6179276,25.3202362],[113.5737534,25.3134575],[113.5684891,25.3191299],[113.5764923,25.3414421],[113.5348434,25.3658581],[113.5168762,25.3511505],[113.5010223,25.3740845],[113.4673233,25.3731155],[113.4382629,25.3617458],[113.4126434,25.3928261],[113.3917465,25.4024849],[113.3646088,25.4007263],[113.3509827,25.4392357],[113.317482,25.4549961],[113.3021622,25.4471245],[113.3082428,25.4824295],[113.2929993,25.4989033],[113.2940369,25.5186443],[113.2846298,25.5171375],[113.2757568,25.4995461],[113.2272797,25.5152149],[113.1893234,25.4836769],[113.1541367,25.4879322],[113.1235428,25.4546947],[113.1227493,25.4122143],[113.095192,25.4172993],[113.0792999,25.3823071],[113.0411682,25.3711739],[113.0150604,25.3484383],[112.9799118,25.3537998],[112.9610291,25.3408718],[112.9394836,25.3392143],[112.9203568,25.3040028],[112.8965836,25.306263],[112.8855286,25.3387375],[112.8666382,25.324646],[112.8527603,25.3293476],[112.8625488,25.2477379],[112.8953476,25.2385197],[112.9739838,25.2544022],[113.0238037,25.20895],[113.0256271,25.1921673],[112.9811707,25.1751022],[112.960228,25.1571388],[112.9637833,25.1359787],[113.0089035,25.0795479],[112.9970093,25.0566864],[112.9723969,25.0479431],[112.9686966,25.034193],[112.9801483,25.0187073],[112.977417,25.0001278],[113.002327,24.9923325],[113.0032578,24.9638462],[113.0018921,24.9326229],[112.9881287,24.9212608],[112.8909531,24.919548],[112.8553772,24.8968639],[112.7739487,24.8969707],[112.7753067,24.9411011],[112.7373962,24.9620399],[112.7352295,25.0006371],[112.697937,25.0105381],[112.7006989,25.0362396],[112.7173462,25.0604725],[112.6868362,25.0974236],[112.6651764,25.1062927],[112.651001,25.1316471],[112.5354233,25.1270523],[112.4817505,25.1514549],[112.4561996,25.1497459],[112.4389801,25.1824455],[112.4139633,25.1474247],[112.3979874,25.1415291],[112.385643,25.1470966],[112.3563385,25.1926994],[112.3061371,25.1733837],[112.2903671,25.1569099],[112.2724686,25.1663933],[112.2471466,25.1621227],[112.1998062,25.2020149],[112.1807632,25.1839294],[112.1554718,25.0733089],[112.141243,25.0533695],[112.1448822,25.0195999],[112.1129303,24.9893723],[112.1088028,24.966877],[112.1601334,24.9293003],[112.1670532,24.9156494],[112.149292,24.8154259],[112.13591,24.8108692],[112.118103,24.8350315],[112.0976562,24.8318691],[112.0771332,24.803442],[112.0296173,24.770937],[112.0159073,24.7399616],[111.9557724,24.7706089],[111.9330673,24.7600784],[111.8985519,24.7665501],[111.8677902,24.7587738],[111.863533,24.7748528],[111.8433838,24.7790012],[111.8030396,24.7739735],[111.7692871,24.7896004],[111.7314606,24.7755947],[111.7002106,24.7856941],[111.6762619,24.77742],[111.6371918,24.7330761],[111.6339111,24.6839294],[111.5885696,24.6960602],[111.5613937,24.6411457],[111.5437698,24.6459446],[111.5198593,24.6341991],[111.5120468,24.6392384],[111.4926376,24.664238],[111.46418,24.664875],[111.4324417,24.6710091],[111.4225922,24.6863728],[111.448967,24.7270756],[111.4740829,24.8003826],[111.4439774,24.8598022],[111.4560623,24.8804951],[111.441658,24.895853],[111.4630814,24.9163342],[111.4648209,24.9317245],[111.434761,24.9472809],[111.4253769,24.9697666],[111.43293,24.9870071],[111.4594269,24.9985447],[111.4598923,25.0265617],[111.4338684,25.0301838],[111.4128799,25.0441475],[111.413353,25.0682621],[111.4312286,25.1011429],[111.4023972,25.1056709],[111.3897171,25.131134],[111.3697433,25.1313133],[111.3571701,25.1041794],[111.3382263,25.0972385],[111.301033,25.111599],[111.2759171,25.1418362],[111.2630234,25.1456966],[111.18013,25.0670834],[111.1521072,25.059164],[111.136261,25.0423336],[111.0938721,25.0313549],[111.0973129,24.9976101],[111.085701,24.9403725],[110.9916534,24.9226894],[110.9798431,24.9591427],[110.9523392,25.0005627],[110.942009,25.040926],[110.9516373,25.0777245],[110.9715195,25.0945988],[110.9718933,25.1198616],[110.9923935,25.1606216],[111.0600433,25.1882877],[111.0988617,25.216486],[111.1043625,25.2305183],[111.0919876,25.281908],[111.1349106,25.3075886],[111.1711731,25.3587227],[111.2005463,25.3602142],[111.2308884,25.3791561],[111.2558517,25.4166775],[111.2912369,25.4443512],[111.2969818,25.4783611],[111.3222122,25.526207],[111.3109665,25.5597057],[111.3339386,25.6061649],[111.3038864,25.6416759],[111.3085938,25.6855564],[111.3014526,25.6986256],[111.2976074,25.710556],[111.3117828,25.7305794],[111.3824005,25.7365131],[111.410553,25.7710304],[111.4346924,25.7724609],[111.4195786,25.8362751],[111.4513779,25.8510208],[111.4826202,25.8600559],[111.4843826,25.8738403],[111.4495392,25.8698692],[111.4472198,25.889616],[111.4271317,25.880846],[111.4029465,25.8860741],[111.3772583,25.8844051],[111.3639984,25.9004478],[111.325058,25.9019489],[111.2925491,25.8816414],[111.2870102,25.8598061],[111.2766037,25.8547211],[111.2455368,25.8633461],[111.2154007,25.8979187],[111.2171097,25.919054],[111.1933136,25.9559402],[111.1952286,25.9869537],[111.2126236,26.0386925],[111.2479706,26.0576477],[111.2437973,26.0840435],[111.2668762,26.1213264],[111.2484436,26.1492825],[111.2654266,26.1775856],[111.2571564,26.2120075],[111.2821198,26.227705],[111.2817764,26.2548008],[111.2598038,26.266901],[111.1977692,26.26898],[111.1890106,26.289156],[111.1611176,26.3067322],[111.0929489,26.3057537],[111.0698929,26.3233337],[111.0387573,26.3174438],[111.0146866,26.3304176],[110.9925079,26.3236446],[110.9892502,26.3585339],[110.9770966,26.3846493],[110.9586868,26.3863907],[110.9378128,26.3759422],[110.941597,26.3385296],[110.9228134,26.3193645],[110.93293,26.2923222],[110.9150085,26.2589226],[110.8937073,26.2767124],[110.8508606,26.2716331],[110.8317871,26.259573],[110.7837982,26.2617912],[110.7565536,26.2524223],[110.727562,26.2726631],[110.7455063,26.2971306],[110.7369232,26.3172817],[110.7061996,26.295248],[110.676651,26.3186893],[110.6304703,26.3139801],[110.612648,26.3374958],[110.5810089,26.3048668],[110.5701218,26.2664261],[110.5377121,26.2657013],[110.5408173,26.2324276],[110.5129013,26.1901665],[110.4858093,26.1688042],[110.4693527,26.1833591],[110.4331436,26.1570873],[110.3685532,26.0921822],[110.3208618,25.9787254],[110.2769318,25.9684124],[110.2435837,25.9682999],[110.2406235,26.0254574],[110.2074966,26.0462418],[110.1919098,26.0713406],[110.1769714,26.0635986],[110.1507492,26.0210533],[110.110527,26.038063],[110.0931473,26.0224762],[110.0601425,26.0531044],[110.070137,26.1069641],[110.087059,26.1381645],[110.0812836,26.1711693],[110.0468292,26.1723804],[110.0227737,26.1594639],[110.0037994,26.1851902],[109.9798508,26.1832962],[109.9617691,26.1989212],[109.9028091,26.1483459],[109.8955994,26.1011715],[109.8812866,26.0867481],[109.8644867,26.0341644],[109.8357162,26.0324097],[109.8100662,26.0442448],[109.7974167,26.0376434],[109.77771,25.9953442],[109.8019333,25.9768372],[109.8214722,25.9146233],[109.8016663,25.8780689],[109.7745972,25.8689747],[109.7573624,25.8809147],[109.7424164,25.8926506],[109.6570663,25.8836384],[109.6858673,25.9577789],[109.7066116,25.966341],[109.7179871,25.987402],[109.7000427,26.0105782],[109.647438,26.017868],[109.6362228,26.0489426],[109.6148834,26.045414],[109.5938034,26.0260391],[109.5467377,26.0223465],[109.5242233,25.9990349],[109.5086517,26.0013237],[109.4780197,26.032774],[109.4633865,26.08078],[109.5003815,26.1066227],[109.5054779,26.1209412],[109.495079,26.1462765],[109.466568,26.157547],[109.4637222,26.1735802],[109.4434967,26.1909466],[109.4657974,26.1995659],[109.4476929,26.2128334],[109.4348984,26.2420292],[109.451683,26.2702732],[109.4525833,26.2792892],[109.476059,26.2943573],[109.4588165,26.3149872],[109.4438171,26.3115368],[109.446022,26.2890625],[109.4244766,26.2944622],[109.3647385,26.2804031],[109.3373795,26.2562962],[109.3337784,26.2709351],[109.2842789,26.2949104],[109.2678604,26.3371239],[109.2902985,26.3519745],[109.3222122,26.4312916],[109.376152,26.4579029],[109.3576584,26.4755154],[109.3807831,26.4967937],[109.3769836,26.5217648],[109.3995438,26.5329247],[109.4030533,26.5499763],[109.395813,26.5673141],[109.3746796,26.5747814],[109.3739624,26.6257553],[109.3562393,26.6415424],[109.3520279,26.6607647],[109.3294525,26.6495991],[109.306427,26.6611576],[109.2824783,26.6931381],[109.2845535,26.7046547],[109.3572006,26.6978245],[109.3812103,26.7154388],[109.3765564,26.7307529],[109.4076996,26.7239056],[109.4129715,26.7430496],[109.4492264,26.7645245],[109.4930878,26.7635994],[109.5000305,26.7480907],[109.5074081,26.7511902],[109.5129776,26.7834244],[109.4919968,26.8228321],[109.5085526,26.8437538],[109.5092163,26.8777504],[109.4888306,26.884325],[109.4772415,26.9004517],[109.4451828,26.8717041],[109.4318237,26.886879],[109.4972534,26.9294643],[109.5257187,26.9310474],[109.550209,26.9541492],[109.5415115,26.9811153],[109.525032,26.9833927],[109.5344467,27.0028248],[109.5151367,27.0337601],[109.5071716,27.0761166],[109.4965973,27.0782509],[109.4699326,27.0603886],[109.4572067,27.0673084],[109.4543533,27.083107],[109.4679871,27.1381969],[109.4528427,27.1365852],[109.4361496,27.121397],[109.3998795,27.1628399],[109.2760162,27.1304951],[109.2631226,27.1323433],[109.2435989,27.1568108],[109.191391,27.0945988],[109.1591568,27.0745163],[109.1000137,27.075983],[109.1036301,27.0985527],[109.1288986,27.1192131],[109.126442,27.1260586],[109.0824127,27.1169987],[109.0168228,27.0942039],[108.9483414,27.0536442],[108.9339905,27.0180035],[108.9028473,27.0203876],[108.8678589,27.000412],[108.8333588,27.0573711],[108.7966537,27.0770741],[108.7831116,27.0836887],[108.7920837,27.095583],[108.8260269,27.0948868],[108.8510437,27.114212],[108.8760071,27.1126366],[108.8813095,27.1278973],[108.9148636,27.1673565],[108.8970566,27.2133961],[109.0531464,27.2895947],[109.0458298,27.3408909],[109.0864868,27.3432426],[109.1046829,27.359642],[109.1126404,27.3969803],[109.1302719,27.4163513],[109.1254196,27.4380741],[109.1424637,27.449398],[109.1544571,27.4429531],[109.1516037,27.419714],[109.2032166,27.4536762],[109.2366104,27.4351959],[109.2410202,27.4214954],[109.2896423,27.4266796],[109.3023071,27.4376812],[109.3019028,27.4840488],[109.3832932,27.5443783],[109.4045105,27.5548191],[109.428833,27.5515327],[109.4497604,27.5777988],[109.4626999,27.6319466],[109.4451294,27.6872234],[109.4234772,27.7114429],[109.4326935,27.7437229],[109.3772278,27.737793],[109.3421478,27.7732601],[109.3119202,27.7847004],[109.3257675,27.8039799],[109.3205872,27.8172054],[109.3315887,27.8366661],[109.3221436,27.8695621],[109.307869,27.8842449],[109.3180084,27.9080524],[109.3065338,27.9250755],[109.3015289,27.9681396],[109.3205872,28.0009441],[109.3731232,28.0326595],[109.3604584,28.0544415],[109.3392334,28.0643024],[109.3140869,28.0443516],[109.2964783,28.0468674],[109.2993469,28.0764465],[109.3393326,28.156929],[109.3370209,28.1816921],[109.3581238,28.2493324],[109.3783875,28.2727146],[109.3690491,28.2766151],[109.348793,28.2646942],[109.3433838,28.2963371],[109.2948227,28.2793598],[109.2674637,28.3193302],[109.2673111,28.3286572],[109.2665634,28.3391628],[109.2710571,28.3459148],[109.2778168,28.3511677],[109.2823181,28.3564205],[109.2845688,28.3624229],[109.2838211,28.3654232],[109.2770615,28.3699265],[109.2718124,28.3736782],[109.2710571,28.3766785],[109.2695618,28.3804302],[109.2620468,28.384182],[109.2583084,28.392437],[109.2560577,28.4021912],[109.2545471,28.4089432],[109.2542572,28.4266186],[109.2545471,28.4374561],[109.2545471,28.4487114],[109.2553024,28.4607162],[109.2583084,28.4682198],[109.2643127,28.472723],[109.2680588,28.4802265],[109.2710571,28.4869785],[109.2710571,28.492981],[109.2698975,28.5022907],[109.2733612,28.5088158],[109.2738266,28.5162163],[109.2729034,28.5226917],[109.2710495,28.5277805],[109.2710495,28.5314808],[109.2740631,28.5342503],[109.27845,28.5365696],[109.2830734,28.5407314],[109.2858505,28.549057],[109.2886276,28.5555344],[109.2913208,28.5627632],[109.2974167,28.5689468],[109.3048172,28.5721855],[109.3126831,28.5731106],[109.3158264,28.5936604],[109.2864227,28.6204796],[109.2470932,28.6076126],[109.2246933,28.6144714],[109.1960373,28.6025143],[109.1796265,28.6235924],[109.2121811,28.6483974],[109.2648163,28.6688557],[109.2491913,28.6942997],[109.2906494,28.7161121],[109.2997513,28.7368641],[109.2851562,28.7542839],[109.2559586,28.7636662],[109.2558365,28.7663708],[109.2442474,28.771122],[109.2377167,28.7800598],[109.2432098,28.8114815],[109.231987,28.8788967],[109.2536774,28.9539089],[109.2861099,28.9860382],[109.2913589,29.0195236],[109.3156967,29.0472832],[109.3002777,29.0649376],[109.2246704,29.0935535],[109.2285995,29.1224556],[109.2414474,29.1156597],[109.2519226,29.1216278],[109.257431,29.166584],[109.268692,29.1732407],[109.2687073,29.2032852],[109.2537766,29.2268982],[109.3387222,29.2702732],[109.3401413,29.3679733],[109.3789291,29.3855152],[109.3733292,29.3962498],[109.3644638,29.406517],[109.3672638,29.4200516],[109.3728638,29.4261189],[109.3793869,29.4312534],[109.3845291,29.4340534],[109.3905869,29.433588],[109.401329,29.4293861],[109.4027328,29.433588],[109.4008636,29.4368553],[109.3999329,29.441988],[109.4045868,29.4443226],[109.4111328,29.4443226],[109.4134674,29.4461899],[109.407402,29.4541225],[109.4036636,29.4606571],[109.4004593,29.4681187],[109.406929,29.4741936],[109.4092636,29.4797935],[109.4092636,29.4933281],[109.4148636,29.4947281],[109.4199982,29.4937954],[109.4265366,29.4900608],[109.4311981,29.4849281],[109.4358673,29.4844608],[109.4368134,29.4877281],[109.4363327,29.4909954],[109.4326019,29.4979954],[109.4307327,29.5021973],[109.4302673,29.50453],[109.427002,29.5110645],[109.4255981,29.5171318],[109.4265366,29.5231991],[109.4279327,29.5255337],[109.4307327,29.5264664],[109.4372711,29.5250664],[109.4414673,29.5208664],[109.4461365,29.5143318],[109.4517365,29.5101299],[109.4573364,29.5091972],[109.4601364,29.5119972],[109.4587402,29.5208664],[109.456871,29.5241318],[109.4564133,29.5297337],[109.456871,29.5395355],[109.4578018,29.5470028],[109.4620132,29.5549374],[109.4910126,29.5699463],[109.4984665,29.608696],[109.5100479,29.6066189],[109.5145569,29.6217499],[109.5600281,29.6109047],[109.5764008,29.6299095],[109.602211,29.6369724],[109.6453171,29.626791],[109.6567688,29.5992432],[109.7025909,29.6110497],[109.7147064,29.6165218],[109.7075272,29.6557579],[109.6939163,29.6702442],[109.7598267,29.6920681],[109.7646179,29.7498493],[109.7870865,29.7660599],[109.8651428,29.7774696],[109.9032669,29.7669926],[109.9428635,29.7762222],[110.0192337,29.7721825],[110.1084518,29.7921047],[110.1558075,29.7562714],[110.1942596,29.7555714],[110.2409363,29.734848],[110.2850571,29.6989899],[110.2949829,29.6649742],[110.3422394,29.668251],[110.3509064,29.6445637],[110.3684311,29.6345692],[110.4361572,29.6649857],[110.4620132,29.7115517],[110.5156326,29.6946106],[110.6332169,29.7636948],[110.6305237,29.7958298],[110.6089325,29.835947],[110.5864868,29.8331776],[110.5420227,29.8592796],[110.528801,29.8974724],[110.5010605,29.9149208],[110.5040894,29.9458561],[110.5492935,29.9913197],[110.4929276,30.0232449],[110.5227585,30.0624275],[110.60569,30.0598259],[110.6461411,30.0803032],[110.6853333,30.0668373],[110.7044678,30.0393486],[110.735733,30.0447559],[110.751442,30.0533028],[110.7586823,30.0773087],[110.7423401,30.1148663],[110.7620468,30.1247463],[110.8044968,30.1167145],[110.8202667,30.128006],[110.9181366,30.1144886],[110.9236832,30.0674057],[111.2447128,30.0433865],[111.2695236,30.0150585]],[[109.5374527,26.7500324],[109.5380783,26.727047],[109.5582428,26.724268],[109.5809402,26.7345543],[109.5857162,26.7597694],[109.5710068,26.7673092],[109.5374527,26.7500324]]]]},
  1667 +"properties":{
  1668 +"gid":278,
  1669 +"name":"湖南省"}
  1670 +},
  1671 +{"type":"Feature",
  1672 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.926239,30.0782261],[121.9267731,30.0825768],[121.9178238,30.0897045],[121.9093628,30.0895042],[121.9027863,30.0975399],[121.9110184,30.1059856],[121.9247589,30.1059399],[121.9232025,30.1125851],[121.9364319,30.1171188],[121.9454117,30.1161728],[121.9543533,30.1076698],[121.950882,30.0989799],[121.9460831,30.0893803],[121.9365234,30.077507],[121.9420395,30.0726795],[121.932518,30.0701923],[121.9214172,30.0713749],[121.926239,30.0782261]]]]},
  1673 +"properties":{
  1674 +"gid":279,
  1675 +"name":"浙江省"}
  1676 +},
  1677 +{"type":"Feature",
  1678 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.302063,30.0928898],[122.2873535,30.0807228],[122.2799911,30.0754204],[122.2770691,30.0799999],[122.283577,30.092247],[122.2903976,30.1006966],[122.2946014,30.103693],[122.2967377,30.0995693],[122.2988663,30.0954475],[122.302063,30.0928898]]]]},
  1679 +"properties":{
  1680 +"gid":280,
  1681 +"name":"浙江省"}
  1682 +},
  1683 +{"type":"Feature",
  1684 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.9622726,30.0989056],[121.9705505,30.1031265],[121.9747925,30.100399],[121.9753723,30.0937481],[121.9714508,30.0900536],[121.9645691,30.0927658],[121.9621582,30.0980301],[121.9622726,30.0989056]]]]},
  1685 +"properties":{
  1686 +"gid":281,
  1687 +"name":"浙江省"}
  1688 +},
  1689 +{"type":"Feature",
  1690 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.8445511,29.9978752],[121.8324127,29.996994],[121.8324432,30.004549],[121.837738,30.0102596],[121.8438263,30.0164242],[121.8438492,30.0226078],[121.8446732,30.0283298],[121.8415222,30.0352097],[121.8336334,30.0414104],[121.8341904,30.0514851],[121.8426819,30.0617657],[121.8469391,30.0709133],[121.8422318,30.0821457],[121.8491135,30.0848751],[121.8570328,30.0823345],[121.8676071,30.0887146],[121.8744736,30.0841141],[121.8837128,30.0827141],[121.8792038,30.0783768],[121.8881607,30.0749149],[121.886528,30.063015],[121.8949814,30.0641327],[121.8962631,30.0554256],[121.9057999,30.0606632],[121.9142227,30.0558281],[121.9136429,30.0420914],[121.9223099,30.0326729],[121.9180679,30.0285683],[121.923233,30.004734],[121.9065628,29.994257],[121.8872528,29.9835548],[121.8716278,29.9710083],[121.8486862,29.9770279],[121.8521576,29.9861755],[121.8445511,29.9978752]]]]},
  1691 +"properties":{
  1692 +"gid":282,
  1693 +"name":"浙江省"}
  1694 +},
  1695 +{"type":"Feature",
  1696 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.9744186,30.0820408],[121.980957,30.0873547],[121.9804764,30.0820732],[121.9823685,30.0777264],[121.9787064,30.0731163],[121.9736633,30.0779057],[121.9744186,30.0820408]]]]},
  1697 +"properties":{
  1698 +"gid":283,
  1699 +"name":"浙江省"}
  1700 +},
  1701 +{"type":"Feature",
  1702 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.8195038,30.078083],[121.8158264,30.0867958],[121.8229675,30.0872345],[121.8276978,30.081955],[121.8393097,30.0782623],[121.839653,30.072134],[121.8371506,30.0652161],[121.8308182,30.0679798],[121.8170929,30.0712204],[121.8195038,30.078083]]]]},
  1703 +"properties":{
  1704 +"gid":284,
  1705 +"name":"浙江省"}
  1706 +},
  1707 +{"type":"Feature",
  1708 +"geometry":{"type":"MultiPolygon","coordinates":[[[[116.1283264,29.8272705],[116.1726379,29.8368568],[116.2120972,29.8295994],[116.2564468,29.784586],[116.283577,29.7956448],[116.3230591,29.8305416],[116.3961334,29.8623619],[116.4651413,29.9004898],[116.5376816,29.9005814],[116.5514069,29.9241962],[116.5814667,30.0475864],[116.6018829,30.0690136],[116.628067,30.0799809],[116.7339096,30.0562763],[116.7784729,30.0376015],[116.7954712,30.0055294],[116.8190689,30.0139008],[116.824852,29.9740906],[116.8637466,29.9831352],[116.8952103,29.9521713],[116.8777695,29.8962135],[116.8073425,29.8142643],[116.7758331,29.7949963],[116.7574463,29.8050346],[116.7470093,29.800293],[116.7342987,29.7767124],[116.6821518,29.7373848],[116.6664734,29.7061863],[116.6492767,29.6974297],[116.6765137,29.6786022],[116.6470566,29.6398449],[116.6840363,29.6067257],[116.7037964,29.5923595],[116.7163773,29.567564],[116.7554169,29.601635],[116.7865067,29.5709209],[116.8262329,29.5703621],[116.8426666,29.5770206],[116.8724365,29.6157379],[116.9346771,29.6510029],[116.9695129,29.6601887],[116.9908981,29.6859264],[117.0367432,29.683321],[117.0854034,29.7015972],[117.1145325,29.722826],[117.1032333,29.7543221],[117.1310272,29.7775936],[117.1225433,29.7981243],[117.0872726,29.8118973],[117.0679169,29.8345776],[117.1248627,29.8664722],[117.1292267,29.9061871],[117.200882,29.9299736],[117.2483826,29.9114933],[117.2564468,29.8831558],[117.2441101,29.8442726],[117.2527084,29.8335953],[117.2870865,29.8252678],[117.2945023,29.8416271],[117.3312531,29.8525715],[117.353653,29.8149834],[117.3704529,29.8204327],[117.3785324,29.8459644],[117.4153671,29.8513851],[117.4192429,29.8369808],[117.404213,29.7976265],[117.4291611,29.7634888],[117.4496002,29.7515411],[117.4485397,29.6905499],[117.4815063,29.6638165],[117.507782,29.6668186],[117.5252838,29.6566658],[117.5085297,29.6273937],[117.5356903,29.599678],[117.5844803,29.5870495],[117.6427765,29.6175842],[117.6758881,29.5960789],[117.6796112,29.5667648],[117.7023773,29.5515862],[117.7477264,29.5629425],[117.7656403,29.559639],[117.8067474,29.5766754],[117.8713989,29.5489216],[117.9157486,29.5572338],[117.9284134,29.5518112],[117.9597931,29.5726337],[117.9758911,29.5635586],[117.9933929,29.5787907],[118.0088882,29.5797939],[118.0376282,29.5687199],[118.0454025,29.5456085],[118.092247,29.535532],[118.1320877,29.5086727],[118.1384964,29.492197],[118.1223068,29.4744701],[118.1342926,29.4474754],[118.1268234,29.4249725],[118.1894531,29.3952217],[118.2069931,29.3542576],[118.1641693,29.3185444],[118.1658478,29.2990665],[118.1444168,29.2872791],[118.1116028,29.2956066],[118.0972366,29.2875137],[118.0736008,29.2938118],[118.0707703,29.2860031],[118.0745468,29.2287102],[118.0345993,29.2101612],[118.0282669,29.1789494],[118.0464783,29.1199036],[118.0403366,29.09832],[118.0687332,29.0789871],[118.0644531,29.0539761],[118.0964737,28.9936199],[118.181221,28.9823208],[118.2164536,28.941206],[118.1946716,28.9099407],[118.2507401,28.9262085],[118.275383,28.9081898],[118.2968369,28.8360596],[118.3603363,28.811964],[118.3805237,28.7840557],[118.4008636,28.7089252],[118.4322433,28.67416],[118.4122467,28.6472931],[118.4310913,28.6186867],[118.40905,28.5906677],[118.4235535,28.5329418],[118.4313889,28.5205841],[118.4166336,28.4969406],[118.4674072,28.4734478],[118.4389877,28.4089775],[118.4810104,28.3357277],[118.4569397,28.3054218],[118.4242706,28.2922821],[118.3739777,28.2758751],[118.3150024,28.2282505],[118.312973,28.2190781],[118.3350983,28.1969185],[118.3690872,28.1908321],[118.3539276,28.1545773],[118.3594513,28.1314449],[118.3453064,28.1039028],[118.3367767,28.0960846],[118.3080063,28.0998878],[118.2583237,28.0903149],[118.2004166,28.0671654],[118.120697,28.0587864],[118.1177673,28.0280628],[118.0881119,28.0111866],[118.0893097,27.9667263],[118.0292969,27.9904041],[117.9914093,27.9871674],[117.9703369,27.966032],[117.9376984,27.9748726],[117.8925018,27.9505348],[117.8628769,27.9442997],[117.8518219,27.9503078],[117.8092499,27.921463],[117.7841568,27.8991718],[117.7772064,27.8496704],[117.7354736,27.8069954],[117.7080002,27.8153267],[117.7009583,27.8328552],[117.6765137,27.8307171],[117.598938,27.8738804],[117.5765991,27.9378281],[117.5581894,27.9460163],[117.5500183,27.9714603],[117.5175476,27.9919739],[117.4805832,27.9442921],[117.4387894,27.9375935],[117.4089966,27.9037361],[117.3657837,27.8892536],[117.3373566,27.8608322],[117.3204727,27.9037628],[117.2816772,27.8750725],[117.2782288,27.8584614],[117.2952728,27.8380222],[117.2950134,27.7788181],[117.2725601,27.7650566],[117.2477036,27.7295837],[117.198143,27.7157745],[117.1982803,27.6884556],[117.1276016,27.6959076],[117.1015625,27.6868553],[117.0959167,27.6774406],[117.1065979,27.6538315],[117.0945663,27.6306725],[117.0529175,27.6752548],[117.0203171,27.6639233],[117.0035782,27.6287804],[117.0257568,27.5973759],[117.0154114,27.5658817],[117.0257568,27.5560608],[117.051239,27.5495415],[117.0749435,27.5692558],[117.0911331,27.5472603],[117.1074371,27.4974861],[117.101593,27.4786682],[117.1262894,27.4168415],[117.0985184,27.3927097],[117.0987625,27.3364563],[117.1289291,27.3267479],[117.1347122,27.308836],[117.1645584,27.2982121],[117.1624527,27.2771778],[117.1383972,27.239584],[117.0894012,27.2071247],[117.0402527,27.1452675],[117.048233,27.1095924],[116.9627533,27.0652256],[116.931633,27.0228271],[116.9229736,27.034874],[116.8989487,27.0376472],[116.8466263,27.0128136],[116.8128967,27.0219154],[116.7601471,27.0037251],[116.752449,26.9877186],[116.7058334,26.9956779],[116.6546097,26.9656849],[116.5975571,26.892271],[116.5527573,26.8553467],[116.5390396,26.8074093],[116.5540237,26.7703571],[116.5072708,26.7116814],[116.5151672,26.6882057],[116.5642014,26.6457748],[116.5486298,26.5793037],[116.5350876,26.5685501],[116.5722427,26.5359612],[116.5936203,26.4892502],[116.6297073,26.4844666],[116.6321716,26.4712868],[116.5978394,26.4307728],[116.6047287,26.4027328],[116.595993,26.3794079],[116.5768738,26.3690929],[116.5368881,26.4054661],[116.5128326,26.4045086],[116.4913483,26.3701591],[116.4513168,26.3431377],[116.4177628,26.2890091],[116.3945389,26.2717018],[116.3837433,26.2410889],[116.4038467,26.2169514],[116.3909912,26.1854954],[116.4235916,26.1673355],[116.4623413,26.178566],[116.4870834,26.1273823],[116.4829102,26.113987],[116.4203568,26.0769825],[116.385231,26.0431099],[116.3575363,26.0039139],[116.3613129,25.9679585],[116.3359299,25.9638081],[116.2924881,25.9244671],[116.2418365,25.9062614],[116.2102127,25.9103432],[116.1854935,25.9031582],[116.1257477,25.8615742],[116.1262207,25.8362999],[116.1655273,25.7975349],[116.1725006,25.7699718],[116.1672668,25.7543087],[116.1414185,25.7680492],[116.1218719,25.762516],[116.1013412,25.7085667],[116.0873718,25.7023792],[116.062912,25.7066479],[116.0508194,25.6905212],[116.0647278,25.6457424],[116.0436783,25.6338196],[116.0379333,25.6110516],[116.0514221,25.5998077],[116.0550537,25.5707569],[116.0501328,25.555769],[116.0318832,25.5499496],[116.0133286,25.492939],[115.9875717,25.4639454],[116.0148621,25.4432945],[116.015358,25.4306507],[115.9960098,25.4156799],[116.000267,25.3957939],[115.9880524,25.3817348],[115.9911194,25.3510971],[116.0070419,25.3253117],[115.9435806,25.2704716],[115.9228973,25.2401543],[115.8537292,25.2180653],[115.8498688,25.1775532],[115.8585968,25.1552315],[115.8795624,25.1419258],[115.8677063,25.1232548],[115.8813171,25.0966396],[115.9041367,25.0857964],[115.9263763,25.0543041],[115.8682938,25.0222187],[115.8712921,25.0021477],[115.8994827,24.9869976],[115.8920135,24.9704819],[115.8718567,24.9782543],[115.8651123,24.9734211],[115.8622437,24.9579029],[115.8780136,24.9484386],[115.8772736,24.9358349],[115.8707504,24.9305363],[115.8743973,24.90769],[115.8956833,24.8780708],[115.8888397,24.8709469],[115.8641968,24.8726673],[115.8422775,24.8990879],[115.8118973,24.9028206],[115.7995071,24.8823261],[115.7996521,24.860054],[115.7815933,24.8491516],[115.7827606,24.8273029],[115.7617111,24.7976723],[115.7516937,24.7463379],[115.7677078,24.7107067],[115.7897873,24.702198],[115.797821,24.6883965],[115.7765808,24.6860905],[115.7621994,24.6654282],[115.7975616,24.6163235],[115.8270264,24.597702],[115.8351593,24.5735664],[115.8315735,24.5654163],[115.7760391,24.5603123],[115.7328262,24.5417118],[115.7216034,24.5372467],[115.7090302,24.5440693],[115.6700668,24.5985413],[115.6213531,24.6211681],[115.5724716,24.6194515],[115.5552673,24.6445351],[115.5450592,24.6820297],[115.466423,24.764267],[115.4108429,24.7808247],[115.3777084,24.7703133],[115.3647614,24.7745914],[115.3534698,24.7397995],[115.286293,24.7566414],[115.2521591,24.7305241],[115.2111664,24.7250156],[115.1837997,24.7046604],[115.1779785,24.6963272],[115.1593628,24.6963844],[115.1615601,24.6871414],[115.1510086,24.680088],[115.1159973,24.6796684],[115.107048,24.6675167],[115.0943069,24.6857662],[115.0833206,24.6810131],[115.0604401,24.70504],[115.0367508,24.6964931],[115.0155563,24.6713505],[114.9826965,24.6749744],[114.9391327,24.650177],[114.928978,24.6635246],[114.9057999,24.6629753],[114.8844223,24.5818214],[114.8649063,24.5605164],[114.8395767,24.587553],[114.8231964,24.5865898],[114.7987366,24.6009731],[114.7871399,24.6086082],[114.7250214,24.6092243],[114.7325363,24.5658951],[114.7107086,24.5501366],[114.7045822,24.5298615],[114.6801605,24.5371094],[114.664917,24.5753441],[114.6536865,24.5781384],[114.6013336,24.5589619],[114.5873337,24.5349674],[114.5693893,24.5406666],[114.5513916,24.5353508],[114.5275269,24.5540333],[114.4261627,24.4870415],[114.3981018,24.5000591],[114.3977737,24.5253086],[114.3726273,24.5658817],[114.3413925,24.5891991],[114.3032303,24.5725861],[114.2747421,24.628273],[114.2291794,24.6469078],[114.1870499,24.652607],[114.1772537,24.6633644],[114.1738129,24.6767464],[114.2696381,24.7036514],[114.2848816,24.728569],[114.331131,24.7541924],[114.3433609,24.7883492],[114.3289871,24.8070202],[114.3953934,24.8778534],[114.3808975,24.9109936],[114.3903198,24.952095],[114.461731,24.9989243],[114.4940872,25.001173],[114.5103607,25.0232925],[114.5287704,25.0228691],[114.5575485,25.0855484],[114.5729294,25.0847301],[114.5899582,25.0707912],[114.643692,25.0775528],[114.6637192,25.0887794],[114.6696777,25.1113586],[114.7057266,25.108881],[114.7315979,25.1293659],[114.7133331,25.161026],[114.6770401,25.1729202],[114.6992874,25.2075005],[114.6955338,25.2172318],[114.7372513,25.2428417],[114.7322769,25.2799168],[114.6972733,25.3193283],[114.6796494,25.3137856],[114.6267014,25.3292789],[114.6058197,25.3600693],[114.5854034,25.3717937],[114.5850525,25.3864918],[114.5683594,25.3868809],[114.5548401,25.4103756],[114.529747,25.4185295],[114.5026016,25.3987255],[114.4984207,25.3850479],[114.4769135,25.3763561],[114.4402466,25.3870506],[114.4259415,25.3731403],[114.4231491,25.3449726],[114.3982086,25.3397865],[114.3819199,25.3176537],[114.3506088,25.329586],[114.2990723,25.3329926],[114.3007965,25.2927914],[114.2771225,25.2770023],[114.2199936,25.2784348],[114.1554184,25.3160286],[114.1181335,25.3121948],[114.0284576,25.2547626],[114.0179672,25.2602463],[114.0119934,25.2853775],[114.0284195,25.3169575],[114.0218124,25.3370514],[114.0349731,25.3581371],[114.0008621,25.3998528],[113.9779282,25.4037437],[113.9917374,25.4356861],[113.9592133,25.4573231],[113.9571686,25.4692993],[113.9373627,25.4808598],[113.9559784,25.525135],[113.9771271,25.5296307],[113.9856262,25.5621166],[113.9717712,25.6052856],[113.9445801,25.6167297],[113.9120636,25.7079544],[113.9146423,25.7363987],[113.9530411,25.7764702],[113.9646072,25.8346348],[114.0166779,25.899189],[114.0257111,25.9260941],[114.0152588,25.9781628],[114.0185623,25.9886551],[114.005127,26.0123215],[114.0400085,26.0763626],[114.0933609,26.071413],[114.1125565,26.085947],[114.102562,26.1035881],[114.1946411,26.1288071],[114.2278976,26.1540527],[114.2133102,26.171566],[114.2183838,26.1900501],[114.2059479,26.2024708],[114.1799088,26.2011681],[114.1676865,26.212204],[114.1014023,26.1910458],[114.0786133,26.1660233],[114.0585632,26.169632],[114.0351334,26.191431],[114.0005417,26.1842136],[113.9681473,26.1545429],[113.9553833,26.1535892],[113.9362869,26.1688099],[113.9445801,26.1751156],[113.940567,26.1914845],[113.963501,26.2030773],[113.9650726,26.2439384],[113.9957809,26.2478256],[114.0311737,26.3129025],[114.0177231,26.3475838],[114.0285416,26.3840904],[114.0554886,26.4106464],[114.0818863,26.4149475],[114.0787125,26.451725],[114.0947266,26.4796352],[114.0754166,26.4846039],[114.0695801,26.4964218],[114.0997696,26.5805016],[114.0280228,26.5853443],[113.9955063,26.6155357],[113.9754181,26.6222782],[113.9350586,26.6139355],[113.9064789,26.6189575],[113.8631668,26.657259],[113.8575211,26.7512703],[113.8474503,26.7746105],[113.8347397,26.8074036],[113.8831177,26.8693905],[113.9028473,26.9340839],[113.9228897,26.9480228],[113.9162369,26.9621296],[113.8873367,26.968298],[113.8662491,26.9936371],[113.8610992,27.0198879],[113.8428574,27.020153],[113.8377609,27.035841],[113.8155136,27.0412102],[113.8022308,27.101099],[113.7827377,27.0898914],[113.7697067,27.0942059],[113.7695618,27.1280537],[113.8477707,27.2382088],[113.867363,27.2934875],[113.8493729,27.308672],[113.8676834,27.3501911],[113.8673782,27.3883057],[113.8208694,27.3683128],[113.7574005,27.364151],[113.7352524,27.3506794],[113.717247,27.3523026],[113.6942673,27.335392],[113.673912,27.3349724],[113.6392136,27.3537941],[113.61129,27.3488731],[113.59729,27.3892269],[113.6255264,27.4132004],[113.6025467,27.4242191],[113.5923462,27.4322205],[113.5863037,27.4710922],[113.6037674,27.4825783],[113.6218414,27.513567],[113.5779572,27.5281258],[113.5734024,27.5486145],[113.5962906,27.5894146],[113.6061172,27.6365738],[113.6466827,27.6670399],[113.6908112,27.7222347],[113.6959229,27.7481041],[113.7617188,27.8114777],[113.7537766,27.8586369],[113.7312927,27.8738594],[113.7271729,27.8895226],[113.767189,27.9541531],[113.8000488,27.9800873],[113.8404999,27.9820385],[113.8530197,28.0117779],[113.8606186,28.0135784],[113.8710632,27.9946804],[113.9183273,28.0004444],[113.9259415,28.019537],[113.9556503,28.0230675],[113.9534836,28.0433369],[113.9998398,28.0543098],[114.0233536,28.0485573],[114.0347137,28.0661755],[114.0345001,28.0874977],[114.0167007,28.1079502],[114.0094376,28.1358967],[113.9912262,28.1518955],[113.9877472,28.1772614],[113.9998474,28.1889973],[114.0343628,28.1803894],[114.0899963,28.1890564],[114.1391525,28.2499924],[114.1747665,28.2604313],[114.198143,28.2954292],[114.2476273,28.3274345],[114.2539291,28.3849983],[114.2499466,28.3983936],[114.2174835,28.4036865],[114.1950378,28.4285908],[114.1699219,28.4375687],[114.2074966,28.4698582],[114.2080307,28.4870815],[114.1482773,28.5076866],[114.1229935,28.5370674],[114.0883179,28.5436268],[114.0777435,28.5583878],[114.1226273,28.6077099],[114.1218109,28.6886616],[114.1378632,28.7140064],[114.1456909,28.7714081],[114.1311111,28.7878666],[114.145401,28.8179665],[114.1395111,28.8326702],[114.116333,28.8428593],[114.083107,28.838232],[114.0642776,28.8444386],[114.051918,28.8687706],[114.0584106,28.8976822],[114.0185776,28.9056492],[114.0007172,28.9569263],[113.9708328,28.9439106],[113.9580231,28.949646],[113.9550171,29.0029964],[113.9401321,29.0482807],[113.9502029,29.1011715],[113.9679413,29.105135],[113.9998474,29.1478081],[114.0290909,29.1563377],[114.0299835,29.1710548],[114.0543289,29.188448],[114.0611115,29.2116356],[114.1504593,29.2182522],[114.2434082,29.2384644],[114.2539673,29.3484898],[114.2878418,29.3661652],[114.3105698,29.3628101],[114.3438797,29.3274574],[114.3970413,29.342083],[114.5134125,29.3270912],[114.5846634,29.355526],[114.6168671,29.3829269],[114.6682129,29.3989868],[114.7276382,29.3969269],[114.7480164,29.366354],[114.7695694,29.3855915],[114.8034592,29.3850098],[114.8493881,29.4058819],[114.8770676,29.3961525],[114.8908386,29.3999977],[114.9067917,29.4360199],[114.9356308,29.4581947],[114.9367371,29.4777222],[114.9307785,29.4892464],[114.9138336,29.4857712],[114.8982773,29.4731579],[114.9130707,29.4573078],[114.890007,29.4488297],[114.874733,29.4568672],[114.8637238,29.4836082],[114.8970337,29.5332165],[114.9012604,29.5188904],[114.9178238,29.5257988],[114.9290466,29.5070877],[114.9512024,29.5052071],[114.9604034,29.5263462],[114.9391479,29.5319233],[114.9490128,29.5491848],[114.995903,29.575304],[115.0326538,29.555706],[115.0893936,29.5648708],[115.0889435,29.5483437],[115.069397,29.5289917],[115.1299362,29.5120964],[115.1521072,29.517065],[115.1471634,29.5524769],[115.1672134,29.5949974],[115.1291122,29.6010628],[115.1378403,29.6510735],[115.1036224,29.6654968],[115.1057663,29.6859684],[115.1167374,29.6885662],[115.141037,29.664465],[115.1713104,29.6572647],[115.2606277,29.6624184],[115.2643738,29.6301804],[115.2834473,29.6265583],[115.4032364,29.687685],[115.4651794,29.7422237],[115.4611511,29.7687263],[115.4711609,29.8091087],[115.5051727,29.8418293],[115.5935135,29.8416843],[115.6448669,29.8518467],[115.6663437,29.8569393],[115.6884079,29.8510323],[115.7295685,29.8150616],[115.8293915,29.7544804],[115.9145126,29.7256126],[115.9462891,29.7285881],[116.0463104,29.7696629],[116.1283264,29.8272705]]]]},
  1709 +"properties":{
  1710 +"gid":285,
  1711 +"name":"江西省"}
  1712 +},
  1713 +{"type":"Feature",
  1714 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.4221573,30.0353451],[122.4234009,30.0359268],[122.4249878,30.0360603],[122.4273071,30.0354996],[122.427681,30.0340881],[122.4265137,30.0327244],[122.4262772,30.031601],[122.4266891,30.0303783],[122.4278183,30.0294228],[122.4288177,30.0288792],[122.4284668,30.0271931],[122.4275818,30.0261726],[122.4262924,30.0263767],[122.4243393,30.0276546],[122.4231873,30.0295753],[122.4237137,30.0310402],[122.4237671,30.0323849],[122.4232788,30.0332355],[122.4220505,30.0347843],[122.4221573,30.0353451]]]]},
  1715 +"properties":{
  1716 +"gid":286,
  1717 +"name":"浙江省"}
  1718 +},
  1719 +{"type":"Feature",
  1720 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.3695908,30.0054703],[122.374939,30.0127602],[122.3742065,30.0203228],[122.3716507,30.0283527],[122.3832474,30.0266743],[122.3927689,30.0279827],[122.3996964,30.0348015],[122.4052124,30.0317879],[122.4011917,30.025631],[122.3929672,30.0222549],[122.3957977,30.0137615],[122.4024277,30.0162354],[122.4076538,30.0113907],[122.4155121,30.0046959],[122.4054565,30.0027046],[122.3949127,30.0027771],[122.3914032,29.9943295],[122.3997726,29.9864864],[122.3951721,29.9746094],[122.3885574,29.9725952],[122.3772507,29.9767933],[122.3641434,29.9855843],[122.3774567,29.9904461],[122.3813705,29.9969521],[122.3757706,30.0007305],[122.3695908,30.0054703]]]]},
  1721 +"properties":{
  1722 +"gid":287,
  1723 +"name":"浙江省"}
  1724 +},
  1725 +{"type":"Feature",
  1726 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.063797,29.9833546],[122.0632935,29.9879379],[122.0617676,29.9977894],[122.0665665,30.0064697],[122.076561,29.9995575],[122.082283,29.9864769],[122.0682526,29.9785271],[122.063797,29.9833546]]]]},
  1727 +"properties":{
  1728 +"gid":288,
  1729 +"name":"浙江省"}
  1730 +},
  1731 +{"type":"Feature",
  1732 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.1501083,29.9866104],[122.1585999,29.992981],[122.1654129,29.9860764],[122.1790695,29.9761562],[122.1763306,29.9622021],[122.1712036,29.9671535],[122.1658478,29.972332],[122.1545334,29.9758263],[122.1460724,29.9747219],[122.1373825,29.9772873],[122.1421738,29.983902],[122.1501083,29.9866104]]]]},
  1733 +"properties":{
  1734 +"gid":289,
  1735 +"name":"浙江省"}
  1736 +},
  1737 +{"type":"Feature",
  1738 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.1097183,29.9840603],[122.1170883,29.9815063],[122.118103,29.9739456],[122.115921,29.9641094],[122.1094131,29.9634037],[122.1032562,29.9653149],[122.1025238,29.9717312],[122.1022873,29.977684],[122.1097183,29.9840603]]]]},
  1739 +"properties":{
  1740 +"gid":290,
  1741 +"name":"浙江省"}
  1742 +},
  1743 +{"type":"Feature",
  1744 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.0242691,29.9466572],[122.0211563,29.9558296],[122.0235596,29.961544],[122.0317307,29.9599075],[122.0410233,29.9694862],[122.0473328,29.9664841],[122.0473022,29.9609852],[122.0480423,29.9518242],[122.0396423,29.9409275],[122.0289536,29.9376717],[122.0242691,29.9466572]]]]},
  1745 +"properties":{
  1746 +"gid":291,
  1747 +"name":"浙江省"}
  1748 +},
  1749 +{"type":"Feature",
  1750 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.1418762,29.952631],[122.1369781,29.9532108],[122.1335068,29.950285],[122.1306381,29.9553375],[122.128891,29.9613228],[122.135437,29.964016],[122.1417923,29.9662743],[122.1513138,29.9694309],[122.1557693,29.9655151],[122.1620636,29.9597607],[122.157547,29.9556599],[122.1451035,29.9490833],[122.1418762,29.952631]]]]},
  1751 +"properties":{
  1752 +"gid":292,
  1753 +"name":"浙江省"}
  1754 +},
  1755 +{"type":"Feature",
  1756 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.2324295,29.9495335],[122.216713,29.9638157],[122.2225266,29.9663048],[122.2328033,29.9625816],[122.2459335,29.9549503],[122.2445526,29.947403],[122.2324295,29.9495335]]]]},
  1757 +"properties":{
  1758 +"gid":293,
  1759 +"name":"浙江省"}
  1760 +},
  1761 +{"type":"Feature",
  1762 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.0739365,29.9588089],[122.0781631,29.9592495],[122.0842438,29.9612808],[122.0865631,29.9514256],[122.0931168,29.9461288],[122.083313,29.9402637],[122.0762024,29.9413948],[122.0728378,29.9519463],[122.0739365,29.9588089]]]]},
  1763 +"properties":{
  1764 +"gid":294,
  1765 +"name":"浙江省"}
  1766 +},
  1767 +{"type":"Feature",
  1768 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.3516464,29.9469681],[122.3594131,29.9588242],[122.365387,29.9496231],[122.3692627,29.9402122],[122.37883,29.9474735],[122.3814087,29.9410439],[122.3874664,29.9412327],[122.4014969,29.9461727],[122.4013138,29.9537296],[122.4099731,29.9495487],[122.4070206,29.943615],[122.4088135,29.937191],[122.4159317,29.9378281],[122.4155884,29.9293575],[122.4269028,29.9258423],[122.4107819,29.9234371],[122.3981094,29.9221516],[122.4077835,29.9122391],[122.4264908,29.91119],[122.416893,29.89958],[122.4250717,29.9004364],[122.4289627,29.8939972],[122.4253082,29.8903294],[122.4201279,29.8877277],[122.4091187,29.8880978],[122.4195328,29.8725395],[122.403511,29.8790646],[122.3934402,29.8731804],[122.3881378,29.8700104],[122.3920364,29.8644905],[122.3898468,29.8558006],[122.4074631,29.8501835],[122.4050217,29.8433304],[122.4054413,29.8323364],[122.3939514,29.8341827],[122.3799362,29.8375645],[122.3697968,29.8545647],[122.3628006,29.8669777],[122.3667984,29.8710728],[122.3741531,29.867815],[122.3781662,29.8748875],[122.3680115,29.8893833],[122.3751526,29.8918552],[122.3678665,29.9033527],[122.3605804,29.9127884],[122.3505936,29.9162922],[122.338768,29.9214058],[122.3334579,29.9173164],[122.3261795,29.9297314],[122.3217773,29.9407501],[122.3341904,29.9411297],[122.3414001,29.9516144],[122.3412094,29.9591732],[122.3472366,29.9559288],[122.3516464,29.9469681]]]]},
  1769 +"properties":{
  1770 +"gid":295,
  1771 +"name":"浙江省"}
  1772 +},
  1773 +{"type":"Feature",
  1774 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.9311218,29.941967],[121.9398575,29.9476624],[121.9485779,29.9501514],[121.9530869,29.9558601],[121.9610138,29.9567471],[121.9651871,29.9496326],[121.9712372,29.9473228],[121.9759064,29.9296722],[121.9896164,29.9280167],[121.9924698,29.9195347],[121.9910965,29.9087772],[121.9842072,29.9039955],[121.9760437,29.9028797],[121.9607391,29.9022503],[121.9440994,29.8968143],[121.9356995,29.9048557],[121.9283676,29.9151859],[121.9302826,29.9316673],[121.9311218,29.941967]]]]},
  1775 +"properties":{
  1776 +"gid":296,
  1777 +"name":"浙江省"}
  1778 +},
  1779 +{"type":"Feature",
  1780 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.4556808,29.9438648],[122.4536591,29.943058],[122.4502487,29.9393787],[122.453949,29.9361763],[122.4602814,29.932518],[122.4565964,29.9297562],[122.4521332,29.9302063],[122.4463501,29.9272099],[122.4442291,29.9311066],[122.4444733,29.9352379],[122.4447098,29.9430389],[122.4470596,29.9485512],[122.4546967,29.9474201],[122.4556808,29.9438648]]]]},
  1781 +"properties":{
  1782 +"gid":297,
  1783 +"name":"浙江省"}
  1784 +},
  1785 +{"type":"Feature",
  1786 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.2986298,29.9331474],[122.2965622,29.931385],[122.2934189,29.9283924],[122.2894592,29.9306717],[122.2857437,29.9373131],[122.2901917,29.9407711],[122.2959671,29.9423962],[122.3036194,29.9405861],[122.3023529,29.9336987],[122.2986298,29.9331474]]]]},
  1787 +"properties":{
  1788 +"gid":298,
  1789 +"name":"浙江省"}
  1790 +},
  1791 +{"type":"Feature",
  1792 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.006958,29.9066963],[122.0027313,29.9087353],[122.0008469,29.9123974],[122.0018768,29.9165325],[122.0047531,29.9197617],[122.0060501,29.9209156],[122.0105133,29.9223156],[122.0158005,29.9198227],[122.0195236,29.9157124],[122.0187836,29.9099712],[122.0137863,29.9074192],[122.006958,29.9066963]]]]},
  1793 +"properties":{
  1794 +"gid":299,
  1795 +"name":"浙江省"}
  1796 +},
  1797 +{"type":"Feature",
  1798 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.3418274,29.8797455],[122.3362503,29.8749371],[122.3287811,29.8696766],[122.3372269,29.8673744],[122.3229904,29.8618584],[122.3139572,29.8569908],[122.3006134,29.8535595],[122.2886505,29.8564606],[122.2744827,29.8641033],[122.2798233,29.8730011],[122.2885284,29.8743229],[122.2941589,29.8855076],[122.3065338,29.8833714],[122.3136063,29.8780594],[122.3246536,29.8747845],[122.3308334,29.8880234],[122.3418274,29.8797455]]]]},
  1799 +"properties":{
  1800 +"gid":300,
  1801 +"name":"浙江省"}
  1802 +},
  1803 +{"type":"Feature",
  1804 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.2702026,29.8718414],[122.2687302,29.8707142],[122.264801,29.8681755],[122.2584991,29.8656273],[122.2532272,29.8685932],[122.251091,29.8729439],[122.2494812,29.8786755],[122.2510376,29.8825817],[122.2565765,29.8807659],[122.2697372,29.8773708],[122.2702026,29.8718414]]]]},
  1805 +"properties":{
  1806 +"gid":301,
  1807 +"name":"浙江省"}
  1808 +},
  1809 +{"type":"Feature",
  1810 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.2672577,29.7860603],[122.2593079,29.7904854],[122.2554474,29.7958832],[122.2494736,29.8012791],[122.2400665,29.8126717],[122.2320175,29.8265667],[122.2227936,29.8254757],[122.2162476,29.8321533],[122.2152634,29.8410892],[122.2211227,29.8490715],[122.2376709,29.8423347],[122.24617,29.8509884],[122.2629929,29.8442497],[122.2764435,29.8466892],[122.286911,29.8376923],[122.2987137,29.8302937],[122.3095093,29.8304558],[122.3141708,29.8205795],[122.3022385,29.8209305],[122.2909698,29.8208771],[122.2875137,29.8152504],[122.3017426,29.814703],[122.3063736,29.802309],[122.3000031,29.8025703],[122.3049316,29.7867451],[122.3144073,29.7869148],[122.3198929,29.7795544],[122.3096008,29.7780151],[122.3095169,29.7695446],[122.2995605,29.7744141],[122.293808,29.7797184],[122.2833405,29.7873383],[122.2793427,29.7804928],[122.2724991,29.7825947],[122.2672577,29.7860603]]]]},
  1811 +"properties":{
  1812 +"gid":302,
  1813 +"name":"浙江省"}
  1814 +},
  1815 +{"type":"Feature",
  1816 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.3688278,29.8409729],[122.3691101,29.8368435],[122.3728027,29.833643],[122.3720322,29.8295097],[122.3667831,29.8294945],[122.3633423,29.8326988],[122.3585892,29.8368149],[122.3527908,29.8402386],[122.3559265,29.8439198],[122.3614426,29.8462296],[122.3685379,29.8467083],[122.3688278,29.8409729]]]]},
  1817 +"properties":{
  1818 +"gid":303,
  1819 +"name":"浙江省"}
  1820 +},
  1821 +{"type":"Feature",
  1822 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.9438095,29.7809486],[121.9483109,29.7855129],[121.9554596,29.7944164],[121.966301,29.8028507],[121.9787216,29.8103619],[121.9945831,29.8190022],[122.0154266,29.8257904],[122.0296402,29.8232136],[122.0256119,29.8101768],[122.0171204,29.7989902],[122.0075607,29.7836876],[121.9951096,29.7702255],[121.9824829,29.7734814],[121.9698563,29.7755871],[121.9574738,29.7740307],[121.9421921,29.7733974],[121.9438095,29.7809486]]]]},
  1823 +"properties":{
  1824 +"gid":304,
  1825 +"name":"浙江省"}
  1826 +},
  1827 +{"type":"Feature",
  1828 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.1983337,29.8123932],[122.1896591,29.8118992],[122.1841125,29.8160076],[122.1851273,29.8222046],[122.1940613,29.8224716],[122.1980286,29.8183575],[122.1988525,29.8130836],[122.1983337,29.8123932]]]]},
  1829 +"properties":{
  1830 +"gid":305,
  1831 +"name":"浙江省"}
  1832 +},
  1833 +{"type":"Feature",
  1834 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.2343903,29.8051949],[122.2336121,29.8033562],[122.227829,29.8040218],[122.22229,29.8060646],[122.2222519,29.8134079],[122.2298813,29.8122902],[122.2343903,29.8051949]]]]},
  1835 +"properties":{
  1836 +"gid":306,
  1837 +"name":"浙江省"}
  1838 +},
  1839 +{"type":"Feature",
  1840 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.1555023,29.8087692],[122.1617966,29.8106327],[122.1673203,29.8111153],[122.1715317,29.8104458],[122.1747131,29.8056412],[122.1676407,29.8019409],[122.1610565,29.8032875],[122.1565933,29.8044128],[122.1536636,29.808073],[122.1555023,29.8087692]]]]},
  1841 +"properties":{
  1842 +"gid":307,
  1843 +"name":"浙江省"}
  1844 +},
  1845 +{"type":"Feature",
  1846 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.1117096,29.7209473],[122.1025085,29.7228222],[122.0938416,29.7253799],[122.0824966,29.7231445],[122.087822,29.7313633],[122.0759583,29.7286682],[122.0683365,29.7298489],[122.0509567,29.7167244],[122.0456314,29.7180386],[122.0435562,29.7249165],[122.0478134,29.7315407],[122.0533829,29.7390747],[122.059761,29.7493496],[122.0637894,29.7616978],[122.0683594,29.7772503],[122.0791931,29.7831535],[122.0926285,29.7844658],[122.0984573,29.7844391],[122.1055832,29.7910442],[122.1169434,29.7955704],[122.1187286,29.7882366],[122.1281815,29.7831516],[122.1276016,29.7755985],[122.1258621,29.7705994],[122.1241074,29.7655411],[122.1258698,29.7529373],[122.137413,29.7450943],[122.1483612,29.7308407],[122.1614838,29.7252808],[122.1673126,29.7305145],[122.173317,29.7229271],[122.1764069,29.7137508],[122.182991,29.7144051],[122.188797,29.7162056],[122.1939697,29.7035828],[122.1996765,29.6923313],[122.193573,29.6852646],[122.1900711,29.6745205],[122.1857834,29.6633224],[122.1741867,29.6581554],[122.1721191,29.6656876],[122.1695786,29.678524],[122.164917,29.6680698],[122.1577072,29.6614399],[122.146347,29.6671925],[122.1545181,29.6687527],[122.15905,29.6778908],[122.1480179,29.6797771],[122.1379471,29.6675243],[122.1300583,29.6697922],[122.1348572,29.6789284],[122.1264114,29.6753063],[122.1277771,29.6837711],[122.1349564,29.6935844],[122.1223373,29.6954765],[122.1063309,29.7031097],[122.1066437,29.7095203],[122.1145477,29.711544],[122.1117096,29.7209473]]]]},
  1847 +"properties":{
  1848 +"gid":308,
  1849 +"name":"浙江省"}
  1850 +},
  1851 +{"type":"Feature",
  1852 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.177681,29.794426],[122.1864166,29.7936802],[122.1919327,29.7953091],[122.1964111,29.7944107],[122.1980133,29.7905178],[122.19487,29.7879791],[122.1888275,29.7874947],[122.1827774,29.7883892],[122.1774979,29.7918072],[122.177681,29.794426]]]]},
  1853 +"properties":{
  1854 +"gid":309,
  1855 +"name":"浙江省"}
  1856 +},
  1857 +{"type":"Feature",
  1858 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.2851028,29.744278],[122.2854538,29.7550373],[122.298027,29.7490063],[122.301857,29.7345562],[122.2860565,29.7344246],[122.2786407,29.7282887],[122.2686691,29.7320099],[122.2587204,29.7384796],[122.2528915,29.7339363],[122.2493362,29.7351437],[122.2374878,29.7441444],[122.2280731,29.7576637],[122.2184219,29.7705421],[122.2097626,29.7751694],[122.2161484,29.7838364],[122.2266617,29.7812595],[122.2311783,29.7858124],[122.2456284,29.7811489],[122.2526627,29.7721767],[122.2423782,29.769949],[122.2481537,29.7664795],[122.2425613,29.7600994],[122.2454224,29.7550468],[122.2535934,29.7554569],[122.263298,29.7515068],[122.2851028,29.744278]]]]},
  1859 +"properties":{
  1860 +"gid":310,
  1861 +"name":"浙江省"}
  1862 +},
  1863 +{"type":"Feature",
  1864 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.0062332,29.7319412],[122.0054932,29.7406464],[122.0052795,29.7520962],[122.0166168,29.7561722],[122.0266571,29.7618561],[122.0337601,29.7599945],[122.0357971,29.7496815],[122.0260086,29.739418],[122.0196533,29.7316589],[122.0080338,29.7248344],[122.0062332,29.7319412]]]]},
  1865 +"properties":{
  1866 +"gid":311,
  1867 +"name":"浙江省"}
  1868 +},
  1869 +{"type":"Feature",
  1870 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.228653,29.7430019],[122.231102,29.7390995],[122.2369003,29.7361393],[122.2387619,29.7320137],[122.2293015,29.7322083],[122.2245636,29.7349434],[122.2226868,29.7402115],[122.225563,29.7436657],[122.228653,29.7430019]]]]},
  1871 +"properties":{
  1872 +"gid":312,
  1873 +"name":"浙江省"}
  1874 +},
  1875 +{"type":"Feature",
  1876 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.2708282,29.6936741],[122.2833099,29.6870403],[122.2719879,29.6866512],[122.2669373,29.6804981],[122.2646179,29.6862354],[122.2570038,29.6878834],[122.2449188,29.6907024],[122.2382965,29.6850166],[122.2299271,29.6910172],[122.2189331,29.6974907],[122.2063217,29.7019119],[122.2011185,29.7099571],[122.2019806,29.7193375],[122.2156296,29.7146835],[122.2214432,29.7178574],[122.2229538,29.708231],[122.2363129,29.7003708],[122.2438889,29.6932259],[122.2546768,29.692934],[122.2708282,29.6936741]]]]},
  1877 +"properties":{
  1878 +"gid":313,
  1879 +"name":"浙江省"}
  1880 +},
  1881 +{"type":"Feature",
  1882 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.0301437,29.6244946],[122.0310516,29.6216125],[122.0357895,29.6191139],[122.0321426,29.6168003],[122.0271606,29.6158562],[122.0235214,29.6112461],[122.020668,29.6071014],[122.0164337,29.6121254],[122.0179367,29.6203957],[122.0197372,29.6243057],[122.0252228,29.628006],[122.0295868,29.6262321],[122.0301437,29.6244946]]]]},
  1883 +"properties":{
  1884 +"gid":314,
  1885 +"name":"浙江省"}
  1886 +},
  1887 +{"type":"Feature",
  1888 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.9727936,29.5607109],[121.9819412,29.5635166],[121.9851074,29.5607815],[121.9862137,29.5552807],[121.993042,29.5530243],[121.9920273,29.549118],[121.9844437,29.5460911],[121.9783783,29.5506458],[121.974678,29.5536079],[121.9707108,29.5579433],[121.9727936,29.5607109]]]]},
  1889 +"properties":{
  1890 +"gid":315,
  1891 +"name":"浙江省"}
  1892 +},
  1893 +{"type":"Feature",
  1894 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.6820831,29.5578804],[121.6970367,29.5509892],[121.6867828,29.546196],[121.6794205,29.5459785],[121.6649704,29.5453129],[121.668457,29.5511627],[121.6820831,29.5578804]]]]},
  1895 +"properties":{
  1896 +"gid":316,
  1897 +"name":"浙江省"}
  1898 +},
  1899 +{"type":"Feature",
  1900 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.5708771,29.5238838],[121.56353,29.5241165],[121.5567017,29.5252666],[121.5595932,29.5328217],[121.5680084,29.5348778],[121.5761414,29.5284595],[121.5850677,29.5259342],[121.5848007,29.518837],[121.5764008,29.5213604],[121.5700912,29.516098],[121.5708771,29.5238838]]]]},
  1901 +"properties":{
  1902 +"gid":317,
  1903 +"name":"浙江省"}
  1904 +},
  1905 +{"type":"Feature",
  1906 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.1843414,29.4606476],[122.1856003,29.4631863],[122.1884308,29.4635487],[122.1901627,29.4611835],[122.1894073,29.4593678],[122.1873779,29.4584007],[122.1851501,29.4592304],[122.1843414,29.4606476]]]]},
  1907 +"properties":{
  1908 +"gid":318,
  1909 +"name":"浙江省"}
  1910 +},
  1911 +{"type":"Feature",
  1912 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.1745834,29.4190502],[122.1932983,29.430172],[122.1928329,29.4388752],[122.2025833,29.4427128],[122.2125168,29.439682],[122.2193832,29.4428501],[122.2190399,29.4332333],[122.2014465,29.4314995],[122.1992722,29.4223518],[122.1911011,29.4169006],[122.1837616,29.4180851],[122.1755829,29.4114876],[122.1745834,29.4190502]]]]},
  1913 +"properties":{
  1914 +"gid":319,
  1915 +"name":"浙江省"}
  1916 +},
  1917 +{"type":"Feature",
  1918 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.0198593,29.4129734],[122.0222168,29.4116116],[122.0204315,29.4070129],[122.0159912,29.4051514],[122.0107574,29.4051247],[122.0039291,29.4073811],[122.00103,29.4101181],[122.00177,29.4149399],[122.0198593,29.4129734]]]]},
  1919 +"properties":{
  1920 +"gid":320,
  1921 +"name":"浙江省"}
  1922 +},
  1923 +{"type":"Feature",
  1924 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.9832077,29.3503494],[121.9793091,29.3455162],[121.9803925,29.3416214],[121.9840927,29.3381996],[121.9830627,29.3345242],[121.9786301,29.3333492],[121.9733887,29.3344669],[121.9691696,29.337656],[121.9680634,29.3449917],[121.9735184,29.3491535],[121.977417,29.3516998],[121.9832077,29.3503494]]]]},
  1925 +"properties":{
  1926 +"gid":321,
  1927 +"name":"浙江省"}
  1928 +},
  1929 +{"type":"Feature",
  1930 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.792923,29.3067646],[121.7986526,29.3032722],[121.8010406,29.2996178],[121.7992706,29.2938671],[121.7961731,29.2897167],[121.7917328,29.2889977],[121.7903366,29.2967873],[121.7892532,29.3013687],[121.7899933,29.3064232],[121.792923,29.3067646]]]]},
  1931 +"properties":{
  1932 +"gid":322,
  1933 +"name":"浙江省"}
  1934 +},
  1935 +{"type":"Feature",
  1936 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.9985962,29.2971516],[121.9986877,29.2994099],[122.0013733,29.3008556],[122.0039368,29.3004551],[122.0051498,29.297245],[122.0040588,29.2957859],[122.0011368,29.2957745],[121.9994278,29.296505],[121.9985962,29.2971516]]]]},
  1937 +"properties":{
  1938 +"gid":323,
  1939 +"name":"浙江省"}
  1940 +},
  1941 +{"type":"Feature",
  1942 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.7904663,29.2735004],[121.7951965,29.2766953],[121.802803,29.2778225],[121.8135223,29.271843],[121.8087769,29.26544],[121.7961807,29.2565422],[121.7925262,29.2654819],[121.7904663,29.2735004]]]]},
  1943 +"properties":{
  1944 +"gid":324,
  1945 +"name":"浙江省"}
  1946 +},
  1947 +{"type":"Feature",
  1948 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.7886963,29.2116776],[121.7897568,29.214653],[121.7924194,29.2295303],[121.7908783,29.2393818],[121.7977219,29.2494411],[121.8116379,29.2569618],[121.821312,29.251442],[121.8278198,29.2408924],[121.8212433,29.2326641],[121.8117828,29.2242184],[121.798912,29.2123413],[121.7891922,29.2032051],[121.7886963,29.2116776]]]]},
  1949 +"properties":{
  1950 +"gid":325,
  1951 +"name":"浙江省"}
  1952 +},
  1953 +{"type":"Feature",
  1954 +"geometry":{"type":"MultiPolygon","coordinates":[[[[98.6558838,28.8307476],[98.6578751,28.8333035],[98.6616516,28.8366108],[98.6646881,28.8389835],[98.6689072,28.8430004],[98.6692352,28.8460827],[98.6663895,28.8497753],[98.6626968,28.8540344],[98.6595764,28.8571587],[98.657196,28.8601913],[98.65522,28.8639832],[98.6529083,28.8676109],[98.6504898,28.8719273],[98.6496353,28.8747673],[98.6482162,28.878458],[98.6473618,28.8818665],[98.6467972,28.8858433],[98.6476517,28.8889656],[98.6473618,28.8915215],[98.6484985,28.8952141],[98.6502075,28.8997574],[98.6521912,28.9040184],[98.6536102,28.9077091],[98.6536102,28.9105492],[98.6521912,28.913105],[98.6507721,28.9156628],[98.6504898,28.9182186],[98.6521912,28.9207745],[98.6539001,28.9230461],[98.6567383,28.9253178],[98.660141,28.9281578],[98.6612396,28.9332104],[98.6533737,28.9746361],[98.7021713,28.9649525],[98.7419662,29.0012913],[98.7654266,29.008028],[98.7975388,28.9829254],[98.8132095,28.9504528],[98.8407822,28.8106918],[98.8553925,28.8029804],[98.8840256,28.809557],[98.9044495,28.8042088],[98.9272156,28.8301754],[98.961113,28.8299522],[98.9734573,28.8479424],[98.9727402,28.8731613],[98.9387589,28.8791161],[98.9158936,28.9053822],[98.920929,28.9783249],[99.0116577,29.034523],[99.0191727,29.0556221],[99.0051727,29.0894508],[98.9621048,29.1458263],[98.9629822,29.1872673],[98.9829941,29.2062016],[99.021553,29.1932392],[99.0378418,29.2102051],[99.0929642,29.2292976],[99.1118011,29.2509918],[99.1146469,29.2459736],[99.116806,29.2411194],[99.116806,29.2346458],[99.1144409,29.2233486],[99.1130371,29.2172356],[99.1123428,29.2104225],[99.1144409,29.2062283],[99.1173401,29.2028217],[99.1179352,29.198019],[99.1184235,29.1925735],[99.116806,29.1893368],[99.1146469,29.1834049],[99.113739,29.178978],[99.1119461,29.172617],[99.1095505,29.1657009],[99.1100693,29.1616821],[99.1130295,29.156435],[99.1135712,29.1515808],[99.1108704,29.145647],[99.1105957,29.1398468],[99.1124878,29.1353989],[99.1149597,29.1305866],[99.1162643,29.1235313],[99.1151886,29.1143627],[99.1146469,29.1046543],[99.1141052,29.0917091],[99.1141052,29.0744476],[99.1162643,29.0593452],[99.1194992,29.0485573],[99.1238174,29.0350723],[99.1259766,29.0215874],[99.1259766,29.0107994],[99.1243591,29.0005512],[99.1243591,28.9881458],[99.1254349,28.9746609],[99.1292114,28.9644127],[99.1302872,28.9563217],[99.1308289,28.9444561],[99.1270523,28.9331284],[99.1297531,28.904541],[99.120842,28.885107],[99.1161575,28.8802834],[99.1124039,28.8699474],[99.1096878,28.8563156],[99.1086426,28.8455181],[99.1077042,28.8314228],[99.1072311,28.8206177],[99.1069565,28.8092117],[99.1105194,28.7961884],[99.1149597,28.7837601],[99.1161575,28.7745762],[99.117569,28.7604828],[99.1199188,28.7524967],[99.1264954,28.74263],[99.1321335,28.7337036],[99.1350327,28.7259502],[99.1321335,28.7130318],[99.1294403,28.7002239],[99.1311951,28.692831],[99.1368332,28.6815548],[99.1439819,28.6703091],[99.1434097,28.663702],[99.1453018,28.6544781],[99.1505814,28.6426067],[99.1570358,28.6378632],[99.162674,28.6336346],[99.1631393,28.6232986],[99.1711273,28.6153126],[99.1692505,28.6030979],[99.1701889,28.5984001],[99.1769638,28.5924759],[99.1814651,28.5908833],[99.1819305,28.5871239],[99.1786423,28.5800781],[99.1762924,28.5749092],[99.1744156,28.5702114],[99.1727753,28.5645199],[99.1748886,28.5542374],[99.175354,28.5467205],[99.1782837,28.5383892],[99.1809921,28.5307484],[99.1835632,28.5199203],[99.1842804,28.5147743],[99.19133,28.5002098],[99.1917953,28.4950428],[99.1915207,28.4851818],[99.1899185,28.4809494],[99.1861954,28.4711094],[99.1842804,28.4598064],[99.1880417,28.4443035],[99.1814651,28.4363174],[99.1772308,28.4325581],[99.1739426,28.4311485],[99.1725388,28.4269218],[99.1723709,28.4220524],[99.1739426,28.4156456],[99.1773605,28.4088516],[99.1800537,28.4024906],[99.1842804,28.3977928],[99.1885071,28.3921547],[99.1955566,28.3888664],[99.1993179,28.3865185],[99.2020264,28.3827229],[99.2049561,28.3677254],[99.2073822,28.3626308],[99.2134094,28.3602085],[99.2209244,28.3569202],[99.2251511,28.3545704],[99.2307892,28.3541012],[99.2336121,28.3494034],[99.2336121,28.3428249],[99.233139,28.3376579],[99.2350235,28.3306103],[99.2378387,28.3245029],[99.2425385,28.3179264],[99.2462997,28.3120193],[99.2519302,28.3080597],[99.2594528,28.3052406],[99.2688446,28.3038311],[99.2773056,28.3033619],[99.2843475,28.3014832],[99.2871704,28.2967854],[99.2885742,28.290678],[99.2885742,28.2840996],[99.2866974,28.2765827],[99.2848206,28.269537],[99.2819672,28.2654514],[99.2827911,28.2624512],[99.2844238,28.2602692],[99.2898788,28.2597237],[99.2939758,28.2602692],[99.3002472,28.2610874],[99.3059769,28.2580872],[99.3073425,28.2531757],[99.3078842,28.248539],[99.3078842,28.2414455],[99.3081589,28.2373543],[99.3084335,28.2318993],[99.3087006,28.2264423],[99.3097916,28.2226238],[99.3123856,28.218441],[99.3160706,28.2155304],[99.3207092,28.2141666],[99.3269806,28.2125301],[99.334343,28.2119846],[99.3389816,28.2095299],[99.3422546,28.2065296],[99.344986,28.2035294],[99.3466187,28.2010727],[99.3490753,28.1999817],[99.351532,28.1972542],[99.3542633,28.1926174],[99.3561707,28.1898899],[99.359169,28.1863422],[99.3638077,28.1841602],[99.3684464,28.182251],[99.3744431,28.1814327],[99.3793564,28.1806145],[99.381813,28.1792507],[99.3847122,28.1770935],[99.3856277,28.1737938],[99.3864517,28.1699753],[99.3875427,28.166975],[99.3905411,28.1631565],[99.3943634,28.1612453],[99.3963394,28.1595993],[99.3952866,28.163826],[99.3925476,28.1690693],[99.3927765,28.1748714],[99.3930283,28.1801434],[99.3905182,28.1861668],[99.388504,28.1906853],[99.3880081,28.1967106],[99.3880081,28.2032375],[99.3892593,28.2100163],[99.3897629,28.2172966],[99.3905182,28.2243252],[99.3905182,28.2293453],[99.3917694,28.2363758],[99.3957901,28.2403927],[99.3988037,28.2434044],[99.4015656,28.2481747],[99.4023132,28.2511864],[99.4023132,28.2554531],[99.4020615,28.2592201],[99.4033203,28.263237],[99.4055786,28.2662487],[99.4080887,28.2687588],[99.4133606,28.271019],[99.4178772,28.2732773],[99.4216461,28.2757874],[99.4205627,28.2884674],[99.3964996,28.3107357],[99.4109955,28.3577099],[99.387352,28.3847752],[99.4010239,28.4645367],[99.3811569,28.4958382],[99.379303,28.5364418],[99.4075623,28.5545979],[99.456604,28.551487],[99.4814453,28.581646],[99.5190659,28.5855122],[99.5457458,28.6353054],[99.5387115,28.6879921],[99.5692291,28.7218533],[99.6048737,28.7335491],[99.6218643,28.8127346],[99.6894302,28.8194885],[99.7173538,28.8451557],[99.7410202,28.7174416],[99.7573166,28.7020073],[99.7948074,28.7014465],[99.8439636,28.662447],[99.8495483,28.6283474],[99.8243256,28.57971],[99.8558197,28.5738335],[99.8874817,28.6082687],[99.9425201,28.5869007],[99.9605179,28.5640507],[99.9680099,28.5388145],[99.9825897,28.5273075],[99.9914169,28.4793396],[100.0732422,28.4370384],[100.0593796,28.3763561],[100.1242676,28.3582191],[100.1770935,28.3262863],[100.1786499,28.3150024],[100.1502914,28.284874],[100.1940308,28.2596798],[100.1632767,28.2165813],[100.1251831,28.2113209],[100.0890808,28.1867294],[100.0529938,28.1912289],[100.035347,28.1852112],[100.0189438,28.1479893],[100.0516434,28.096199],[100.0651398,28.0386715],[100.1318665,28.0005913],[100.1775513,27.9694386],[100.1863632,27.948925],[100.1908188,27.9318962],[100.1719208,27.9095821],[100.1757202,27.9022007],[100.2364426,27.8752079],[100.2969513,27.8732147],[100.3077164,27.8659859],[100.3054962,27.8345585],[100.288208,27.8168335],[100.3139114,27.7278194],[100.3139114,27.7270088],[100.3252563,27.7213287],[100.3390579,27.732687],[100.3447418,27.7537823],[100.3520432,27.760273],[100.3771896,27.7586498],[100.4077301,27.8407993],[100.4261093,27.8603344],[100.4338226,27.8570347],[100.4480133,27.8720245],[100.4835434,27.8608246],[100.5004578,27.8505249],[100.5064011,27.8323193],[100.5358124,27.8280659],[100.5477829,27.8150654],[100.608223,27.8606949],[100.6228867,27.9061928],[100.6700516,27.9262486],[100.6890335,27.9156723],[100.7025681,27.8730278],[100.7207565,27.8626842],[100.7081985,27.8378277],[100.7110291,27.8058796],[100.7701187,27.7532024],[100.787323,27.6863861],[100.8419724,27.6803417],[100.8289871,27.6621571],[100.8293076,27.6208229],[100.8516235,27.6273975],[100.8630829,27.6038132],[100.8792191,27.6113892],[100.8911285,27.5705757],[100.8817062,27.5488987],[100.8851166,27.4944286],[100.9003296,27.4655037],[100.905899,27.4599113],[100.9257889,27.4761543],[100.9359512,27.4681969],[100.975563,27.3941212],[101.0211563,27.3403778],[101.0104218,27.3168888],[101.0570221,27.2902145],[101.0467072,27.2228565],[101.0670624,27.197504],[101.118103,27.2162132],[101.1721725,27.2061462],[101.1732178,27.1686935],[101.1497192,27.1385307],[101.1605072,27.1128597],[101.1396484,27.0334988],[101.2227097,26.9889412],[101.2341919,26.9604969],[101.2663879,26.9537468],[101.2538605,26.9316788],[101.2679977,26.9084663],[101.2909088,26.900032],[101.3138733,26.9058342],[101.3234406,26.8854523],[101.3665771,26.8874454],[101.3967667,26.8494606],[101.3998718,26.8386078],[101.3772964,26.8034077],[101.3803101,26.7888813],[101.3620834,26.7756538],[101.3927536,26.7254848],[101.4178467,26.7252598],[101.4310379,26.7422466],[101.46064,26.7366486],[101.4476471,26.7741032],[101.4520111,26.7857399],[101.4794083,26.7845421],[101.5141296,26.7673512],[101.5139694,26.7604618],[101.4958267,26.7518444],[101.4987411,26.7336407],[101.4541016,26.7082825],[101.4540329,26.6935825],[101.4853973,26.6766891],[101.4626617,26.6454086],[101.4649277,26.6097565],[101.4532394,26.6023922],[101.39534,26.5993137],[101.3949585,26.5591183],[101.4665909,26.5028954],[101.5117569,26.4988327],[101.5330429,26.4687901],[101.5679932,26.4543362],[101.5930862,26.4242115],[101.6346664,26.4004192],[101.6395035,26.3888359],[101.6297836,26.3566322],[101.6352463,26.3505497],[101.6585999,26.3549118],[101.6603699,26.3436184],[101.6429367,26.3301792],[101.6610031,26.306612],[101.6203918,26.3163795],[101.5815582,26.2829037],[101.6153107,26.253294],[101.6274567,26.2066402],[101.6418533,26.2325497],[101.672493,26.2330875],[101.6962433,26.2447872],[101.6993866,26.2277203],[101.7303238,26.2298489],[101.7450638,26.2072582],[101.7694702,26.1941166],[101.7785721,26.1709499],[101.7987671,26.1627159],[101.8006287,26.1256828],[101.8212128,26.0832005],[101.8186111,26.0515442],[101.8259735,26.0477676],[101.8388901,26.0476685],[101.8703079,26.0607853],[101.9001923,26.1026516],[101.9239273,26.1133957],[101.932869,26.1141186],[101.9609222,26.0863876],[102.0135498,26.1001396],[102.0782623,26.0683937],[102.1096802,26.0813751],[102.1164017,26.089901],[102.1303024,26.0937614],[102.1326065,26.1099796],[102.1573029,26.122282],[102.1735535,26.1539993],[102.1804962,26.1586323],[102.1928635,26.1624928],[102.2160187,26.1748486],[102.2345428,26.1868534],[102.2445908,26.2142353],[102.2543564,26.2224312],[102.2878418,26.2289085],[102.3241272,26.2381744],[102.3434372,26.2482147],[102.3557968,26.2590256],[102.3828278,26.2960949],[102.3939972,26.3033772],[102.4013596,26.3053608],[102.4492416,26.3107681],[102.4870834,26.3277569],[102.530777,26.3389549],[102.538063,26.3513107],[102.5465469,26.362896],[102.5520172,26.367094],[102.564003,26.3679924],[102.5762787,26.3634987],[102.5810699,26.3588562],[102.60215,26.3513107],[102.6206131,26.3450775],[102.6266022,26.3390865],[102.6334915,26.3190174],[102.6315002,26.3111534],[102.623909,26.3043404],[102.6176071,26.2986488],[102.6077271,26.2845707],[102.60215,26.2702236],[102.5982895,26.2601852],[102.5992737,26.2536526],[102.6167068,26.2474289],[102.6331863,26.2351475],[102.6460724,26.2303543],[102.657753,26.2159767],[102.6687927,26.2107544],[102.677063,26.2123051],[102.6886368,26.2177105],[102.7009964,26.216938],[102.7056808,26.2171745],[102.7119675,26.2204704],[102.7164612,26.2252636],[102.7203064,26.2447395],[102.7335434,26.2663002],[102.7419281,26.2785797],[102.7581482,26.2856693],[102.7685928,26.2977505],[102.7796631,26.3061371],[102.7919464,26.3103313],[102.8051605,26.3100204],[102.8239365,26.3137417],[102.8434067,26.326088],[102.8619232,26.3450832],[102.8685684,26.3636036],[102.8733215,26.3664513],[102.8771591,26.3683929],[102.8837738,26.3631287],[102.8933563,26.3437443],[102.9084625,26.3446083],[102.9265137,26.3408089],[102.9417038,26.3460331],[102.9663086,26.3457031],[102.9716187,26.3460331],[102.9844437,26.3554688],[102.9929886,26.3735752],[102.9925079,26.3844967],[102.9857483,26.4088783],[102.9877625,26.42486],[102.9934616,26.4505024],[102.9887238,26.4785194],[102.9910889,26.4861183],[103.018631,26.4875431],[103.0419006,26.5084362],[103.0542374,26.5279064],[103.0556717,26.5393028],[103.0494919,26.552124],[103.0276489,26.56637],[103.0162582,26.5905876],[103.0171967,26.5991364],[103.0252838,26.6119576],[103.0229034,26.6328506],[103.0210037,26.6504211],[103.0214767,26.6637173],[103.018631,26.6703663],[103.0034332,26.6822376],[103.0001068,26.6898346],[103.0001068,26.7112045],[102.9953613,26.7235508],[102.993927,26.7406464],[102.9801636,26.7601147],[102.9801636,26.7710381],[102.9820633,26.7819595],[102.9787369,26.79953],[102.9663925,26.8175735],[102.9611664,26.8370438],[102.9298325,26.8624496],[102.9198608,26.8769321],[102.8946915,26.9149208],[102.8913727,26.9353409],[102.8889923,26.9386654],[102.8866196,26.9700069],[102.8885193,26.9809284],[102.8889923,27.0008717],[102.8837738,27.011795],[102.8676224,27.0317383],[102.8752213,27.0573807],[102.8823395,27.06213],[102.89991,27.1001186],[102.9070435,27.125288],[102.9075089,27.1381092],[102.9070435,27.15378],[102.9022903,27.1836948],[102.9018097,27.196043],[102.8975372,27.2093391],[102.8970566,27.2349815],[102.8799667,27.2691708],[102.8809204,27.3031235],[102.8956375,27.3216438],[102.899437,27.3377895],[102.9217529,27.3762531],[102.9317322,27.4047451],[102.9402771,27.4189911],[102.9464493,27.4189911],[102.9540482,27.4078312],[102.9649734,27.3812389],[102.9777908,27.373167],[102.9858627,27.373642],[103.0305023,27.3940601],[103.0523529,27.4135303],[103.0594711,27.4149551],[103.0741882,27.4049835],[103.0998306,27.4045086],[103.1363983,27.4246902],[103.1378174,27.4531822],[103.146843,27.4736004],[103.1682129,27.497345],[103.1781769,27.5191879],[103.2028732,27.5386581],[103.2066727,27.5486298],[103.2137985,27.5624008],[103.2237701,27.5733223],[103.2432404,27.5737972],[103.2603378,27.5704727],[103.2826538,27.5681],[103.2869263,27.5704727],[103.2902527,27.5780716],[103.2907333,27.5994396],[103.2840805,27.6141605],[103.2745819,27.6236591],[103.2745819,27.6326809],[103.2826233,27.6384716],[103.2935791,27.6436024],[103.3177872,27.6654472],[103.337738,27.6777935],[103.3612137,27.7035408],[103.3724136,27.7110329],[103.3880768,27.7148323],[103.3934174,27.7185287],[103.4137192,27.7399998],[103.4388885,27.7528229],[103.46595,27.7827377],[103.4920731,27.8169289],[103.502037,27.8401966],[103.4996567,27.8563423],[103.4972916,27.8862591],[103.4977722,27.9047794],[103.5039368,27.9195004],[103.5269775,27.9459019],[103.549057,27.9570141],[103.559967,27.9693604],[103.559967,27.9779091],[103.5523834,27.9817066],[103.5310135,27.9688854],[103.5153885,27.9688454],[103.5039368,27.9712601],[103.4939728,27.978384],[103.4944534,28.0054512],[103.4930191,28.0201721],[103.4911194,28.0263443],[103.4868469,28.0315685],[103.479248,28.0344181],[103.4721222,28.0353661],[103.4483795,28.0253944],[103.4403076,28.0287189],[103.4270172,28.0548363],[103.4270172,28.0581608],[103.4322433,28.0733566],[103.4474335,28.0909271],[103.4521866,28.099453],[103.4455338,28.1175194],[103.4474335,28.1279659],[103.4630966,28.1293907],[103.4944534,28.1431618],[103.5129623,28.1635799],[103.5329132,28.1792507],[103.5425262,28.1896801],[103.5523834,28.2020454],[103.5627365,28.2272034],[103.5856171,28.23386],[103.6065063,28.2433586],[103.6317368,28.2642002],[103.6501999,28.2561798],[103.6630173,28.2452583],[103.6834412,28.240984],[103.6938934,28.2091675],[103.6972122,28.205368],[103.7086105,28.205843],[103.7162094,28.2096424],[103.7294998,28.2310123],[103.7394714,28.2367096],[103.7644272,28.2369175],[103.7793732,28.254755],[103.8026428,28.2656765],[103.8287506,28.2865715],[103.8425217,28.2917938],[103.864357,28.3065147],[103.8695908,28.3155384],[103.8697586,28.3252296],[103.8634186,28.3421307],[103.8529663,28.3554268],[103.8515396,28.3710976],[103.8510971,28.3970909],[103.8425217,28.4133606],[103.8277969,28.4356785],[103.8249512,28.4617958],[103.8165665,28.4761295],[103.783638,28.5171185],[103.7836227,28.5294838],[103.7844772,28.5327911],[103.7959824,28.5456104],[103.7988434,28.5532074],[103.8018875,28.5673809],[103.8178329,28.576952],[103.8333435,28.5927448],[103.8336868,28.6029263],[103.8314896,28.615778],[103.8351593,28.6345062],[103.8358917,28.6547012],[103.841568,28.669075],[103.8549881,28.67453],[103.8627014,28.6743469],[103.8671799,28.6652374],[103.8700638,28.6586285],[103.8691101,28.6367836],[103.8786087,28.6253872],[103.8985519,28.6234875],[103.91185,28.6291866],[103.9203491,28.6286297],[103.9276962,28.6233063],[103.9343033,28.6124725],[103.9405365,28.606781],[103.9498367,28.605444],[103.981308,28.6108208],[104.0121536,28.6240406],[104.042923,28.6301365],[104.0628586,28.6301365],[104.0866928,28.6122894],[104.0989532,28.6120911],[104.1103363,28.6291866],[104.1193695,28.6367092],[104.1292877,28.6403809],[104.1428833,28.6422157],[104.1559296,28.640583],[104.1839981,28.6400127],[104.2024689,28.640583],[104.2294998,28.6450329],[104.2366562,28.6529293],[104.242569,28.6708069],[104.2461472,28.6700249],[104.2613297,28.642746],[104.2733994,28.6393356],[104.2917404,28.6353588],[104.3021927,28.6249123],[104.3097916,28.6230125],[104.33638,28.6382084],[104.3525238,28.6458073],[104.3743668,28.6486549],[104.3914566,28.6446037],[104.4108734,28.6363525],[104.4181213,28.6306496],[104.411377,28.6176891],[104.407753,28.6031742],[104.397377,28.5985088],[104.3813171,28.5969543],[104.3740616,28.5933247],[104.3667984,28.5871048],[104.3569489,28.5705147],[104.3569489,28.5658493],[104.3512497,28.5617027],[104.333107,28.5601482],[104.321701,28.5471878],[104.3097763,28.5388927],[104.2942276,28.5399303],[104.2791901,28.5363007],[104.2667465,28.540966],[104.253273,28.5383739],[104.2470474,28.5337086],[104.2434769,28.528698],[104.2444611,28.5181561],[104.2615738,28.5015678],[104.2610474,28.4854984],[104.2636414,28.4735737],[104.2605286,28.4642429],[104.2600098,28.4523201],[104.2657089,28.438324],[104.2563782,28.4191418],[104.2537918,28.3968506],[104.2651978,28.3921852],[104.2698593,28.3828545],[104.2714462,28.3566532],[104.2909317,28.3283787],[104.3117905,28.3157425],[104.3542404,28.3386879],[104.3709183,28.3362846],[104.3843536,28.3193493],[104.3951797,28.2738895],[104.443161,28.2741909],[104.4562073,28.2510414],[104.4450073,28.2232647],[104.4089966,28.2082539],[104.3967972,28.1938],[104.4089279,28.1763763],[104.4562912,28.1787281],[104.4383698,28.1212006],[104.3897095,28.1006775],[104.3845291,28.0620041],[104.3198624,28.0601711],[104.3038864,28.0481186],[104.3107071,28.035181],[104.3669128,28.0053902],[104.3934708,27.9649506],[104.4529724,27.9234161],[104.5069885,27.8838673],[104.5406036,27.8841839],[104.5717926,27.8466854],[104.6282883,27.8570366],[104.7258301,27.9002209],[104.7481537,27.8930721],[104.7783966,27.8921623],[104.7987137,27.9049129],[104.855072,27.9076195],[104.8821411,27.9171982],[104.9144974,27.9451313],[104.9045181,27.9633827],[104.956131,28.0109901],[104.9701233,28.0591927],[105.0301437,28.0854149],[105.0533981,28.1004753],[105.1219864,28.0753746],[105.1814575,28.0654812],[105.173317,28.0169296],[105.1889267,27.9961948],[105.2047272,27.9939804],[105.2474289,28.0111256],[105.2633972,28.0008373],[105.2749863,27.9732361],[105.2788162,27.9315777],[105.2442627,27.913105],[105.2324524,27.8972511],[105.2516937,27.8293247],[105.3088684,27.8174343],[105.2798233,27.7868557],[105.2936401,27.762867],[105.2956696,27.7191315],[105.2988968,27.7143326],[105.3036118,27.6259518],[105.2951889,27.6087379],[105.2622604,27.5911884],[105.2495117,27.564106],[105.226387,27.5495701],[105.2475433,27.54669],[105.2580032,27.5199375],[105.2385635,27.4937382],[105.2327118,27.4316349],[105.1897736,27.3764534],[105.1763763,27.3770733],[105.1780701,27.3954086],[105.1671829,27.408411],[105.0723267,27.4202671],[104.9500198,27.3540001],[104.8638,27.2936192],[104.848671,27.3171043],[104.8510284,27.3418636],[104.8138504,27.3546448],[104.7719803,27.3181305],[104.7446365,27.3245602],[104.7591476,27.3418541],[104.7346573,27.3448677],[104.6710281,27.3267021],[104.648613,27.329031],[104.6091614,27.3128777],[104.5734329,27.332943],[104.5329514,27.3389816],[104.5061417,27.3866043],[104.5108185,27.4052048],[104.4312134,27.4335556],[104.3888016,27.4619427],[104.3436737,27.4653606],[104.3259735,27.4204998],[104.3009872,27.4012146],[104.2999191,27.3666115],[104.2703323,27.3649082],[104.2429504,27.3352737],[104.2531509,27.305151],[104.1789932,27.2733631],[104.14077,27.3010845],[104.1352234,27.3285084],[104.1192932,27.3436623],[104.0745163,27.3421917],[104.0129166,27.380352],[103.9986496,27.4346886],[103.9724808,27.4281578],[103.9366684,27.4444027],[103.9271774,27.4419842],[103.9050064,27.3970108],[103.8681488,27.3096714],[103.82901,27.2671928],[103.8090363,27.2618675],[103.7471313,27.2151413],[103.7234726,27.1735458],[103.7043762,27.163866],[103.7027664,27.1400127],[103.6271133,27.1193714],[103.6227798,27.1037235],[103.6535263,27.09412],[103.6602631,27.0779552],[103.6426773,27.0703506],[103.6201172,27.0821419],[103.6040573,27.0759315],[103.6024628,27.0527649],[103.6221466,27.0299301],[103.6143494,27.0084972],[103.6471329,27.0257378],[103.6730499,27.0534058],[103.7025681,27.0540829],[103.7267227,27.0251179],[103.7510986,26.9688835],[103.7752228,26.9545746],[103.7607574,26.9174671],[103.7745514,26.8777981],[103.7210922,26.857069],[103.7000275,26.8182507],[103.7297134,26.736887],[103.7649765,26.739933],[103.756897,26.6628132],[103.744072,26.6367264],[103.7646484,26.6024265],[103.7619476,26.5817604],[103.7950134,26.5636806],[103.8105927,26.5350323],[103.911293,26.5213261],[103.9571762,26.528368],[104.0076828,26.519186],[104.0664062,26.5385056],[104.0674515,26.5710621],[104.1150589,26.6355953],[104.1253967,26.6458054],[104.1532364,26.649353],[104.2205963,26.6258621],[104.2430267,26.6316204],[104.2997437,26.6185093],[104.3436432,26.6265526],[104.3795395,26.6594753],[104.3971176,26.7061787],[104.4164734,26.7146282],[104.4583664,26.6577644],[104.4626617,26.5991421],[104.4794464,26.585331],[104.5634995,26.5925503],[104.5773621,26.5642643],[104.5654831,26.5526962],[104.5695419,26.5321083],[104.6041794,26.52005],[104.6301117,26.4847603],[104.6369171,26.4444866],[104.6599503,26.4403343],[104.6647415,26.3972912],[104.6777191,26.376318],[104.6455002,26.3327274],[104.5862198,26.3173008],[104.5859299,26.2971306],[104.5447693,26.2603092],[104.5472565,26.2199974],[104.5155334,26.1642323],[104.5200729,26.1243992],[104.5129929,26.0972862],[104.4931107,26.0771542],[104.4528809,26.0772114],[104.4660416,26.0200462],[104.437912,25.9477978],[104.4157791,25.9072323],[104.4349899,25.8751125],[104.410881,25.8510265],[104.4065933,25.8085804],[104.3834763,25.7872524],[104.377182,25.7431793],[104.360527,25.73452],[104.3325729,25.7569084],[104.3196564,25.7542458],[104.3079834,25.6587696],[104.3178101,25.6249561],[104.3248901,25.6069279],[104.3531265,25.600359],[104.365242,25.5849037],[104.3841629,25.5926685],[104.4240875,25.5836906],[104.4336472,25.5264893],[104.4193268,25.496088],[104.435997,25.4802151],[104.4520264,25.4952755],[104.4884186,25.5034332],[104.5044098,25.5228424],[104.5549698,25.5338707],[104.5409317,25.4076805],[104.5723724,25.4033928],[104.5956573,25.3800011],[104.6299362,25.3704548],[104.6411972,25.3586369],[104.6501617,25.2988949],[104.7020264,25.2970505],[104.7377167,25.2689266],[104.7664337,25.281992],[104.7820129,25.2649269],[104.8052521,25.26717],[104.8180237,25.2528286],[104.8087234,25.21838],[104.8114395,25.1695843],[104.7945175,25.168766],[104.7521133,25.217247],[104.7399673,25.2178345],[104.7282028,25.2071972],[104.7388306,25.179781],[104.7178497,25.1546249],[104.6825867,25.0933647],[104.6625977,25.0730247],[104.62397,25.0729122],[104.6233673,25.0584679],[104.6330109,25.0532818],[104.6741333,25.0554771],[104.689949,25.0391102],[104.7008286,25.0105553],[104.6833878,24.9886341],[104.6230164,24.8994122],[104.587677,24.8807545],[104.5409088,24.8257694],[104.5392532,24.7718964],[104.527153,24.7502384],[104.5338669,24.7344913],[104.5208664,24.7268009],[104.4829178,24.6576748],[104.4977875,24.6335316],[104.5028915,24.5831661],[104.5212173,24.5414085],[104.5419693,24.5292339],[104.540741,24.5042439],[104.5671616,24.4545403],[104.6118164,24.4121017],[104.6053314,24.3843155],[104.6459274,24.3670368],[104.6995468,24.3239651],[104.7118073,24.3279648],[104.718689,24.3429165],[104.7031937,24.4397144],[104.7133865,24.4491959],[104.7417831,24.4475994],[104.7519531,24.4612007],[104.7824783,24.4467812],[104.8341904,24.4497013],[104.9061737,24.4309788],[104.9326935,24.4114552],[104.9773407,24.4158783],[105.0060577,24.4378338],[105.0399094,24.4446888],[105.0904694,24.4321575],[105.1059036,24.41506],[105.098793,24.3895836],[105.1086731,24.3752041],[105.1415329,24.3783646],[105.1931992,24.3399105],[105.1789627,24.2862186],[105.2308426,24.1989498],[105.2187119,24.1718559],[105.1911392,24.1744671],[105.1789169,24.1631794],[105.1787872,24.1430149],[105.2050171,24.110384],[105.2648163,24.0730953],[105.2826538,24.1112061],[105.3184204,24.121212],[105.3465881,24.0945206],[105.388237,24.0742893],[105.4096527,24.0416031],[105.4782791,24.0255642],[105.4925308,24.0288124],[105.4977493,24.0414295],[105.5165634,24.1090698],[105.5372925,24.12883],[105.5675888,24.1330299],[105.6244583,24.1274281],[105.6426163,24.060564],[105.6604233,24.045475],[105.6776962,24.0464211],[105.6969299,24.0684452],[105.7359924,24.0623131],[105.7692719,24.0760975],[105.8010788,24.0600872],[105.7890778,24.0373955],[105.8381271,24.0310154],[105.8403778,24.0523224],[105.8541412,24.0624104],[105.8962021,24.0546322],[105.9002228,24.108242],[105.9162369,24.1251984],[105.9575729,24.1155682],[105.9986496,24.1320438],[106.0459366,24.0935173],[106.0541534,24.0582275],[106.0894089,24.0375671],[106.0963974,24.0251865],[106.0928268,23.9962082],[106.1208496,23.9617195],[106.149292,23.8992348],[106.1942062,23.8737717],[106.1885223,23.8650227],[106.169281,23.8642349],[106.1887665,23.8273926],[106.1521225,23.8164139],[106.1332626,23.7979546],[106.1545868,23.7120171],[106.1405411,23.6513557],[106.116188,23.6027966],[106.1378632,23.5721645],[106.1169815,23.5617218],[106.1037064,23.536171],[106.0825806,23.5266399],[106.0688171,23.5001659],[106.0325394,23.4852581],[105.9909363,23.4505711],[105.9836426,23.4599361],[105.9941864,23.4799709],[105.9828796,23.4922943],[105.9326096,23.5117016],[105.9057693,23.5023403],[105.8775864,23.5319824],[105.8228607,23.5182743],[105.8124619,23.5099354],[105.8028564,23.4701576],[105.7553406,23.4622211],[105.7347031,23.4333687],[105.6966171,23.4041424],[105.6604309,23.4102726],[105.6473236,23.4014397],[105.6865311,23.367794],[105.6677094,23.3573093],[105.6891403,23.3317776],[105.6699829,23.3300133],[105.6513138,23.3535004],[105.586998,23.3143845],[105.5572281,23.2601757],[105.5245209,23.2472534],[105.5388794,23.1924896],[105.5346069,23.1917934],[105.5308838,23.1912994],[105.5273895,23.1917267],[105.5229034,23.1928329],[105.5178986,23.1955433],[105.5131531,23.1973343],[105.5084,23.1991272],[105.5034103,23.2006874],[105.4998932,23.2043285],[105.4968414,23.2095795],[105.494278,23.2157536],[105.4924469,23.2228527],[105.4911728,23.2269726],[105.4866333,23.2317505],[105.4835968,23.2349358],[105.4810562,23.2401924],[105.4789963,23.2456818],[105.477211,23.2481041],[105.4747772,23.2484245],[105.4731827,23.2486801],[105.4710312,23.2491837],[105.4684601,23.2497349],[105.4659729,23.2501945],[105.4644928,23.2506542],[105.4597626,23.2536392],[105.4560394,23.2600651],[105.4555435,23.2609806],[105.4523087,23.268095],[105.4518127,23.2690125],[105.4518127,23.2699299],[105.4506073,23.2743092],[105.4482422,23.2791328],[105.446167,23.2855396],[105.4436035,23.2924004],[105.4395523,23.2980995],[105.4347534,23.3042526],[105.4315109,23.304451],[105.4290466,23.3025913],[105.4251328,23.296814],[105.4237137,23.2910614],[105.4192581,23.2884922],[105.4122925,23.2884235],[105.4073105,23.2886028],[105.4025421,23.2915401],[105.3949814,23.2990398],[105.3894119,23.3070183],[105.388588,23.3132076],[105.3833237,23.3165989],[105.379837,23.3154163],[105.3717728,23.3177853],[105.3655167,23.3221092],[105.3584824,23.3314762],[105.3537064,23.3376446],[105.3516693,23.3449745],[105.3498688,23.3520756],[105.3495636,23.3610229],[105.3495102,23.3676758],[105.339241,23.3754177],[105.3342438,23.3792896],[105.329483,23.3836212],[105.3261871,23.3897972],[105.3194733,23.3899879],[105.31427,23.3855991],[105.3078003,23.3840294],[105.3048096,23.3772335],[105.3040619,23.3760872],[105.3010864,23.3721886],[105.2998276,23.3711243],[105.2993469,23.3708],[105.2987137,23.3703613],[105.2965088,23.3678131],[105.2928238,23.3636436],[105.2896194,23.3613129],[105.2856827,23.3575993],[105.282753,23.3534374],[105.2813034,23.3497467],[105.2808609,23.3453808],[105.2796478,23.342844],[105.2764206,23.3421211],[105.2721329,23.3421059],[105.2666931,23.343853],[105.2617035,23.3442593],[105.2564774,23.344202],[105.2527771,23.3409481],[105.2513199,23.3384075],[105.2501221,23.3347225],[105.2511902,23.3294544],[105.2535095,23.32374],[105.2537918,23.3209877],[105.2491913,23.3112984],[105.2481918,23.3086491],[105.2446899,23.295948],[105.2441864,23.2948017],[105.2434464,23.292738],[105.2402267,23.2849388],[105.2397385,23.2831039],[105.2387466,23.2808094],[105.2368698,23.2732849],[105.2362976,23.270298],[105.2348633,23.2659206],[105.2301483,23.2651806],[105.2239227,23.2660294],[105.2204132,23.2669086],[105.2126465,23.2711849],[105.2033768,23.2749844],[105.1963577,23.2788086],[105.1886215,23.2807884],[105.1826401,23.2811813],[105.1768112,23.28088],[105.1741486,23.2808018],[105.1695938,23.280714],[105.1668701,23.2806396],[105.1658783,23.2804108],[105.1606674,23.2781105],[105.1596603,23.2771759],[105.1583405,23.2759628],[105.1570206,23.2746544],[105.1559525,23.2737484],[105.1538925,23.272131],[105.1457367,23.2679062],[105.1356201,23.2620506],[105.1276932,23.258976],[105.1178284,23.2531223],[105.1111374,23.2507496],[105.1052017,23.2483826],[105.1019211,23.2515583],[105.0991135,23.2568054],[105.0965576,23.2609081],[105.0929794,23.2639275],[105.0882492,23.2673626],[105.080719,23.2677269],[105.0758438,23.2647953],[105.0654602,23.2603092],[105.0603027,23.2558861],[105.0523987,23.2514305],[105.0460587,23.2424011],[105.0384521,23.2351913],[105.0315628,23.2307472],[105.0261612,23.225172],[105.0207596,23.2202854],[105.0163116,23.2183933],[105.0093613,23.2176189],[105.0033722,23.2184639],[104.9991837,23.2158871],[104.9970093,23.2117271],[104.9962997,23.2098331],[104.9962234,23.2058144],[104.9970398,23.2001991],[104.9970474,23.1976776],[104.9953232,23.1944618],[104.9945831,23.1935425],[104.9938431,23.1928539],[104.9906235,23.1917],[104.9839096,23.1914577],[104.9824219,23.1921425],[104.9801788,23.1930561],[104.979187,23.193512],[104.9753723,23.1958466],[104.9741135,23.1960621],[104.9705963,23.1973953],[104.9653473,23.199625],[104.9616318,23.198431],[104.9581833,23.1963215],[104.9562683,23.1914749],[104.9551315,23.1845741],[104.9529877,23.1783504],[104.9491196,23.1709538],[104.9479675,23.1649704],[104.9483032,23.1594639],[104.9463806,23.1550789],[104.9429092,23.1543465],[104.938942,23.1548309],[104.9368362,23.1578522],[104.9362488,23.1589298],[104.9318237,23.1636181],[104.92733,23.1647072],[104.9228363,23.1657982],[104.9213028,23.1689911],[104.9217529,23.1722126],[104.9204712,23.1740322],[104.9156876,23.1778736],[104.910202,23.1787205],[104.9024963,23.1777039],[104.8963089,23.1762466],[104.8908691,23.1743393],[104.8841934,23.1717262],[104.8802872,23.1663952],[104.8794022,23.1604137],[104.8798065,23.1505489],[104.8774338,23.1431713],[104.8751373,23.1314316],[104.8722076,23.1281796],[104.8657837,23.1255684],[104.8600616,23.1257248],[104.8548203,23.1268024],[104.8456879,23.1227779],[104.8370285,23.1201363],[104.8305893,23.1184444],[104.8276825,23.1140442],[104.8237534,23.1107769],[104.8207474,23.1123428],[104.8161697,23.1182518],[104.8136597,23.1200542],[104.8067093,23.1192703],[104.8025436,23.1157703],[104.7997437,23.1049423],[104.8011093,23.0971546],[104.804451,23.090313],[104.8087921,23.0832539],[104.8104324,23.0721359],[104.8115616,23.0645733],[104.812912,23.0592041],[104.8151169,23.053236],[104.8178482,23.0461826],[104.8199921,23.0368004],[104.8235321,23.0329437],[104.8267136,23.0208187],[104.8271332,23.0107212],[104.8277664,23.0020065],[104.8296432,22.9939957],[104.8339462,22.9883137],[104.8442078,22.9838581],[104.853653,22.9770966],[104.858223,22.9715252],[104.8604202,22.9667969],[104.8612595,22.9581394],[104.860611,22.9523926],[104.8555069,22.9449768],[104.8481674,22.9384499],[104.8442993,22.9319706],[104.8385162,22.9286575],[104.8345413,22.9239559],[104.833313,22.9218884],[104.8323212,22.9211979],[104.8254013,22.9170475],[104.8239212,22.9163551],[104.8152618,22.9133472],[104.8127899,22.9121933],[104.8038177,22.9095459],[104.7998199,22.9085484],[104.7928772,22.907053],[104.7874832,22.9079342],[104.7848434,22.9093552],[104.7801132,22.9092903],[104.7737427,22.9043827],[104.7684174,22.8965015],[104.7633286,22.8886261],[104.7609634,22.882164],[104.7581177,22.8738594],[104.7585068,22.8653698],[104.754097,22.862093],[104.7454071,22.8619728],[104.7409286,22.8630581],[104.7344971,22.8611317],[104.7288589,22.8576088],[104.7269135,22.8552837],[104.7282333,22.8511696],[104.7312927,22.8457012],[104.734169,22.8372478],[104.7360077,22.8310738],[104.7324066,22.8270874],[104.7266998,22.8248272],[104.722023,22.8240108],[104.7114563,22.8260689],[104.7006226,22.8252945],[104.6917191,22.8235607],[104.6820908,22.8208961],[104.6756363,22.8208046],[104.6713867,22.8228092],[104.6683578,22.8257504],[104.6640778,22.8293629],[104.6555634,22.8338318],[104.6491165,22.835989],[104.6428528,22.8370857],[104.6372986,22.8403034],[104.6319809,22.8448639],[104.6283417,22.850544],[104.6238937,22.8410606],[104.6216812,22.8309135],[104.6235809,22.8245277],[104.6210098,22.8187332],[104.6148834,22.8163052],[104.6090927,22.8158321],[104.6072006,22.8156776],[104.5989532,22.8184814],[104.6002426,22.8256245],[104.6017914,22.8327751],[104.5991211,22.8398304],[104.5940704,22.8477974],[104.5892029,22.848629],[104.5848694,22.8503151],[104.5807877,22.8527107],[104.5768967,22.8514614],[104.574173,22.8480186],[104.5680771,22.8417263],[104.5624466,22.8375092],[104.5553436,22.8323517],[104.5479584,22.8292542],[104.5395432,22.8284378],[104.5311737,22.8248672],[104.5260468,22.8195076],[104.5222321,22.8114128],[104.5205688,22.8072548],[104.5179367,22.8017025],[104.513298,22.7948132],[104.5065536,22.7882347],[104.497467,22.7832794],[104.489357,22.7783012],[104.4835281,22.7715511],[104.4766922,22.765934],[104.4678574,22.7609749],[104.4607391,22.756731],[104.451149,22.752676],[104.4432831,22.7488785],[104.4354019,22.7459984],[104.4272919,22.7419662],[104.420433,22.7377243],[104.4140778,22.7328014],[104.4092636,22.7251472],[104.4061737,22.718668],[104.4025726,22.7126389],[104.3957138,22.708395],[104.3900528,22.7057781],[104.3831787,22.7022228],[104.3783188,22.6973228],[104.373703,22.6928844],[104.3672714,22.6916313],[104.3592911,22.6940289],[104.3557587,22.6974163],[104.3477097,22.7030258],[104.3422928,22.7073555],[104.3404312,22.7124844],[104.3352203,22.7179279],[104.3306198,22.7226391],[104.3277893,22.7262459],[104.3252563,22.7282524],[104.3178024,22.7289944],[104.3063889,22.7294121],[104.296608,22.7333126],[104.2905884,22.7356949],[104.2800903,22.7386589],[104.2688828,22.7406864],[104.2714767,22.7451096],[104.2703094,22.7512798],[104.2651367,22.7587299],[104.2599564,22.7661819],[104.2560883,22.7718048],[104.255188,22.7795544],[104.2556915,22.7862816],[104.2583771,22.7976799],[104.2624588,22.8108978],[104.2671585,22.8163624],[104.2755127,22.8287582],[104.2758789,22.8317127],[104.2756805,22.8318901],[104.2708969,22.8360825],[104.2696075,22.8385868],[104.266571,22.8417492],[104.2618179,22.8435078],[104.2568436,22.8443413],[104.2514114,22.8428726],[104.2481766,22.843277],[104.2456436,22.8459892],[104.2414322,22.845459],[104.2367477,22.843771],[104.2323685,22.8395634],[104.2269669,22.836256],[104.2223129,22.8338814],[104.2180862,22.8342667],[104.2106705,22.8327637],[104.20401,22.8308125],[104.1963882,22.8272362],[104.1899414,22.8273544],[104.1800232,22.8267231],[104.1714478,22.8217525],[104.1588669,22.8180885],[104.1507416,22.8151894],[104.1461334,22.8102875],[104.1392212,22.8085575],[104.1342468,22.8089294],[104.1282425,22.8113499],[104.1227493,22.8128605],[104.1195221,22.8130322],[104.1138763,22.8097191],[104.1100006,22.8057442],[104.1014175,22.8009987],[104.0960617,22.7963104],[104.0936737,22.7923641],[104.0906372,22.7831249],[104.0875397,22.7773285],[104.0848999,22.7731476],[104.0785599,22.7679825],[104.0702209,22.7636986],[104.0626831,22.7571316],[104.0568314,22.7522049],[104.0493164,22.7442608],[104.0438232,22.7349758],[104.0397797,22.726635],[104.0374298,22.7206211],[104.0343628,22.7139072],[104.0315018,22.7083435],[104.0286789,22.7011719],[104.0251389,22.6930714],[104.0264664,22.6887302],[104.0302734,22.6851273],[104.0335464,22.6826611],[104.0355911,22.6799412],[104.0356522,22.6769581],[104.0340729,22.6700401],[104.0325165,22.6615143],[104.0309525,22.6539078],[104.0298767,22.6465397],[104.0302505,22.6408043],[104.0293884,22.6348171],[104.0265198,22.6301727],[104.02388,22.6259918],[104.0217438,22.6220474],[104.0211182,22.6162949],[104.0202408,22.611227],[104.0207901,22.6036758],[104.0183487,22.5948277],[104.0156174,22.5869846],[104.0127869,22.5736027],[104.0128632,22.5680656],[104.0147171,22.5573349],[104.0085297,22.537941],[104.0113068,22.5308437],[104.0079269,22.5204906],[103.9985428,22.5202007],[103.9891586,22.5171547],[103.9743729,22.5110874],[103.966507,22.5039196],[103.9642563,22.5071182],[103.9592667,22.5109863],[103.9505463,22.518734],[103.9453201,22.5228291],[103.9376068,22.5273685],[103.9294128,22.5309849],[103.9249573,22.5307255],[103.9209518,22.536665],[103.9141998,22.544651],[103.909668,22.5533428],[103.9041672,22.5585842],[103.8979416,22.563591],[103.8882523,22.5674229],[103.8820496,22.5694447],[103.8760834,22.573534],[103.8705826,22.5787735],[103.8640823,22.585844],[103.8568497,22.5915279],[103.8498383,22.6002007],[103.8440781,22.6070442],[103.8390579,22.6145821],[103.8325806,22.618206],[103.8256073,22.622057],[103.817337,22.6332417],[103.8133087,22.6403275],[103.8082962,22.64534],[103.8035431,22.6517315],[103.7990189,22.6578941],[103.7947464,22.6640587],[103.7882614,22.6692886],[103.7817612,22.675436],[103.7747726,22.6813488],[103.7670135,22.688633],[103.7568512,22.6894703],[103.7488937,22.6935406],[103.7428818,22.6990013],[103.7383499,22.7065392],[103.7345734,22.7122478],[103.7327805,22.7182007],[103.7275085,22.7245865],[103.720787,22.7279739],[103.7175369,22.7302437],[103.713028,22.7352562],[103.70578,22.7418537],[103.6970291,22.7491264],[103.6890488,22.7536507],[103.6822662,22.7625465],[103.6755219,22.76754],[103.6623001,22.7759209],[103.6587296,22.7846127],[103.6514435,22.7939606],[103.6472473,22.7937298],[103.6365814,22.7931442],[103.6281586,22.7923832],[103.6187668,22.7900047],[103.6166382,22.7810326],[103.6127319,22.7752609],[103.6065903,22.7703857],[103.605217,22.7598152],[103.5973663,22.7523994],[103.5917206,22.7482166],[103.5848923,22.7387428],[103.5795212,22.7318077],[103.5771027,22.7262764],[103.570549,22.7200184],[103.5648727,22.7128525],[103.5640411,22.6983833],[103.5601807,22.689394],[103.5652084,22.683012],[103.5719833,22.675499],[103.5723572,22.664484],[103.5716782,22.6585102],[103.5680466,22.6504421],[103.5574799,22.6443768],[103.5515671,22.6411095],[103.5489273,22.6335087],[103.5477829,22.6270695],[103.5451431,22.6196995],[103.5429993,22.6114159],[103.5325012,22.5989227],[103.5241928,22.5980949],[103.5139694,22.5995903],[103.5133438,22.5999947],[103.5073013,22.6033096],[103.5047226,22.6073875],[103.5028763,22.6117115],[103.5007629,22.617178],[103.497963,22.6196442],[103.4936371,22.6239147],[103.4878387,22.6281528],[103.4845734,22.629921],[103.4817734,22.6328449],[103.4798965,22.6380863],[103.4775314,22.6433182],[103.4734497,22.6478233],[103.4666595,22.6515789],[103.4623108,22.6567669],[103.4580002,22.6605778],[103.4566422,22.6653709],[103.4564667,22.6720276],[103.4560318,22.6791363],[103.4521408,22.6859417],[103.4483109,22.6902237],[103.4437332,22.6947155],[103.438652,22.6991978],[103.4350433,22.7048607],[103.432663,22.7105503],[103.4303131,22.7148609],[103.4289017,22.7212601],[103.4283829,22.7318134],[103.4292297,22.7373447],[103.4323502,22.7413158],[103.4367065,22.7453156],[103.4403229,22.7497597],[103.4414368,22.7543755],[103.4425888,22.757616],[103.4405136,22.7610168],[103.4350128,22.7631931],[103.4305267,22.7635536],[103.4250565,22.7638931],[103.4215698,22.7647343],[103.4187469,22.7683468],[103.4158783,22.7735672],[103.4132767,22.7778721],[103.4084702,22.7819004],[103.4042206,22.7829552],[103.3974533,22.7857914],[103.3909607,22.7872543],[103.3859329,22.7898998],[103.3785629,22.7966251],[103.3749924,22.7999916],[103.3711929,22.8031216],[103.3646698,22.8055019],[103.3552017,22.8071289],[103.3432083,22.8103046],[103.3376694,22.8131657],[103.3319321,22.8144131],[103.3289795,22.8134289],[103.3234634,22.8077602],[103.3211136,22.8059406],[103.3211899,22.7997437],[103.3208389,22.7882633],[103.3159866,22.7801762],[103.3109207,22.7702522],[103.307518,22.7647057],[103.3033905,22.758234],[103.3004913,22.7526951],[103.2939072,22.7450485],[103.2892609,22.7399483],[103.2868729,22.7332649],[103.2867126,22.7268372],[103.2873077,22.7197266],[103.2856979,22.7100677],[103.2823486,22.7010784],[103.2824936,22.6912098],[103.2781296,22.6835861],[103.2722321,22.6800785],[103.2519989,22.6743469],[103.2426682,22.6682758],[103.2372665,22.6650009],[103.2301712,22.6587238],[103.2226105,22.6501446],[103.2102737,22.6477108],[103.2013626,22.6469212],[103.194931,22.646389],[103.1907196,22.6465702],[103.1828766,22.6405144],[103.1779938,22.6363239],[103.1721268,22.630518],[103.1670303,22.6231136],[103.1619415,22.6150188],[103.1578369,22.6080856],[103.1571732,22.6023369],[103.1573029,22.5931568],[103.1581268,22.5871983],[103.1611862,22.5808048],[103.1652222,22.5762615],[103.1720276,22.5673847],[103.1765518,22.5623875],[103.1714706,22.5542927],[103.1619492,22.5450001],[103.1543579,22.5398617],[103.1477127,22.5377178],[103.14077,22.5383263],[103.1382294,22.5406189],[103.1345062,22.5379219],[103.1276779,22.5340843],[103.1233521,22.5296173],[103.1190338,22.5249214],[103.1139297,22.5211239],[103.1075363,22.5193634],[103.1011505,22.5176029],[103.0954971,22.5160904],[103.0890732,22.5157051],[103.0849228,22.5135384],[103.0795822,22.5097351],[103.0759964,22.5050545],[103.0731964,22.4992447],[103.0706329,22.4939003],[103.0683289,22.4876423],[103.0697327,22.4819355],[103.0716476,22.4755497],[103.0757523,22.4705963],[103.0761108,22.4666996],[103.0798264,22.4663296],[103.0763931,22.4570599],[103.0730209,22.4535332],[103.0686493,22.4504414],[103.0657196,22.4492226],[103.0627594,22.4489212],[103.0577316,22.4515553],[103.0563126,22.4577217],[103.0490494,22.4522629],[103.0451584,22.4496422],[103.0365677,22.4473667],[103.0306778,22.4456139],[103.0264435,22.4466591],[103.0224075,22.4490891],[103.017807,22.4540291],[103.0124588,22.4591808],[103.0086136,22.4639091],[103.0038528,22.4656296],[102.9988937,22.4659691],[102.9939575,22.4656162],[102.9904327,22.467598],[102.9880524,22.4728222],[102.9879532,22.476265],[102.9856262,22.4791927],[102.9821167,22.4809437],[102.9754105,22.4816971],[102.969223,22.4820042],[102.9655075,22.4816818],[102.9587402,22.484499],[102.9544983,22.4857731],[102.9500732,22.4847431],[102.9425888,22.4866257],[102.9366074,22.4876251],[102.9319382,22.4865894],[102.9266129,22.4910488],[102.9237823,22.4946537],[102.9226532,22.4994488],[102.9200134,22.505125],[102.9154282,22.5091457],[102.9116364,22.5115757],[102.9095078,22.5165749],[102.908577,22.5229836],[102.9044571,22.528162],[102.90065,22.5312824],[102.894783,22.5373363],[102.8926163,22.5432549],[102.8939972,22.5467339],[102.8901672,22.5505428],[102.8828735,22.5542641],[102.8812637,22.5583572],[102.8825989,22.5634441],[102.8824692,22.5678043],[102.8781281,22.5722885],[102.8718033,22.5767212],[102.8709412,22.5803757],[102.8723373,22.5836258],[102.8737183,22.5871067],[102.8755264,22.5928936],[102.8711929,22.5971489],[102.8666,22.6011677],[102.8639832,22.6061535],[102.8589172,22.6094704],[102.852951,22.6102371],[102.8464279,22.6128273],[102.8423767,22.6157112],[102.8362427,22.6219845],[102.830368,22.6275768],[102.8240738,22.6310902],[102.8189011,22.6298103],[102.8123169,22.6259651],[102.8068771,22.6255951],[102.8006134,22.6264725],[102.7924194,22.6270599],[102.7850266,22.6276627],[102.7833405,22.6300583],[102.7835007,22.6364784],[102.7843628,22.6408634],[102.7847366,22.6445503],[102.7833786,22.6486473],[102.7800827,22.6513176],[102.7745895,22.6523247],[102.7671585,22.652132],[102.7609406,22.6528893],[102.7575912,22.6569366],[102.7534485,22.662571],[102.7506027,22.6666317],[102.7475281,22.6697674],[102.742569,22.6696377],[102.7341614,22.6689587],[102.7270966,22.6729088],[102.7202682,22.6773224],[102.7134476,22.6812782],[102.7103577,22.6851025],[102.7104416,22.6903858],[102.7088623,22.6933308],[102.7055664,22.6955414],[102.7009125,22.7016201],[102.6961365,22.7037907],[102.6903687,22.7057056],[102.6842117,22.7043953],[102.6776199,22.701004],[102.6690369,22.6980209],[102.6619263,22.6953068],[102.6559906,22.6949177],[102.6512527,22.69594],[102.6454315,22.6994591],[102.6390686,22.7048016],[102.6331863,22.7103882],[102.6262817,22.7168636],[102.6170273,22.7269516],[102.6104584,22.7309093],[102.605629,22.734684],[102.6011581,22.7347927],[102.5960312,22.732357],[102.5928879,22.7297459],[102.5907822,22.7257843],[102.5892181,22.720459],[102.5871964,22.7137432],[102.5849228,22.7086601],[102.5839615,22.7065353],[102.5775604,22.7049847],[102.5735931,22.7051067],[102.5689163,22.7116413],[102.5673065,22.7152729],[102.5644073,22.720705],[102.5603485,22.7283039],[102.5547409,22.7358322],[102.5510635,22.7421627],[102.5459137,22.7482243],[102.5404968,22.754509],[102.5325928,22.7609539],[102.5249481,22.7671757],[102.51931,22.7727623],[102.5123978,22.7792339],[102.5073471,22.7820816],[102.5018463,22.7830772],[102.4923935,22.7841949],[102.4862671,22.7817287],[102.4828796,22.779108],[102.4785538,22.7750835],[102.4724121,22.7728462],[102.4664917,22.7719936],[102.4611588,22.7681694],[102.4558563,22.7634296],[102.452507,22.7594318],[102.4511871,22.7543411],[102.451828,22.7499943],[102.4535217,22.7438393],[102.4536591,22.7397099],[102.4518433,22.7348347],[102.4479828,22.7312832],[102.4456024,22.7282295],[102.4424896,22.7249279],[102.4402008,22.71912],[102.4366989,22.7125912],[102.4346771,22.7061043],[102.4314423,22.6991215],[102.4255905,22.6959724],[102.4182663,22.6923218],[102.4123688,22.6910076],[102.4044266,22.6910133],[102.3957367,22.6912289],[102.3915024,22.692028],[102.3883133,22.6910191],[102.3844604,22.6876926],[102.3833237,22.6844463],[102.3834763,22.6796265],[102.3863831,22.6748848],[102.3917923,22.6686058],[102.3951263,22.6652546],[102.3987427,22.6609917],[102.4011002,22.6571541],[102.4044189,22.6525841],[102.4116135,22.6519756],[102.4210281,22.6477051],[102.4194336,22.6405621],[102.4066925,22.6336994],[102.400322,22.629921],[102.3942566,22.6231651],[102.3896637,22.6180401],[102.3858032,22.6129265],[102.3822021,22.6071281],[102.3785934,22.6022472],[102.3682709,22.5979462],[102.3584671,22.5927353],[102.3523483,22.5894184],[102.3495026,22.5831738],[102.3548508,22.5756855],[102.3591309,22.5723114],[102.3492889,22.5691643],[102.3414383,22.5655918],[102.3315811,22.5633602],[102.3251572,22.5625648],[102.3240128,22.5588722],[102.3238068,22.5572987],[102.3231506,22.5522003],[102.3247986,22.5437336],[102.326973,22.5413094],[102.3310165,22.5374813],[102.3317719,22.5368061],[102.3345337,22.5352516],[102.3357773,22.534586],[102.3380585,22.5318718],[102.3403015,22.5309963],[102.3421021,22.5280457],[102.3421173,22.5271282],[102.3421631,22.5255222],[102.3417435,22.5220718],[102.3420181,22.5204716],[102.3436432,22.514307],[102.3441467,22.5131683],[102.3446732,22.5120296],[102.3457489,22.5081482],[102.3460236,22.5070076],[102.3462982,22.5058632],[102.3476181,22.5017567],[102.3471832,22.4994545],[102.3462372,22.4969139],[102.3460236,22.4959908],[102.3452988,22.49506],[102.339447,22.4912834],[102.3382416,22.4901142],[102.3309326,22.4851627],[102.3299637,22.484457],[102.3289795,22.4842091],[102.3265305,22.483017],[102.3255463,22.4829979],[102.3233337,22.4822712],[102.3154602,22.4809799],[102.3031006,22.4809818],[102.2872467,22.4825268],[102.2860184,22.4825039],[102.2786026,22.4823666],[102.2776184,22.4823475],[102.2743988,22.4827309],[102.2725525,22.4828434],[102.2713013,22.482748],[102.2678833,22.4789906],[102.2625732,22.4747009],[102.2578735,22.4674435],[102.2535629,22.4634113],[102.2503891,22.4619408],[102.2490463,22.4577675],[102.2491302,22.4552422],[102.2519989,22.4509621],[102.255867,22.4464798],[102.2594986,22.441761],[102.2618866,22.437006],[102.2645569,22.4311104],[102.2654572,22.4267712],[102.2655869,22.4228706],[102.2651825,22.420332],[102.2630463,22.4177437],[102.2565994,22.4180145],[102.2495422,22.4217148],[102.2460022,22.4239082],[102.2421799,22.4270134],[102.2378922,22.4294147],[102.2318802,22.4315376],[102.2239075,22.4329109],[102.2147217,22.4337902],[102.2100067,22.4338818],[102.204277,22.4348621],[102.1990433,22.4360867],[102.1933517,22.4361477],[102.1857224,22.4347744],[102.1747971,22.4356003],[102.1657562,22.4321156],[102.1628799,22.4297333],[102.1592331,22.4277859],[102.1575928,22.425211],[102.1555405,22.4200954],[102.1528473,22.4122047],[102.149353,22.4038105],[102.1468124,22.4009972],[102.142807,22.4022579],[102.1404495,22.4058628],[102.1366425,22.4085064],[102.1325378,22.4127483],[102.1296463,22.4172573],[102.1287537,22.4220543],[102.1300278,22.4278355],[102.1296082,22.4326477],[102.1279526,22.4374218],[102.1261368,22.4396667],[102.1208801,22.441576],[102.1128693,22.4440918],[102.1071625,22.4443817],[102.0989685,22.4450531],[102.0920105,22.4457626],[102.0858078,22.4462643],[102.078331,22.447649],[102.0708466,22.4490299],[102.0635834,22.4515667],[102.0602722,22.4542236],[102.0525284,22.4560566],[102.0443268,22.4567261],[102.0355606,22.4599056],[102.0281067,22.4603672],[102.0244904,22.4577312],[102.0180969,22.4497242],[102.0127716,22.4463444],[102.0036774,22.444458],[102,22.4420509],[101.9937973,22.438406],[101.9906693,22.43536],[101.983078,22.4324398],[101.9768906,22.4327545],[101.972168,22.4333344],[101.967659,22.4352894],[101.9621277,22.4385929],[101.9563828,22.4405212],[101.9491272,22.4431],[101.9429169,22.4440994],[101.9409409,22.4439812],[101.9272766,22.4414272],[101.917038,22.4413013],[101.9067001,22.44034],[101.9035263,22.437376],[101.9031906,22.4328747],[101.9070816,22.4247036],[101.9100266,22.4112759],[101.9089203,22.4018917],[101.9058914,22.3939514],[101.9001999,22.3874779],[101.8944168,22.3853722],[101.887001,22.3851604],[101.8776627,22.3868484],[101.8662491,22.3922825],[101.8541718,22.399807],[101.8452988,22.4072227],[101.8351593,22.413763],[101.8280487,22.4218102],[101.8216705,22.4298325],[101.8231735,22.4497738],[101.8228226,22.4598942],[101.8180313,22.4641876],[101.8141403,22.4659233],[101.8086319,22.4706993],[101.8003311,22.4801636],[101.7968903,22.4809647],[101.7907028,22.4807091],[101.787323,22.4831161],[101.7875671,22.4897709],[101.7849197,22.4981289],[101.778183,22.5031738],[101.7711334,22.5066223],[101.7650223,22.5086575],[101.757782,22.5070553],[101.7498474,22.5001907],[101.7372818,22.4974403],[101.7319031,22.4993877],[101.7250671,22.4991722],[101.7229614,22.4962349],[101.7216568,22.4877758],[101.7140579,22.4831963],[101.7042236,22.4782276],[101.6932526,22.4760532],[101.6829071,22.4777622],[101.6757202,22.4773045],[101.6709366,22.4751587],[101.6693497,22.4722233],[101.6702194,22.4689789],[101.6729965,22.4638348],[101.6702271,22.4558811],[101.6672134,22.4481659],[101.6654587,22.4408684],[101.6630783,22.4365788],[101.6615067,22.4276695],[101.6544876,22.4184723],[101.6496124,22.4138031],[101.6468964,22.4074554],[101.6459579,22.4019699],[101.6540375,22.3929825],[101.6626434,22.3846664],[101.6676636,22.3801403],[101.6694489,22.3750286],[101.6700974,22.3724804],[101.6650391,22.3694229],[101.6567535,22.3660107],[101.6482162,22.3628368],[101.6455917,22.3585548],[101.6472397,22.3495426],[101.6472702,22.3395519],[101.6473007,22.337822],[101.6445465,22.3303261],[101.6381226,22.323637],[101.6296005,22.3137989],[101.6248474,22.3054485],[101.6256027,22.2925549],[101.6268768,22.2867718],[101.6222763,22.2825527],[101.6132431,22.2789326],[101.6015167,22.2758579],[101.5888367,22.2739582],[101.5810089,22.2760429],[101.5715103,22.2800179],[101.5667191,22.2774124],[101.5631027,22.2729282],[101.5566025,22.2641716],[101.5515518,22.2544479],[101.5479965,22.2449112],[101.5474396,22.2364273],[101.5506668,22.2298908],[101.5573807,22.2243977],[101.5630035,22.2159481],[101.5656662,22.2078228],[101.5707169,22.2008743],[101.5784073,22.1959572],[101.5839462,22.1925793],[101.5881577,22.1875839],[101.589592,22.1794968],[101.5919724,22.1702309],[101.5952072,22.164156],[101.5977402,22.1592484],[101.5977936,22.1539612],[101.5963135,22.1471157],[101.5972214,22.1381264],[101.599472,22.132309],[101.5971832,22.1303139],[101.5885315,22.1301289],[101.5783463,22.1283817],[101.5712967,22.1249275],[101.5710602,22.1180401],[101.5757675,22.1119194],[101.5790329,22.1063004],[101.583313,22.101799],[101.5885086,22.0956612],[101.5919571,22.0888882],[101.5943832,22.0807705],[101.5979691,22.0707779],[101.6022034,22.0651283],[101.6081696,22.0596542],[101.613121,22.0532932],[101.6148987,22.0479507],[101.6154099,22.0417309],[101.6151886,22.0355339],[101.6163406,22.0267658],[101.6218338,22.0217648],[101.6283264,22.0174217],[101.6298828,22.0123177],[101.6287994,22.0098248],[101.6238937,22.0037766],[101.6164322,21.995512],[101.6130981,21.985508],[101.6111374,21.9789047],[101.6108627,21.9754868],[101.6103363,21.9714909],[101.6118774,21.9700108],[101.617157,21.9681454],[101.6222534,21.965683],[101.6292038,21.9604092],[101.6399536,21.9575367],[101.6477432,21.9549923],[101.6557007,21.9501419],[101.6622086,21.9460258],[101.6663666,21.9385395],[101.6705399,21.9379463],[101.6733093,21.9394665],[101.6813431,21.9462433],[101.6880035,21.9497948],[101.6928711,21.9482574],[101.6991196,21.9439201],[101.7037811,21.9366474],[101.7048569,21.9327049],[101.7016602,21.9261436],[101.6972733,21.9207706],[101.6944122,21.9100628],[101.6961365,21.9035721],[101.6989212,21.8988876],[101.7022171,21.8948746],[101.7057495,21.8901653],[101.7136383,21.8837051],[101.7214432,21.8813858],[101.7307816,21.8806229],[101.7347031,21.8798065],[101.7347183,21.8738308],[101.7333832,21.8644524],[101.7345428,21.856142],[101.7386932,21.8481941],[101.7432175,21.8441391],[101.7543182,21.8380337],[101.7663269,21.8364925],[101.7732162,21.8360367],[101.7760162,21.8320389],[101.7782898,21.8269081],[101.7774277,21.8234901],[101.7710419,21.8174953],[101.7680817,21.8109264],[101.7655869,21.7969913],[101.7638321,21.7896957],[101.7598572,21.7822418],[101.7572098,21.7772732],[101.7565002,21.7715511],[101.7531509,21.7610893],[101.7505493,21.7572689],[101.7463608,21.7507401],[101.7435684,21.741869],[101.7435532,21.7349758],[101.7453918,21.7314682],[101.7502213,21.7287827],[101.7538376,21.7268257],[101.7610626,21.7224541],[101.7648392,21.718195],[101.7670364,21.7112293],[101.7691574,21.702198],[101.7716522,21.6963711],[101.7732468,21.6931019],[101.7735367,21.6878071],[101.7719727,21.678896],[101.7706223,21.6690578],[101.77211,21.6628056],[101.7742233,21.6599789],[101.777977,21.655489],[101.7820663,21.6528263],[101.781868,21.6475487],[101.7812195,21.6434326],[101.7833328,21.640377],[101.7857437,21.6391487],[101.7914963,21.6419468],[101.7992477,21.6451378],[101.8058701,21.6444607],[101.8084564,21.6413879],[101.8116837,21.6353073],[101.8134384,21.6299629],[101.8170166,21.6270866],[101.8244476,21.6282215],[101.8287811,21.6257801],[101.8315735,21.6215496],[101.8319168,21.6178608],[101.8287125,21.6110744],[101.8269577,21.6037788],[101.8230972,21.5926456],[101.8196716,21.5867844],[101.8146667,21.5844212],[101.8071976,21.5821419],[101.8005829,21.5761547],[101.7973175,21.5744228],[101.7944336,21.576128],[101.7883682,21.5783958],[101.7844162,21.5782948],[101.7778015,21.5787411],[101.755127,21.5840816],[101.747673,21.5817966],[101.7443466,21.5786877],[101.7443695,21.5727119],[101.7479019,21.5684605],[101.7531509,21.5641518],[101.7566299,21.5585232],[101.7571869,21.5539093],[101.7555466,21.5495968],[101.7536469,21.5446033],[101.7534866,21.5402431],[101.753067,21.5356598],[101.7575836,21.5313759],[101.7649765,21.5253906],[101.7725296,21.5170994],[101.7740936,21.512682],[101.7699432,21.5068436],[101.7654572,21.5053825],[101.7581177,21.499876],[101.750618,21.4964466],[101.7436371,21.4941444],[101.7383881,21.4915581],[101.735527,21.4875145],[101.7357864,21.4810734],[101.7408981,21.4733219],[101.745369,21.4612274],[101.7485275,21.4537716],[101.7499771,21.4468288],[101.7490768,21.4422626],[101.7470322,21.4335976],[101.7487335,21.4264202],[101.7496414,21.4178867],[101.7451935,21.4106789],[101.7395401,21.4039688],[101.7380066,21.3957462],[101.7403336,21.385561],[101.7418671,21.3742504],[101.7381668,21.3672466],[101.7300873,21.361536],[101.7269211,21.3554344],[101.7256393,21.3474331],[101.7266388,21.3411961],[101.7302399,21.3323479],[101.7344208,21.3193417],[101.7363434,21.3116951],[101.739563,21.3056164],[101.7454529,21.299221],[101.7545166,21.2922592],[101.7617264,21.2883453],[101.7661133,21.2872829],[101.7733231,21.2898026],[101.7792969,21.2919064],[101.7851868,21.2921715],[101.7870789,21.290041],[101.7877274,21.2877216],[101.7901382,21.2864933],[101.7928391,21.2866344],[101.7985229,21.287365],[101.8018799,21.2854156],[101.8024826,21.28195],[101.7998428,21.2767506],[101.8006134,21.2712097],[101.8024216,21.2672443],[101.8086929,21.2642784],[101.8140106,21.2622643],[101.8227997,21.261055],[101.8328171,21.2598019],[101.8383408,21.2566319],[101.8411407,21.252861],[101.8416901,21.2480164],[101.8386536,21.2389278],[101.8370209,21.2284107],[101.8374023,21.2189751],[101.8376389,21.2123032],[101.8351135,21.2103195],[101.8330536,21.2076302],[101.8290634,21.2061558],[101.8261566,21.2073994],[101.8226089,21.2107353],[101.8180237,21.2124958],[101.8130798,21.2117405],[101.8066635,21.2103443],[101.7994232,21.2073669],[101.7931824,21.2043552],[101.7888107,21.1992149],[101.7843933,21.1922359],[101.7838364,21.1842117],[101.7819977,21.1743908],[101.7755432,21.1656418],[101.7695923,21.1575661],[101.7631302,21.1488152],[101.7563629,21.1446724],[101.7463226,21.1452293],[101.737793,21.1466579],[101.7340927,21.1460896],[101.7267075,21.1451817],[101.7186127,21.1449852],[101.7093964,21.1478138],[101.7020569,21.1482811],[101.6953506,21.1526356],[101.6955566,21.1583729],[101.6970367,21.1652184],[101.6935501,21.1703873],[101.6886063,21.1758327],[101.6852188,21.1770916],[101.6791382,21.1851006],[101.6764603,21.1923103],[101.6706085,21.2000828],[101.6655273,21.2020836],[101.6578369,21.1998043],[101.6516571,21.1983948],[101.6435089,21.1968174],[101.6368713,21.1963406],[101.6278992,21.1924934],[101.6172867,21.1840992],[101.6087265,21.1781673],[101.6028137,21.1769791],[101.5947571,21.1783829],[101.5911636,21.1805649],[101.5886307,21.1850128],[101.58992,21.1937027],[101.5952301,21.2047939],[101.6034622,21.2153301],[101.6104965,21.2265968],[101.6087112,21.2314796],[101.6017838,21.2365265],[101.5959167,21.2371712],[101.5854034,21.2404289],[101.5641937,21.2436485],[101.5529327,21.2462158],[101.54776,21.2493114],[101.5423279,21.2545223],[101.5313034,21.2550678],[101.5213928,21.2526207],[101.5121689,21.2487736],[101.5025482,21.2472363],[101.4907837,21.2476025],[101.4828796,21.2462387],[101.4761887,21.244379],[101.4676514,21.2386684],[101.4588318,21.2322788],[101.4467163,21.2294369],[101.4380493,21.2271767],[101.4300308,21.2294922],[101.4219971,21.2313461],[101.4102097,21.2307911],[101.3998489,21.2292671],[101.3921738,21.2269764],[101.3867264,21.2259922],[101.3790512,21.2239304],[101.3703308,21.2200584],[101.3625031,21.2134037],[101.3554764,21.2090206],[101.3476868,21.203743],[101.339447,21.1993961],[101.3265533,21.1951904],[101.3218307,21.1934948],[101.3147125,21.1934795],[101.3097763,21.1924782],[101.3049393,21.1873379],[101.2988663,21.1820068],[101.2938385,21.1782513],[101.2889633,21.1788578],[101.2855911,21.1810246],[101.2815018,21.1832161],[101.277977,21.1876869],[101.2703781,21.1950359],[101.2652969,21.1972542],[101.2561722,21.2030411],[101.249733,21.2080574],[101.2455368,21.2148457],[101.2435226,21.2206478],[101.2434311,21.2250175],[101.2404709,21.2246456],[101.237999,21.2240276],[101.2316132,21.2235279],[101.2248001,21.2255669],[101.2197876,21.2296219],[101.2182388,21.2347221],[101.2207718,21.2369442],[101.2230301,21.2384872],[101.2244415,21.2439594],[101.225563,21.2532635],[101.2274094,21.2584839],[101.234787,21.2626171],[101.2393799,21.2722397],[101.2452316,21.2782707],[101.2501068,21.2845592],[101.2508469,21.2921181],[101.2486801,21.3004551],[101.2441788,21.3051834],[101.2320175,21.3085308],[101.2254333,21.3096447],[101.216507,21.3147316],[101.2004471,21.3188801],[101.1899033,21.326313],[101.1810608,21.3334637],[101.1785965,21.3408871],[101.1756134,21.3540726],[101.1707535,21.3631744],[101.1651688,21.3722973],[101.1552963,21.3856812],[101.1458588,21.3972149],[101.1412888,21.4074574],[101.1454773,21.4156075],[101.1514282,21.4170437],[101.1602631,21.4167862],[101.1708069,21.4164791],[101.1794586,21.4178352],[101.1879578,21.4221821],[101.1955795,21.4297714],[101.1980362,21.4370518],[101.1964569,21.4485855],[101.1931229,21.4587936],[101.1917191,21.4684849],[101.1961136,21.4747906],[101.2001877,21.4790363],[101.2054977,21.4837055],[101.2128525,21.4903831],[101.2205811,21.4936028],[101.2217331,21.4986248],[101.216713,21.5029068],[101.2110825,21.5035324],[101.2077179,21.5056992],[101.2071533,21.5107708],[101.2073822,21.5176582],[101.2099304,21.5276928],[101.2124329,21.5363483],[101.2128906,21.5425396],[101.2122803,21.553587],[101.2085266,21.5589828],[101.2023773,21.5591621],[101.1927567,21.5582943],[101.180748,21.5591049],[101.161377,21.5610466],[101.1511612,21.5671196],[101.1494827,21.5720825],[101.1424789,21.5834923],[101.14254,21.5864983],[101.1442566,21.5917263],[101.1532135,21.5960636],[101.1604767,21.596674],[101.1628876,21.5966263],[101.1637115,21.5973644],[101.171051,21.6017303],[101.1728134,21.6084614],[101.1728287,21.6092129],[101.1728668,21.6114674],[101.172081,21.6122322],[101.1603928,21.6305008],[101.1604385,21.6327553],[101.1605377,21.6372623],[101.1605988,21.6402683],[101.160759,21.6477814],[101.1584396,21.652338],[101.1522369,21.6637325],[101.1516571,21.6742668],[101.1445007,21.678915],[101.1437073,21.6796818],[101.1420975,21.6797142],[101.1349106,21.6828594],[101.1285934,21.6889935],[101.1200867,21.7064457],[101.1193237,21.707962],[101.119339,21.7087135],[101.118187,21.7305355],[101.1182022,21.7312851],[101.1174469,21.7343063],[101.1174927,21.7358093],[101.1167068,21.7373276],[101.1167374,21.7388287],[101.1159592,21.7395973],[101.1159897,21.7411003],[101.1151962,21.7418652],[101.1152267,21.7433681],[101.1144409,21.7441349],[101.1137009,21.7471561],[101.1129074,21.7479229],[101.1121674,21.7509441],[101.1113663,21.7517109],[101.1114197,21.7539654],[101.1106491,21.7554836],[101.1106796,21.7569866],[101.1109314,21.7690086],[101.1109467,21.7697582],[101.1117706,21.7704945],[101.1118011,21.7719975],[101.1126328,21.7727337],[101.1126938,21.7738132],[101.1151428,21.777195],[101.1127167,21.7772427],[101.0950317,21.7798328],[101.0893402,21.7776871],[101.0484772,21.7513981],[101.0319824,21.7336655],[101.0222168,21.7293377],[101.0082779,21.7175694],[100.9871597,21.7096901],[100.9459915,21.7066822],[100.9200592,21.6996326],[100.9070129,21.6915989],[100.883667,21.6935158],[100.8668289,21.6721992],[100.8568192,21.6543369],[100.8338928,21.6351967],[100.8296814,21.6321507],[100.8240967,21.6289654],[100.8133163,21.6192627],[100.805687,21.6121197],[100.800293,21.6042233],[100.7957611,21.5930882],[100.7937393,21.5832615],[100.7877808,21.5735416],[100.7825089,21.5700073],[100.7735672,21.56703],[100.7630692,21.5615654],[100.755043,21.5562649],[100.7474136,21.5479679],[100.7429123,21.5372868],[100.7344437,21.5255661],[100.7305832,21.5196934],[100.7249527,21.5124912],[100.718338,21.5133533],[100.704422,21.5164776],[100.6965408,21.5157642],[100.6922379,21.5117416],[100.6863174,21.5027065],[100.6784134,21.4932652],[100.6711731,21.4812775],[100.6620331,21.4796772],[100.6512909,21.4820232],[100.6419678,21.4824944],[100.6303482,21.4800377],[100.6256485,21.4790115],[100.6151733,21.4737663],[100.6029663,21.4683361],[100.591507,21.4626579],[100.5810471,21.4578705],[100.56987,21.4537907],[100.5615387,21.4544601],[100.5515137,21.4560928],[100.5444794,21.4592571],[100.5387268,21.4642277],[100.5331421,21.4666672],[100.5248718,21.4694023],[100.5170364,21.4707489],[100.5059433,21.4689598],[100.4967575,21.4657421],[100.4865723,21.4618607],[100.4781265,21.4590855],[100.4738235,21.4628677],[100.4710922,21.4705181],[100.4661713,21.4789104],[100.4627686,21.4888744],[100.4565277,21.5028114],[100.4496307,21.5107937],[100.4409027,21.5234165],[100.4357834,21.5341091],[100.4314728,21.5381203],[100.4305801,21.5383511],[100.4265976,21.5393887],[100.4194565,21.5393333],[100.4092484,21.5343018],[100.4007416,21.5289955],[100.3886108,21.5260735],[100.3790131,21.5251579],[100.370018,21.5290527],[100.362442,21.5308437],[100.3548431,21.5314865],[100.3456268,21.5271149],[100.3218536,21.4997654],[100.3022766,21.4827576],[100.2958221,21.4813461],[100.2848434,21.484436],[100.2786713,21.4825001],[100.2732697,21.4813499],[100.2644577,21.4796543],[100.262001,21.4794827],[100.2567902,21.4775391],[100.2515793,21.4758244],[100.2490768,21.4745026],[100.2407227,21.4740105],[100.2301483,21.4737968],[100.2233734,21.4774036],[100.2191696,21.4857712],[100.2147903,21.4966698],[100.2086563,21.5064602],[100.2026291,21.5105057],[100.1968002,21.5131683],[100.1848068,21.5155125],[100.1780167,21.5137901],[100.1762695,21.503027],[100.1696091,21.4880848],[100.168808,21.4880962],[100.1529007,21.5010834],[100.1248703,21.5112247],[100.1197662,21.5488682],[100.1232529,21.5676117],[100.1114502,21.587307],[100.1124191,21.5993176],[100.132843,21.6193447],[100.1444473,21.6424904],[100.1517715,21.6476536],[100.1687469,21.6519375],[100.1681366,21.6654739],[100.1522827,21.6837215],[100.1402664,21.6891422],[100.1380081,21.6996937],[100.111412,21.7000408],[100.0994034,21.7054577],[100.0864563,21.7026176],[100.0770569,21.6950302],[100.0717926,21.691185],[100.0608215,21.68256],[100.050972,21.6764946],[100.0414963,21.6791401],[100.0298233,21.688118],[100.0332565,21.6948547],[100.0196762,21.6962948],[100.0118027,21.6967545],[100.0064392,21.6962852],[100.0025024,21.6986122],[99.9986343,21.703722],[99.9851532,21.7204227],[99.9757156,21.738575],[99.9751282,21.7551155],[99.9696579,21.7687092],[99.9633102,21.7763023],[99.958725,21.7958984],[99.9491653,21.8050308],[99.9452591,21.8148479],[99.9453735,21.8238659],[99.9457016,21.8494129],[99.9590302,21.8823204],[99.9671021,21.9074364],[99.9804916,21.9188881],[99.9914627,21.9548283],[99.9950485,21.9818382],[99.9927063,21.9878807],[99.9642181,22.0165863],[99.9573822,22.0378838],[99.9618073,22.0465221],[99.9674301,22.0527515],[99.9642944,22.0537052],[99.9605255,22.0540066],[99.957634,22.0542412],[99.9428864,22.0563889],[99.9303741,22.0591831],[99.9234619,22.059103],[99.918251,22.0578346],[99.909874,22.0582447],[99.901619,22.0634727],[99.8925629,22.0664215],[99.8817139,22.0666504],[99.8720703,22.065937],[99.8653488,22.0633221],[99.8568649,22.0593662],[99.855751,22.0543346],[99.8601074,22.0507984],[99.8703613,22.0464478],[99.8766708,22.0421791],[99.8763504,22.0391998],[99.8685532,22.0329342],[99.8568878,22.0299625],[99.8407288,22.0245571],[99.8325043,22.0313911],[99.8267975,22.0402393],[99.8161392,22.0482693],[99.8046341,22.0519543],[99.7960739,22.0551167],[99.7852936,22.0580959],[99.7727966,22.0615692],[99.7667236,22.0658283],[99.7589188,22.0694332],[99.7498245,22.0707664],[99.7416916,22.0713921],[99.7323227,22.0715809],[99.7253494,22.0687351],[99.720253,22.061718],[99.7203827,22.0566616],[99.7141876,22.0448399],[99.7079163,22.0406036],[99.7019501,22.0384254],[99.6921539,22.0416088],[99.6878204,22.0460587],[99.687439,22.0511208],[99.6921234,22.061594],[99.6910858,22.0698833],[99.6862869,22.0757217],[99.6761856,22.0763817],[99.6673737,22.0793133],[99.6591034,22.0845318],[99.6541061,22.0926685],[99.6487885,22.1020927],[99.6479416,22.1035862],[99.6406021,22.1064873],[99.6311798,22.1046047],[99.6130447,22.0992165],[99.605896,22.0993576],[99.5991135,22.1050014],[99.5907669,22.114418],[99.5838623,22.101841],[99.5817719,22.1018906],[99.5763931,22.1042919],[99.566391,22.1095371],[99.5608215,22.1142387],[99.555397,22.1143436],[99.550148,22.111227],[99.5402451,22.1100388],[99.5333328,22.1097107],[99.5223389,22.1034889],[99.5156479,22.1024647],[99.505867,22.106554],[99.4981155,22.1131325],[99.4904175,22.1222343],[99.4792557,22.1309433],[99.4694061,22.1320457],[99.466156,22.1302681],[99.4588394,22.1228237],[99.4487991,22.1149712],[99.4398117,22.1098557],[99.4271774,22.1075592],[99.4177933,22.107502],[99.4125671,22.1053009],[99.4087906,22.101696],[99.4005966,22.0993176],[99.3897629,22.1004333],[99.3841095,22.1014538],[99.374054,22.104393],[99.3646851,22.1047916],[99.3604279,22.1016521],[99.3539047,22.096487],[99.3479538,22.0952148],[99.3366318,22.0963364],[99.3199158,22.0993881],[99.3073349,22.1046638],[99.3016739,22.1047096],[99.2912292,22.111557],[99.2804108,22.1119289],[99.2796631,22.1102028],[99.2761078,22.1052132],[99.2713394,22.10116],[99.2683563,22.1000633],[99.2619781,22.1017838],[99.2573776,22.1062279],[99.2530365,22.1111259],[99.2445145,22.117506],[99.2341232,22.1192665],[99.2172852,22.1124287],[99.2098083,22.1154099],[99.1815567,22.1447067],[99.1638489,22.154604],[99.1527786,22.1692333],[99.1568909,22.1704178],[99.1755066,22.1732903],[99.1892242,22.1694317],[99.199791,22.1761169],[99.1990051,22.1791286],[99.1941605,22.1799164],[99.1820297,22.180006],[99.1780243,22.1852951],[99.1788712,22.1897984],[99.2075272,22.2361794],[99.2294464,22.2457829],[99.2335587,22.2547703],[99.2321167,22.2765732],[99.2380066,22.3050842],[99.2543793,22.3290062],[99.259346,22.342495],[99.2755966,22.3491287],[99.2804794,22.35285],[99.2781677,22.3671436],[99.2564774,22.3876038],[99.2549133,22.3951302],[99.2647018,22.4033203],[99.2947769,22.4166088],[99.3053894,22.4262943],[99.3086929,22.4337807],[99.3095245,22.4367809],[99.3323364,22.4516239],[99.3527603,22.4717445],[99.3634262,22.4866848],[99.3805618,22.4993153],[99.3773956,22.5083599],[99.3621445,22.5250187],[99.3622589,22.5377922],[99.3861237,22.5774174],[99.3868866,22.5874214],[99.3731232,22.5978241],[99.3668213,22.6189175],[99.3590469,22.6573029],[99.3422241,22.6822376],[99.3400269,22.7093067],[99.3231049,22.7237206],[99.3110733,22.7410984],[99.3265915,22.7514935],[99.3461151,22.7565918],[99.3559113,22.7625217],[99.3634567,22.7641068],[99.3752441,22.767046],[99.388443,22.7700443],[99.393898,22.8095322],[99.3967361,22.8260555],[99.4129715,22.8251648],[99.4358826,22.8429966],[99.4648743,22.8481655],[99.4500961,22.8663292],[99.4439392,22.8983498],[99.4393234,22.9094334],[99.436554,22.9171295],[99.4343948,22.9183617],[99.4349594,22.9229794],[99.4354248,22.9330769],[99.4382706,22.9385357],[99.4449844,22.9391022],[99.450676,22.9383087],[99.4558258,22.9354572],[99.4646149,22.9288654],[99.4739304,22.9234104],[99.4800491,22.9196224],[99.4861832,22.9162941],[99.4984589,22.9103241],[99.5105438,22.9068832],[99.5198822,22.9028034],[99.5339737,22.9002399],[99.5467377,22.9050522],[99.5583191,22.9126396],[99.5619202,22.9180813],[99.5615997,22.9258957],[99.5615005,22.9273243],[99.5610809,22.9335461],[99.5588379,22.9358234],[99.5550995,22.946228],[99.5508041,22.9538879],[99.543251,22.9602318],[99.5354691,22.9677277],[99.5311279,22.9735508],[99.5261002,22.9816837],[99.5188217,22.9896278],[99.5178528,22.9974022],[99.5152435,23.0077591],[99.5145569,23.0159969],[99.5166321,23.0254917],[99.5198517,23.0362244],[99.5222626,23.0439873],[99.5276489,23.0519218],[99.5285721,23.0597115],[99.5262833,23.0687103],[99.5217361,23.0763741],[99.5124512,23.083437],[99.5114822,23.0835323],[99.5085983,23.0838146],[99.5076294,23.08391],[99.5037689,23.0842896],[99.5014877,23.0822659],[99.5001297,23.0821724],[99.4962616,23.0819035],[99.4943237,23.0820312],[99.4904556,23.0822868],[99.4865875,23.0825424],[99.4830322,23.0828781],[99.4791794,23.0832424],[99.4753189,23.0836067],[99.4714661,23.083971],[99.4699173,23.0840797],[99.4660492,23.0843544],[99.4621811,23.0846291],[99.458313,23.0849037],[99.4558716,23.084837],[99.4519958,23.084734],[99.4481201,23.084631],[99.4453964,23.0849819],[99.4415588,23.0854759],[99.4377136,23.0859699],[99.4343491,23.0868263],[99.4306107,23.0877781],[99.4268723,23.0887299],[99.4231339,23.0896816],[99.4224548,23.0898991],[99.4187927,23.0910721],[99.415123,23.092247],[99.4114609,23.09342],[99.4077988,23.094595],[99.404129,23.0957661],[99.4010468,23.0965137],[99.3972931,23.0974236],[99.3935471,23.0983315],[99.3897934,23.0992393],[99.3892517,23.0994816],[99.3857574,23.1010361],[99.3822556,23.1025906],[99.3787613,23.1041451],[99.375267,23.1056995],[99.3734436,23.1072102],[99.3705521,23.109602],[99.3676605,23.1119919],[99.3647614,23.1143837],[99.3643417,23.1150551],[99.3624039,23.1181602],[99.3604584,23.1212654],[99.3585129,23.1243706],[99.3567123,23.1259136],[99.3538742,23.128355],[99.3507004,23.130352],[99.347496,23.1323719],[99.346138,23.1325417],[99.3422928,23.1330204],[99.3384476,23.1334991],[99.3346024,23.1339779],[99.331459,23.1335163],[99.3276215,23.1329536],[99.3269196,23.1324444],[99.3238678,23.1302338],[99.3208084,23.1280212],[99.3206177,23.1263199],[99.3202057,23.1227512],[99.3201752,23.1224594],[99.3197784,23.1188908],[99.3193817,23.1153221],[99.318985,23.1117516],[99.3161545,23.1095619],[99.3131714,23.1072617],[99.3106537,23.1066113],[99.3069153,23.1056461],[99.3031845,23.104681],[99.2999954,23.1046028],[99.2961197,23.1045074],[99.292244,23.1044121],[99.2890472,23.1042671],[99.2851715,23.1040897],[99.2812958,23.1039143],[99.2777786,23.1029701],[99.2740555,23.1019726],[99.2720108,23.1005974],[99.2688751,23.0984879],[99.2657394,23.0963764],[99.2634201,23.0940456],[99.2607956,23.0914059],[99.2581635,23.0887661],[99.2575531,23.0874004],[99.2560654,23.0840874],[99.25457,23.0807285],[99.2501068,23.0810509],[99.2467117,23.0817738],[99.2426529,23.0826378],[99.2410507,23.0840302],[99.2381668,23.0865288],[99.2332306,23.0866013],[99.2287903,23.0880547],[99.2240753,23.0883636],[99.2166595,23.0900955],[99.2107773,23.0943298],[99.2054749,23.1026859],[99.2022247,23.1093979],[99.1964493,23.1070461],[99.1909409,23.1038914],[99.1871567,23.1046982],[99.1837387,23.1048584],[99.1794357,23.1049595],[99.167038,23.1063156],[99.1471863,23.107563],[99.1289978,23.1051083],[99.1204758,23.1015739],[99.1141357,23.0947876],[99.1068344,23.0898571],[99.1016083,23.0894833],[99.0888519,23.0979557],[99.0811996,23.1008358],[99.0669174,23.1074944],[99.0521698,23.1159954],[99.0458069,23.1216068],[99.0439377,23.1278362],[99.0460892,23.1362991],[99.0524673,23.1451511],[99.061409,23.1580963],[99.0623245,23.1616974],[99.059845,23.1632538],[99.0546188,23.1608067],[99.0375137,23.1601639],[99.0245209,23.1655064],[98.9984665,23.164917],[98.9813919,23.1687756],[98.9642715,23.1658745],[98.9269333,23.1856232],[98.9122772,23.1857052],[98.8894043,23.1790085],[98.8873749,23.1793079],[98.8843079,23.1932507],[98.8974686,23.2172184],[98.9081192,23.228426],[98.9139633,23.2524338],[98.927948,23.2756405],[98.9256134,23.2951851],[98.9228363,23.2985001],[98.9234695,23.3004951],[98.9254684,23.3022137],[98.9285583,23.3022137],[98.9304276,23.3030357],[98.9320831,23.3041992],[98.9362411,23.3083038],[98.9364929,23.3129692],[98.9325104,23.3149338],[98.9065399,23.3346119],[98.89431,23.3346806],[98.8861313,23.3294659],[98.884491,23.3302174],[98.8808136,23.3313332],[98.8752823,23.3322048],[98.8721085,23.3348198],[98.8738937,23.3373184],[98.876915,23.3393402],[98.8834305,23.3419991],[98.8887177,23.3453636],[98.8977814,23.3511963],[98.9074936,23.3512802],[98.9154968,23.3536854],[98.9190903,23.3596001],[98.9189682,23.3667183],[98.9171295,23.3750114],[98.9128418,23.3858662],[98.9082718,23.3951187],[98.9096527,23.4029045],[98.9128265,23.4129562],[98.9131927,23.4196091],[98.9110794,23.4267578],[98.9057083,23.432806],[98.8997955,23.4365673],[98.8922043,23.4437981],[98.8930435,23.449295],[98.8941879,23.4573135],[98.8908463,23.4658566],[98.8847275,23.4716892],[98.8661652,23.4867382],[98.8633118,23.4853363],[98.845108,23.4763832],[98.8357544,23.4742317],[98.831131,23.4731693],[98.82547,23.4728355],[98.8230286,23.4767284],[98.8210754,23.4790535],[98.8181381,23.4820805],[98.8154678,23.4862518],[98.8120956,23.4929581],[98.8125839,23.5008221],[98.810463,23.5103722],[98.8050995,23.5212936],[98.8023148,23.5332699],[98.8014908,23.5433826],[98.8060913,23.5499725],[98.8114319,23.556324],[98.8217545,23.5621414],[98.8295746,23.5673084],[98.8341751,23.5738983],[98.8412399,23.5786152],[98.8520279,23.5825882],[98.8653183,23.5869846],[98.8743744,23.591671],[98.8817215,23.598217],[98.886322,23.6043472],[98.8854446,23.6110191],[98.8800812,23.6182137],[98.8734665,23.6247387],[98.8650513,23.6285362],[98.854866,23.6307526],[98.8464355,23.6338596],[98.8412933,23.6394444],[98.8386993,23.6479759],[98.8368912,23.6587906],[98.8356247,23.672121],[98.8326416,23.6868553],[98.8277588,23.6931229],[98.8215485,23.6948204],[98.8128815,23.6986179],[98.8114624,23.7056904],[98.8114243,23.7058926],[98.8110428,23.7078266],[98.8134155,23.7153664],[98.8190308,23.7226295],[98.8196716,23.7308826],[98.81633,23.7396545],[98.8114853,23.7479858],[98.8066559,23.7576962],[98.7976685,23.7720547],[98.7923203,23.7806263],[98.7823486,23.7816849],[98.7665024,23.7804585],[98.7509537,23.7790298],[98.745697,23.7867794],[98.7415695,23.7866268],[98.7317123,23.7889175],[98.7194519,23.7909737],[98.7053604,23.7918034],[98.6955643,23.7889042],[98.6831894,23.8056126],[98.673378,23.8071537],[98.6696701,23.8080425],[98.6687012,23.8096619],[98.669487,23.8119469],[98.6732635,23.8137302],[98.6808014,23.8166103],[98.6873474,23.8199654],[98.6921539,23.823801],[98.6972656,23.8308449],[98.6998672,23.8370056],[98.6985016,23.8452854],[98.6916656,23.8550205],[98.6900253,23.8614693],[98.691391,23.8687935],[98.6917877,23.877739],[98.6902008,23.8876286],[98.6827316,23.9047146],[98.6811752,23.916441],[98.6840668,23.9251213],[98.6922302,23.9353371],[98.6975937,23.9423771],[98.7007065,23.9492188],[98.6992645,23.9529114],[98.6942978,23.9548149],[98.6825943,23.9577274],[98.673851,23.9580765],[98.6686325,23.9597549],[98.6709671,23.9650002],[98.6783676,23.9745388],[98.6883621,23.9809933],[98.6942902,23.9828262],[98.7004929,23.9826298],[98.7079468,23.9791832],[98.7163391,23.972641],[98.7275772,23.9715672],[98.7393799,23.9781494],[98.7444229,23.9807301],[98.7518845,23.9867649],[98.7558289,23.9928799],[98.7585754,24.0000114],[98.7647552,24.0060101],[98.767662,24.0118027],[98.7736511,24.0202579],[98.7761536,24.024622],[98.7829132,24.0264568],[98.795433,24.0264549],[98.8063812,24.0267334],[98.8112106,24.034029],[98.8174667,24.0402279],[98.8252335,24.0445881],[98.8339996,24.0480289],[98.845108,24.0528889],[98.8540115,24.056921],[98.859375,24.0605125],[98.8643112,24.0636272],[98.8683167,24.0705147],[98.8708267,24.0764847],[98.873085,24.0822239],[98.8783493,24.0872726],[98.8828583,24.0904846],[98.8891296,24.0943832],[98.8959885,24.1010475],[98.9016647,24.1092987],[98.9001694,24.1168785],[98.8986664,24.1205559],[98.8983231,24.1264801],[98.8941727,24.1329613],[98.891922,24.1393929],[98.8891678,24.1446781],[98.883522,24.1493454],[98.8817673,24.1498375],[98.8677139,24.1392269],[98.8604202,24.1338825],[98.8510818,24.1324005],[98.8406982,24.1338463],[98.8320389,24.1345673],[98.8217773,24.1353722],[98.8091431,24.1348019],[98.7913971,24.1317139],[98.7768402,24.1281853],[98.7663193,24.1268196],[98.7538757,24.1280899],[98.7460403,24.1298141],[98.7350235,24.1298199],[98.7237473,24.1257],[98.7142334,24.1234131],[98.712532,24.1210346],[98.711647,24.1198006],[98.7089767,24.1160793],[98.7039719,24.1101208],[98.6944656,24.1074524],[98.6832352,24.1074829],[98.6758957,24.106575],[98.6689377,24.1075611],[98.6606369,24.1058903],[98.6537781,24.1054783],[98.6455231,24.1031055],[98.6396713,24.0992393],[98.6316299,24.0931664],[98.6213684,24.0906429],[98.6124344,24.0858803],[98.603096,24.0842209],[98.5986328,24.0862122],[98.5965042,24.0889664],[98.5878601,24.0958652],[98.5798874,24.1002979],[98.5732269,24.1041107],[98.5680771,24.1082458],[98.5631866,24.1123981],[98.5585251,24.1203136],[98.5535431,24.1256313],[98.5464783,24.1280117],[98.5379257,24.1263142],[98.5265884,24.1258259],[98.5194321,24.1261158],[98.5123138,24.1248932],[98.4993896,24.1244144],[98.4884109,24.1244392],[98.4811707,24.1256313],[98.4674606,24.1280632],[98.4561996,24.1284809],[98.4469376,24.1254845],[98.4399338,24.1236382],[98.4346695,24.1236286],[98.4241562,24.1213169],[98.4131546,24.1202297],[98.4041214,24.1201324],[98.3817673,24.1166229],[98.3754883,24.1152916],[98.3731308,24.1143875],[98.3698349,24.1101971],[98.3659286,24.1064892],[98.3638916,24.1030807],[98.3606873,24.1014729],[98.3575897,24.1012268],[98.3508987,24.1027298],[98.3440628,24.1025696],[98.3385544,24.1041622],[98.3322906,24.1052933],[98.3272781,24.1052799],[98.3245239,24.1048145],[98.3192673,24.1043434],[98.3112717,24.1035023],[98.3003311,24.1030407],[98.2940826,24.1047516],[98.2900772,24.1070747],[98.2859497,24.1081505],[98.2803955,24.1102066],[98.2747498,24.1105499],[98.2704697,24.1106243],[98.2597656,24.1107349],[98.2506256,24.1119461],[98.2408447,24.1142082],[98.2356186,24.1148396],[98.2310638,24.1143131],[98.2237015,24.1137276],[98.2222519,24.1131783],[98.2150803,24.1146908],[98.2093277,24.1131496],[98.205658,24.1110382],[98.2006454,24.1064968],[98.1947784,24.1030712],[98.1912155,24.1012726],[98.1810532,24.1050282],[98.1754532,24.1067314],[98.1709747,24.1041183],[98.1758881,24.0971107],[98.1733856,24.0966415],[98.1714859,24.0963249],[98.169136,24.0959339],[98.1661301,24.0950031],[98.1638718,24.0954533],[98.1608658,24.0961285],[98.1576004,24.0979519],[98.1540909,24.0981674],[98.150589,24.0974617],[98.1465836,24.0969868],[98.1352539,24.0936832],[98.1231461,24.0934982],[98.1020355,24.0893059],[98.085701,24.0798931],[98.074585,24.077898],[98.0610962,24.0774765],[98.046875,24.0732594],[98.0351639,24.0653801],[98.0255127,24.0590363],[98.0175858,24.0547848],[98.0104141,24.0500832],[97.9985504,24.0420971],[97.9927902,24.0364895],[97.9889603,24.0327644],[97.9812851,24.028513],[97.9803391,24.0281429],[97.9745789,24.0258865],[97.9626389,24.0224895],[97.9484253,24.0199776],[97.9351959,24.018858],[97.9217148,24.0177326],[97.9057388,24.0155067],[97.8994217,24.0061302],[97.8920135,24.0000038],[97.8923492,23.9964485],[97.8919754,23.9928761],[97.8899994,23.9852467],[97.88974,23.9785843],[97.8898544,23.9753761],[97.8881912,23.973032],[97.8854523,23.9727173],[97.8826828,23.9733219],[97.8805923,23.9757805],[97.8771744,23.9804955],[97.8742752,23.9845371],[97.8717194,23.9860649],[97.8697586,23.9850864],[97.8680801,23.9829693],[97.867363,23.9820309],[97.8596191,23.9751396],[97.8534775,23.9719677],[97.8491592,23.9738998],[97.843132,23.9746323],[97.8411789,23.9734249],[97.8399963,23.9715538],[97.8390884,23.9690037],[97.8415298,23.9638004],[97.8418961,23.9605999],[97.8406754,23.9598732],[97.8369293,23.9597588],[97.8356171,23.9613247],[97.8307571,23.964386],[97.8265762,23.969305],[97.8225479,23.9700985],[97.8208618,23.9684391],[97.8214569,23.9657059],[97.8226471,23.9606934],[97.8251572,23.9603119],[97.8217468,23.9510288],[97.8192139,23.9452152],[97.8150253,23.9434795],[97.81147,23.9449768],[97.8098602,23.9479103],[97.8100281,23.9520931],[97.8111038,23.9569435],[97.8097916,23.9587402],[97.8082886,23.9586926],[97.8073273,23.9577446],[97.8049088,23.9553757],[97.8028793,23.9562302],[97.8010635,23.9580097],[97.7982941,23.9586124],[97.7965851,23.9574127],[97.7968826,23.956274],[97.7982178,23.9537907],[97.7968597,23.950079],[97.7954407,23.9447174],[97.7950668,23.9444199],[97.790123,23.9432678],[97.7829742,23.9413242],[97.7765808,23.939415],[97.7700577,23.9352093],[97.7678146,23.9307537],[97.7663422,23.9258747],[97.7657471,23.9187508],[97.7621002,23.9126244],[97.7558212,23.908659],[97.7486954,23.9062576],[97.7415009,23.9052238],[97.7336349,23.9027843],[97.7303467,23.8989639],[97.7261734,23.8932667],[97.7195129,23.8872223],[97.7138138,23.886261],[97.7079086,23.8845997],[97.7032318,23.8832302],[97.7023926,23.8804417],[97.7083054,23.8777523],[97.7124252,23.8756618],[97.7145538,23.8734779],[97.7137451,23.8702316],[97.709053,23.869091],[97.703064,23.8687992],[97.6969833,23.8701077],[97.6902466,23.8741302],[97.6871033,23.8808441],[97.6808167,23.8771057],[97.679245,23.8697033],[97.6789551,23.8660278],[97.6778946,23.862772],[97.6751862,23.8619537],[97.6701965,23.8617096],[97.6624374,23.8617897],[97.6588593,23.864048],[97.6555481,23.8670158],[97.6535797,23.8662624],[97.6531448,23.8644123],[97.652092,23.8593311],[97.6530304,23.8543129],[97.6540298,23.8473625],[97.6523514,23.8415737],[97.6484451,23.8405285],[97.6453094,23.8421001],[97.6406631,23.843153],[97.6390839,23.84589],[97.6392517,23.8495007],[97.6428375,23.8555565],[97.6455307,23.8595924],[97.6450806,23.8652],[97.6441422,23.8691521],[97.6414032,23.8789406],[97.6390839,23.8798866],[97.634819,23.8801174],[97.6308289,23.8797607],[97.624794,23.8809433],[97.6194229,23.8842125],[97.6157532,23.8856087],[97.6120682,23.8886318],[97.6097565,23.8937664],[97.6023865,23.8945007],[97.5802231,23.9117184],[97.5646667,23.9124317],[97.5581131,23.9154186],[97.5498962,23.9221554],[97.5335083,23.9258671],[97.5310287,23.9311142],[97.5326004,23.9476395],[97.5628281,23.9657383],[97.5783081,23.9845467],[97.6070862,24.0000019],[97.627861,24.0140381],[97.6257782,24.0233803],[97.6340332,24.030735],[97.6327896,24.0375786],[97.6337128,24.0470104],[97.6408768,24.0497456],[97.6475754,24.051548],[97.6523514,24.0581112],[97.655632,24.0646286],[97.6650314,24.0678864],[97.6711578,24.0717373],[97.6840363,24.0831223],[97.6996536,24.0950451],[97.713089,24.1050682],[97.7204285,24.1100979],[97.7286987,24.1139202],[97.7327957,24.1219254],[97.7346497,24.1286297],[97.7362976,24.1334305],[97.7411957,24.1400566],[97.742157,24.1476669],[97.7445374,24.1529884],[97.7469101,24.1583099],[97.7505112,24.1611366],[97.7594147,24.1647968],[97.7594376,24.164957],[97.759819,24.1676369],[97.7612534,24.171957],[97.7600021,24.1779671],[97.7525864,24.1842556],[97.745079,24.1853809],[97.7403488,24.1869316],[97.7360916,24.1889839],[97.7336884,24.1902237],[97.7323456,24.1947117],[97.731308,24.1983795],[97.7312546,24.2043591],[97.7308121,24.2097225],[97.7298126,24.2157497],[97.7312927,24.2226524],[97.7353058,24.2280369],[97.738266,24.233799],[97.7409897,24.2379532],[97.7452087,24.2425785],[97.7512054,24.2458363],[97.7624283,24.2539368],[97.7672577,24.2648926],[97.7615662,24.2697754],[97.7543259,24.2762203],[97.7478638,24.2817688],[97.7391357,24.2874832],[97.731926,24.292778],[97.719696,24.2981606],[97.7102127,24.2985935],[97.7024231,24.2968826],[97.694252,24.2937527],[97.6927338,24.2929859],[97.6855011,24.2957115],[97.6819,24.295929],[97.6782608,24.2966156],[97.6704102,24.2986507],[97.6684036,24.3012619],[97.6668549,24.3058453],[97.6652908,24.3120346],[97.6642532,24.3159313],[97.6639633,24.3200626],[97.6646881,24.3228245],[97.662735,24.3326015],[97.6652908,24.3388786],[97.6689987,24.3435936],[97.6745605,24.34445],[97.6849594,24.3425903],[97.6945724,24.3439598],[97.7034302,24.3452759],[97.708168,24.346777],[97.7142639,24.3504829],[97.7168655,24.3562927],[97.7177124,24.3615112],[97.7190552,24.3670025],[97.7167053,24.3721409],[97.7131577,24.3750992],[97.7093048,24.3797016],[97.7034302,24.3825798],[97.7001724,24.3863449],[97.6958466,24.3890953],[97.6923447,24.3911991],[97.6858521,24.3957977],[97.6845474,24.4006119],[97.6835022,24.4047375],[97.6849747,24.408884],[97.6849213,24.4146252],[97.6833801,24.4182892],[97.6823273,24.423563],[97.6802521,24.4302082],[97.6794586,24.4345665],[97.6789093,24.4393864],[97.6774979,24.4441376],[97.6740341,24.4557991],[97.6603775,24.4510403],[97.6575317,24.4502087],[97.6516724,24.4484921],[97.6434708,24.4459572],[97.6359787,24.4445896],[97.6259766,24.4433765],[97.6196213,24.4415112],[97.610817,24.4414463],[97.5980988,24.4377766],[97.5913696,24.43536],[97.5825272,24.4381905],[97.571701,24.4398384],[97.5602341,24.4361877],[97.5472946,24.4366837],[97.5376663,24.4332294],[97.5291138,24.4432163],[97.5305252,24.4497013],[97.5337982,24.4564533],[97.5389862,24.465786],[97.5480728,24.4786758],[97.5535965,24.4857235],[97.5599518,24.5047264],[97.559906,24.5129833],[97.559021,24.52351],[97.5625458,24.5363426],[97.5633316,24.5422668],[97.5637589,24.5448132],[97.5647278,24.5484962],[97.5656891,24.5524082],[97.5669022,24.5567837],[97.5678711,24.5604668],[97.5680771,24.5646038],[97.5680542,24.5673599],[97.5677185,24.5714111],[97.5674973,24.5721436],[97.5670624,24.5742245],[97.5670853,24.5770435],[97.5668869,24.5824318],[97.5667725,24.5877457],[97.5692749,24.5951633],[97.5714188,24.6055489],[97.5688629,24.620615],[97.5714111,24.6337681],[97.5688934,24.6408043],[97.5709534,24.6534824],[97.574028,24.6625423],[97.5712357,24.6743259],[97.5722198,24.6840248],[97.5717697,24.6924496],[97.5713196,24.7008724],[97.5725937,24.7070713],[97.571846,24.7128906],[97.5712357,24.7170773],[97.5660858,24.7232914],[97.5607147,24.7259693],[97.5536728,24.7271175],[97.5504684,24.7346458],[97.5519867,24.7380409],[97.5552063,24.7422428],[97.5596237,24.7473774],[97.5670242,24.7544041],[97.5761414,24.7635288],[97.5858154,24.7699051],[97.6016083,24.7727089],[97.6149139,24.7743206],[97.6256104,24.7804832],[97.6313095,24.7844887],[97.6382904,24.7875977],[97.6467743,24.79142],[97.6547165,24.7966137],[97.6623535,24.8047867],[97.6687927,24.8099537],[97.6741333,24.81423],[97.677124,24.8179283],[97.6781158,24.8200035],[97.6791077,24.821619],[97.6841202,24.8246441],[97.6861267,24.8255768],[97.6901474,24.8272171],[97.6931458,24.8295364],[97.6966476,24.8327789],[97.7004089,24.8353329],[97.702919,24.8365002],[97.7056808,24.8372097],[97.7119904,24.8365669],[97.7157898,24.834528],[97.7226257,24.8309021],[97.7266846,24.8286362],[97.7342682,24.8261623],[97.7385483,24.8266544],[97.7435837,24.8273792],[97.7473679,24.8269463],[97.7536926,24.824234],[97.757225,24.8237991],[97.7620163,24.8233738],[97.7688065,24.8257198],[97.7728195,24.828043],[97.7760773,24.8299046],[97.7801132,24.8299313],[97.7833633,24.8327103],[97.7881241,24.8357296],[97.7928925,24.8382893],[97.7968826,24.8436012],[97.7996216,24.8482132],[97.7995529,24.855793],[97.7946396,24.8620968],[97.7887268,24.8727112],[97.7821732,24.8800964],[97.7729034,24.8855705],[97.764679,24.8828125],[97.7549057,24.8882694],[97.7471237,24.894701],[97.7421494,24.8998337],[97.7379913,24.9033871],[97.7345505,24.9081059],[97.7305832,24.9134979],[97.72892,24.9251499],[97.7298279,24.9352703],[97.7314682,24.9461002],[97.7308426,24.9568653],[97.7267761,24.9650078],[97.7174988,24.9779339],[97.7155838,24.9831963],[97.7162323,24.9924641],[97.7176208,25.0032883],[97.7180786,25.0120182],[97.72052,25.0214958],[97.7216949,25.031395],[97.7243958,25.0408783],[97.7244492,25.0488396],[97.7240219,25.0560818],[97.7219543,25.0663719],[97.7196579,25.0752239],[97.7201233,25.0836582],[97.7264709,25.0810661],[97.7341537,25.0804863],[97.7433548,25.0838642],[97.7521591,25.0923748],[97.7582474,25.0959625],[97.7623672,25.0993004],[97.7676392,25.10742],[97.77314,25.1127319],[97.77742,25.1217709],[97.782547,25.134306],[97.787529,25.1438522],[97.7896118,25.149416],[97.7943726,25.1580391],[97.7980194,25.1696148],[97.8000565,25.1765537],[97.8017883,25.185091],[97.8057556,25.1946087],[97.8082962,25.2017937],[97.8100815,25.2087269],[97.8115463,25.2177143],[97.8190231,25.2282486],[97.8181229,25.2325821],[97.823143,25.2409821],[97.8259964,25.2463379],[97.8312836,25.2545166],[97.8350677,25.2641544],[97.8381119,25.2658787],[97.84729,25.2682858],[97.8556366,25.2674351],[97.8634338,25.2630539],[97.870285,25.2603397],[97.8763962,25.2550945],[97.8828506,25.2476177],[97.8864746,25.2412739],[97.892868,25.2325268],[97.8963394,25.224762],[97.9006042,25.216814],[97.9037552,25.2130241],[97.9108734,25.2107372],[97.9182205,25.209631],[97.9237823,25.2096634],[97.9321136,25.2108612],[97.9384766,25.2136917],[97.9439468,25.2164059],[97.9483643,25.2192879],[97.9534454,25.2236233],[97.9576874,25.2288437],[97.9610443,25.2321243],[97.96521,25.2349873],[97.9693222,25.2385502],[97.9742584,25.2447586],[97.9778748,25.2480545],[97.9818039,25.2506657],[97.9884644,25.2548256],[97.9924698,25.2605915],[97.9964905,25.2640591],[98.0000687,25.2681026],[98.0038376,25.2728195],[98.0065689,25.2774696],[98.0079956,25.2841072],[98.0074539,25.2905369],[98.0073471,25.2937508],[98.012207,25.2981434],[98.0147095,25.30229],[98.0255966,25.3050652],[98.0327301,25.3064728],[98.0409851,25.3067799],[98.0481033,25.3051281],[98.0553513,25.30513],[98.0639038,25.3082771],[98.0672531,25.3117867],[98.0702667,25.3162193],[98.0765915,25.3216686],[98.0791016,25.3253574],[98.0836411,25.3290539],[98.0909424,25.3357506],[98.0921936,25.3374748],[98.0934525,25.3392086],[98.0954514,25.3428936],[98.097702,25.3479576],[98.0989456,25.3520985],[98.0991669,25.3569241],[98.100647,25.3635941],[98.1011276,25.3686485],[98.1009293,25.37397],[98.1009293,25.3805599],[98.1050949,25.3869457],[98.1111374,25.3886814],[98.1141739,25.3884659],[98.1176453,25.3887005],[98.1227264,25.3866749],[98.1293716,25.3845158],[98.1390228,25.3837528],[98.142807,25.3865261],[98.1450577,25.3911304],[98.1475601,25.396883],[98.1505508,25.406086],[98.1530457,25.4132195],[98.1530151,25.4201584],[98.152153,25.4278679],[98.1516724,25.4320507],[98.1541824,25.4364262],[98.1561813,25.4412594],[98.158432,25.4470119],[98.1585846,25.4551086],[98.1574097,25.4602108],[98.1553116,25.4638424],[98.1536026,25.4691448],[98.1497879,25.4747849],[98.147934,25.4786663],[98.1463699,25.4853897],[98.1427765,25.4915142],[98.1383743,25.4980564],[98.1352081,25.5053844],[98.1319809,25.5109921],[98.1311035,25.5131226],[98.1337585,25.5172958],[98.138649,25.5194931],[98.1445847,25.5198746],[98.1631927,25.5274258],[98.1659775,25.5316067],[98.1665344,25.5377636],[98.1682205,25.5428123],[98.175621,25.54776],[98.1785889,25.5528927],[98.1859894,25.5576267],[98.1879807,25.5642967],[98.1892166,25.5718822],[98.1876678,25.5764713],[98.184845,25.5828934],[98.182518,25.5891647],[98.1808472,25.5972977],[98.1763611,25.6051426],[98.1725082,25.6138554],[98.1689224,25.6200428],[98.1701736,25.6232662],[98.1752853,25.6254292],[98.1790466,25.6237869],[98.1841736,25.6212902],[98.1898804,25.6181221],[98.1953888,25.6140003],[98.2001343,25.6131248],[98.20578,25.6139565],[98.2121277,25.6124763],[98.2149124,25.6100636],[98.223175,25.6072922],[98.231163,25.6048965],[98.2410583,25.6040134],[98.2486725,25.6028919],[98.2573166,25.5999374],[98.2634125,25.597662],[98.2669067,25.5957031],[98.2729111,25.5918446],[98.2788773,25.5851574],[98.2827606,25.5832558],[98.2883682,25.5768414],[98.293457,25.5722637],[98.297287,25.566761],[98.3015366,25.5552769],[98.3043442,25.5490971],[98.3081894,25.546278],[98.3141632,25.5461826],[98.3176956,25.5475807],[98.3245316,25.5531883],[98.3278961,25.556694],[98.3340836,25.5618248],[98.3367386,25.5666618],[98.3393707,25.5696507],[98.3493271,25.5752163],[98.3550873,25.5779305],[98.3612747,25.5785484],[98.3674393,25.5794048],[98.3721542,25.5822868],[98.3786316,25.5865326],[98.3821716,25.5899868],[98.3882523,25.5925293],[98.3928146,25.5941505],[98.39888,25.5961838],[98.4023209,25.5987511],[98.4046936,25.6017227],[98.4059448,25.6058025],[98.4084091,25.6144295],[98.4104843,25.6210728],[98.4104614,25.6284256],[98.4104309,25.6357765],[98.4109192,25.6419792],[98.4108963,25.6488724],[98.4118958,25.6548481],[98.4126434,25.6596737],[98.4202271,25.6691113],[98.4246521,25.673111],[98.4313354,25.6775246],[98.4355392,25.6803741],[98.4443283,25.6809139],[98.4537811,25.6831417],[98.4574661,25.685957],[98.4620514,25.6901112],[98.4673538,25.7002296],[98.4691086,25.7082729],[98.4670639,25.7142429],[98.4645081,25.718832],[98.4629593,25.7268696],[98.4619904,25.7297955],[98.4622421,25.7368755],[98.4668274,25.7416286],[98.473053,25.7488384],[98.4790878,25.7550964],[98.4824295,25.7606792],[98.482666,25.7655029],[98.4801483,25.7704678],[98.4790039,25.7753429],[98.4784546,25.779314],[98.4813461,25.7861767],[98.4871674,25.7930794],[98.4909744,25.7979107],[98.4937744,25.8023853],[98.4966049,25.8063259],[98.5065308,25.8128185],[98.5112991,25.8152275],[98.5195465,25.8197308],[98.5234451,25.8223209],[98.5226669,25.8262253],[98.5218964,25.8303585],[98.5229111,25.8328876],[98.5256958,25.8351879],[98.5343246,25.8420944],[98.5399094,25.8453217],[98.5453873,25.8469696],[98.5544357,25.8477516],[98.5600204,25.8462029],[98.5656509,25.8439503],[98.5739899,25.8377895],[98.580864,25.8322849],[98.5846939,25.8265457],[98.5897827,25.8231068],[98.596138,25.8201275],[98.6050415,25.8162327],[98.6116562,25.8127937],[98.6190262,25.8109646],[98.628006,25.8062363],[98.6331482,25.8034801],[98.6396027,25.8005676],[98.6431427,25.8019562],[98.646492,25.8017998],[98.6508026,25.8061695],[98.6538467,25.8089275],[98.6585922,25.8148842],[98.6645126,25.8190441],[98.6688385,25.8181286],[98.6792526,25.8192844],[98.6815414,25.8202038],[98.6828079,25.82411],[98.6850891,25.8289356],[98.6873779,25.8335323],[98.6909256,25.8390465],[98.6937256,25.8406563],[98.6980438,25.8429565],[98.7023621,25.8459454],[98.7059174,25.8503094],[98.7097244,25.8583527],[98.7098007,25.858757],[98.7115021,25.8682308],[98.7114944,25.8712177],[98.7117462,25.8748932],[98.7099686,25.8799477],[98.7086868,25.8847713],[98.7069092,25.8891335],[98.7051239,25.8937283],[98.7033386,25.8987808],[98.7023163,25.9013081],[98.7007904,25.9033756],[98.6974792,25.9093456],[98.694931,25.9144001],[98.6923828,25.917614],[98.6913605,25.9208298],[98.6903381,25.9258823],[98.6891174,25.9292774],[98.6883621,25.9325333],[98.6849136,25.9370403],[98.6752014,25.9451828],[98.6590652,25.9593048],[98.6526184,25.9619865],[98.6498642,25.9639435],[98.6486893,25.9657593],[98.6480713,25.9671345],[98.645256,25.9708767],[98.6406708,25.9729404],[98.6360931,25.9717884],[98.6294785,25.9701729],[98.6226044,25.9694786],[98.6198044,25.9701653],[98.6182785,25.9733791],[98.6164856,25.9798088],[98.6159592,25.9889984],[98.6141663,25.997036],[98.6118622,26.0053043],[98.6098175,26.0108147],[98.6077728,26.0154057],[98.6049652,26.0206871],[98.6046982,26.0257416],[98.6034164,26.0333195],[98.6026382,26.0415897],[98.6013565,26.0471001],[98.6005859,26.0521545],[98.598793,26.0567474],[98.5980225,26.060421],[98.5973511,26.0635548],[98.5962982,26.0672626],[98.5939407,26.0727768],[98.5887909,26.0717621],[98.5858154,26.0732346],[98.5869293,26.0829639],[98.5897217,26.0911446],[98.5885773,26.0995617],[98.5831833,26.1197453],[98.5836563,26.121027],[98.5851364,26.1250496],[98.5872269,26.1393166],[98.5905609,26.1383381],[98.5921707,26.1377277],[98.5945969,26.136694],[98.5972214,26.1366138],[98.6012115,26.1357727],[98.6069412,26.1357803],[98.6113968,26.1391106],[98.6171875,26.1420498],[98.6244583,26.1497898],[98.6314316,26.1509113],[98.6417923,26.1484623],[98.6485901,26.1448574],[98.6575241,26.1399612],[98.6613541,26.1333027],[98.6644211,26.1275616],[98.6659546,26.1206722],[98.6639252,26.1149254],[98.6613846,26.1091805],[98.6580811,26.1022873],[98.6578293,26.0981541],[98.6588516,26.0933285],[98.6675186,26.0889721],[98.6746521,26.0937996],[98.6790466,26.0992813],[98.6849823,26.1038742],[98.6905518,26.1098595],[98.6960678,26.1130123],[98.7024765,26.1183376],[98.7134399,26.1255817],[98.7161102,26.1283321],[98.7184448,26.1349392],[98.7138519,26.1397629],[98.7095184,26.1432076],[98.7090073,26.1452732],[98.7077255,26.1503277],[98.7097626,26.1542339],[98.7143478,26.1567631],[98.7194443,26.1576824],[98.723526,26.1604404],[98.7268372,26.1634274],[98.7286148,26.1654949],[98.731163,26.1703205],[98.7332001,26.1776714],[98.7326889,26.1827259],[98.7321777,26.1875496],[98.730896,26.1928329],[98.7291107,26.1990337],[98.7273178,26.2036285],[98.7234879,26.2118969],[98.7204285,26.2178688],[98.7173615,26.2231503],[98.7142944,26.2279739],[98.7107239,26.2325668],[98.7058716,26.2371597],[98.7012787,26.238306],[98.6977081,26.2383041],[98.6875076,26.2364616],[98.6819,26.2382965],[98.6770477,26.2410488],[98.6752625,26.2433453],[98.6765289,26.2474804],[98.6783142,26.2516174],[98.6800919,26.2589684],[98.6808472,26.2647114],[98.680336,26.2699947],[98.6810913,26.2761974],[98.6816025,26.2814808],[98.6826172,26.2867661],[98.6836319,26.292738],[98.6843872,26.2975616],[98.6854095,26.3037643],[98.6882095,26.3097382],[98.6902466,26.3122673],[98.6943283,26.3147964],[98.7007065,26.3182449],[98.7052994,26.321003],[98.7109146,26.3253689],[98.7145233,26.3300552],[98.719574,26.3362465],[98.7225876,26.3416119],[98.727951,26.3471146],[98.7314377,26.3532143],[98.7310562,26.3598309],[98.7302856,26.3655739],[98.731308,26.371088],[98.7328339,26.3775196],[98.7348785,26.381197],[98.7389603,26.3844128],[98.7415161,26.38694],[98.7448349,26.3924522],[98.7478867,26.4094524],[98.7476273,26.4156532],[98.7491608,26.4197884],[98.7494125,26.423233],[98.7481384,26.4262199],[98.7471161,26.4287472],[98.7448883,26.4320717],[98.7432632,26.4364586],[98.7422028,26.4439449],[98.7416534,26.4479237],[98.7444458,26.4528046],[98.7473297,26.4600487],[98.7504196,26.4666481],[98.7506714,26.4721603],[98.7542496,26.4785919],[98.7550125,26.4813499],[98.7557831,26.4873199],[98.7562866,26.4935226],[98.7552643,26.4976578],[98.7535248,26.5052357],[98.7503357,26.510561],[98.7567902,26.5231533],[98.7567902,26.5256805],[98.7567902,26.5314217],[98.7567825,26.5376244],[98.7557602,26.5429077],[98.7549896,26.5523243],[98.7549896,26.5594444],[98.7565231,26.5644989],[98.7611237,26.567255],[98.76931,26.5720787],[98.7713547,26.5748348],[98.7736588,26.5798893],[98.7746735,26.5837936],[98.7762146,26.5886154],[98.7779999,26.5938988],[98.7789688,26.5987358],[98.7794647,26.6027775],[98.7790222,26.6083698],[98.7787704,26.6111259],[98.7787628,26.6138821],[98.7816696,26.6196613],[98.7710571,26.6395798],[98.768692,26.6505375],[98.7660217,26.6621838],[98.7641907,26.6693954],[98.7636719,26.672905],[98.7649536,26.6769924],[98.7683563,26.6845074],[98.7672882,26.6884575],[98.7645035,26.6906586],[98.7600098,26.6946468],[98.7550659,26.6976643],[98.7525406,26.6998787],[98.7496338,26.7037239],[98.7469025,26.7087574],[98.7456207,26.7119884],[98.7444305,26.7174702],[98.7459641,26.7229805],[98.7526169,26.744112],[98.7538986,26.764431],[98.7579956,26.7811718],[98.7590027,26.7891312],[98.7597733,26.7925739],[98.7595139,26.7978573],[98.7602844,26.8010731],[98.7597733,26.8031406],[98.7577209,26.8084221],[98.7551498,26.8150826],[98.7510529,26.820364],[98.7492523,26.8233509],[98.7461777,26.8274841],[98.7420731,26.8323059],[98.7382202,26.8382759],[98.7365036,26.8439178],[98.7347031,26.8506603],[98.7344971,26.8534832],[98.7364197,26.8610134],[98.7412872,26.8646889],[98.7474365,26.871809],[98.7510223,26.8777828],[98.7528229,26.8832951],[98.7535858,26.8888073],[98.7538452,26.8927116],[98.7538452,26.8950081],[98.7543488,26.9018974],[98.7538376,26.9074097],[98.7528076,26.9149876],[98.752037,26.9182034],[98.7515259,26.921648],[98.7502365,26.9262409],[98.7469025,26.9329014],[98.7456131,26.9381847],[98.7461243,26.9430065],[98.7456131,26.9462204],[98.7445831,26.9501247],[98.7391891,26.9590797],[98.737648,26.9636745],[98.7386703,26.9682674],[98.7394409,26.9751568],[98.7402039,26.9813576],[98.7409744,26.9864101],[98.7391739,26.9912338],[98.7391663,26.9985828],[98.7401962,27.0034046],[98.7401886,27.007309],[98.741539,27.0114403],[98.7436295,27.0153408],[98.7500076,27.0183086],[98.7586746,27.0213203],[98.7612381,27.0256844],[98.7620087,27.029129],[98.7638016,27.0341816],[98.7663727,27.0399227],[98.7658539,27.0435963],[98.7638016,27.0479603],[98.7594376,27.0520935],[98.7519836,27.0605907],[98.7501831,27.0647221],[98.7455597,27.0704632],[98.7379456,27.073843],[98.7326202,27.0744801],[98.7252121,27.0747604],[98.7175522,27.0761986],[98.7139511,27.0782642],[98.7134323,27.0842342],[98.7124023,27.0908928],[98.7118835,27.0980129],[98.7116241,27.1035233],[98.7111053,27.1106434],[98.7110977,27.1189098],[98.7116013,27.1283264],[98.7113419,27.1324596],[98.7097931,27.1404953],[98.7090225,27.1469269],[98.7087555,27.1531258],[98.7082367,27.1581764],[98.7084961,27.1625404],[98.7084885,27.1678219],[98.7069473,27.1726437],[98.705658,27.1776943],[98.7051315,27.1848145],[98.703331,27.188488],[98.6984406,27.1939964],[98.69664,27.1992779],[98.6963806,27.2027206],[98.6971436,27.2080021],[98.6986847,27.2135143],[98.700737,27.2148933],[98.7040787,27.2176495],[98.7074203,27.2192593],[98.7105103,27.2206383],[98.7200241,27.2240868],[98.723877,27.2270718],[98.7241364,27.2321243],[98.7233582,27.2401619],[98.7254105,27.2417698],[98.731842,27.2456741],[98.731842,27.2504978],[98.7295227,27.2527924],[98.7259216,27.2546291],[98.7218018,27.2569237],[98.7202606,27.2587605],[98.720253,27.2612858],[98.7210236,27.2670269],[98.7230835,27.2707024],[98.7261658,27.2739182],[98.7279663,27.2769032],[98.7297668,27.2810383],[98.732338,27.2872372],[98.7338791,27.2925186],[98.7354202,27.2968826],[98.7372208,27.3019352],[98.7387619,27.3062973],[98.7400436,27.3120384],[98.7408142,27.3170891],[98.7408142,27.3207626],[98.7408066,27.3242073],[98.740036,27.3283405],[98.739006,27.332243],[98.7379684,27.3384438],[98.7360535,27.3427219],[98.7352066,27.3471661],[98.7328415,27.3505764],[98.7289505,27.3540554],[98.7219925,27.3568077],[98.718132,27.3597927],[98.7114334,27.3646126],[98.7078247,27.367136],[98.7039948,27.372076],[98.7036972,27.3798637],[98.7027893,27.3850117],[98.7031479,27.3909454],[98.7044525,27.3974438],[98.7041931,27.403183],[98.7036743,27.4080048],[98.7016068,27.4125977],[98.6997986,27.4155807],[98.6954117,27.4213181],[98.6923218,27.4265976],[98.6907654,27.4325676],[98.6907578,27.4385357],[98.6910172,27.4435883],[98.6910095,27.4479504],[98.6910095,27.4497871],[98.6928101,27.4509354],[98.6969376,27.4525452],[98.7023468,27.454155],[98.7064667,27.4603558],[98.7036285,27.4651756],[98.7002716,27.4711437],[98.6974258,27.4759636],[98.6948471,27.479866],[98.689682,27.489048],[98.6901932,27.4940987],[98.6911774,27.5130138],[98.6912079,27.5136147],[98.6919785,27.517519],[98.693985,27.5191383],[98.693779,27.5191269],[98.7009964,27.5248699],[98.7030563,27.5287743],[98.7015076,27.535202],[98.7002106,27.5381851],[98.69944,27.5404816],[98.6986618,27.5453014],[98.6994324,27.5496655],[98.7020035,27.5542583],[98.703804,27.5597687],[98.704834,27.5627537],[98.7030258,27.5675755],[98.7001877,27.568491],[98.6973495,27.5684891],[98.6916733,27.5703239],[98.6849594,27.5753708],[98.6808319,27.579731],[98.6743698,27.5891399],[98.6699753,27.5932693],[98.6653366,27.5918884],[98.6609497,27.5891304],[98.6565704,27.5843067],[98.6514206,27.5783329],[98.6452332,27.5739651],[98.6416168,27.5737343],[98.6387787,27.574419],[98.632843,27.5757923],[98.6274261,27.5769348],[98.6204605,27.5778465],[98.6160736,27.5783005],[98.6093597,27.5799007],[98.6036835,27.5794353],[98.6005936,27.5769062],[98.5967255,27.5743771],[98.5918274,27.5723057],[98.5876999,27.5713825],[98.5851212,27.5720673],[98.5835648,27.5757389],[98.5840759,27.5787239],[98.5850983,27.5858421],[98.584053,27.5924988],[98.5830078,27.5989265],[98.5793839,27.6039715],[98.5778275,27.6087914],[98.5767822,27.6161366],[98.5744476,27.6230202],[98.5710754,27.6312809],[98.568222,27.6381645],[98.5638199,27.645504],[98.559166,27.648941],[98.5540009,27.6489334],[98.5470352,27.6463985],[98.5398178,27.642025],[98.5369873,27.6383495],[98.5354462,27.6328354],[98.5349426,27.6275558],[98.5295334,27.6243324],[98.5256577,27.6259327],[98.5217819,27.6268444],[98.5158386,27.6293602],[98.5100784,27.6331654],[98.503891,27.637764],[98.4971161,27.6394882],[98.4884491,27.6394119],[98.4807053,27.638937],[98.476059,27.6407642],[98.4734726,27.6419086],[98.470108,27.6437378],[98.4670105,27.6451092],[98.4631271,27.6485443],[98.4595032,27.6531296],[98.4522476,27.6606903],[98.4481049,27.6652718],[98.4421539,27.6684723],[98.4375076,27.6693802],[98.4346695,27.6675377],[98.432106,27.6617928],[98.4323883,27.6544476],[98.4342117,27.648941],[98.4368134,27.6427479],[98.4365768,27.6356297],[98.4355621,27.6292],[98.4345474,27.62323],[98.4344406,27.616312],[98.4330902,27.6096039],[98.432106,27.6050491],[98.4319305,27.5934429],[98.4314651,27.5891533],[98.4330063,27.5828571],[98.4318619,27.5756989],[98.4311066,27.568121],[98.4298477,27.5603123],[98.4270172,27.5568619],[98.4249802,27.5539761],[98.4214783,27.5511627],[98.4191742,27.5500755],[98.4147339,27.5490971],[98.4101257,27.5469246],[98.4042816,27.5434933],[98.4020462,27.5414639],[98.3997345,27.5391178],[98.3979416,27.5347519],[98.3925552,27.5262432],[98.3853683,27.5177288],[98.3802185,27.5140419],[98.3761063,27.5119648],[98.3724976,27.5117264],[98.3670807,27.5119419],[98.3608932,27.5119228],[98.354187,27.5121346],[98.3474808,27.5125751],[98.3430939,27.5127926],[98.3383484,27.5155659],[98.3326721,27.5168743],[98.3277206,27.5191708],[98.3231964,27.5226059],[98.3184738,27.5283108],[98.3163376,27.5305958],[98.3145828,27.538002],[98.3089142,27.546669],[98.3083267,27.5501595],[98.3090744,27.5542278],[98.3099594,27.5599613],[98.3100128,27.5661163],[98.3087234,27.5724277],[98.3081512,27.5764141],[98.3064117,27.5834064],[98.3064117,27.5889053],[98.3045883,27.5934906],[98.3042374,27.5977097],[98.3021393,27.6042061],[98.3001251,27.6106949],[98.2995911,27.6157436],[98.2989273,27.6198654],[98.2988052,27.6248283],[98.2972946,27.6306515],[98.2939987,27.6354179],[98.2889023,27.640274],[98.2881165,27.6425686],[98.2875748,27.6480751],[98.2862473,27.6496143],[98.2843094,27.6539917],[98.2789536,27.6579227],[98.2752914,27.6605358],[98.2712402,27.6647816],[98.2661667,27.6684914],[98.2571335,27.6785831],[98.252655,27.6813831],[98.2504883,27.6849117],[98.2447891,27.6883335],[98.2416687,27.6919956],[98.2390747,27.6945133],[98.2377777,27.6965733],[98.2333527,27.7036743],[98.2315292,27.7068825],[98.22789,27.7119198],[98.2252808,27.716959],[98.2249985,27.7220097],[98.2273026,27.7261486],[98.2314148,27.7296085],[98.2345123,27.731226],[98.2451172,27.733469],[98.2462006,27.7366142],[98.2461548,27.7439499],[98.2440186,27.7473698],[98.2408524,27.7504864],[98.2349167,27.7541847],[98.2276688,27.7562237],[98.224823,27.7575912],[98.2211914,27.760561],[98.2198715,27.7660656],[98.219841,27.771574],[98.2208405,27.7789249],[98.2221069,27.7844391],[98.2236252,27.7906418],[98.2281723,27.7965794],[98.2281036,27.8008366],[98.2281189,27.8074665],[98.2271805,27.8126183],[98.2194366,27.8128471],[98.2134323,27.8131008],[98.2095413,27.8153801],[98.2040939,27.8185749],[98.1976166,27.8217621],[98.1916504,27.8247242],[98.18647,27.8274574],[98.1804962,27.8322544],[98.175293,27.8377419],[98.1747589,27.8407249],[98.1742096,27.8471508],[98.1744461,27.851284],[98.176239,27.8551922],[98.1785431,27.8595619],[98.178299,27.8661957],[98.1823273,27.8697395],[98.1857224,27.8712978],[98.1903687,27.8726921],[98.1955338,27.8740902],[98.2001801,27.8764038],[98.2022324,27.8791656],[98.2050629,27.8819313],[98.2068558,27.8867588],[98.2065659,27.8915787],[98.2052536,27.8961639],[98.2041931,27.9007511],[98.2021027,27.9046459],[98.2000122,27.9094563],[98.1973953,27.9149551],[98.195282,27.9232101],[98.1884537,27.9413166],[98.1850967,27.9406147],[98.1794052,27.9405937],[98.1719055,27.9396439],[98.1646576,27.9389267],[98.1607819,27.9384518],[98.1550674,27.9411831],[98.1522064,27.943924],[98.1475296,27.9478073],[98.143364,27.9519215],[98.1397018,27.9581032],[98.1388855,27.9649849],[98.1370316,27.973238],[98.1367264,27.9808121],[98.1356735,27.9847088],[98.1366501,27.9945831],[98.1382294,28.0000114],[98.140976,28.0035477],[98.1410599,28.0067501],[98.1414108,28.0106373],[98.1458969,28.0168419],[98.1455765,28.0217686],[98.1431961,28.0298328],[98.142395,28.0390072],[98.1433563,28.046545],[98.1469498,28.0553989],[98.1531219,28.0635204],[98.1548996,28.0728645],[98.1583252,28.0805531],[98.1599197,28.0880337],[98.1603622,28.093502],[98.160553,28.1020603],[98.1534119,28.1161728],[98.1485138,28.127037],[98.1447906,28.1335239],[98.1411514,28.1429901],[98.1337814,28.1457596],[98.1752853,28.1713562],[98.164711,28.2034073],[98.1709213,28.2131233],[98.2211075,28.2196159],[98.2661285,28.2456665],[98.2354279,28.3106766],[98.2065048,28.3355713],[98.2033844,28.3553295],[98.2267227,28.3546028],[98.2401886,28.3730946],[98.2914505,28.3969421],[98.2997284,28.3956165],[98.3049393,28.3675594],[98.3236618,28.349741],[98.3241577,28.3204193],[98.3589554,28.2933064],[98.3737259,28.255188],[98.3732605,28.1917648],[98.3898849,28.1746712],[98.3933105,28.1207809],[98.4040451,28.1065674],[98.4260254,28.1056042],[98.4670486,28.145874],[98.4981384,28.1460609],[98.5494308,28.1817112],[98.5800705,28.1837215],[98.6118088,28.1621113],[98.6242676,28.1629486],[98.6534576,28.2027645],[98.6941299,28.2189293],[98.7121353,28.2395439],[98.7134171,28.3057003],[98.7530975,28.3383617],[98.7040176,28.4293842],[98.6754532,28.480484],[98.6280365,28.4937935],[98.6216278,28.5051746],[98.6297531,28.5590267],[98.6166077,28.6317272],[98.5928574,28.6730728],[98.5969315,28.6874046],[98.6282654,28.6900768],[98.6743164,28.7223854],[98.6624756,28.7906857],[98.6595154,28.8006306],[98.653244,28.8058567],[98.6473083,28.8137722],[98.6452713,28.8206787],[98.6492844,28.8263035],[98.6558838,28.8307476]]]]},
  1955 +"properties":{
  1956 +"gid":326,
  1957 +"name":"云南省"}
  1958 +},
  1959 +{"type":"Feature",
  1960 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.5552216,29.2326355],[121.5558929,29.2338486],[121.5565567,29.2350655],[121.5576019,29.2360306],[121.5590973,29.2371216],[121.5608215,29.2393036],[121.5712509,29.2379112],[121.5769272,29.2362976],[121.5786972,29.2354679],[121.5795593,29.2343979],[121.5800018,29.2333908],[121.5788269,29.2296238],[121.5776367,29.2279243],[121.5764084,29.2260437],[121.5753174,29.2237663],[121.5734406,29.2229252],[121.5715027,29.2239704],[121.5719986,29.2253971],[121.5725327,29.2270088],[121.5730896,29.2276745],[121.5727921,29.2294121],[121.5715179,29.230545],[121.5690231,29.2309227],[121.5672836,29.2308083],[121.564537,29.2310352],[121.5613174,29.2309628],[121.5586319,29.2293015],[121.5568619,29.2290058],[121.5552063,29.2303829],[121.5543365,29.2314529],[121.5552216,29.2326355]]]]},
  1961 +"properties":{
  1962 +"gid":327,
  1963 +"name":"浙江省"}
  1964 +},
  1965 +{"type":"Feature",
  1966 +"geometry":{"type":"MultiPolygon","coordinates":[[[[108.5017319,28.62286],[108.5257263,28.6517029],[108.5522995,28.6520977],[108.5717468,28.6648293],[108.5859375,28.6474819],[108.6224136,28.6476917],[108.6331482,28.637661],[108.6024475,28.5902481],[108.6084518,28.545105],[108.5694733,28.5363941],[108.5776367,28.519474],[108.5723038,28.5015564],[108.6014023,28.4226112],[108.5742493,28.4004421],[108.5739822,28.3616867],[108.610527,28.3325481],[108.6694336,28.3427277],[108.6719818,28.3505383],[108.6500702,28.3664742],[108.6849518,28.4015121],[108.6738586,28.4349327],[108.6412277,28.4586067],[108.6421967,28.4700794],[108.6894836,28.4781227],[108.7065506,28.4979305],[108.716362,28.4964809],[108.7242737,28.4756527],[108.7456284,28.4693336],[108.7496109,28.4519215],[108.7715302,28.4359703],[108.7550583,28.3992043],[108.7764587,28.3807297],[108.7598267,28.3242435],[108.7681732,28.3157959],[108.7239075,28.2878437],[108.7203674,28.2692528],[108.7349777,28.2544193],[108.7324829,28.2351456],[108.7538376,28.2162151],[108.7531204,28.2035999],[108.8066406,28.2464867],[108.8167572,28.2440071],[108.8449478,28.2033062],[108.8902817,28.2218189],[108.9152069,28.2168598],[108.9305267,28.2084274],[108.9295425,28.1935215],[108.9908218,28.1641273],[109.0050735,28.1715031],[109.0228729,28.2139702],[109.0711594,28.1909237],[109.0877533,28.19417],[109.0934372,28.2150478],[109.0801468,28.2480392],[109.1270676,28.3098106],[109.1498337,28.4125767],[109.174263,28.4337101],[109.1893234,28.4674377],[109.20961,28.4800739],[109.238739,28.4805603],[109.2698975,28.5022907],[109.2710571,28.492981],[109.2710571,28.4869785],[109.2680588,28.4802265],[109.2643127,28.472723],[109.2583084,28.4682198],[109.2553024,28.4607162],[109.2545471,28.4487114],[109.2545471,28.4374561],[109.2542572,28.4266186],[109.2545471,28.4089432],[109.2560577,28.4021912],[109.2583084,28.392437],[109.2620468,28.384182],[109.2695618,28.3804302],[109.2710571,28.3766785],[109.2718124,28.3736782],[109.2770615,28.3699265],[109.2838211,28.3654232],[109.2845688,28.3624229],[109.2823181,28.3564205],[109.2778168,28.3511677],[109.2710571,28.3459148],[109.2665634,28.3391628],[109.2673111,28.3286572],[109.2674637,28.3193302],[109.2948227,28.2793598],[109.3433838,28.2963371],[109.348793,28.2646942],[109.3690491,28.2766151],[109.3783875,28.2727146],[109.3581238,28.2493324],[109.3370209,28.1816921],[109.3393326,28.156929],[109.2993469,28.0764465],[109.2964783,28.0468674],[109.3140869,28.0443516],[109.3392334,28.0643024],[109.3604584,28.0544415],[109.3731232,28.0326595],[109.3205872,28.0009441],[109.3015289,27.9681396],[109.3065338,27.9250755],[109.3180084,27.9080524],[109.307869,27.8842449],[109.3221436,27.8695621],[109.3315887,27.8366661],[109.3205872,27.8172054],[109.3257675,27.8039799],[109.3119202,27.7847004],[109.3421478,27.7732601],[109.3772278,27.737793],[109.4326935,27.7437229],[109.4234772,27.7114429],[109.4451294,27.6872234],[109.4626999,27.6319466],[109.4497604,27.5777988],[109.428833,27.5515327],[109.4045105,27.5548191],[109.3832932,27.5443783],[109.3019028,27.4840488],[109.3023071,27.4376812],[109.2896423,27.4266796],[109.2410202,27.4214954],[109.2366104,27.4351959],[109.2032166,27.4536762],[109.1516037,27.419714],[109.1544571,27.4429531],[109.1424637,27.449398],[109.1254196,27.4380741],[109.1302719,27.4163513],[109.1126404,27.3969803],[109.1046829,27.359642],[109.0864868,27.3432426],[109.0458298,27.3408909],[109.0531464,27.2895947],[108.8970566,27.2133961],[108.9148636,27.1673565],[108.8813095,27.1278973],[108.8760071,27.1126366],[108.8510437,27.114212],[108.8260269,27.0948868],[108.7920837,27.095583],[108.7831116,27.0836887],[108.7966537,27.0770741],[108.8333588,27.0573711],[108.8678589,27.000412],[108.9028473,27.0203876],[108.9339905,27.0180035],[108.9483414,27.0536442],[109.0168228,27.0942039],[109.0824127,27.1169987],[109.126442,27.1260586],[109.1288986,27.1192131],[109.1036301,27.0985527],[109.1000137,27.075983],[109.1591568,27.0745163],[109.191391,27.0945988],[109.2435989,27.1568108],[109.2631226,27.1323433],[109.2760162,27.1304951],[109.3998795,27.1628399],[109.4361496,27.121397],[109.4528427,27.1365852],[109.4679871,27.1381969],[109.4543533,27.083107],[109.4572067,27.0673084],[109.4699326,27.0603886],[109.4965973,27.0782509],[109.5071716,27.0761166],[109.5151367,27.0337601],[109.5344467,27.0028248],[109.525032,26.9833927],[109.5415115,26.9811153],[109.550209,26.9541492],[109.5257187,26.9310474],[109.4972534,26.9294643],[109.4318237,26.886879],[109.4451828,26.8717041],[109.4772415,26.9004517],[109.4888306,26.884325],[109.5092163,26.8777504],[109.5085526,26.8437538],[109.4919968,26.8228321],[109.5129776,26.7834244],[109.5074081,26.7511902],[109.5000305,26.7480907],[109.4930878,26.7635994],[109.4492264,26.7645245],[109.4129715,26.7430496],[109.4076996,26.7239056],[109.3765564,26.7307529],[109.3812103,26.7154388],[109.3572006,26.6978245],[109.2845535,26.7046547],[109.2824783,26.6931381],[109.306427,26.6611576],[109.3294525,26.6495991],[109.3520279,26.6607647],[109.3562393,26.6415424],[109.3739624,26.6257553],[109.3746796,26.5747814],[109.395813,26.5673141],[109.4030533,26.5499763],[109.3995438,26.5329247],[109.3769836,26.5217648],[109.3807831,26.4967937],[109.3576584,26.4755154],[109.376152,26.4579029],[109.3222122,26.4312916],[109.2902985,26.3519745],[109.2678604,26.3371239],[109.2842789,26.2949104],[109.3337784,26.2709351],[109.3373795,26.2562962],[109.3647385,26.2804031],[109.4244766,26.2944622],[109.446022,26.2890625],[109.4438171,26.3115368],[109.4588165,26.3149872],[109.476059,26.2943573],[109.4525833,26.2792892],[109.451683,26.2702732],[109.4348984,26.2420292],[109.4476929,26.2128334],[109.4657974,26.1995659],[109.4434967,26.1909466],[109.4637222,26.1735802],[109.466568,26.157547],[109.495079,26.1462765],[109.5054779,26.1209412],[109.5003815,26.1066227],[109.4633865,26.08078],[109.4780197,26.032774],[109.4577637,25.9984608],[109.4010391,25.9672356],[109.4246979,25.9549828],[109.4266968,25.92906],[109.3878174,25.8992596],[109.3839722,25.8737011],[109.3626709,25.8434906],[109.3308487,25.8317089],[109.32827,25.7944527],[109.3075104,25.7768784],[109.3322525,25.7465115],[109.3298569,25.7386608],[109.2770386,25.7237568],[109.2570419,25.7326031],[109.2333069,25.7250729],[109.2228775,25.7379837],[109.2033234,25.7376423],[109.1945877,25.7914696],[109.175209,25.8062878],[109.1573334,25.7974701],[109.1760483,25.765873],[109.1448517,25.7501545],[109.1233368,25.7575779],[109.1319427,25.7963238],[109.1009216,25.8077049],[109.0604782,25.7846794],[108.9875336,25.7839966],[108.9910736,25.7620106],[108.9714432,25.7531357],[108.9630432,25.7309227],[108.9213104,25.733099],[108.9067307,25.7259216],[108.8895493,25.6998539],[108.9092026,25.6738243],[108.9376526,25.6736908],[108.968338,25.6986332],[108.9780121,25.7206421],[109.0006104,25.7327881],[109.0226593,25.7240162],[109.0368576,25.7371464],[109.0614166,25.7412796],[109.0692825,25.7186832],[109.0617676,25.6900597],[109.0301666,25.647892],[109.0368423,25.5751972],[109.0701675,25.548254],[109.0279465,25.5180607],[109.0096664,25.5184059],[108.9917603,25.5366707],[108.9653931,25.5359364],[108.9341812,25.5585327],[108.8936691,25.5434971],[108.8741302,25.5543652],[108.834343,25.55196],[108.8049622,25.5283928],[108.7984695,25.5452595],[108.7780991,25.5588551],[108.7928314,25.5793743],[108.7659607,25.5990372],[108.7799072,25.6312561],[108.7009888,25.6188164],[108.6597137,25.5740623],[108.659462,25.553381],[108.6790237,25.5220966],[108.6622467,25.5127792],[108.6289368,25.5161991],[108.6340485,25.4846058],[108.6067734,25.4798794],[108.5946732,25.46698],[108.5927429,25.4338589],[108.6165237,25.4054298],[108.6221771,25.3524837],[108.6195602,25.3358879],[108.5955429,25.3241081],[108.5801163,25.3423767],[108.5808563,25.3630695],[108.5562134,25.3756218],[108.5476227,25.404377],[108.4867935,25.452179],[108.4456406,25.4544582],[108.4112701,25.4410324],[108.3920288,25.4863052],[108.3365479,25.5295734],[108.3161469,25.533226],[108.3013229,25.5190887],[108.2769699,25.4828949],[108.2389832,25.4633656],[108.2362137,25.427227],[108.2142792,25.4315186],[108.1884384,25.4570732],[108.1457901,25.4413109],[108.1475677,25.4326248],[108.1733627,25.4263725],[108.1822968,25.4066067],[108.177002,25.3968258],[108.1401672,25.3908539],[108.1323776,25.3803215],[108.1478577,25.3620968],[108.1316681,25.3440018],[108.1478119,25.3205109],[108.1293411,25.2940884],[108.1390915,25.2725048],[108.1295013,25.237112],[108.1178436,25.2292385],[108.1051865,25.203186],[108.0734482,25.1899719],[107.9978333,25.1994457],[107.9651489,25.1808929],[107.8996964,25.1657696],[107.8578873,25.1285229],[107.829277,25.1245537],[107.8102264,25.1335163],[107.7729568,25.1246071],[107.785347,25.1576786],[107.7558212,25.1915245],[107.758667,25.2274742],[107.7490692,25.2440987],[107.7379303,25.2430954],[107.7026291,25.1999912],[107.6905136,25.2008305],[107.6901474,25.2271919],[107.6578064,25.2619686],[107.6542664,25.2963924],[107.665657,25.3134441],[107.651062,25.3182049],[107.6279602,25.3132114],[107.6051025,25.2719975],[107.5024567,25.21908],[107.4708328,25.2166748],[107.4626236,25.226162],[107.4841766,25.2875824],[107.4720078,25.3042164],[107.4447632,25.2902985],[107.4283371,25.2918491],[107.4035873,25.3546791],[107.4197769,25.392786],[107.3980637,25.3964481],[107.3760223,25.4159279],[107.3536072,25.4053822],[107.3296432,25.4115791],[107.3065491,25.4289951],[107.3361435,25.4667511],[107.3274536,25.5021343],[107.2282715,25.5594559],[107.2314835,25.5965576],[107.2161713,25.6106777],[107.2014618,25.6108093],[107.141449,25.5719128],[107.0892334,25.5725784],[107.0624771,25.5595016],[107.069397,25.5168152],[107.0114136,25.493433],[106.9977264,25.4667225],[106.9935303,25.4518566],[106.9666367,25.4463272],[106.959137,25.4296513],[106.9793472,25.370142],[107.0095673,25.3543282],[107.0025787,25.3110657],[107.0106201,25.2784595],[106.9877472,25.2664852],[106.98423,25.2415295],[106.9416122,25.2537594],[106.9203415,25.250473],[106.9007034,25.2297535],[106.8871765,25.186758],[106.8543625,25.1901855],[106.7855225,25.1766415],[106.7618408,25.1857224],[106.7242889,25.1646252],[106.6966324,25.1842594],[106.6784134,25.1804619],[106.6431885,25.16506],[106.6336594,25.1357746],[106.6009369,25.1139336],[106.5899582,25.0940475],[106.5727997,25.0950432],[106.5305786,25.0853767],[106.5307693,25.0739174],[106.5135193,25.0586357],[106.4561462,25.0448856],[106.4085617,25.0136604],[106.299942,24.9807663],[106.2754974,24.9872456],[106.2421722,24.978159],[106.2199936,24.9869175],[106.1891479,24.9597092],[106.1634369,24.9686947],[106.1444016,24.9570312],[106.1987534,24.8739815],[106.2002029,24.8467083],[106.1796417,24.7896843],[106.1707764,24.7695351],[106.1420364,24.7574387],[106.1291504,24.7322502],[106.0513077,24.6938496],[106.0180283,24.6404839],[105.9923935,24.6531048],[105.9609604,24.6849709],[105.9358063,24.7289772],[105.8693619,24.7328682],[105.8298492,24.7067261],[105.805687,24.7067108],[105.7051773,24.7687035],[105.6782227,24.7750797],[105.6258316,24.7816296],[105.5960464,24.8111286],[105.5587769,24.8027916],[105.5053635,24.8111286],[105.4598236,24.870348],[105.445549,24.9110947],[105.4240112,24.939209],[105.384903,24.9459476],[105.3161316,24.9291782],[105.2734985,24.9340363],[105.254631,24.9722214],[105.2372208,24.9739761],[105.2062988,25.0004101],[105.1630707,24.9724617],[105.1366196,24.9672794],[105.072113,24.9194756],[105.0649414,24.8992672],[105.0368729,24.8775558],[105.0308838,24.7973099],[104.873642,24.7458382],[104.8512192,24.6892986],[104.8239822,24.6778145],[104.7611237,24.6636219],[104.7405396,24.6311436],[104.7242432,24.6261959],[104.700737,24.6365414],[104.6879425,24.6593494],[104.6378098,24.6653271],[104.5826569,24.7168465],[104.5338669,24.7344913],[104.527153,24.7502384],[104.5392532,24.7718964],[104.5409088,24.8257694],[104.587677,24.8807545],[104.6230164,24.8994122],[104.6833878,24.9886341],[104.7008286,25.0105553],[104.689949,25.0391102],[104.6741333,25.0554771],[104.6330109,25.0532818],[104.6233673,25.0584679],[104.62397,25.0729122],[104.6625977,25.0730247],[104.6825867,25.0933647],[104.7178497,25.1546249],[104.7388306,25.179781],[104.7282028,25.2071972],[104.7399673,25.2178345],[104.7521133,25.217247],[104.7945175,25.168766],[104.8114395,25.1695843],[104.8087234,25.21838],[104.8180237,25.2528286],[104.8052521,25.26717],[104.7820129,25.2649269],[104.7664337,25.281992],[104.7377167,25.2689266],[104.7020264,25.2970505],[104.6501617,25.2988949],[104.6411972,25.3586369],[104.6299362,25.3704548],[104.5956573,25.3800011],[104.5723724,25.4033928],[104.5409317,25.4076805],[104.5549698,25.5338707],[104.5044098,25.5228424],[104.4884186,25.5034332],[104.4520264,25.4952755],[104.435997,25.4802151],[104.4193268,25.496088],[104.4336472,25.5264893],[104.4240875,25.5836906],[104.3841629,25.5926685],[104.365242,25.5849037],[104.3531265,25.600359],[104.3248901,25.6069279],[104.3178101,25.6249561],[104.3079834,25.6587696],[104.3196564,25.7542458],[104.3325729,25.7569084],[104.360527,25.73452],[104.377182,25.7431793],[104.3834763,25.7872524],[104.4065933,25.8085804],[104.410881,25.8510265],[104.4349899,25.8751125],[104.4157791,25.9072323],[104.437912,25.9477978],[104.4660416,26.0200462],[104.4528809,26.0772114],[104.4931107,26.0771542],[104.5129929,26.0972862],[104.5200729,26.1243992],[104.5155334,26.1642323],[104.5472565,26.2199974],[104.5447693,26.2603092],[104.5859299,26.2971306],[104.5862198,26.3173008],[104.6455002,26.3327274],[104.6777191,26.376318],[104.6647415,26.3972912],[104.6599503,26.4403343],[104.6369171,26.4444866],[104.6301117,26.4847603],[104.6041794,26.52005],[104.5695419,26.5321083],[104.5654831,26.5526962],[104.5773621,26.5642643],[104.5634995,26.5925503],[104.4794464,26.585331],[104.4626617,26.5991421],[104.4583664,26.6577644],[104.4164734,26.7146282],[104.3971176,26.7061787],[104.3795395,26.6594753],[104.3436432,26.6265526],[104.2997437,26.6185093],[104.2430267,26.6316204],[104.2205963,26.6258621],[104.1532364,26.649353],[104.1253967,26.6458054],[104.1150589,26.6355953],[104.0674515,26.5710621],[104.0664062,26.5385056],[104.0076828,26.519186],[103.9571762,26.528368],[103.911293,26.5213261],[103.8105927,26.5350323],[103.7950134,26.5636806],[103.7619476,26.5817604],[103.7646484,26.6024265],[103.744072,26.6367264],[103.756897,26.6628132],[103.7649765,26.739933],[103.7297134,26.736887],[103.7000275,26.8182507],[103.7210922,26.857069],[103.7745514,26.8777981],[103.7607574,26.9174671],[103.7752228,26.9545746],[103.7510986,26.9688835],[103.7267227,27.0251179],[103.7025681,27.0540829],[103.6730499,27.0534058],[103.6471329,27.0257378],[103.6143494,27.0084972],[103.6221466,27.0299301],[103.6024628,27.0527649],[103.6040573,27.0759315],[103.6201172,27.0821419],[103.6426773,27.0703506],[103.6602631,27.0779552],[103.6535263,27.09412],[103.6227798,27.1037235],[103.6271133,27.1193714],[103.7027664,27.1400127],[103.7043762,27.163866],[103.7234726,27.1735458],[103.7471313,27.2151413],[103.8090363,27.2618675],[103.82901,27.2671928],[103.8681488,27.3096714],[103.9050064,27.3970108],[103.9271774,27.4419842],[103.9366684,27.4444027],[103.9724808,27.4281578],[103.9986496,27.4346886],[104.0129166,27.380352],[104.0745163,27.3421917],[104.1192932,27.3436623],[104.1352234,27.3285084],[104.14077,27.3010845],[104.1789932,27.2733631],[104.2531509,27.305151],[104.2429504,27.3352737],[104.2703323,27.3649082],[104.2999191,27.3666115],[104.3009872,27.4012146],[104.3259735,27.4204998],[104.3436737,27.4653606],[104.3888016,27.4619427],[104.4312134,27.4335556],[104.5108185,27.4052048],[104.5061417,27.3866043],[104.5329514,27.3389816],[104.5734329,27.332943],[104.6091614,27.3128777],[104.648613,27.329031],[104.6710281,27.3267021],[104.7346573,27.3448677],[104.7591476,27.3418541],[104.7446365,27.3245602],[104.7719803,27.3181305],[104.8138504,27.3546448],[104.8510284,27.3418636],[104.848671,27.3171043],[104.8638,27.2936192],[104.9500198,27.3540001],[105.0723267,27.4202671],[105.1671829,27.408411],[105.1780701,27.3954086],[105.1763763,27.3770733],[105.1897736,27.3764534],[105.2327118,27.4316349],[105.2385635,27.4937382],[105.2580032,27.5199375],[105.2475433,27.54669],[105.226387,27.5495701],[105.2495117,27.564106],[105.2622604,27.5911884],[105.2951889,27.6087379],[105.3036118,27.6259518],[105.2988968,27.7143326],[105.3104172,27.7116356],[105.3549118,27.7498283],[105.3897629,27.7559109],[105.4002914,27.7676277],[105.4862671,27.7768326],[105.5372391,27.7524681],[105.5522995,27.7247944],[105.5951691,27.7207718],[105.6306686,27.6615257],[105.6659775,27.6860962],[105.708313,27.6815796],[105.7297134,27.7086315],[105.7712631,27.7178383],[105.8456192,27.7117062],[105.8758316,27.7414894],[105.9096603,27.7504253],[105.9300537,27.7359962],[105.9884262,27.7540703],[106.0070267,27.7492504],[106.0403519,27.7554073],[106.0718994,27.7803402],[106.0912781,27.784668],[106.1196976,27.7844009],[106.1909332,27.7572594],[106.2436676,27.7740974],[106.297287,27.8147297],[106.3335037,27.824934],[106.3149567,27.8407879],[106.3349304,27.8595104],[106.3326797,27.8792114],[106.32267,27.8975582],[106.3009872,27.9104404],[106.3200912,27.9683228],[106.295433,28.0009098],[106.2544327,28.0181675],[106.2627487,28.0744495],[106.2036209,28.1345692],[106.1430588,28.1674919],[106.0804214,28.1617355],[106.0376129,28.1437206],[106.0268707,28.1305504],[106.0230865,28.1204205],[105.9965668,28.1302967],[105.9699631,28.125248],[105.9490204,28.1438847],[105.8800735,28.1276455],[105.8606567,28.1683178],[105.883522,28.2481766],[105.8652573,28.2581024],[105.8480988,28.2616119],[105.8150711,28.3090324],[105.778923,28.3355255],[105.7450485,28.3074017],[105.7366409,28.2770157],[105.7234802,28.2718277],[105.6643677,28.3069954],[105.6369781,28.3170185],[105.6487503,28.346302],[105.6465683,28.3896599],[105.632843,28.4051151],[105.6340637,28.4283123],[105.6180267,28.440527],[105.6167297,28.458416],[105.6237335,28.5126705],[105.6628876,28.5376701],[105.6745071,28.5793476],[105.6873322,28.5930309],[105.7359467,28.6146679],[105.7627563,28.5949745],[105.7855377,28.6037006],[105.8627167,28.5902233],[105.890152,28.6021881],[105.8980637,28.6160336],[105.8871078,28.6604652],[105.9240265,28.6869736],[105.9690933,28.7550926],[106.0052338,28.7384129],[106.0296326,28.6977539],[106.07724,28.677475],[106.1078873,28.6320305],[106.1596069,28.6395302],[106.1838074,28.5850697],[106.2226562,28.5738602],[106.2499237,28.5494785],[106.2851028,28.5402908],[106.3177032,28.4945812],[106.3609467,28.4806042],[106.3793335,28.4910355],[106.3735809,28.5304852],[106.3992615,28.5760727],[106.4762497,28.5362949],[106.4959793,28.5409775],[106.4647369,28.586277],[106.4706268,28.6009979],[106.5009766,28.6158314],[106.5183334,28.6753597],[106.5050278,28.7228184],[106.4621277,28.7510796],[106.4497528,28.7709904],[106.4410934,28.8184662],[106.4469833,28.8359394],[106.4602585,28.8392181],[106.4860382,28.8023834],[106.5085068,28.7953701],[106.5527573,28.7583752],[106.5615387,28.7255859],[106.5907364,28.719965],[106.5683899,28.711153],[106.576828,28.6914463],[106.6094131,28.6849155],[106.6202011,28.6620007],[106.6477737,28.6694431],[106.6532593,28.6628056],[106.6520004,28.6543083],[106.6231689,28.6413517],[106.6282578,28.6103821],[106.6056824,28.5988216],[106.6103592,28.5478821],[106.5696869,28.5185738],[106.5669785,28.4910183],[106.5875015,28.4920158],[106.5905075,28.5136051],[106.640213,28.5020828],[106.6582336,28.4835529],[106.6831284,28.4955692],[106.6946869,28.4630127],[106.710228,28.453701],[106.7359924,28.4679527],[106.7442474,28.4840431],[106.7251587,28.5147476],[106.7235031,28.5402203],[106.7403488,28.5556469],[106.7738571,28.565834],[106.7599487,28.6016083],[106.7697601,28.6238976],[106.7773132,28.6250629],[106.7969284,28.5920563],[106.818779,28.5925655],[106.8291016,28.6226559],[106.8592606,28.6316662],[106.8591919,28.6601276],[106.8784027,28.6824284],[106.8729019,28.6961918],[106.8455429,28.7025681],[106.8444595,28.717947],[106.8167572,28.7465839],[106.8315582,28.7684212],[106.8732224,28.781353],[106.8942719,28.8126068],[106.9681168,28.7686272],[106.9777527,28.7766685],[106.9839096,28.8464565],[107.007637,28.857954],[107.0237885,28.8813782],[107.0462265,28.8758793],[107.0660629,28.8696861],[107.1010132,28.8931046],[107.12397,28.891037],[107.1625671,28.8653107],[107.1787262,28.8434963],[107.2087173,28.8324547],[107.2203979,28.7814827],[107.2467117,28.7729607],[107.2597733,28.7954407],[107.3278732,28.820816],[107.3409729,28.8497181],[107.3667831,28.8494358],[107.3862991,28.8592148],[107.3927231,28.8911572],[107.4362183,28.9470634],[107.4007874,28.9749279],[107.3867569,28.9997501],[107.3645782,29.0103588],[107.3879166,29.0403805],[107.367897,29.0831242],[107.3700333,29.0984993],[107.4124222,29.1107998],[107.4028778,29.1546669],[107.4087296,29.1870232],[107.4501266,29.2041359],[107.4835205,29.1739655],[107.5619583,29.2191639],[107.5881577,29.1681042],[107.6444473,29.1749973],[107.6670609,29.1468906],[107.6884766,29.142664],[107.7131729,29.1581593],[107.7279663,29.1828804],[107.7526093,29.189188],[107.8001633,29.139122],[107.7854996,29.0602322],[107.8088531,29.0353127],[107.8264389,28.9732323],[107.8430786,28.9623489],[107.8584976,28.9647846],[107.8830719,29.0022888],[107.9141312,28.9993401],[107.9281769,29.0249634],[107.9468231,29.0354023],[107.9979935,29.030468],[108.0635071,29.0815639],[108.0781403,29.0859299],[108.1473236,29.0521793],[108.1743317,29.0703144],[108.1923828,29.0704746],[108.2343674,29.03162],[108.2491837,29.0411491],[108.2634964,29.0742931],[108.3049164,29.0928993],[108.304512,29.0816517],[108.3024979,29.0695591],[108.2988663,29.0534382],[108.2960129,29.0371056],[108.2992706,29.0280457],[108.3037033,29.0099068],[108.3075867,29.0000496],[108.3089218,28.9795475],[108.3112335,28.9618797],[108.3171234,28.9513817],[108.3232727,28.9472847],[108.3319702,28.9436989],[108.3391266,28.9375534],[108.3455429,28.9265442],[108.3447723,28.9180946],[108.3452835,28.9083633],[108.3463135,28.898634],[108.3493805,28.8909512],[108.3529663,28.8868542],[108.3539886,28.8807087],[108.3542404,28.8748207],[108.3493805,28.8632984],[108.34272,28.8525429],[108.3400269,28.8459797],[108.3401566,28.8402519],[108.34272,28.8335953],[108.346817,28.827961],[108.3488693,28.8228416],[108.3483582,28.8172073],[108.3498917,28.8120861],[108.3527069,28.8077335],[108.3611603,28.803381],[108.3708878,28.8003082],[108.3785706,28.7962112],[108.380867,28.7923698],[108.3826675,28.7849445],[108.3821564,28.7757263],[108.3813934,28.7693253],[108.3775482,28.7618999],[108.3724213,28.7572899],[108.3657684,28.7521687],[108.3611603,28.7490959],[108.359108,28.7429504],[108.3570633,28.737318],[108.3504028,28.7321968],[108.3452835,28.7286129],[108.3411865,28.7245159],[108.3376007,28.7209301],[108.3355484,28.7168331],[108.3315964,28.7113476],[108.3280182,28.7049828],[108.3274231,28.6984177],[108.3268204,28.6898651],[108.3262329,28.686285],[108.3264236,28.6821079],[108.3270187,28.6801186],[108.3278122,28.6769352],[108.3288116,28.6747475],[108.3311996,28.6741505],[108.3365707,28.6693764],[108.34272,28.666647],[108.3524628,28.6635742],[108.3606491,28.6605015],[108.3708878,28.6574287],[108.3790817,28.654356],[108.3877869,28.6512833],[108.4000778,28.6466732],[108.4103165,28.6430893],[108.4231262,28.6379681],[108.4310608,28.6336155],[108.4425812,28.6302872],[108.4523163,28.6302872],[108.4584579,28.6297741],[108.4635773,28.6261902],[108.4697266,28.6246529],[108.4789429,28.6236286],[108.4866333,28.6231174],[108.4973831,28.6236286],[108.5017319,28.62286]]]]},
  1967 +"properties":{
  1968 +"gid":328,
  1969 +"name":"贵州省"}
  1970 +},
  1971 +{"type":"Feature",
  1972 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.0367966,29.1690044],[122.0341568,29.1607742],[122.0290527,29.1575451],[122.0220108,29.162611],[122.0177917,29.1566753],[122.0091629,29.1576252],[122.0118332,29.1658592],[122.0100327,29.1741104],[122.0194931,29.1802521],[122.0360336,29.1868248],[122.028717,29.1912079],[122.0332031,29.1953087],[122.0272064,29.2033482],[122.0335388,29.2108803],[122.0406036,29.2087879],[122.0507965,29.2055397],[122.0436935,29.1993866],[122.0520401,29.194313],[122.0412674,29.1881771],[122.0451508,29.1808338],[122.0524673,29.179884],[122.0697632,29.1807251],[122.0613327,29.17206],[122.0492401,29.1640987],[122.0406036,29.1636791],[122.0367966,29.1690044]]]]},
  1973 +"properties":{
  1974 +"gid":329,
  1975 +"name":"浙江省"}
  1976 +},
  1977 +{"type":"Feature",
  1978 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.9565887,29.2093258],[121.9564438,29.20854],[121.958252,29.2072449],[121.9598389,29.205986],[121.9617615,29.2040691],[121.9630127,29.2022572],[121.96064,29.2008038],[121.9576263,29.2018776],[121.955368,29.2032413],[121.9538269,29.2059097],[121.9529572,29.2084713],[121.9541702,29.2099018],[121.9565887,29.2093258]]]]},
  1979 +"properties":{
  1980 +"gid":330,
  1981 +"name":"浙江省"}
  1982 +},
  1983 +{"type":"Feature",
  1984 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.9660492,29.1726742],[121.9566727,29.1798096],[121.9480667,29.1899147],[121.9546432,29.1937847],[121.9706192,29.1962452],[121.9679565,29.1889267],[121.9763031,29.1795063],[121.9770203,29.1680546],[121.9660492,29.1726742]]]]},
  1985 +"properties":{
  1986 +"gid":331,
  1987 +"name":"浙江省"}
  1988 +},
  1989 +{"type":"Feature",
  1990 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.7987671,29.168148],[121.7896118,29.1709156],[121.7844086,29.1796303],[121.7831192,29.1869602],[121.7904663,29.1954155],[121.8012085,29.1951637],[121.8093109,29.189188],[121.8179092,29.178175],[121.8302002,29.1742496],[121.8354034,29.1657639],[121.8330765,29.159399],[121.8246765,29.1555157],[121.8147812,29.1556511],[121.8055496,29.1624069],[121.7987671,29.168148]]]]},
  1991 +"properties":{
  1992 +"gid":332,
  1993 +"name":"浙江省"}
  1994 +},
  1995 +{"type":"Feature",
  1996 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.9117584,29.1041508],[121.9052963,29.1120949],[121.8974533,29.1097012],[121.8891068,29.1150036],[121.8886337,29.1248512],[121.8815765,29.1280785],[121.8716583,29.1338329],[121.8751068,29.1448135],[121.8887329,29.1475201],[121.8898087,29.1562195],[121.898201,29.1612301],[121.9086914,29.1657753],[121.9268036,29.175106],[121.9318237,29.1844769],[121.9451675,29.1848869],[121.9545288,29.1718025],[121.9688873,29.1648808],[121.9821701,29.1513195],[121.9732666,29.1495228],[121.9698334,29.1422081],[121.978447,29.1405716],[121.9802017,29.1245365],[121.9809113,29.1101074],[121.9623871,29.0994434],[121.9614792,29.0950661],[121.9771423,29.0883694],[121.9656067,29.0849762],[121.9626923,29.07514],[121.9534836,29.06464],[121.96315,29.062088],[121.9545135,29.0584564],[121.9458618,29.0557384],[121.9421768,29.0570736],[121.9299164,29.0580826],[121.9329529,29.0737782],[121.9170532,29.0754414],[121.9030609,29.0739727],[121.8962708,29.0765133],[121.9054565,29.0851841],[121.9185715,29.0926971],[121.9057617,29.0943413],[121.9086609,29.0991421],[121.9117584,29.1041508]]]]},
  1997 +"properties":{
  1998 +"gid":333,
  1999 +"name":"浙江省"}
  2000 +},
  2001 +{"type":"Feature",
  2002 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.5678787,29.1481209],[121.5778198,29.1504021],[121.5828094,29.1607037],[121.5909195,29.1593227],[121.5930023,29.1526794],[121.5820007,29.1430721],[121.5686493,29.1373577],[121.5678787,29.1481209]]]]},
  2003 +"properties":{
  2004 +"gid":334,
  2005 +"name":"浙江省"}
  2006 +},
  2007 +{"type":"Feature",
  2008 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.7947617,29.1436558],[121.8023605,29.1475296],[121.8078766,29.1523247],[121.8164673,29.1419983],[121.832962,29.1421871],[121.8476181,29.1426029],[121.8659363,29.1441536],[121.8622131,29.1269913],[121.8823166,29.1191463],[121.8731308,29.1090984],[121.8684387,29.1146069],[121.8657837,29.102478],[121.8495178,29.0919933],[121.8429871,29.0936127],[121.8380508,29.1025562],[121.8340988,29.0952415],[121.8218613,29.1115322],[121.8127136,29.1147594],[121.8004379,29.1207428],[121.7873535,29.1157379],[121.7813263,29.1166668],[121.7795334,29.1276627],[121.7845535,29.1425343],[121.7798691,29.1519318],[121.7845917,29.155817],[121.7947617,29.1436558]]]]},
  2009 +"properties":{
  2010 +"gid":335,
  2011 +"name":"浙江省"}
  2012 +},
  2013 +{"type":"Feature",
  2014 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.4639816,29.1270771],[121.4841232,29.123415],[121.5014038,29.125246],[121.5144806,29.1252441],[121.5330505,29.1234074],[121.533577,29.1174526],[121.5228424,29.1158524],[121.5087204,29.1144829],[121.4948502,29.1124249],[121.4809875,29.1128807],[121.4668579,29.1163139],[121.4639816,29.1270771]]]]},
  2015 +"properties":{
  2016 +"gid":336,
  2017 +"name":"浙江省"}
  2018 +},
  2019 +{"type":"Feature",
  2020 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.6998596,29.1001034],[121.6925507,29.0962009],[121.6906128,29.0960178],[121.6886215,29.0956039],[121.6858368,29.0953121],[121.6840515,29.0972595],[121.6824417,29.1001358],[121.6801376,29.1035957],[121.6790771,29.1092567],[121.6786194,29.1124344],[121.6830063,29.1153488],[121.6889267,29.1177902],[121.6929703,29.1202831],[121.6942596,29.1212826],[121.6968231,29.1218472],[121.7003937,29.1220188],[121.7019119,29.1186771],[121.6996765,29.1156712],[121.697937,29.1137848],[121.6966934,29.1115856],[121.6952667,29.1098919],[121.6950378,29.1087322],[121.6958084,29.1057434],[121.696228,29.1037674],[121.6989136,29.1021614],[121.6998596,29.1001034]]]]},
  2021 +"properties":{
  2022 +"gid":337,
  2023 +"name":"浙江省"}
  2024 +},
  2025 +{"type":"Feature",
  2026 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.8136902,29.0936909],[121.8215637,29.1009979],[121.8267822,29.096405],[121.8366928,29.0869923],[121.8272629,29.0840397],[121.8366394,29.0750847],[121.826683,29.0673237],[121.8347473,29.061121],[121.8187866,29.0554924],[121.8114929,29.0618687],[121.8128815,29.0673084],[121.7992172,29.0683098],[121.8078766,29.0783634],[121.7948532,29.0740108],[121.7856674,29.081852],[121.7919464,29.0859585],[121.7995529,29.0863991],[121.7993088,29.0937271],[121.8147736,29.1035347],[121.8136902,29.0936909]]]]},
  2027 +"properties":{
  2028 +"gid":338,
  2029 +"name":"浙江省"}
  2030 +},
  2031 +{"type":"Feature",
  2032 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.9273834,29.0414639],[121.9270325,29.0443878],[121.9288483,29.0449257],[121.9305878,29.0450649],[121.9325027,29.0453148],[121.9346466,29.0459366],[121.9364166,29.0462093],[121.9384766,29.0464344],[121.9404984,29.0463963],[121.9429016,29.0452023],[121.942009,29.0438385],[121.9409409,29.0431843],[121.9398193,29.0422649],[121.9375687,29.041111],[121.9360886,29.039156],[121.9337692,29.0369167],[121.9315186,29.0357647],[121.9289093,29.0367146],[121.927269,29.0386105],[121.9273834,29.0414639]]]]},
  2033 +"properties":{
  2034 +"gid":339,
  2035 +"name":"浙江省"}
  2036 +},
  2037 +{"type":"Feature",
  2038 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.6652374,28.8865261],[121.658989,28.895237],[121.6765137,28.9078064],[121.6848373,28.9025269],[121.7026062,28.9061623],[121.6989365,28.8999844],[121.6973495,28.8901424],[121.6874237,28.8853493],[121.6749115,28.8942986],[121.6730576,28.8826218],[121.6652374,28.8865261]]]]},
  2039 +"properties":{
  2040 +"gid":340,
  2041 +"name":"浙江省"}
  2042 +},
  2043 +{"type":"Feature",
  2044 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.8395081,28.7757607],[121.8381729,28.7794704],[121.8397369,28.7812977],[121.8423996,28.790266],[121.8408432,28.7973232],[121.8476181,28.7982197],[121.8442764,28.809906],[121.8594208,28.8151302],[121.8654099,28.8112202],[121.8599091,28.8052845],[121.8682404,28.8027401],[121.8588409,28.800478],[121.8551712,28.793848],[121.8606262,28.7901688],[121.8506927,28.7803535],[121.8395081,28.7757607]]]]},
  2045 +"properties":{
  2046 +"gid":341,
  2047 +"name":"浙江省"}
  2048 +},
  2049 +{"type":"Feature",
  2050 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.8451004,28.7497005],[121.846138,28.7512856],[121.8524094,28.7547035],[121.8568192,28.7482796],[121.8638611,28.7500916],[121.8761292,28.7546349],[121.8876419,28.7646732],[121.8970337,28.7655602],[121.9048462,28.7639313],[121.8894424,28.7589436],[121.8956909,28.7559471],[121.880043,28.7525616],[121.8708878,28.747551],[121.8583527,28.7384281],[121.8657074,28.7287903],[121.8582993,28.7254314],[121.8526993,28.7299862],[121.8390274,28.7297821],[121.8416595,28.7375584],[121.8459015,28.7425098],[121.8451004,28.7497005]]]]},
  2051 +"properties":{
  2052 +"gid":342,
  2053 +"name":"浙江省"}
  2054 +},
  2055 +{"type":"Feature",
  2056 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.6560287,28.7173328],[121.6537628,28.7149792],[121.6511993,28.7119751],[121.6428528,28.7095661],[121.6370468,28.7109833],[121.6399536,28.7173862],[121.6464233,28.7199669],[121.6536713,28.7225513],[121.6614304,28.7267456],[121.6676712,28.7265663],[121.667717,28.7224369],[121.663353,28.7178135],[121.6560287,28.7173328]]]]},
  2057 +"properties":{
  2058 +"gid":343,
  2059 +"name":"浙江省"}
  2060 +},
  2061 +{"type":"Feature",
  2062 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.9155197,28.7210693],[121.9389725,28.7234669],[121.9353714,28.7188549],[121.9346313,28.7138042],[121.9304886,28.7124023],[121.9260483,28.7144375],[121.9227066,28.7100582],[121.9209137,28.706377],[121.9170532,28.7031403],[121.9167404,28.7081852],[121.9195633,28.7132511],[121.915123,28.7145977],[121.9127502,28.7180252],[121.9155197,28.7210693]]]]},
  2063 +"properties":{
  2064 +"gid":344,
  2065 +"name":"浙江省"}
  2066 +},
  2067 +{"type":"Feature",
  2068 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.7573471,28.6976967],[121.7568665,28.7091446],[121.764679,28.7070656],[121.7737885,28.7036114],[121.7701263,28.7004147],[121.7755966,28.6978836],[121.7807922,28.6944389],[121.8006363,28.7069836],[121.7940979,28.6994438],[121.7906799,28.6905231],[121.7878799,28.6806202],[121.7807312,28.6811008],[121.76828,28.6921768],[121.753418,28.6880856],[121.7573471,28.6976967]]]]},
  2069 +"properties":{
  2070 +"gid":345,
  2071 +"name":"浙江省"}
  2072 +},
  2073 +{"type":"Feature",
  2074 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.9388123,28.7023792],[121.9374237,28.6991615],[121.9345474,28.6996613],[121.9339218,28.7021847],[121.9362869,28.7036972],[121.9388123,28.7023792]]]]},
  2075 +"properties":{
  2076 +"gid":346,
  2077 +"name":"浙江省"}
  2078 +},
  2079 +{"type":"Feature",
  2080 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.8196564,28.6118603],[121.8033905,28.6023407],[121.8017807,28.6073742],[121.8051071,28.6115284],[121.808197,28.6147633],[121.8165131,28.6157398],[121.8201675,28.6132412],[121.8196564,28.6118603]]]]},
  2081 +"properties":{
  2082 +"gid":347,
  2083 +"name":"浙江省"}
  2084 +},
  2085 +{"type":"Feature",
  2086 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.6015625,28.5085793],[121.5997467,28.5177383],[121.5935135,28.5200329],[121.5976868,28.5301037],[121.5992737,28.542923],[121.6083679,28.5419998],[121.614357,28.545887],[121.6151276,28.5351257],[121.622139,28.531683],[121.6182327,28.5248184],[121.6291428,28.519083],[121.6241913,28.5124493],[121.6182022,28.5062733],[121.6088333,28.4941483],[121.5994568,28.4962177],[121.6072769,28.5023918],[121.6015625,28.5085793]]]]},
  2087 +"properties":{
  2088 +"gid":348,
  2089 +"name":"浙江省"}
  2090 +},
  2091 +{"type":"Feature",
  2092 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.8883209,28.4903755],[121.8797531,28.4931488],[121.8847275,28.5004597],[121.8694,28.5046272],[121.8800735,28.5084858],[121.8912811,28.5139465],[121.8886566,28.5089188],[121.8938217,28.5002022],[121.9107285,28.5001469],[121.9059982,28.4889431],[121.8997498,28.4873619],[121.9020462,28.4781971],[121.8945236,28.4805088],[121.8890305,28.4736595],[121.8809586,28.4695625],[121.8832397,28.4797707],[121.875267,28.4775944],[121.8716507,28.4824123],[121.8773804,28.4851418],[121.8883209,28.4903755]]]]},
  2093 +"properties":{
  2094 +"gid":349,
  2095 +"name":"浙江省"}
  2096 +},
  2097 +{"type":"Feature",
  2098 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.6220779,28.4904728],[121.6311874,28.4943542],[121.6374207,28.4904537],[121.6376724,28.4840431],[121.6311035,28.4801693],[121.6220627,28.4771919],[121.6140137,28.4806366],[121.6101227,28.4902554],[121.6220779,28.4904728]]]]},
  2099 +"properties":{
  2100 +"gid":350,
  2101 +"name":"浙江省"}
  2102 +},
  2103 +{"type":"Feature",
  2104 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.6336975,28.4772091],[121.6353073,28.4783211],[121.6470337,28.4819717],[121.6451874,28.473732],[121.6571503,28.4734879],[121.6581726,28.4645557],[121.6539917,28.454031],[121.6493225,28.4604473],[121.651413,28.4654827],[121.6470032,28.4712124],[121.6412735,28.4685555],[121.6376419,28.4668713],[121.6293335,28.4742069],[121.6336975,28.4772091]]]]},
  2105 +"properties":{
  2106 +"gid":351,
  2107 +"name":"浙江省"}
  2108 +},
  2109 +{"type":"Feature",
  2110 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.8649673,28.4366417],[121.869133,28.4359436],[121.8751221,28.4409618],[121.8751373,28.446228],[121.8860931,28.454895],[121.8931122,28.4537277],[121.8991013,28.4573727],[121.9146805,28.4529705],[121.9104919,28.4461174],[121.9049072,28.4397545],[121.8857422,28.4329166],[121.8816071,28.4393387],[121.8745804,28.4343224],[121.8651962,28.4300003],[121.8649673,28.4366417]]]]},
  2111 +"properties":{
  2112 +"gid":352,
  2113 +"name":"浙江省"}
  2114 +},
  2115 +{"type":"Feature",
  2116 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.6672134,28.4320335],[121.6635666,28.430666],[121.6573334,28.4309025],[121.6484909,28.4295406],[121.6378326,28.4293251],[121.6328964,28.4322968],[121.6329117,28.4357395],[121.6458969,28.4368706],[121.6578598,28.4370823],[121.6672134,28.4320335]]]]},
  2117 +"properties":{
  2118 +"gid":353,
  2119 +"name":"浙江省"}
  2120 +},
  2121 +{"type":"Feature",
  2122 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.6346588,28.3924675],[121.6424637,28.3990974],[121.6526031,28.4068699],[121.6643066,28.4160118],[121.6622162,28.4061699],[121.6590881,28.3988476],[121.6453094,28.3947449],[121.6406174,28.3860493],[121.6468506,28.3835239],[121.6507416,28.3812313],[121.6478729,28.3743668],[121.6289291,28.3643894],[121.6221466,28.3663826],[121.6260529,28.3739338],[121.6330795,28.3812523],[121.6346588,28.3924675]]]]},
  2123 +"properties":{
  2124 +"gid":354,
  2125 +"name":"浙江省"}
  2126 +},
  2127 +{"type":"Feature",
  2128 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.7249222,28.3846455],[121.7256927,28.3815899],[121.7230606,28.3804951],[121.7209396,28.3822575],[121.722023,28.3846493],[121.7249222,28.3846455]]]]},
  2129 +"properties":{
  2130 +"gid":355,
  2131 +"name":"浙江省"}
  2132 +},
  2133 +{"type":"Feature",
  2134 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.1859131,28.3537464],[121.194252,28.3416328],[121.2010269,28.332489],[121.1942978,28.3251495],[121.1862564,28.3235264],[121.1709137,28.3347092],[121.167511,28.3420277],[121.1739807,28.3489113],[121.1859131,28.3537464]]]]},
  2135 +"properties":{
  2136 +"gid":356,
  2137 +"name":"浙江省"}
  2138 +},
  2139 +{"type":"Feature",
  2140 +"geometry":{"type":"MultiPolygon","coordinates":[[[[118.4242706,28.2922821],[118.4357605,28.2687016],[118.4853973,28.2413082],[118.495163,28.2821217],[118.5187912,28.2729969],[118.572998,28.2921028],[118.6034088,28.2573032],[118.6695633,28.2802753],[118.6936874,28.3100815],[118.7193909,28.3082561],[118.7315903,28.2745647],[118.7679062,28.2511864],[118.8026733,28.2410927],[118.8008423,28.2241325],[118.7611465,28.1778488],[118.7917404,28.1741734],[118.8000107,28.1468983],[118.7924805,28.1232948],[118.7486877,28.1003876],[118.7124329,28.0627995],[118.7256317,28.0380516],[118.7228928,27.9787064],[118.7438965,27.9551296],[118.7917099,27.9372902],[118.8030472,27.9245338],[118.8261566,27.8820057],[118.8261566,27.8583527],[118.8283768,27.8449192],[118.8628616,27.7475891],[118.8913879,27.7173939],[118.8707275,27.7099743],[118.8673782,27.6984348],[118.8965302,27.6505165],[118.9042816,27.5763798],[118.8943405,27.5433636],[118.8547134,27.5256805],[118.8767395,27.5192471],[118.8983383,27.4710255],[118.9113922,27.4616127],[118.9514465,27.4624863],[118.9532471,27.4816895],[118.9812164,27.47929],[119.0063629,27.5000095],[119.052887,27.4740944],[119.0858231,27.472559],[119.119072,27.4870777],[119.1265869,27.4761047],[119.1194077,27.4427223],[119.1265411,27.4375114],[119.2202835,27.423687],[119.2611618,27.432703],[119.2801437,27.4608383],[119.3354034,27.4869633],[119.3341904,27.5065594],[119.3717728,27.5380173],[119.4116211,27.5426846],[119.4334564,27.5118237],[119.4615707,27.5295429],[119.4915237,27.623436],[119.4892273,27.660326],[119.5333328,27.6479511],[119.5378265,27.6709023],[119.5511398,27.6797962],[119.6332169,27.6739616],[119.6420135,27.636282],[119.6223831,27.6228428],[119.6250534,27.5965919],[119.6626434,27.5711651],[119.6587906,27.5368328],[119.6873627,27.5337048],[119.6999512,27.5108318],[119.7021866,27.4597893],[119.6808472,27.4342365],[119.7045517,27.4048367],[119.728653,27.3935623],[119.740593,27.3746071],[119.7357712,27.363039],[119.7781906,27.3245697],[119.7650833,27.3189907],[119.7656937,27.3077202],[119.7797623,27.3045444],[119.8309097,27.3002453],[119.8333435,27.3167057],[119.8427963,27.3210125],[119.8715286,27.3036003],[119.9003601,27.3155746],[119.9367599,27.3165169],[119.9367371,27.3424702],[119.965477,27.3716583],[119.9984436,27.3821468],[120.0318985,27.3444004],[120.0578308,27.3546867],[120.1039124,27.396225],[120.1223068,27.4010334],[120.1345291,27.4222202],[120.2436371,27.4346867],[120.2566376,27.4310856],[120.2739334,27.3956718],[120.3175507,27.4099922],[120.3240738,27.3984318],[120.34655,27.3959599],[120.3523636,27.3469601],[120.422493,27.2624359],[120.4001007,27.2447186],[120.4106522,27.2265854],[120.4074783,27.2028656],[120.4354935,27.1706543],[120.4354401,27.1664581],[120.4271469,27.1716442],[120.4185333,27.1635361],[120.4119873,27.1714897],[120.4104614,27.1822376],[120.4029236,27.1896305],[120.3920593,27.2019863],[120.3857727,27.2113152],[120.3887634,27.2182198],[120.3973312,27.2258587],[120.3983536,27.2313786],[120.3910522,27.2381783],[120.3826065,27.2351112],[120.3788681,27.2417068],[120.372963,27.2450905],[120.3662033,27.2505188],[120.3590469,27.2474651],[120.3510971,27.2462349],[120.3414688,27.2362804],[120.3322067,27.236639],[120.3290405,27.2423344],[120.3195877,27.2381077],[120.3060532,27.2324619],[120.297287,27.2328243],[120.2964478,27.2383137],[120.2940292,27.247633],[120.2877731,27.2648849],[120.3006134,27.2712421],[120.3200073,27.2816429],[120.3293762,27.2934914],[120.3201828,27.2871437],[120.3058777,27.2803459],[120.3073196,27.2872353],[120.3141174,27.297617],[120.3149719,27.3102283],[120.3060226,27.3064651],[120.2876892,27.2934322],[120.2839966,27.2993488],[120.2884369,27.3126888],[120.2870636,27.3212223],[120.2817078,27.3155899],[120.273613,27.3063354],[120.2776031,27.2974453],[120.2715073,27.29142],[120.2618408,27.284668],[120.2529297,27.2955666],[120.2417984,27.3026104],[120.2450638,27.2886028],[120.2413177,27.2807713],[120.246933,27.2668591],[120.2413635,27.2608376],[120.238121,27.2536983],[120.2278519,27.2526646],[120.2266769,27.261816],[120.2232132,27.2711697],[120.2130585,27.278614],[120.2144928,27.2861919],[120.2067032,27.2937279],[120.1989517,27.2761593],[120.1865463,27.2796803],[120.1887817,27.2684784],[120.2008438,27.2539558],[120.1973495,27.2482395],[120.1909866,27.2414684],[120.1737671,27.2414951],[120.1847763,27.2278786],[120.1831894,27.2136536],[120.1884384,27.2084846],[120.1943893,27.2039337],[120.1996231,27.2154503],[120.2069321,27.224699],[120.2078171,27.2336464],[120.2124786,27.2459259],[120.2290115,27.2437439],[120.2392426,27.2470665],[120.2467575,27.2467442],[120.2543335,27.2534256],[120.2640762,27.2539921],[120.2727127,27.2440071],[120.2656326,27.2373314],[120.2792816,27.234457],[120.2955704,27.2277641],[120.2907715,27.2217541],[120.3018723,27.2184391],[120.3103333,27.2132072],[120.3151169,27.2157516],[120.3218536,27.2251205],[120.3307724,27.2288342],[120.3408508,27.2304764],[120.3486786,27.2354412],[120.3583984,27.2387524],[120.3685837,27.2274036],[120.3781509,27.2229214],[120.3753967,27.2169342],[120.377243,27.1956463],[120.3634567,27.1883984],[120.3525238,27.1802635],[120.3449173,27.1733341],[120.3587265,27.1771221],[120.3670273,27.1710224],[120.3705063,27.1797657],[120.3853836,27.1824417],[120.385788,27.1716766],[120.3935013,27.1708412],[120.4007568,27.1656456],[120.4081573,27.1508293],[120.4176483,27.152071],[120.4294968,27.1494408],[120.4360886,27.1559238],[120.442543,27.1543846],[120.4382782,27.1460934],[120.4296799,27.1354675],[120.4151764,27.1437969],[120.404747,27.1370449],[120.3952332,27.1383228],[120.3787766,27.1386108],[120.3981628,27.1298752],[120.422142,27.1227894],[120.416008,27.1206627],[120.4003372,27.1209621],[120.3795166,27.1214333],[120.3655319,27.1116619],[120.3755417,27.1122265],[120.3894119,27.1119137],[120.3746185,27.1046562],[120.3722076,27.0934029],[120.3847809,27.0939922],[120.3963013,27.0964031],[120.3943176,27.0908833],[120.3831329,27.0834351],[120.3715134,27.0876675],[120.3537216,27.0932083],[120.3439865,27.0917282],[120.3339462,27.0934544],[120.3236465,27.0954056],[120.3178864,27.1029053],[120.3041534,27.0940475],[120.2886734,27.0998344],[120.2729568,27.1026402],[120.2728424,27.1106586],[120.2591705,27.1150875],[120.254097,27.1290207],[120.2467422,27.1220493],[120.2538071,27.1122761],[120.2529678,27.0998936],[120.2453003,27.099123],[120.2487488,27.0899944],[120.2613068,27.0917397],[120.2763901,27.0960331],[120.2759705,27.0898418],[120.2732468,27.0829372],[120.2856064,27.0798664],[120.2798767,27.0678883],[120.2800598,27.0555172],[120.2876129,27.0482674],[120.2773514,27.0474663],[120.2705383,27.0572433],[120.2630386,27.0608253],[120.248909,27.0615826],[120.2387314,27.0557365],[120.2426529,27.0512009],[120.2534332,27.0506344],[120.2578964,27.043581],[120.2492218,27.0400467],[120.2420731,27.0379028],[120.2321472,27.0329609],[120.2365265,27.0302792],[120.2475662,27.0308628],[120.2636871,27.0335636],[120.2676468,27.0262756],[120.2688828,27.0125408],[120.2650986,27.0072289],[120.2683411,26.9960365],[120.2530518,26.9887619],[120.2502289,26.9842167],[120.2480392,26.9806843],[120.2344818,26.9784679],[120.2173462,26.9750614],[120.2106323,26.9779644],[120.2012634,26.9872494],[120.2006073,26.9787636],[120.1938934,26.9823513],[120.1803131,26.9812756],[120.1696167,26.9774494],[120.1804962,26.9693623],[120.1941605,26.9647102],[120.1903915,26.9591675],[120.1978683,26.9569626],[120.2119217,26.9603329],[120.2323074,26.9690475],[120.2331772,26.9619541],[120.2456665,26.9678249],[120.2440567,26.955204],[120.2361221,26.936552],[120.2445679,26.9377956],[120.2418289,26.9322624],[120.2350311,26.9237061],[120.2257233,26.9121437],[120.2219315,26.9253902],[120.2132874,26.9207077],[120.2019882,26.9217205],[120.1904984,26.9186077],[120.1775665,26.9257889],[120.1631699,26.9283657],[120.1496506,26.923851],[120.1436462,26.929966],[120.1276474,26.9210625],[120.127533,26.9281673],[120.1205978,26.9289989],[120.108963,26.9190006],[120.1121674,26.9101048],[120.1185226,26.8978081],[120.1128006,26.8867378],[120.1040115,26.8914413],[120.1034164,26.8802052],[120.0909119,26.8770714],[120.0777664,26.8812618],[120.0791321,26.8925076],[120.0624924,26.8913803],[120.0489273,26.8916111],[120.0513687,26.8816147],[120.066803,26.8783722],[120.0630722,26.8709927],[120.0578918,26.8743649],[120.0496674,26.8760948],[120.029953,26.8753834],[120.0265732,26.8625069],[120.021347,26.852356],[120.0318527,26.8373661],[120.0366898,26.823679],[120.0578003,26.8251057],[120.0733185,26.8236847],[120.0869675,26.8195019],[120.0887222,26.8057728],[120.0983963,26.7930603],[120.1190109,26.8017941],[120.1173935,26.7929726],[120.1356735,26.8010807],[120.1325073,26.790041],[120.1213074,26.7860088],[120.1193466,26.7800274],[120.1115875,26.7689323],[120.0935593,26.7593136],[120.1045074,26.7470722],[120.1088028,26.7345219],[120.1264038,26.73909],[120.1437607,26.7415943],[120.1314163,26.7290688],[120.1531372,26.7309361],[120.1578217,26.7261791],[120.1527634,26.7231388],[120.1392822,26.7167892],[120.123703,26.7152252],[120.1123123,26.7068348],[120.1035233,26.6961842],[120.096138,26.6940308],[120.1093521,26.683651],[120.1093521,26.6676083],[120.1222229,26.6627254],[120.1138763,26.656435],[120.1053238,26.6476212],[120.1174393,26.6494656],[120.13517,26.6523399],[120.1296463,26.6451702],[120.1261902,26.6377926],[120.1058273,26.6315842],[120.0944672,26.6218166],[120.0844574,26.6244431],[120.0774689,26.6293964],[120.0878372,26.6361732],[120.0866776,26.6453266],[120.0924835,26.6502113],[120.0799332,26.6514301],[120.0777283,26.6452141],[120.0706711,26.638937],[120.0552292,26.6286564],[120.0361862,26.6199341],[120.0171432,26.6125851],[120.0129013,26.6058826],[120,26.605484],[119.9968414,26.6007481],[119.9878464,26.5978432],[119.9807205,26.6002007],[119.9771271,26.5995426],[119.9651566,26.6051559],[119.9600525,26.6056595],[119.9441299,26.5995979],[119.9418411,26.6005363],[119.9412766,26.5952606],[119.9356003,26.5900307],[119.9370728,26.5840473],[119.9365387,26.5817566],[119.9311523,26.5801964],[119.9278336,26.5804539],[119.928833,26.5786076],[119.9334106,26.576046],[119.9346237,26.5686893],[119.9412231,26.5633526],[119.9389038,26.5617657],[119.9288864,26.5588665],[119.9319229,26.553791],[119.9316177,26.5498905],[119.9259872,26.5499382],[119.922142,26.5481339],[119.9157562,26.5495644],[119.9077911,26.5445805],[119.9016418,26.5432529],[119.8941498,26.5355091],[119.8948822,26.5320587],[119.8914871,26.5254307],[119.8914566,26.5208397],[119.8863068,26.517437],[119.8750229,26.513628],[119.8727264,26.5141048],[119.8717499,26.5182438],[119.8691864,26.5175762],[119.8655701,26.5141602],[119.863533,26.5139484],[119.8594666,26.5169659],[119.8517914,26.5167961],[119.8472137,26.518898],[119.8449326,26.5214405],[119.8390427,26.5191917],[119.8324203,26.5229168],[119.8329468,26.5242901],[119.8362885,26.5261002],[119.8352966,26.5304699],[119.8265762,26.5264034],[119.8258667,26.5323792],[119.8279495,26.536953],[119.8317871,26.5380707],[119.8338699,26.5412693],[119.8272171,26.5417805],[119.8269806,26.5429306],[119.8403702,26.5529251],[119.8393631,26.5545406],[119.8340073,26.556879],[119.8348694,26.5667419],[119.8376694,26.5653439],[119.8420181,26.5655384],[119.8504028,26.5588169],[119.8542175,26.5576382],[119.8565369,26.5594559],[119.8528671,26.5617409],[119.8478928,26.5652637],[119.8451233,26.569418],[119.8431396,26.5760899],[119.8441772,26.5783768],[119.85466,26.5776062],[119.8610764,26.5792542],[119.8589172,26.5796013],[119.8447266,26.5825062],[119.842453,26.5848179],[119.8445435,26.5889339],[119.8497009,26.594862],[119.8571701,26.5998535],[119.8621368,26.5995884],[119.8753662,26.6070271],[119.878273,26.6127701],[119.882637,26.6150303],[119.8892593,26.6124516],[119.8877716,26.6175137],[119.8921585,26.6209202],[119.8970337,26.6229477],[119.901123,26.6222248],[119.9042435,26.6200981],[119.9085236,26.6197433],[119.9105835,26.6207695],[119.9129028,26.6221275],[119.9220963,26.6220512],[119.9223175,26.6181469],[119.9273987,26.6146622],[119.9291534,26.6107445],[119.9401398,26.6097317],[119.9434662,26.6103935],[119.9468307,26.6135788],[119.9506836,26.6144638],[119.9517288,26.6174393],[119.9466629,26.6211548],[119.9477005,26.6234417],[119.9561462,26.6249771],[119.9582291,26.6274834],[119.957283,26.6341476],[119.9635086,26.643507],[119.9837494,26.6458569],[119.9827423,26.6472416],[119.9727936,26.6510029],[119.9726028,26.6572018],[119.9701004,26.6625023],[119.9732437,26.6684437],[119.9788971,26.6725254],[119.986351,26.6747551],[119.9889679,26.6804714],[119.9777298,26.6826363],[119.9703827,26.6888981],[119.978363,26.6945667],[119.9812469,26.7016582],[119.9887238,26.705265],[119.9956512,26.7072697],[120,26.7071972],[120.0153732,26.7189007],[120.026123,26.7190399],[120.0385208,26.7133579],[120.0369568,26.7292633],[120.0217438,26.7361717],[120.0342102,26.7406864],[120.0454483,26.7422047],[120.0538788,26.7590427],[120.0710373,26.7746143],[120.0819473,26.781168],[120.0835266,26.7944794],[120.0751266,26.8062916],[120.0608521,26.8026733],[120.0438766,26.7907696],[120.0233917,26.7911949],[120.01091,26.7869091],[120,26.788147],[119.9989471,26.78895],[119.9913483,26.7902336],[119.9784164,26.7837296],[119.97435,26.7800159],[119.966301,26.7781048],[119.9618683,26.7810745],[119.963829,26.7839699],[119.9695587,26.7855339],[119.9720993,26.785181],[119.9778824,26.7920303],[119.9775314,26.7948036],[119.9724884,26.7990456],[119.9687576,26.8007736],[119.9642868,26.8004951],[119.9613266,26.7981091],[119.9437332,26.799181],[119.9364166,26.796772],[119.9239197,26.7892227],[119.9226532,26.7891521],[119.9169693,26.7795391],[119.9147568,26.7722893],[119.9271164,26.7648067],[119.9306335,26.7460213],[119.9277496,26.7450085],[119.9232788,26.7341881],[119.899559,26.7137089],[119.8963394,26.7067356],[119.8972778,26.7009449],[119.8932495,26.7020569],[119.8909225,26.7017059],[119.8898163,26.7003803],[119.8923264,26.6906071],[119.8956833,26.6867695],[119.8965073,26.6789169],[119.8924332,26.6793385],[119.8884583,26.681366],[119.8838806,26.6774464],[119.8845673,26.6760349],[119.8944092,26.6737289],[119.8917236,26.6713276],[119.898941,26.6679974],[119.9000473,26.6651859],[119.8992081,26.663847],[119.892067,26.6641865],[119.8868637,26.658226],[119.8812485,26.658493],[119.8799133,26.6574078],[119.8794327,26.6537514],[119.8716812,26.6522808],[119.866333,26.6483936],[119.8604431,26.6525822],[119.8588562,26.657711],[119.8590622,26.6641388],[119.8591537,26.6657429],[119.8600311,26.6675415],[119.8628769,26.6680965],[119.8706131,26.6734772],[119.8699722,26.675806],[119.8519669,26.6918259],[119.8475113,26.694334],[119.8385925,26.6949844],[119.8350983,26.6965275],[119.8382492,26.7015114],[119.8379517,26.7075748],[119.8397903,26.7156143],[119.8542709,26.7227459],[119.8548737,26.7240982],[119.8531189,26.7241936],[119.8432083,26.7216587],[119.8414993,26.7231197],[119.831192,26.7173977],[119.8268738,26.7180614],[119.8254929,26.7160568],[119.8261719,26.7102795],[119.8212891,26.705452],[119.8224716,26.699419],[119.8206482,26.6988163],[119.8189468,26.7005043],[119.8141632,26.7016487],[119.8027573,26.699194],[119.8060989,26.6949005],[119.8064194,26.6916676],[119.8034515,26.6934166],[119.7986298,26.6941013],[119.7914276,26.6978855],[119.7942276,26.7027912],[119.794632,26.705143],[119.7922134,26.7066822],[119.7886124,26.7067509],[119.7864304,26.7089214],[119.7894211,26.7119999],[119.7892303,26.7175255],[119.7908096,26.7183704],[119.7952728,26.7156353],[119.7998428,26.715189],[119.795578,26.7211361],[119.803093,26.7226238],[119.8068008,26.7249775],[119.8071136,26.7348461],[119.8027267,26.7341328],[119.803833,26.740057],[119.7914429,26.7516689],[119.8003387,26.7638931],[119.8004684,26.7705536],[119.8060532,26.7696037],[119.8074036,26.7709198],[119.8085938,26.7738514],[119.8079224,26.7754917],[119.8058777,26.7755871],[119.8047028,26.7774811],[119.8174667,26.7858448],[119.8184967,26.7857971],[119.819809,26.7818298],[119.8215332,26.7805996],[119.8347168,26.7786007],[119.8388901,26.7797832],[119.8408432,26.7780838],[119.8464432,26.7775898],[119.8519669,26.7794189],[119.853363,26.7820911],[119.8527298,26.7844181],[119.8478165,26.7880974],[119.8500366,26.7909813],[119.8464432,26.7952881],[119.8420563,26.7948036],[119.8444595,26.7963009],[119.8467636,26.8007908],[119.8496628,26.8109951],[119.8519669,26.8144455],[119.8459167,26.8171463],[119.8428268,26.8168335],[119.8403931,26.8146496],[119.8396835,26.8110065],[119.8272171,26.799408],[119.8192368,26.7942677],[119.8163834,26.7934818],[119.8108368,26.7994862],[119.8086395,26.796833],[119.8086395,26.7924652],[119.7944717,26.7954254],[119.7888412,26.7864952],[119.784462,26.7949734],[119.7873764,26.8012733],[119.787529,26.8037949],[119.7852631,26.8089561],[119.7891235,26.8092365],[119.7851181,26.8153992],[119.805191,26.8303204],[119.8095703,26.8308048],[119.8132935,26.8331585],[119.8169174,26.8339081],[119.8229065,26.8311005],[119.8254318,26.8348885],[119.8335266,26.8377266],[119.8363495,26.8375931],[119.8421097,26.8442173],[119.8538971,26.8495884],[119.8509827,26.8557529],[119.8471375,26.8603001],[119.8449173,26.8617821],[119.8420181,26.8615723],[119.841217,26.8615131],[119.8443298,26.8560658],[119.8393784,26.8500919],[119.835083,26.8466187],[119.8295364,26.8482552],[119.8168869,26.8378162],[119.8119812,26.8371277],[119.8048706,26.83815],[119.8014526,26.8367004],[119.8024063,26.844471],[119.8001938,26.8457241],[119.7995987,26.8489685],[119.8014679,26.8546848],[119.8003769,26.8546467],[119.795578,26.8550835],[119.7965393,26.8537083],[119.7985992,26.853714],[119.7933578,26.8517876],[119.7965164,26.8445168],[119.7961884,26.8431511],[119.7921829,26.8401222],[119.7868576,26.8366928],[119.7814331,26.8403931],[119.7756805,26.8383636],[119.7721176,26.8387585],[119.7702332,26.8372364],[119.776123,26.8282299],[119.7768173,26.8224506],[119.7741013,26.8198185],[119.7699432,26.818634],[119.7731171,26.815958],[119.7689667,26.8106346],[119.760643,26.8082657],[119.7629166,26.8079281],[119.76474,26.803936],[119.7624435,26.8040428],[119.7579193,26.8010368],[119.757843,26.7952938],[119.7564621,26.7926788],[119.7617493,26.7847061],[119.767067,26.7819939],[119.7698135,26.7761211],[119.7664566,26.7712212],[119.7646179,26.7703876],[119.7616425,26.7721329],[119.7582092,26.7702255],[119.7607117,26.764822],[119.7597122,26.7607307],[119.7603607,26.7496681],[119.7585907,26.745615],[119.7529068,26.7403622],[119.7409286,26.7342205],[119.735672,26.7270985],[119.72686,26.71422],[119.7305069,26.7110615],[119.7301636,26.7048721],[119.7239609,26.7037811],[119.7151871,26.7069435],[119.6998672,26.7076511],[119.6801682,26.721199],[119.6736374,26.7279339],[119.6636124,26.7316113],[119.6646271,26.7405281],[119.6622162,26.743166],[119.6537628,26.7474613],[119.6592789,26.7501965],[119.6609268,26.7521896],[119.6609116,26.7563267],[119.6580429,26.7645035],[119.6544418,26.7642078],[119.6476212,26.7567043],[119.6190338,26.7582397],[119.6131134,26.7575893],[119.6113663,26.7585869],[119.6142883,26.7648907],[119.6188507,26.768589],[119.6209183,26.7781487],[119.620079,26.783226],[119.6216736,26.7868462],[119.6214371,26.791914],[119.6184235,26.7975655],[119.6098175,26.7947407],[119.5976181,26.7872505],[119.5964203,26.7854443],[119.5951004,26.7834587],[119.5919724,26.7824497],[119.5879364,26.7835522],[119.5846863,26.7896748],[119.571228,26.7938328],[119.5703125,26.7935429],[119.5779877,26.7842331],[119.5777206,26.779417],[119.5611572,26.7576447],[119.5549774,26.7598324],[119.5528412,26.760088],[119.5572281,26.7513866],[119.5612183,26.7495975],[119.5612183,26.7450008],[119.55793,26.7456093],[119.5535965,26.7421284],[119.5532074,26.7415199],[119.5570374,26.7389851],[119.5553436,26.7358437],[119.545639,26.7270889],[119.5398331,26.7236729],[119.5488968,26.7211952],[119.5510635,26.7185707],[119.5489426,26.7080936],[119.5498123,26.7052975],[119.5513,26.7045403],[119.5530396,26.7081394],[119.5611801,26.7073116],[119.5638733,26.7097187],[119.5753632,26.712801],[119.5833282,26.7145844],[119.5844193,26.7202816],[119.5756531,26.7236652],[119.5743866,26.7333755],[119.565773,26.7392807],[119.5696106,26.7439327],[119.5709076,26.7443352],[119.5736389,26.7428322],[119.5790634,26.7435074],[119.5830994,26.7472305],[119.589798,26.7480755],[119.5933609,26.7476845],[119.5948181,26.7462387],[119.5920486,26.7424583],[119.6020279,26.7424641],[119.607048,26.7406292],[119.6155396,26.7459869],[119.6173325,26.7461357],[119.6177368,26.744278],[119.6207962,26.7485065],[119.629921,26.7469425],[119.6346436,26.7444286],[119.6355896,26.7430058],[119.6336136,26.7396488],[119.6213379,26.7307854],[119.6177368,26.7304897],[119.6150665,26.733139],[119.6116562,26.7314548],[119.6113205,26.730093],[119.6154022,26.7253094],[119.605217,26.7216358],[119.6081467,26.7192039],[119.6090164,26.7164078],[119.5928879,26.7208157],[119.5916138,26.7162781],[119.5933228,26.7148209],[119.5929871,26.7088604],[119.5999527,26.7050972],[119.5990372,26.70261],[119.5960922,26.7002163],[119.60215,26.6941948],[119.6011429,26.6898746],[119.6051865,26.6890011],[119.6070328,26.6854687],[119.6049576,26.6802788],[119.6003036,26.6747437],[119.6029968,26.672781],[119.6055908,26.6687584],[119.6038818,26.6610222],[119.6094284,26.6596203],[119.6106033,26.6577282],[119.600563,26.6473808],[119.5926285,26.6518784],[119.5838928,26.6511269],[119.5815201,26.6544514],[119.5802536,26.6545086],[119.5814209,26.6572132],[119.5809708,26.6629791],[119.5779495,26.6638069],[119.5756912,26.6600018],[119.5705338,26.6685085],[119.5665283,26.6700687],[119.5646286,26.6680851],[119.5613022,26.6680069],[119.5523834,26.6785984],[119.5472565,26.673008],[119.5438766,26.6722393],[119.5410767,26.6631718],[119.5392532,26.6623363],[119.5303574,26.6636543],[119.5272598,26.6628742],[119.5276794,26.6612473],[119.5353088,26.6558475],[119.5355682,26.6512394],[119.538147,26.6472168],[119.5438309,26.6435127],[119.5466766,26.6394787],[119.5457916,26.6326237],[119.5437622,26.6283474],[119.5487671,26.6265125],[119.5549011,26.6170425],[119.5570908,26.6151047],[119.5636063,26.6127434],[119.5647812,26.6108513],[119.5650406,26.6016464],[119.5673676,26.6022301],[119.5699692,26.6076279],[119.5818176,26.599968],[119.5882263,26.5911732],[119.597168,26.586401],[119.5997391,26.5821476],[119.5969467,26.5694351],[119.6014023,26.573555],[119.6047974,26.5802956],[119.6110077,26.5889015],[119.6175079,26.5937481],[119.6204529,26.5959129],[119.6272125,26.5981331],[119.631012,26.6020966],[119.6504974,26.6076412],[119.6612396,26.6122055],[119.6683273,26.6201534],[119.6739731,26.6203537],[119.6809311,26.6168156],[119.6810684,26.6147423],[119.6754227,26.6097145],[119.6968231,26.6084995],[119.6999283,26.600626],[119.7021027,26.6025105],[119.7019196,26.6082649],[119.7043228,26.609993],[119.7175217,26.6128311],[119.7282562,26.612793],[119.7343063,26.6067677],[119.7448502,26.5989227],[119.7446136,26.5947952],[119.7381897,26.5941753],[119.7418823,26.5917053],[119.7394867,26.5868645],[119.7409515,26.5871563],[119.747551,26.5879936],[119.7499695,26.5945473],[119.7520828,26.5955982],[119.7604828,26.5949783],[119.7682037,26.5870323],[119.7725067,26.5863724],[119.7814865,26.5871029],[119.7778625,26.5817547],[119.7848129,26.5779819],[119.7849426,26.5759068],[119.7823181,26.5702839],[119.7856522,26.5657825],[119.7968369,26.5516758],[119.7955475,26.5503483],[119.7938538,26.5485992],[119.7871094,26.555809],[119.7779999,26.5617504],[119.7749634,26.5621223],[119.7671814,26.5558205],[119.7600937,26.5481052],[119.758873,26.5444851],[119.7551422,26.5419006],[119.7642822,26.5432205],[119.7709808,26.5417271],[119.7767334,26.5351486],[119.7776108,26.5325775],[119.7762833,26.5283813],[119.7808838,26.5273685],[119.7843018,26.529047],[119.7871017,26.5289154],[119.7872467,26.527071],[119.7772827,26.52248],[119.7718506,26.5167561],[119.7813568,26.5176926],[119.7881775,26.5164528],[119.7946472,26.5133915],[119.8012466,26.5082569],[119.7970428,26.5015583],[119.792923,26.5056591],[119.7867508,26.5004311],[119.7792664,26.4972477],[119.778862,26.4964314],[119.784668,26.4952412],[119.7926636,26.4964771],[119.7936096,26.4952812],[119.792778,26.494173],[119.7962112,26.4917126],[119.7999725,26.4949837],[119.8023834,26.492342],[119.8041534,26.4876614],[119.8057327,26.4795437],[119.7980194,26.4741573],[119.803833,26.473196],[119.8064117,26.4708252],[119.8119736,26.4725838],[119.8144989,26.4766026],[119.8164597,26.475132],[119.8146973,26.4667091],[119.8066483,26.4599609],[119.8073578,26.4590092],[119.8134689,26.4587212],[119.8197708,26.4616451],[119.8227463,26.460125],[119.8234024,26.4582558],[119.8219299,26.4548759],[119.8184433,26.4518223],[119.8283463,26.4511261],[119.827301,26.4461193],[119.8191071,26.4412155],[119.8152313,26.4404793],[119.8136673,26.4413567],[119.8109436,26.4408817],[119.8109589,26.4372311],[119.8085098,26.4389572],[119.8004684,26.4411736],[119.7964935,26.4386024],[119.79496,26.438673],[119.7920609,26.4415665],[119.7892609,26.4416981],[119.7898331,26.4382229],[119.7935867,26.4325314],[119.7999878,26.4329205],[119.8004532,26.4319801],[119.787468,26.4192543],[119.7889862,26.414587],[119.7859802,26.4156456],[119.7829132,26.4153309],[119.7753067,26.4120083],[119.7727203,26.4158077],[119.7706985,26.416132],[119.7661438,26.4124355],[119.7688065,26.4097843],[119.7684784,26.4086494],[119.7671432,26.4075623],[119.7649078,26.4085865],[119.7572784,26.4135399],[119.7571335,26.4153862],[119.7585297,26.4176178],[119.7667618,26.4232121],[119.7714691,26.4206924],[119.7733612,26.4270401],[119.7734833,26.4334717],[119.7624893,26.4422588],[119.7579727,26.4436188],[119.7498169,26.4483662],[119.7444229,26.4522953],[119.7435226,26.4544067],[119.7404099,26.4536304],[119.7369537,26.4510326],[119.7357864,26.444191],[119.7339096,26.4470367],[119.7299423,26.4490604],[119.7226868,26.4473286],[119.7137375,26.4560165],[119.713501,26.4608192],[119.7140808,26.462038],[119.708168,26.4613323],[119.6980667,26.4677753],[119.6973114,26.4612579],[119.6959763,26.4625854],[119.681839,26.4653053],[119.6798019,26.4699955],[119.6734772,26.4755726],[119.6784821,26.4783306],[119.6816177,26.4819508],[119.6823196,26.4829826],[119.6776428,26.4837189],[119.6731415,26.4831753],[119.6683731,26.4845428],[119.6650314,26.4934311],[119.6645966,26.4994259],[119.6635513,26.5001049],[119.6561203,26.4938393],[119.6464462,26.5083046],[119.6407471,26.4929352],[119.6394196,26.4920769],[119.6359787,26.4945335],[119.6313629,26.4894581],[119.6281128,26.4861584],[119.637413,26.4836636],[119.6376038,26.4825058],[119.6233063,26.473505],[119.6214905,26.4729004],[119.6195297,26.474369],[119.6159668,26.4747601],[119.6183472,26.4670677],[119.6182327,26.4647732],[119.61689,26.463686],[119.610733,26.4676437],[119.6029434,26.4698372],[119.603981,26.4748478],[119.5938873,26.4818707],[119.5890198,26.4812737],[119.58564,26.4848747],[119.5833588,26.4852085],[119.5739899,26.4819546],[119.5736465,26.4803619],[119.5694504,26.4830818],[119.5655594,26.48349],[119.5654907,26.4825935],[119.5680008,26.4753323],[119.5699463,26.4736347],[119.5747299,26.4722691],[119.5836411,26.4764614],[119.5851669,26.4763908],[119.5856018,26.4749928],[119.5842972,26.4699955],[119.5812836,26.4659958],[119.5703506,26.4669495],[119.5709763,26.4600258],[119.5671387,26.4551449],[119.5705566,26.4478645],[119.5693665,26.4447002],[119.5755997,26.437294],[119.5784836,26.429348],[119.5848923,26.4299755],[119.5860138,26.4317646],[119.5855637,26.4375305],[119.5876007,26.4420338],[119.5888901,26.4422054],[119.5927429,26.4378929],[119.5996933,26.4345894],[119.6168213,26.4349575],[119.6154327,26.4283562],[119.6267166,26.4294491],[119.6286316,26.4316616],[119.6298828,26.4403381],[119.6423798,26.4491901],[119.6424866,26.4490223],[119.6444931,26.4458733],[119.6511307,26.441433],[119.6558228,26.4430561],[119.6536636,26.4364891],[119.6533585,26.4309883],[119.6578064,26.4195194],[119.6606674,26.4157104],[119.6609421,26.411562],[119.6542892,26.3794575],[119.6556473,26.3764057],[119.6614075,26.3789005],[119.6636429,26.3778782],[119.6640472,26.3760204],[119.6486588,26.367382],[119.6440277,26.3647575],[119.6418533,26.3623295],[119.6425095,26.361805],[119.6554565,26.3594055],[119.6634827,26.356739],[119.6649017,26.3548355],[119.6647873,26.348175],[119.6672974,26.3430023],[119.6800003,26.3465557],[119.6910172,26.3474255],[119.6970978,26.3466854],[119.7005768,26.3451443],[119.7012329,26.3430462],[119.6940002,26.3415413],[119.691452,26.3370609],[119.6864471,26.3388996],[119.6844406,26.3348579],[119.6805267,26.3334274],[119.6838379,26.3286781],[119.6841507,26.3252144],[119.678688,26.3188019],[119.6837616,26.3137417],[119.6868973,26.3152046],[119.6912384,26.3152332],[119.7015228,26.3120003],[119.7111664,26.3113251],[119.7138367,26.3134975],[119.7204666,26.3136501],[119.7532272,26.3335056],[119.7598801,26.3338833],[119.7612534,26.3354301],[119.7620468,26.3406792],[119.7481079,26.3466167],[119.7618103,26.3542519],[119.7626572,26.3558235],[119.7544708,26.3552837],[119.7534027,26.3587837],[119.7543488,26.3621864],[119.7466736,26.3616257],[119.7500992,26.3681316],[119.755043,26.3697395],[119.7630234,26.3755741],[119.7647781,26.3750324],[119.7598038,26.3683681],[119.7645264,26.3663082],[119.769577,26.369751],[119.7786636,26.3679466],[119.7802429,26.3687935],[119.7731781,26.3746395],[119.7807236,26.3816414],[119.7909622,26.3823128],[119.7877197,26.3836136],[119.7824936,26.390295],[119.7797699,26.3918018],[119.778183,26.3907261],[119.7771988,26.3914623],[119.782402,26.3976555],[119.7918167,26.3972149],[119.7944412,26.3984699],[119.7928238,26.4013042],[119.8005676,26.4073772],[119.8024597,26.4047604],[119.8094101,26.410181],[119.8062592,26.4130878],[119.8108597,26.4176979],[119.813858,26.4166374],[119.8174133,26.4206085],[119.8132782,26.4242516],[119.8180237,26.4267864],[119.8238373,26.4260521],[119.8372269,26.4279499],[119.834938,26.4190941],[119.831337,26.4144363],[119.8444672,26.4119778],[119.8448715,26.4055233],[119.8491974,26.4053192],[119.8541565,26.4027843],[119.8537064,26.3993568],[119.8433533,26.3924904],[119.8413773,26.3893661],[119.8416977,26.3859043],[119.8477097,26.383131],[119.8564529,26.3849773],[119.8582535,26.3809834],[119.8629303,26.3823719],[119.8662796,26.3785343],[119.871582,26.377594],[119.8708496,26.3693523],[119.8667831,26.3651772],[119.8600311,26.3614197],[119.8572769,26.3554173],[119.8583832,26.3522434],[119.867897,26.3492622],[119.8717194,26.3490829],[119.8807907,26.3560066],[119.8858337,26.350481],[119.8902588,26.3514881],[119.8918533,26.348917],[119.8898087,26.3443146],[119.8965683,26.3478107],[119.9017715,26.3530807],[119.908577,26.3556042],[119.9143372,26.3580894],[119.9153519,26.3580399],[119.9154968,26.3561954],[119.9189529,26.3583279],[119.9247818,26.3578205],[119.9244537,26.3608246],[119.928772,26.3649864],[119.934227,26.3667927],[119.9348373,26.3683739],[119.9369278,26.369194],[119.9423065,26.3696251],[119.9437866,26.3732319],[119.9459229,26.3745098],[119.9523163,26.3748932],[119.9547729,26.3731651],[119.9471207,26.3645668],[119.9425735,26.3611069],[119.9439774,26.3546028],[119.9405365,26.3524685],[119.9364014,26.3558846],[119.9319992,26.3547173],[119.9306335,26.3531723],[119.9312897,26.3513012],[119.9216995,26.3444042],[119.9233932,26.3427143],[119.9237518,26.340168],[119.9186096,26.3394947],[119.9073868,26.3352013],[119.8951187,26.325901],[119.8957596,26.3238029],[119.9026871,26.3202534],[119.9020462,26.3179855],[119.8922501,26.3161526],[119.8851318,26.3164921],[119.8836594,26.317482],[119.885231,26.319706],[119.8837738,26.3221283],[119.8819733,26.3226395],[119.8795013,26.3225918],[119.8765793,26.3185081],[119.87117,26.3176155],[119.8609467,26.3128109],[119.8620377,26.3185062],[119.8611908,26.3259029],[119.8540726,26.3262405],[119.8432465,26.333189],[119.8394699,26.3384247],[119.8380966,26.332283],[119.8287277,26.3290462],[119.8297577,26.3248596],[119.8232727,26.3272343],[119.8159332,26.3239021],[119.815567,26.3264484],[119.8125992,26.3279686],[119.8108978,26.325058],[119.8042221,26.3198547],[119.7913132,26.312645],[119.7893906,26.3102074],[119.7867126,26.3034363],[119.7915497,26.2988415],[119.7942505,26.2971058],[119.8115082,26.2956066],[119.8113098,26.2921677],[119.8090134,26.2876778],[119.7999191,26.2802906],[119.7962189,26.2735672],[119.7902832,26.2768345],[119.7898331,26.2821426],[119.7818527,26.2852745],[119.7788467,26.2996674],[119.7617035,26.2940331],[119.7640686,26.300684],[119.7619934,26.299305],[119.7576675,26.2995071],[119.7527313,26.2978992],[119.7511063,26.2963657],[119.7501602,26.2929611],[119.7555466,26.2892628],[119.7524033,26.287569],[119.7472,26.2857437],[119.746582,26.2883015],[119.7452927,26.2881317],[119.7361984,26.2851067],[119.7335434,26.287529],[119.729187,26.2829037],[119.7191925,26.2773914],[119.7071762,26.2813969],[119.7020416,26.280714],[119.6957932,26.2782459],[119.6959,26.2803097],[119.6940536,26.2828655],[119.6851807,26.2755184],[119.6836472,26.275589],[119.681572,26.2793617],[119.6778107,26.2804546],[119.6736603,26.2792664],[119.6718369,26.2740631],[119.6617584,26.2761383],[119.6520081,26.2749767],[119.6413803,26.2717876],[119.6357803,26.2674465],[119.6306305,26.2665329],[119.6291199,26.2622356],[119.6204529,26.256731],[119.6180573,26.255846],[119.6150818,26.2527618],[119.6067429,26.2494659],[119.6048431,26.2472553],[119.6073837,26.2468071],[119.6167679,26.246479],[119.6194687,26.249115],[119.6206589,26.2522774],[119.6342468,26.2583218],[119.6370087,26.2575054],[119.6403809,26.2539043],[119.649147,26.2512016],[119.6530838,26.2487221],[119.654892,26.244503],[119.6546936,26.2410622],[119.6561279,26.2393875],[119.6712036,26.2398434],[119.6713028,26.2370815],[119.6572037,26.2310638],[119.6552887,26.2288532],[119.65345,26.2234211],[119.6581116,26.21562],[119.6546173,26.207737],[119.6470413,26.2044067],[119.6394272,26.2082882],[119.6348038,26.208601],[119.6314621,26.2037411],[119.6250992,26.1902409],[119.6241074,26.1907482],[119.6168213,26.1878624],[119.6164398,26.1855812],[119.6140976,26.1847687],[119.6121216,26.1857796],[119.6092987,26.1854477],[119.6037064,26.1811066],[119.6029968,26.1776905],[119.5987167,26.1739769],[119.5975189,26.1705837],[119.5978622,26.1583862],[119.6064606,26.1481094],[119.6068268,26.145565],[119.5884933,26.1408844],[119.5876236,26.1390858],[119.5860672,26.1386967],[119.5570679,26.1344967],[119.5547104,26.1332245],[119.5452423,26.1223564],[119.534317,26.1098099],[119.5151062,26.0890427],[119.5112534,26.0834694],[119.5095978,26.0777054],[119.5184097,26.0731602],[119.5218735,26.0713749],[119.5259933,26.0692444],[119.5335693,26.0682125],[119.5412598,26.0646458],[119.5505295,26.0573292],[119.5548096,26.0518494],[119.5811386,26.0495033],[119.5855637,26.0511417],[119.5885773,26.0507736],[119.5987778,26.0447063],[119.608223,26.0422916],[119.6120834,26.0430336],[119.6146011,26.0380917],[119.6233673,26.0356216],[119.6253128,26.0339241],[119.6260681,26.0292912],[119.6312866,26.0318108],[119.6387024,26.0260315],[119.6439667,26.0220318],[119.6514664,26.019619],[119.656601,26.0203018],[119.6632309,26.0160885],[119.6706924,26.018034],[119.6759491,26.025156],[119.6906281,26.0237885],[119.6911011,26.0322723],[119.704071,26.0231647],[119.7110367,26.0203133],[119.7133636,26.0165253],[119.7140121,26.0054626],[119.7074509,25.9747334],[119.7102127,25.9695473],[119.705452,25.96632],[119.7036972,25.9668617],[119.7016983,25.9584503],[119.6975937,25.9577217],[119.6943436,25.9587898],[119.691597,25.9552383],[119.6878204,25.9466801],[119.6877289,25.9269142],[119.6862869,25.9193954],[119.6820908,25.9170609],[119.6795273,25.9121227],[119.6819763,25.9060307],[119.6811829,25.9053783],[119.6787033,25.9064121],[119.6755371,25.9090881],[119.6636581,25.9100971],[119.6628494,25.9138126],[119.6363983,25.9180183],[119.6334763,25.9158535],[119.6219177,25.8998337],[119.6181335,25.8912735],[119.6151276,25.8783073],[119.6097565,25.8684387],[119.6077271,25.8593369],[119.6027985,25.8528957],[119.5967636,25.8494949],[119.5939407,25.8581295],[119.5818787,25.8559208],[119.5836029,25.845499],[119.5836334,25.8323956],[119.5875931,25.8257771],[119.5949783,25.8217621],[119.6029663,25.823925],[119.6071701,25.8172951],[119.6111984,25.807457],[119.6134262,25.7974701],[119.6143494,25.7817974],[119.6139297,25.7788277],[119.6098175,25.7789326],[119.6144714,25.7702961],[119.6159515,25.763834],[119.6199036,25.767519],[119.628418,25.7563248],[119.6185684,25.7526379],[119.6151199,25.7454414],[119.614769,25.7390194],[119.6075211,25.7349129],[119.6057129,25.7308273],[119.6010132,25.7196522],[119.5986786,25.7188396],[119.5959473,25.7198849],[119.5943604,25.7188072],[119.5955734,25.7130051],[119.5949097,25.7102776],[119.6001205,25.7081985],[119.6035233,25.7055149],[119.5982437,25.701849],[119.5940094,25.6939964],[119.5891876,25.6939869],[119.5847626,25.6918907],[119.5814667,25.6920414],[119.5778275,25.6949654],[119.5749664,25.6935463],[119.5744324,25.6932831],[119.5665131,25.6922626],[119.5549164,25.6934814],[119.5593185,25.6951199],[119.5530014,25.7048321],[119.5502472,25.7056465],[119.5464096,25.7049026],[119.5431976,25.7064266],[119.5356827,25.7131824],[119.5337296,25.7096157],[119.533783,25.7059345],[119.5282364,25.706646],[119.5163422,25.6931629],[119.5063095,25.6860313],[119.4975967,25.6843548],[119.4845886,25.692297],[119.4806366,25.6923523],[119.4680328,25.68046],[119.4642029,25.6732006],[119.4630432,25.6691303],[119.4611816,25.6676044],[119.4458618,25.6609344],[119.4398193,25.6570663],[119.4443665,25.6520367],[119.4421234,25.6479988],[119.4348831,25.6430454],[119.4411316,25.6390781],[119.4453888,25.6427956],[119.4506989,25.6425591],[119.4619827,25.6496391],[119.4669037,25.6514874],[119.4692001,25.6470165],[119.4690094,25.6435757],[119.4610291,25.6319809],[119.4613266,25.6234627],[119.4574814,25.6178894],[119.4575424,25.614439],[119.4618988,25.6151619],[119.4660873,25.617733],[119.4724808,25.6280193],[119.4782562,25.6270714],[119.4823608,25.6326332],[119.4841537,25.6330109],[119.4856033,25.6315651],[119.4857025,25.6242065],[119.4932632,25.6231766],[119.4880219,25.6107693],[119.481163,25.6011944],[119.4770432,25.5905762],[119.4801025,25.5817032],[119.5068817,25.5568199],[119.5161819,25.555479],[119.5154037,25.5598812],[119.5229263,25.5632191],[119.5230103,25.569191],[119.5303268,25.5872498],[119.5409393,25.5865383],[119.5592422,25.5829468],[119.5508881,25.5785007],[119.5441895,25.5765057],[119.5422592,25.5736046],[119.5444107,25.5729923],[119.5551987,25.5693378],[119.5619965,25.5731659],[119.5650787,25.5785427],[119.5698471,25.5824623],[119.5732269,25.579319],[119.5753784,25.5861187],[119.5812225,25.5863113],[119.5779572,25.5915165],[119.5775681,25.593605],[119.5786133,25.5942459],[119.5912476,25.5934391],[119.6010513,25.5966682],[119.6027832,25.5956688],[119.6028976,25.5933628],[119.5943909,25.5861683],[119.590538,25.5897923],[119.5871124,25.5874214],[119.5897293,25.5797157],[119.5864334,25.5750389],[119.5840912,25.5739956],[119.5789032,25.5763016],[119.574791,25.5753403],[119.5780411,25.5699062],[119.5792999,25.5652504],[119.5784683,25.5639095],[119.5720596,25.5625935],[119.566452,25.5527344],[119.5670929,25.5506363],[119.5657272,25.5396652],[119.568718,25.5386086],[119.5758133,25.5385151],[119.5759735,25.5368996],[119.5715103,25.5341129],[119.5695496,25.530756],[119.5735931,25.5259743],[119.5765228,25.5237713],[119.586998,25.525589],[119.5943222,25.5252533],[119.5963135,25.5244751],[119.5969391,25.5221462],[119.5882111,25.5200176],[119.5839462,25.516304],[119.5790329,25.5188293],[119.5723572,25.5172939],[119.5638809,25.5105553],[119.5586929,25.5082626],[119.5528412,25.5078411],[119.551239,25.5063038],[119.551651,25.5046768],[119.5536118,25.4988403],[119.5555267,25.4969139],[119.5578079,25.4968109],[119.5649872,25.503149],[119.573761,25.5059662],[119.5782471,25.5094395],[119.579277,25.5096226],[119.5791779,25.5077877],[119.5758972,25.5033398],[119.5753021,25.5017586],[119.5762634,25.5007954],[119.593689,25.5091915],[119.6026077,25.5101624],[119.6020126,25.5039845],[119.5990601,25.5009003],[119.5938187,25.4976921],[119.5913315,25.4984951],[119.5866928,25.4970989],[119.5855331,25.4897976],[119.586441,25.4833183],[119.5850525,25.4810829],[119.585762,25.4801311],[119.590477,25.4831333],[119.5934601,25.4866753],[119.5973434,25.487318],[119.6124725,25.4915485],[119.6177521,25.4908466],[119.6181335,25.4885311],[119.6074066,25.4871845],[119.6019135,25.4837589],[119.601799,25.4816952],[119.6071396,25.4729443],[119.6064911,25.465847],[119.6092224,25.4648037],[119.6149292,25.4672985],[119.6253586,25.4681988],[119.6316833,25.4635391],[119.6329269,25.4722176],[119.6367264,25.4768696],[119.6385269,25.4774742],[119.6397324,25.471674],[119.6389084,25.4659634],[119.6340179,25.4507885],[119.6321716,25.4494934],[119.628273,25.452076],[119.6260986,25.4502525],[119.6249695,25.4429302],[119.6119308,25.4451389],[119.6086502,25.4360943],[119.6140671,25.4381447],[119.6164703,25.4357357],[119.6184006,25.4294395],[119.6203308,25.427742],[119.6240311,25.4305611],[119.6281509,25.4317493],[119.6332092,25.4317455],[119.6346664,25.4307575],[119.6347885,25.4328232],[119.6383667,25.4379444],[119.644928,25.4330425],[119.6433182,25.4223137],[119.6485367,25.4252911],[119.6505737,25.4251976],[119.6524277,25.4131584],[119.6521683,25.4085712],[119.6487579,25.4018326],[119.6492996,25.3978996],[119.6532974,25.3924274],[119.6561813,25.3851681],[119.6528397,25.3841724],[119.6503525,25.3849773],[119.646553,25.3892918],[119.6438522,25.3818302],[119.6475601,25.3802795],[119.6460724,25.3762093],[119.6421432,25.378231],[119.6355362,25.3688812],[119.6300583,25.3656864],[119.6251602,25.3640747],[119.6147995,25.3643208],[119.6113968,25.3624077],[119.6116333,25.3573399],[119.6213837,25.3596516],[119.6323166,25.3563881],[119.6418381,25.3591652],[119.6527634,25.3644066],[119.6537094,25.3634434],[119.6397095,25.3436337],[119.6369324,25.3437614],[119.6355972,25.3470402],[119.6162491,25.3447151],[119.6037827,25.3478184],[119.5998077,25.3447819],[119.603447,25.341856],[119.5931473,25.3386517],[119.5911713,25.3440285],[119.5870819,25.3478928],[119.5851517,25.3541889],[119.5939331,25.3482704],[119.5943375,25.355608],[119.6018372,25.3587093],[119.6033936,25.3639259],[119.6029587,25.3650951],[119.5996628,25.3650169],[119.6024399,25.3740845],[119.6045837,25.3762856],[119.5970917,25.3826065],[119.5956573,25.3934746],[119.5855865,25.4035912],[119.5856628,25.4139328],[119.580513,25.4169273],[119.5782394,25.421629],[119.5799866,25.4259148],[119.5844498,25.4287014],[119.6011429,25.4312439],[119.602829,25.4315357],[119.6010132,25.4398937],[119.5970078,25.4361706],[119.594223,25.4360676],[119.5934067,25.4397831],[119.5948486,25.4429359],[119.5935364,25.4466724],[119.5914688,25.4458485],[119.581871,25.432497],[119.5795822,25.4323711],[119.5754166,25.4348602],[119.581337,25.4458523],[119.5842972,25.4491653],[119.5866318,25.4591732],[119.5770035,25.4589252],[119.5703278,25.4573898],[119.5658188,25.462883],[119.561348,25.4598694],[119.5600281,25.4622059],[119.5525284,25.4513073],[119.5519104,25.4492664],[119.555397,25.4481869],[119.5508728,25.4440269],[119.5457535,25.4431114],[119.5470505,25.4529362],[119.5448227,25.4583244],[119.5391769,25.4526043],[119.5380707,25.4508152],[119.5400696,25.4456673],[119.5272827,25.4340649],[119.5272217,25.4329185],[119.5308533,25.4297657],[119.5351486,25.4298],[119.5360565,25.4279194],[119.5315933,25.4249039],[119.524231,25.4151249],[119.5213623,25.4090481],[119.5228195,25.4032364],[119.5182571,25.3986149],[119.5234528,25.3963108],[119.5266418,25.4037514],[119.5301437,25.4029026],[119.5355682,25.4049549],[119.5374985,25.3986607],[119.5396423,25.4008617],[119.54599,25.4012623],[119.5466766,25.409277],[119.5521774,25.4124737],[119.5551834,25.4118767],[119.5590363,25.4130802],[119.5651321,25.4180889],[119.5671234,25.4173088],[119.5674362,25.4140759],[119.5631409,25.4094467],[119.5651016,25.4082069],[119.5696716,25.4084568],[119.5708771,25.4074821],[119.5702362,25.4049835],[119.5604935,25.3980732],[119.5534897,25.3903465],[119.5548935,25.3855019],[119.5486374,25.3848553],[119.5422668,25.3793659],[119.5365677,25.3798218],[119.5315628,25.3777828],[119.5275421,25.3784256],[119.5185471,25.3852692],[119.5129929,25.3852921],[119.4988327,25.3762798],[119.4942627,25.3711987],[119.4908981,25.3651447],[119.4852295,25.3679295],[119.4828186,25.3701057],[119.4826508,25.3717232],[119.4944763,25.3799229],[119.4990463,25.3847733],[119.5053635,25.3939133],[119.5061035,25.3982468],[119.5015717,25.4127026],[119.4988937,25.4146633],[119.4971237,25.4193401],[119.4976807,25.4202347],[119.5086899,25.4178982],[119.5140381,25.4277706],[119.5063705,25.4311047],[119.5016174,25.4368362],[119.4981384,25.4379139],[119.487793,25.4383812],[119.4868164,25.4393444],[119.4898911,25.4493198],[119.5007172,25.4575653],[119.4963989,25.4618988],[119.49646,25.4630451],[119.5042725,25.4670601],[119.5083694,25.4677944],[119.5084915,25.4700871],[119.5012131,25.4752579],[119.4906235,25.4672165],[119.4849701,25.4658623],[119.4721909,25.468277],[119.4673615,25.4680347],[119.4622726,25.4721718],[119.4585495,25.4688892],[119.4582138,25.4672966],[119.4608536,25.4646492],[119.4560623,25.460268],[119.4525528,25.4514599],[119.4551163,25.4522648],[119.4573364,25.4512463],[119.4507828,25.4469414],[119.4480209,25.4472961],[119.4456863,25.4462509],[119.4333115,25.4373817],[119.4315872,25.4383774],[119.4420471,25.4494019],[119.4462128,25.4607086],[119.445343,25.4678745],[119.4367828,25.4735451],[119.4377136,25.4767208],[119.4390869,25.4789581],[119.4501266,25.4819107],[119.4532471,25.4925747],[119.4586334,25.5031376],[119.4579468,25.504776],[119.4557114,25.5053368],[119.4606628,25.5126991],[119.4546585,25.5187149],[119.4480133,25.5222321],[119.4439468,25.5173569],[119.4319305,25.51054],[119.4201889,25.5135918],[119.4085922,25.5145683],[119.4048996,25.5179348],[119.4018021,25.5201569],[119.3804474,25.5282307],[119.3690033,25.527359],[119.3669662,25.5286579],[119.3616028,25.5311337],[119.3573227,25.5361519],[119.3538895,25.5431976],[119.3572998,25.5501728],[119.3657532,25.5615215],[119.3701706,25.5730495],[119.3780365,25.5876408],[119.3786163,25.5935917],[119.3761063,25.594162],[119.3632202,25.5804825],[119.3595963,25.5790329],[119.3574524,25.5816555],[119.3555527,25.5888653],[119.3583374,25.5887432],[119.3676987,25.5979824],[119.3675537,25.6046543],[119.3616028,25.5977917],[119.356308,25.5982552],[119.3479309,25.6075897],[119.3494568,25.6125793],[119.3480072,25.618618],[119.3334503,25.6165028],[119.3314209,25.6214714],[119.3292465,25.6185246],[119.3289566,25.6130219],[119.3273163,25.6156216],[119.3192902,25.6219501],[119.3188324,25.6207695],[119.3197632,25.6198883],[119.3214264,25.614502],[119.3152237,25.6120167],[119.3158798,25.6101475],[119.3252716,25.6055984],[119.3273163,25.601141],[119.3300629,25.5860806],[119.3245163,25.5819569],[119.3254013,25.5793896],[119.3308029,25.5759354],[119.3331909,25.5781269],[119.3346405,25.5815125],[119.3371964,25.5820885],[119.3433914,25.5792885],[119.3448334,25.573019],[119.3405228,25.5587273],[119.3502808,25.5516319],[119.3426666,25.541853],[119.3375626,25.5315056],[119.3379669,25.5296478],[119.3460312,25.5336609],[119.3380432,25.5117168],[119.3279877,25.4942322],[119.321373,25.469698],[119.3208466,25.4596081],[119.3224411,25.4563198],[119.3301315,25.4486256],[119.3379364,25.4429951],[119.3424301,25.4370518],[119.3411102,25.4359608],[119.3371506,25.4377441],[119.32341,25.4411068],[119.3178406,25.4411221],[119.3131332,25.4429379],[119.309288,25.4406948],[119.3004379,25.4230385],[119.297821,25.4213142],[119.2940369,25.4313641],[119.2889633,25.4357224],[119.2871323,25.4394798],[119.2863998,25.4447994],[119.2919693,25.4496117],[119.2916031,25.4521561],[119.2755737,25.4604416],[119.2780533,25.4690666],[119.2752838,25.4740162],[119.2785721,25.4789295],[119.2846832,25.4844074],[119.2869263,25.4886761],[119.2880783,25.5104618],[119.289978,25.5177345],[119.2997437,25.5251217],[119.3009262,25.5285168],[119.3019028,25.5372105],[119.299408,25.5428352],[119.3102036,25.5506363],[119.3138428,25.5571423],[119.3241272,25.5695629],[119.3178864,25.576273],[119.3021774,25.566618],[119.2991104,25.5660629],[119.2956085,25.566906],[119.2973785,25.5716553],[119.2970428,25.5748882],[119.2923431,25.5723343],[119.2895737,25.5724564],[119.2880783,25.5797558],[119.2878265,25.5806751],[119.2804413,25.5675678],[119.2762222,25.5645351],[119.2769699,25.5618095],[119.2779922,25.5596294],[119.2767563,25.5553169],[119.2793884,25.5524445],[119.2799072,25.5478249],[119.2777023,25.5444717],[119.2788925,25.5430412],[119.2843933,25.5414238],[119.2831268,25.5368805],[119.277359,25.5281677],[119.2698364,25.5250473],[119.266861,25.5260983],[119.2645416,25.52528],[119.2658005,25.5155716],[119.2563934,25.5049477],[119.2480164,25.5046234],[119.2377396,25.4970245],[119.2317505,25.4890079],[119.2214127,25.4800339],[119.2231598,25.4746704],[119.2225571,25.4730873],[119.2131805,25.4776306],[119.2068863,25.482193],[119.2061081,25.4827633],[119.2054901,25.4855461],[119.2022171,25.489687],[119.2022705,25.4771824],[119.1948013,25.4696903],[119.1892776,25.4657898],[119.1854782,25.465723],[119.1813126,25.4684296],[119.1796036,25.467205],[119.1755371,25.4643116],[119.1673126,25.4619064],[119.156723,25.4529381],[119.1554871,25.4516315],[119.1481628,25.4438801],[119.14534,25.4382553],[119.1353836,25.4267292],[119.1288376,25.412529],[119.1269989,25.4112282],[119.125412,25.4069405],[119.1234436,25.4019527],[119.1295013,25.3908958],[119.1335068,25.3902645],[119.1389389,25.3875046],[119.1433563,25.3847885],[119.1476288,25.3793201],[119.150322,25.3775959],[119.152359,25.3777714],[119.1538773,25.377903],[119.1580963,25.3813992],[119.1598434,25.3905182],[119.1604233,25.3921013],[119.1616669,25.391819],[119.1641235,25.3852787],[119.1633606,25.3802547],[119.1589127,25.3724003],[119.1580429,25.3653145],[119.1628723,25.3609695],[119.1618881,25.3566437],[119.170372,25.3592682],[119.1736526,25.359127],[119.1787491,25.3550014],[119.1804199,25.3530903],[119.1791077,25.3471699],[119.183403,25.3421612],[119.1936188,25.3442497],[119.2040329,25.3548317],[119.2036438,25.3619728],[119.2046127,25.365839],[119.2064667,25.3678265],[119.2157211,25.3607616],[119.2101517,25.3508892],[119.2176132,25.3386154],[119.2164078,25.330162],[119.2201004,25.3281651],[119.2211227,25.3184681],[119.2271805,25.3136082],[119.2281036,25.3117294],[119.2272568,25.3103848],[119.2121735,25.3117294],[119.2061462,25.3078518],[119.1956406,25.3099155],[119.1869125,25.3073044],[119.184433,25.3032722],[119.1875381,25.2900391],[119.195282,25.2883263],[119.196701,25.2864246],[119.1948471,25.2800694],[119.1964798,25.2772427],[119.2002106,25.2761612],[119.2075882,25.2673378],[119.2123337,25.2662144],[119.2167511,25.2637253],[119.2211914,25.2644711],[119.2252426,25.2665749],[119.2266693,25.2697315],[119.2251892,25.2849636],[119.2263565,25.2881317],[119.2417679,25.2927494],[119.2475662,25.2973232],[119.2470169,25.3012543],[119.2420425,25.3028488],[119.2421265,25.3044548],[119.2474823,25.3053703],[119.2496796,25.3087234],[119.2506866,25.3135071],[119.2475128,25.3203106],[119.2485809,25.3216419],[119.2484665,25.3244057],[119.2463684,25.3277149],[119.2458191,25.3316441],[119.274231,25.3140888],[119.2844772,25.3166275],[119.2870331,25.321804],[119.2850189,25.3269482],[119.2851715,25.3299294],[119.2915268,25.3257427],[119.2974396,25.3178997],[119.2965927,25.3064442],[119.3140106,25.2964859],[119.3285599,25.2896385],[119.3300934,25.2803764],[119.3382034,25.2758827],[119.342453,25.2750053],[119.3491364,25.2772388],[119.349617,25.2721596],[119.3541336,25.2712708],[119.3663177,25.2723408],[119.3687668,25.270853],[119.3692093,25.2696838],[119.3583221,25.2598228],[119.362709,25.2520428],[119.3602829,25.2491627],[119.3580322,25.2543201],[119.3563309,25.2555447],[119.3508072,25.2516518],[119.3362732,25.2490768],[119.3267288,25.2451077],[119.3267593,25.2412205],[119.3245392,25.2374115],[119.3127518,25.243906],[119.3071823,25.2436905],[119.2954178,25.2409897],[119.2959671,25.2467117],[119.2881775,25.2475128],[119.2798767,25.2435093],[119.2794495,25.2400799],[119.2727814,25.2371731],[119.283493,25.2350769],[119.2853928,25.2329254],[119.2866516,25.2183895],[119.2909088,25.2032623],[119.2943573,25.2015038],[119.3013916,25.2007351],[119.2966003,25.1912918],[119.2920837,25.1917191],[119.2862091,25.1905975],[119.2780075,25.1836014],[119.2739563,25.173666],[119.2659073,25.1744766],[119.266922,25.1792603],[119.2639008,25.1842175],[119.2604294,25.1855183],[119.2493591,25.1862316],[119.2418976,25.1883945],[119.2345276,25.1923923],[119.2136612,25.1893902],[119.2129288,25.1898823],[119.213768,25.1914539],[119.2176514,25.1933537],[119.2260666,25.194828],[119.2247391,25.1985645],[119.2168732,25.1977558],[119.2032394,25.187479],[119.2004471,25.1842899],[119.1936035,25.1814556],[119.1777573,25.1838169],[119.1701202,25.1873627],[119.1623535,25.1934433],[119.1609879,25.1964874],[119.1611023,25.2036076],[119.1493683,25.211237],[119.147377,25.2168369],[119.1493073,25.2199726],[119.1513519,25.2203445],[119.1548615,25.2247906],[119.1586227,25.2241707],[119.1629028,25.2288132],[119.16642,25.2309132],[119.1663437,25.2332211],[119.1636505,25.2355251],[119.1523132,25.242424],[119.1507263,25.2485981],[119.1500168,25.2583237],[119.1471786,25.2613792],[119.1373291,25.2663517],[119.1362915,25.2668419],[119.1361389,25.2654076],[119.1294937,25.2619705],[119.1287689,25.2604027],[119.1272202,25.2570477],[119.127037,25.2557526],[119.1259918,25.2480907],[119.1243591,25.2458611],[119.1217804,25.2448215],[119.1129303,25.2447395],[119.1112823,25.2420521],[119.1144409,25.2396183],[119.1156235,25.2331333],[119.1182709,25.2304916],[119.1222305,25.2289448],[119.123642,25.2268162],[119.1143036,25.2219276],[119.1059036,25.2158489],[119.1053391,25.2147255],[119.1096573,25.2104034],[119.1015167,25.1992588],[119.0940323,25.2009563],[119.0894394,25.2000027],[119.0865631,25.1980553],[119.0848236,25.1935329],[119.0855103,25.1822433],[119.0905304,25.1767426],[119.0989304,25.1731682],[119.1047211,25.1726933],[119.1041107,25.1805325],[119.1066284,25.1804256],[119.1104126,25.1754379],[119.1138611,25.1736832],[119.1182632,25.1757927],[119.1261063,25.17132],[119.1358032,25.1681499],[119.1376801,25.1604843],[119.1371002,25.1591301],[119.1305923,25.160099],[119.1287537,25.1585674],[119.1288071,25.1548882],[119.1383591,25.1491947],[119.1433563,25.1482887],[119.1461563,25.1486301],[119.1474915,25.1499519],[119.1449509,25.1546574],[119.1510315,25.1550865],[119.1552582,25.1537552],[119.1578903,25.1508846],[119.1591797,25.1464634],[119.1574326,25.1419411],[119.1532822,25.1398201],[119.1568222,25.1300163],[119.1466064,25.127697],[119.1428604,25.1285458],[119.1467133,25.1348152],[119.1453323,25.1374035],[119.1388779,25.1395187],[119.1315613,25.1396027],[119.1267014,25.1384296],[119.1178436,25.1328335],[119.1100922,25.1393681],[119.1061935,25.1372356],[119.1047287,25.1481018],[119.1030579,25.1500111],[119.0957336,25.1399803],[119.0942917,25.1315365],[119.0994797,25.1292477],[119.1099472,25.1315613],[119.1071396,25.121109],[119.1024399,25.1130352],[119.0984802,25.1145821],[119.0957336,25.1250401],[119.0737534,25.1347065],[119.0731201,25.1370316],[119.0820236,25.1384926],[119.0839767,25.1420879],[119.0846786,25.1459656],[119.0836868,25.1515217],[119.0848007,25.158371],[119.0832214,25.1621151],[119.0809402,25.1619816],[119.0759964,25.1592026],[119.0606003,25.1591644],[119.0473328,25.1562767],[119.0469513,25.1537666],[119.0513077,25.1400223],[119.0541534,25.1364555],[119.0493469,25.136198],[119.0478897,25.1374073],[119.0468369,25.1317062],[119.0572968,25.1186256],[119.0577087,25.1167698],[119.0566788,25.116354],[119.0478287,25.1210938],[119.0371399,25.1243019],[119.0357132,25.1259708],[119.0376434,25.1293373],[119.0244904,25.1388531],[119.024292,25.1400108],[119.0281219,25.1407681],[119.0305862,25.1397457],[119.0389404,25.1400852],[119.0407867,25.1418438],[119.0410309,25.146431],[119.0322266,25.152317],[119.0245438,25.1599941],[119.0320663,25.1741562],[119.0376434,25.1693268],[119.050827,25.1655521],[119.0561371,25.1657887],[119.0616302,25.1694641],[119.0638885,25.1741943],[119.0672989,25.1866913],[119.0724182,25.1931381],[119.0702362,25.1998959],[119.0722427,25.2094631],[119.0752563,25.2141628],[119.0796432,25.2160454],[119.0815125,25.2180347],[119.0820923,25.2244453],[119.0806427,25.230711],[119.0742188,25.2385693],[119.0729904,25.2443447],[119.0736084,25.2470284],[119.0733032,25.2503281],[119.0718765,25.2522278],[119.069809,25.2513943],[119.0675507,25.246664],[119.0487671,25.2401028],[119.0481262,25.2424278],[119.0505829,25.2457733],[119.0496521,25.2474213],[119.0464401,25.2489338],[119.0272827,25.2345715],[119.0236969,25.2338028],[119.0154495,25.2405834],[119.0122223,25.2365818],[119.0075226,25.2335606],[119.0068893,25.23106],[119.0092468,25.2277431],[119.0084229,25.2261696],[119.0008621,25.2267151],[118.9983673,25.2224522],[118.9973297,25.2167511],[118.9936066,25.2129993],[118.9920883,25.2128334],[118.9899292,25.2152214],[118.9944992,25.2207756],[118.9944077,25.2239971],[118.9823227,25.2247314],[118.9770889,25.226099],[118.9757919,25.2305183],[118.9797363,25.2388592],[118.983429,25.2419224],[118.9918213,25.2429504],[118.993187,25.2451916],[118.9874878,25.2573795],[118.9922791,25.2622356],[118.9912872,25.2677937],[118.9952774,25.2667084],[118.9963226,25.2622967],[118.9993973,25.2580318],[119.0031586,25.2574158],[119.0155563,25.2578163],[119.0239563,25.2641277],[119.0348129,25.2586174],[119.0401764,25.2599983],[119.0512772,25.2645893],[119.0558929,25.2758865],[119.0651169,25.2885952],[119.0634079,25.289587],[119.0585175,25.2879543],[119.0503082,25.2804871],[119.04673,25.2797184],[119.0435028,25.2807732],[119.0445099,25.290844],[119.0407333,25.2960587],[119.0375366,25.2929745],[119.0321884,25.2819386],[119.029213,25.2781563],[119.0265198,25.284935],[119.0188828,25.288702],[119.0146332,25.2948551],[119.0074692,25.2880306],[119.0046768,25.2879181],[118.9960327,25.2917271],[118.9924393,25.295784],[118.9888306,25.2943249],[118.983551,25.2950058],[118.9733963,25.2889938],[118.9712219,25.2858658],[118.9678497,25.2841682],[118.9654236,25.2854061],[118.9572525,25.2846069],[118.9422302,25.2771854],[118.9391708,25.2766247],[118.929657,25.2783947],[118.927269,25.2761955],[118.9246826,25.2698689],[118.923378,25.2690029],[118.9154434,25.2670307],[118.9030533,25.2668514],[118.9010086,25.2658615],[118.8960571,25.2634621],[118.8866272,25.2567234],[118.8785477,25.2565956],[118.8777618,25.2553768],[118.8718872,25.2497444],[118.866478,25.2474384],[118.8710938,25.2474232],[118.8762207,25.2452011],[118.8770218,25.2452431],[118.8985138,25.2463551],[118.9088211,25.245472],[118.9123077,25.2444077],[118.9139633,25.2420425],[118.9146194,25.2348919],[118.9235992,25.2377396],[118.9271011,25.2318478],[118.9261475,25.2279816],[118.9352875,25.2287521],[118.9348526,25.2250938],[118.928421,25.2228317],[118.9211121,25.2180767],[118.9136276,25.2045975],[118.9109268,25.2010307],[118.9059601,25.1975594],[118.9133301,25.1933479],[118.9173813,25.1936398],[118.9301834,25.2020741],[118.9341812,25.2065048],[118.9347763,25.2136059],[118.9387665,25.2122917],[118.9433365,25.2077351],[118.9458313,25.2071724],[118.94841,25.2082157],[118.9502869,25.2053795],[118.9537201,25.2031689],[118.96035,25.2045021],[118.9629517,25.2009468],[118.9669037,25.1989441],[118.9594269,25.1912098],[118.9601135,25.1895733],[118.9777832,25.1994114],[118.9739227,25.1814117],[118.9766922,25.1725674],[118.9761276,25.171442],[118.973587,25.1710873],[118.9701309,25.1726112],[118.9655533,25.1718826],[118.9562073,25.1669846],[118.9529572,25.1625233],[118.9447632,25.1598759],[118.9407272,25.1501598],[118.9345169,25.1469688],[118.9445267,25.1297798],[118.9479599,25.1277981],[118.9534836,25.1271095],[118.9570618,25.1281109],[118.9604034,25.1242943],[118.9684219,25.1230412],[118.9693375,25.1211643],[118.9502029,25.1169052],[118.9461594,25.1117859],[118.9431763,25.1128292],[118.9382019,25.109127],[118.9347076,25.1150188],[118.929512,25.1120167],[118.9114227,25.1125336],[118.9104767,25.1104164],[118.912117,25.1065369],[118.9024963,25.1066666],[118.8996964,25.1067028],[118.8962479,25.107872],[118.8962021,25.1104507],[118.8952103,25.1115074],[118.8921127,25.1110287],[118.890358,25.1053333],[118.8881912,25.1037674],[118.8835831,25.1017284],[118.8803864,25.1040287],[118.8780594,25.1074696],[118.8785782,25.1118431],[118.8746338,25.1094494],[118.8695679,25.1091957],[118.8515625,25.0970631],[118.8529587,25.0947075],[118.8470612,25.087595],[118.848053,25.0846882],[118.8492584,25.0849781],[118.8628235,25.0795975],[118.8650131,25.0728436],[118.8692703,25.066925],[118.8708801,25.0585842],[118.8723297,25.0585785],[118.8730927,25.0585747],[118.8794174,25.0584927],[118.8962173,25.0427418],[118.9003906,25.038826],[118.90345,25.0318985],[118.9055405,25.0271606],[118.9102173,25.0275536],[118.9274597,25.024313],[118.9307632,25.0248661],[118.9387894,25.0291309],[118.9405365,25.0288277],[118.940712,25.0272121],[118.9367218,25.0230103],[118.927597,25.0169544],[118.928421,25.0161934],[118.9368668,25.0108242],[118.9493332,25.0077801],[118.967453,25.0120811],[118.9764328,25.0100994],[118.9784775,25.0107021],[118.9803314,25.0124645],[118.9774323,25.0201683],[118.9882812,25.0302887],[118.9894485,25.0334568],[118.9876938,25.0385857],[118.9836121,25.0428925],[118.9832535,25.0456657],[118.98983,25.0463104],[118.9988174,25.0544376],[119.0057831,25.0573635],[119.0118484,25.052742],[119.01371,25.0496769],[119.0093994,25.0446739],[119.0039673,25.0365257],[119.0011063,25.0345764],[118.9976273,25.0099907],[118.9951172,25.0061302],[118.990921,25.005209],[118.9879303,25.0068378],[118.9861603,25.0080833],[118.9835434,25.0061245],[118.9798279,25.0023727],[118.9770508,24.9921474],[118.9826965,24.979044],[118.9884262,24.972599],[118.9928513,24.9703445],[118.9996109,24.9693718],[118.9999084,24.9652233],[119.0027466,24.9614277],[119.0064697,24.9603539],[119.0167389,24.9640579],[119.0202866,24.9643688],[119.0221863,24.9622211],[119.0068436,24.9476967],[118.9997025,24.950985],[118.9934692,24.9523945],[118.9857864,24.9449005],[118.9835434,24.9452267],[118.9849167,24.9527512],[118.9837189,24.9539509],[118.978157,24.9534931],[118.9813538,24.9620934],[118.9802399,24.965126],[118.9778671,24.9679852],[118.9702377,24.9717484],[118.9679871,24.9720726],[118.965332,24.9694252],[118.9605179,24.9689369],[118.9512634,24.9702415],[118.9449005,24.9640713],[118.9423828,24.9692307],[118.9403534,24.9688549],[118.9350967,24.9647064],[118.9284363,24.9675102],[118.9219437,24.9636421],[118.9196472,24.9630489],[118.9179535,24.9642677],[118.9146729,24.9644032],[118.9136124,24.9632969],[118.9087067,24.9506302],[118.9043732,24.9496613],[118.9023972,24.9506607],[118.8995819,24.9445724],[118.8975525,24.9441967],[118.8947601,24.9465981],[118.8925171,24.9494591],[118.8871536,24.9490395],[118.8899689,24.943819],[118.8863068,24.9407864],[118.8896179,24.9407368],[118.9067078,24.9408321],[118.9102631,24.9360886],[118.9079666,24.9306679],[118.9081573,24.9242268],[118.9099274,24.919096],[118.9142838,24.9154701],[118.919632,24.9166279],[118.9208298,24.9103737],[118.9236526,24.9061203],[118.9268036,24.9036922],[118.9355164,24.9067783],[118.9350967,24.9033489],[118.9414673,24.9046936],[118.9390869,24.897438],[118.9415283,24.8957291],[118.9518967,24.8916206],[118.9569931,24.8925571],[118.957077,24.8946209],[118.9547119,24.8974781],[118.9702606,24.9011974],[118.9802933,24.9000893],[118.9781799,24.8936672],[118.9769669,24.8925724],[118.9754333,24.8915234],[118.9729233,24.890913],[118.9732437,24.8893032],[118.9742432,24.8883343],[118.9763184,24.8884754],[118.9781494,24.8891754],[118.9803467,24.8907642],[118.9823532,24.8896618],[118.9815063,24.8872643],[118.9770279,24.8852863],[118.970108,24.8828182],[118.9667206,24.8857174],[118.9598236,24.883707],[118.9575806,24.8842602],[118.9573822,24.8801327],[118.9505081,24.8838654],[118.9460068,24.8845119],[118.934433,24.8795795],[118.9287262,24.8788395],[118.9224472,24.8818111],[118.9164505,24.887804],[118.9017105,24.8851967],[118.897438,24.8853722],[118.8993912,24.8891983],[118.898613,24.8938255],[118.8892212,24.8976593],[118.881897,24.8972721],[118.8824768,24.9039116],[118.8737183,24.9051914],[118.8656235,24.9043732],[118.8642731,24.9025917],[118.8677063,24.9008408],[118.8730316,24.9013119],[118.876503,24.9002514],[118.8759079,24.8984375],[118.8567963,24.8939342],[118.8517838,24.8890839],[118.8539124,24.8864689],[118.8403168,24.881279],[118.8324127,24.8843594],[118.8354721,24.89044],[118.831398,24.8947411],[118.8285904,24.9045067],[118.8261337,24.9055271],[118.8222275,24.9031582],[118.8171768,24.9029026],[118.8090134,24.9059925],[118.8043365,24.9029636],[118.7995529,24.897644],[118.7948227,24.8958263],[118.7926102,24.8949375],[118.7920303,24.8933525],[118.7926407,24.8903408],[118.7895737,24.8840313],[118.7899704,24.8819466],[118.7925034,24.8820744],[118.7980499,24.8770237],[118.8087616,24.8798065],[118.8123016,24.8801231],[118.8129883,24.8787155],[118.8121338,24.8766823],[118.7945709,24.8727989],[118.79245,24.8705864],[118.790947,24.865591],[118.7846832,24.8610191],[118.781723,24.8622875],[118.7766876,24.8622608],[118.7692337,24.8591156],[118.7514572,24.8614388],[118.7484131,24.8606434],[118.7402267,24.8529282],[118.7397385,24.8584633],[118.7368774,24.8565102],[118.7298203,24.8563328],[118.72715,24.8585072],[118.716629,24.8490486],[118.71064,24.8554916],[118.704567,24.8550434],[118.6989517,24.853199],[118.6966095,24.8569698],[118.7003174,24.8662415],[118.7007904,24.8708191],[118.6952133,24.8859768],[118.6988602,24.8885899],[118.7160034,24.8941116],[118.7231064,24.8899193],[118.7355194,24.8862057],[118.7386475,24.8883781],[118.7361908,24.8949108],[118.7376633,24.8941631],[118.7447662,24.9005413],[118.743927,24.9148216],[118.7404175,24.9149628],[118.740242,24.9165783],[118.7415695,24.9179058],[118.7399597,24.9211864],[118.7344818,24.922554],[118.7323914,24.92103],[118.7315598,24.908884],[118.7216873,24.9078999],[118.7180481,24.9108028],[118.7209778,24.9141331],[118.7229996,24.9248524],[118.728447,24.9280815],[118.7242584,24.9300861],[118.7245636,24.9417953],[118.7259979,24.9454136],[118.7169571,24.9462337],[118.7173233,24.932663],[118.7120895,24.9232197],[118.7121964,24.920229],[118.7159271,24.9191608],[118.7094116,24.9093094],[118.7105331,24.9062786],[118.6987686,24.9026108],[118.6904831,24.8976555],[118.6904297,24.9020233],[118.6883926,24.906929],[118.6901398,24.9172001],[118.68853,24.9204807],[118.6960373,24.9302921],[118.6972809,24.93507],[118.6948166,24.9524002],[118.6883698,24.9597816],[118.6737823,24.9656448],[118.6658936,24.9746895],[118.6660614,24.9783592],[118.6639175,24.9789829],[118.6568909,24.98176],[118.6570969,24.9813499],[118.6624298,24.9709187],[118.6657562,24.9611378],[118.6739197,24.9525414],[118.6706085,24.9464684],[118.6690674,24.9458408],[118.6662369,24.9392891],[118.6622467,24.9403648],[118.6615524,24.9415417],[118.6592178,24.9400253],[118.6601562,24.9333248],[118.6593704,24.9326668],[118.6480179,24.9377098],[118.6440582,24.9337311],[118.6423874,24.9303493],[118.6446533,24.9249763],[118.6508636,24.9231224],[118.6507874,24.9109459],[118.655838,24.9056911],[118.6634674,24.9019432],[118.6723022,24.9022827],[118.6749268,24.8991909],[118.6754684,24.8945751],[118.6802673,24.8895588],[118.6740417,24.8750992],[118.6677628,24.869833],[118.6642227,24.8642292],[118.653923,24.8593521],[118.640213,24.8492489],[118.6377411,24.8473511],[118.6337128,24.8472805],[118.6311569,24.8411827],[118.6246567,24.8368359],[118.6240921,24.8354797],[118.6257019,24.8342648],[118.6277695,24.8332691],[118.6300964,24.8295002],[118.6316223,24.8188705],[118.6302872,24.8173141],[118.6240463,24.8182487],[118.6201324,24.8154163],[118.6237869,24.8129749],[118.6348267,24.8120804],[118.6370468,24.8110752],[118.6439819,24.8032188],[118.6492767,24.7929134],[118.6533279,24.7931976],[118.6624374,24.7861576],[118.6630402,24.7856903],[118.6802597,24.7879963],[118.681572,24.789093],[118.6811371,24.7960033],[118.6845169,24.8034515],[118.6925964,24.7989941],[118.6980667,24.7973976],[118.7071533,24.7979546],[118.7126083,24.8014145],[118.7130203,24.8101292],[118.7154465,24.8134785],[118.7223129,24.8148117],[118.7260284,24.8137436],[118.7165375,24.8047028],[118.7161789,24.8024197],[118.7241287,24.7844086],[118.7269592,24.7803898],[118.7323227,24.7767277],[118.7439423,24.7723541],[118.7473373,24.7804909],[118.748909,24.7815762],[118.7574463,24.7812328],[118.757843,24.7789192],[118.7602463,24.7765236],[118.7666779,24.7741966],[118.7684479,24.7743549],[118.7666321,24.7785645],[118.7817535,24.7791042],[118.7767105,24.7682781],[118.7766113,24.7662125],[118.7806931,24.7621422],[118.77388,24.756443],[118.7726364,24.751667],[118.765152,24.7476044],[118.7625122,24.7449532],[118.7606812,24.733078],[118.7578964,24.7327309],[118.7542038,24.7342567],[118.7501602,24.7286758],[118.7475967,24.7331448],[118.7465973,24.7331848],[118.7400818,24.7283916],[118.7352219,24.7224503],[118.7365265,24.7119904],[118.7322998,24.7075653],[118.7332382,24.7008629],[118.7235718,24.698494],[118.7181396,24.6899796],[118.7214432,24.685482],[118.7147598,24.6823025],[118.7120132,24.6773567],[118.7096405,24.680439],[118.7074127,24.6812172],[118.7001724,24.6716251],[118.6921616,24.6724052],[118.6825027,24.6755466],[118.6801605,24.6790867],[118.6820221,24.6813087],[118.6808395,24.6829643],[118.6790771,24.682806],[118.6716766,24.6966553],[118.6610794,24.6904125],[118.6581192,24.6871567],[118.646759,24.6746655],[118.6445312,24.6699276],[118.6370468,24.6658573],[118.6382217,24.6639729],[118.64608,24.6655006],[118.64431,24.6598263],[118.6444092,24.6458073],[118.646843,24.6388168],[118.6540833,24.6268139],[118.6528397,24.6238232],[118.6523438,24.622057],[118.6563492,24.6216698],[118.6662064,24.6231155],[118.6693497,24.6310349],[118.6735229,24.6343136],[118.6750107,24.6337967],[118.6761017,24.625021],[118.6798096,24.6237259],[118.6807327,24.621851],[118.6819687,24.6107712],[118.6791763,24.6101952],[118.6762619,24.6123772],[118.6713715,24.6045303],[118.6698914,24.5997639],[118.6739273,24.5947781],[118.6708374,24.5877781],[118.6668701,24.5835705],[118.6565094,24.5823727],[118.6540527,24.578104],[118.6488037,24.5732574],[118.6470871,24.5689602],[118.6511307,24.5639744],[118.6517563,24.5614223],[118.6504364,24.5600948],[118.6486588,24.5594769],[118.6437302,24.5615101],[118.6414185,24.5657368],[118.6366196,24.565239],[118.6311035,24.5599403],[118.6293488,24.5547256],[118.6335983,24.5543289],[118.6345673,24.5536022],[118.6334991,24.5522652],[118.6266022,24.5497799],[118.623703,24.5521908],[118.620842,24.5500069],[118.6192169,24.5475426],[118.6197128,24.5420094],[118.6176682,24.5411701],[118.6137314,24.5429344],[118.6078873,24.5360413],[118.6055679,24.5294685],[118.5859299,24.5336857],[118.5831375,24.5331059],[118.5789719,24.5298214],[118.5712814,24.5156479],[118.5705032,24.5149899],[118.568573,24.516674],[118.569603,24.52812],[118.5683517,24.5336838],[118.5723267,24.538353],[118.5735779,24.5380745],[118.572937,24.5408554],[118.5706863,24.5462284],[118.5551987,24.5534935],[118.5542831,24.5553684],[118.5550766,24.5564861],[118.5588837,24.5570278],[118.5716171,24.5503273],[118.5750427,24.5589237],[118.5854874,24.5621929],[118.5839691,24.5673065],[118.5842438,24.5732689],[118.5917282,24.5775719],[118.5838928,24.5820141],[118.5815964,24.5811844],[118.5782318,24.5845337],[118.5719376,24.5843201],[118.5697327,24.5853233],[118.5674591,24.57967],[118.5645218,24.5813923],[118.5586395,24.5901222],[118.552803,24.5940247],[118.5458298,24.5956745],[118.5441971,24.5982647],[118.5432205,24.6045055],[118.5356598,24.609396],[118.538063,24.6122894],[118.5366211,24.6139526],[118.5177689,24.6137638],[118.5163574,24.6158848],[118.5166092,24.6213894],[118.5141983,24.6204643],[118.5093689,24.6168442],[118.4977112,24.6202812],[118.4985962,24.6232338],[118.4970016,24.6267414],[118.4943314,24.628912],[118.4869766,24.6330986],[118.4775391,24.6353016],[118.4732666,24.6354637],[118.4613266,24.6327038],[118.4575729,24.6328487],[118.4436035,24.6294765],[118.4428864,24.6304207],[118.4429932,24.6327152],[118.4545593,24.6384773],[118.4574966,24.6424999],[118.4574585,24.6470966],[118.4515686,24.6558228],[118.4512787,24.660429],[118.4538803,24.6623974],[118.4539566,24.6642323],[118.4510269,24.6659527],[118.4487534,24.6658096],[118.4496613,24.674736],[118.4467468,24.6884022],[118.4488678,24.6961327],[118.4576569,24.707056],[118.4576416,24.711153],[118.4561996,24.7137737],[118.4439316,24.7036724],[118.4418869,24.7030621],[118.4404068,24.7038078],[118.4405212,24.7173595],[118.4325714,24.7307568],[118.4275131,24.7355442],[118.4260025,24.7356167],[118.425621,24.7356167],[118.4336166,24.7206078],[118.4337769,24.7183037],[118.4302063,24.7117767],[118.4295273,24.7078972],[118.4297714,24.6908855],[118.4244995,24.6798286],[118.4191895,24.6848545],[118.4164734,24.6858768],[118.4125137,24.6844673],[118.4138794,24.6840286],[118.421463,24.6794834],[118.4240189,24.6747913],[118.4244385,24.6729374],[118.4233932,24.6718292],[118.414917,24.6680145],[118.4224319,24.6562424],[118.4226227,24.649725],[118.4237137,24.6453953],[118.4196167,24.6439419],[118.4254532,24.6393566],[118.431633,24.6315403],[118.4325027,24.6285191],[118.4162369,24.6079998],[118.409462,24.6080265],[118.3971863,24.6034374],[118.3916931,24.6057873],[118.3869629,24.6047421],[118.3838425,24.602562],[118.3766327,24.5929546],[118.3698273,24.5867786],[118.3673172,24.5868721],[118.3670273,24.591938],[118.3646317,24.594326],[118.360817,24.5933189],[118.3582077,24.5911198],[118.3559418,24.5909748],[118.3527527,24.5927029],[118.3495789,24.5891457],[118.3472824,24.5883141],[118.344368,24.5904903],[118.3427963,24.5891705],[118.3383408,24.588438],[118.3382416,24.5884209],[118.3269272,24.5883846],[118.3205338,24.5911503],[118.316658,24.5887661],[118.310463,24.5906048],[118.298317,24.6002464],[118.2866516,24.5976925],[118.2758408,24.5989361],[118.2767181,24.5981121],[118.2787476,24.5949993],[118.2857666,24.594738],[118.2866974,24.5930958],[118.2853622,24.5798206],[118.2836838,24.5757465],[118.2818527,24.5742073],[118.2752914,24.5735302],[118.2710266,24.5716209],[118.2639618,24.5727997],[118.2586823,24.5670223],[118.2556229,24.5602417],[118.2507706,24.5583534],[118.2463303,24.5543804],[118.2435074,24.5471344],[118.2421799,24.5455742],[118.2386093,24.5443268],[118.2277832,24.5435753],[118.2220535,24.5447044],[118.2223663,24.5463009],[118.2247086,24.5480518],[118.2245102,24.5492096],[118.2183075,24.5510426],[118.2181091,24.5521984],[118.2257767,24.5553646],[118.228447,24.5591717],[118.2259064,24.5626602],[118.2244568,24.5597782],[118.2184982,24.5554008],[118.2151566,24.5596581],[118.2114716,24.5614014],[118.2086792,24.5605831],[118.2053833,24.5655289],[118.2019424,24.5674915],[118.1894836,24.5697842],[118.186058,24.5719757],[118.1883774,24.5732689],[118.1913605,24.5784454],[118.2017365,24.586338],[118.1927185,24.5866661],[118.1893997,24.5854073],[118.1893234,24.5893154],[118.1917877,24.5942802],[118.1895065,24.5971203],[118.1874771,24.6052341],[118.1899567,24.6099682],[118.1989288,24.6082649],[118.1988068,24.6114845],[118.2133636,24.6166973],[118.2186127,24.6103039],[118.2249222,24.6052475],[118.2274017,24.6044674],[118.2276535,24.6102009],[118.225029,24.6192589],[118.2268677,24.6270008],[118.2254333,24.6284313],[118.220871,24.6276798],[118.21138,24.6232033],[118.212677,24.6302776],[118.2118073,24.6332951],[118.2017822,24.6279163],[118.2016373,24.6247063],[118.1997986,24.6227055],[118.1981277,24.6248341],[118.1922302,24.6278057],[118.1860886,24.6252728],[118.1805496,24.6250134],[118.177597,24.6264992],[118.1775894,24.6322422],[118.187912,24.6385307],[118.1912766,24.6349621],[118.1957932,24.6462841],[118.1988373,24.6470928],[118.2035828,24.6462307],[118.2027512,24.6503963],[118.2036133,24.6528912],[118.2105865,24.6574612],[118.2028427,24.6584339],[118.1962814,24.657753],[118.1940384,24.6582928],[118.1906967,24.6623211],[118.1816711,24.662878],[118.1888733,24.6667519],[118.1892929,24.6706429],[118.187767,24.6762104],[118.1919785,24.6873875],[118.1913376,24.6889477],[118.1867371,24.6872749],[118.1809769,24.6879444],[118.1780472,24.689888],[118.1725922,24.6974373],[118.1710434,24.6973133],[118.1690979,24.6863079],[118.1662064,24.683424],[118.1637726,24.6851215],[118.1646271,24.6933613],[118.1624069,24.6943607],[118.1619568,24.6935368],[118.1597672,24.6857262],[118.1668472,24.6631851],[118.1652908,24.6618633],[118.1572037,24.660778],[118.1519623,24.6676292],[118.1490173,24.6695728],[118.1465836,24.6668892],[118.1458511,24.665781],[118.1478882,24.6604252],[118.1470337,24.6581573],[118.1427002,24.6567059],[118.1398468,24.6607132],[118.136673,24.6626663],[118.1346512,24.662508],[118.1338272,24.6612263],[118.1402893,24.6533451],[118.1461563,24.6554317],[118.1489029,24.6548729],[118.140213,24.6395645],[118.1401367,24.6262436],[118.1353226,24.6250381],[118.1319504,24.6226311],[118.1282806,24.6131153],[118.1191025,24.6040268],[118.1180115,24.6009903],[118.1173935,24.5992622],[118.1128769,24.5936813],[118.1100998,24.593092],[118.1072083,24.5959511],[118.1006393,24.5892944],[118.099762,24.5803661],[118.106163,24.5652065],[118.1103973,24.5586224],[118.11689,24.5517273],[118.1248703,24.5505219],[118.1294327,24.5515079],[118.1270599,24.5428638],[118.1290817,24.5372772],[118.1335907,24.5371151],[118.1404572,24.5391636],[118.1489868,24.5448303],[118.1517715,24.5454197],[118.1577301,24.5438271],[118.1601486,24.5416718],[118.1658173,24.5274525],[118.1655121,24.5260849],[118.1606216,24.5232754],[118.1582336,24.5201473],[118.15522,24.5109673],[118.1557236,24.5097771],[118.1611023,24.5168266],[118.1716232,24.5219593],[118.1735764,24.5267124],[118.1803131,24.5315228],[118.1898727,24.5318642],[118.1925125,24.5292416],[118.1952972,24.4889374],[118.1914597,24.4872398],[118.1839218,24.4870529],[118.1785507,24.4847221],[118.1750488,24.4791069],[118.1748428,24.475399],[118.1741333,24.4635181],[118.1718826,24.4576263],[118.1515884,24.4409027],[118.1469574,24.4383125],[118.1435318,24.4343014],[118.1376495,24.431757],[118.1293716,24.4258518],[118.125,24.4292259],[118.1163406,24.4320641],[118.0882416,24.4378929],[118.0828323,24.4406128],[118.0777512,24.4511299],[118.0682068,24.4629555],[118.0668335,24.4657612],[118.0676727,24.4677982],[118.0717926,24.4704094],[118.0767822,24.4697723],[118.0808411,24.4707756],[118.0822067,24.473484],[118.0861664,24.4721947],[118.090477,24.4731884],[118.1067734,24.4847813],[118.1103363,24.4800606],[118.1123428,24.4797573],[118.1109085,24.4876194],[118.1191864,24.4935265],[118.1218414,24.4968758],[118.1199036,24.4983253],[118.1104431,24.5002708],[118.1053238,24.4979286],[118.0998688,24.4935284],[118.0973129,24.4924698],[118.0945663,24.4930286],[118.0901489,24.4892807],[118.0858383,24.4823132],[118.0830078,24.4805775],[118.0735016,24.4813747],[118.0740814,24.5011101],[118.0804672,24.5038681],[118.0869827,24.5093803],[118.0891876,24.5141258],[118.0872879,24.5167198],[118.0947037,24.5258732],[118.0942612,24.5272675],[118.0917969,24.5285034],[118.0874786,24.5272789],[118.0857925,24.5289478],[118.0864868,24.5335178],[118.0891113,24.5361805],[118.0956726,24.5368652],[118.1013412,24.5403385],[118.1036606,24.5395756],[118.1055984,24.5401859],[118.1062012,24.5424614],[118.0943985,24.554369],[118.0895081,24.5635033],[118.0851593,24.567564],[118.055603,24.5693016],[118.054657,24.56497],[118.0504303,24.5598373],[118.0476837,24.5601635],[118.0435333,24.5630665],[118.0391769,24.5609226],[118.0348663,24.5661297],[118.0287323,24.569561],[118.0282135,24.5688915],[118.034523,24.5578709],[118.032608,24.5358868],[118.0390396,24.5335922],[118.0472336,24.5372086],[118.0522614,24.531517],[118.0584335,24.5290012],[118.060997,24.5245457],[118.0563126,24.5203476],[118.0567093,24.5178051],[118.0601578,24.5163059],[118.0667038,24.5165329],[118.0671234,24.5146809],[118.0644684,24.5053558],[118.0592728,24.5011749],[118.0509262,24.4998627],[118.0445328,24.4968739],[118.0410919,24.4986019],[118.0392532,24.4963703],[118.0443573,24.4927444],[118.0416031,24.4866409],[118.0353928,24.4820347],[118.0331192,24.4818859],[118.0324936,24.4848938],[118.0335999,24.487381],[118.0321503,24.4947834],[118.0196228,24.4832802],[118.0123672,24.4897366],[118.0103531,24.4895782],[118.0109406,24.4856529],[118.0145187,24.4811611],[118.0144272,24.4790974],[118.0103912,24.4723492],[118.0155411,24.4694118],[118.0205536,24.4694633],[118.0267105,24.4726925],[118.0283432,24.4634476],[118.0346527,24.4581718],[118.0363922,24.4581108],[118.0418167,24.4618225],[118.042717,24.4594936],[118.0393066,24.4497375],[118.0350037,24.4487419],[118.0290222,24.4496403],[118.0237274,24.4491386],[118.0202637,24.456152],[118.0176773,24.4544048],[118.0063629,24.4536533],[118.0048676,24.4541664],[118.0008392,24.4598198],[117.9947662,24.4588833],[117.9773483,24.4622498],[117.9749985,24.4635506],[117.9706573,24.4643192],[117.9672318,24.4662781],[117.9552231,24.4671535],[117.9531631,24.4680576],[117.9426422,24.4726429],[117.9182816,24.4783096],[117.9110336,24.4843197],[117.9005432,24.4862709],[117.8825073,24.4871178],[117.8693008,24.4896374],[117.8642273,24.488203],[117.860321,24.4908619],[117.8510437,24.4911785],[117.8351135,24.4880428],[117.8264313,24.4844322],[117.815567,24.482502],[117.8094177,24.4794941],[117.8074188,24.4795609],[117.8001633,24.4864674],[117.7947464,24.4894047],[117.7912827,24.4969978],[117.7890167,24.4972744],[117.7838516,24.4918423],[117.781723,24.4896126],[117.7817001,24.4858894],[117.7798233,24.4831848],[117.7773132,24.4828815],[117.7753677,24.4801083],[117.7766037,24.4766159],[117.7891235,24.4707775],[117.8030014,24.4595032],[117.8078308,24.4571095],[117.8208771,24.4460297],[117.8255005,24.4390793],[117.8281479,24.435751],[117.8311462,24.4328194],[117.8510513,24.4286995],[117.8572998,24.4254074],[117.8673096,24.4212551],[117.8755569,24.4143124],[117.8880692,24.4074516],[117.8940125,24.4056396],[117.8963013,24.40625],[117.8979492,24.4036674],[117.897377,24.3896751],[117.9018478,24.3761997],[117.9038773,24.3782444],[117.9054718,24.3788319],[117.9035568,24.3876266],[117.9061737,24.3960342],[117.9080124,24.3982677],[117.923317,24.3969669],[117.9437866,24.3961124],[117.9789963,24.4047661],[117.9842606,24.404583],[117.9922638,24.3978691],[117.9937592,24.3978176],[117.9973907,24.4006767],[118.0042801,24.4096222],[118.0086899,24.4071712],[118.0103226,24.4101009],[118.0134201,24.4122887],[118.0267792,24.4138851],[118.0310898,24.4089088],[118.0491409,24.4147034],[118.0581512,24.4143848],[118.0617599,24.4105816],[118.06353,24.4109764],[118.0671463,24.4076328],[118.0656891,24.4026299],[118.0554428,24.39151],[118.0537491,24.3869762],[118.0523834,24.3780651],[118.0529785,24.3745975],[118.0563202,24.370575],[118.0554962,24.3689976],[118.0468216,24.3651695],[118.040657,24.3557396],[118.0256882,24.3514442],[118.0261078,24.3493614],[118.0330963,24.3488846],[118.0330582,24.3477383],[118.0249634,24.3457279],[118.0220795,24.3428421],[118.0175476,24.3363419],[118.0192871,24.33288],[118.0343704,24.3371258],[118.0429535,24.3384323],[118.0447006,24.3443413],[118.0493774,24.3483105],[118.0554123,24.3487854],[118.0558167,24.3526745],[118.0523224,24.3587723],[118.0541077,24.3596268],[118.0652771,24.3629074],[118.0680237,24.3506355],[118.0718918,24.3532524],[118.0754013,24.3531284],[118.0863724,24.3458462],[118.0836487,24.3526039],[118.0849762,24.3543949],[118.0932083,24.3593845],[118.0975037,24.3601494],[118.1006775,24.3579693],[118.1039963,24.3534851],[118.109993,24.3410969],[118.1107101,24.3403816],[118.1160278,24.3415699],[118.1169205,24.3390102],[118.1117401,24.3290882],[118.1150589,24.318634],[118.1167374,24.3169651],[118.1240005,24.3167038],[118.1289062,24.3142319],[118.1320038,24.3104439],[118.1259384,24.3033123],[118.1248932,24.2996502],[118.1308136,24.2824631],[118.1359024,24.2841167],[118.1376266,24.2835941],[118.1366806,24.2790356],[118.1392899,24.2754955],[118.1384125,24.272541],[118.1337204,24.268116],[118.1289215,24.2673702],[118.1186066,24.2721062],[118.1148071,24.2713242],[118.0984192,24.2627239],[118.0972366,24.2586308],[118.1001205,24.2495689],[118.0986633,24.2447987],[118.0969467,24.245779],[118.0908508,24.2556438],[118.087677,24.2575932],[118.0839233,24.2574997],[118.0773468,24.2623272],[118.0741272,24.2629013],[118.0718384,24.262064],[118.0758667,24.2568665],[118.0713425,24.2570095],[118.0609665,24.2477493],[118.056427,24.2412491],[118.0426331,24.2343903],[118.03965,24.2289829],[118.0398026,24.2207069],[118.0366135,24.2159977],[118.0343781,24.2167645],[118.0321198,24.2225876],[118.0290833,24.221777],[118.0248871,24.2175598],[118.0186462,24.2056065],[118.0162735,24.2046185],[118.016098,24.2045479],[118.0149536,24.2071152],[118.016983,24.2139339],[118.0163498,24.216713],[118.0108185,24.2221909],[118.0111465,24.2242451],[118.0179367,24.2326431],[118.0189514,24.2342453],[118.0203171,24.2400017],[118.006012,24.2331543],[118.000267,24.2276134],[118.000061,24.2225685],[117.9972229,24.2141705],[117.9985809,24.210907],[118.0007935,24.2096806],[118.0055618,24.2102013],[118.0104065,24.2125587],[118.0103226,24.2102642],[118.0002365,24.2025795],[117.9988785,24.1998711],[117.9980392,24.1916313],[117.9878769,24.1880836],[117.9856873,24.1837959],[117.9838333,24.1749039],[117.9844131,24.164547],[117.9793472,24.1633472],[117.9711838,24.1592674],[117.9681702,24.1593723],[117.9666367,24.170681],[117.9678802,24.176609],[117.9744263,24.189703],[117.9789276,24.1957474],[117.9822617,24.1976967],[117.9824371,24.202055],[117.9801025,24.2060413],[117.975647,24.2075748],[117.9681625,24.2080669],[117.9597931,24.205143],[117.9646606,24.2141609],[117.9648666,24.2192059],[117.961937,24.2271175],[117.9575272,24.2297974],[117.9454269,24.2214909],[117.9423218,24.2128696],[117.9407578,24.2113171],[117.9334106,24.2092743],[117.934761,24.1993504],[117.9220123,24.1935921],[117.9200974,24.1897526],[117.9139404,24.1922626],[117.9111862,24.1921272],[117.9130173,24.1881599],[117.9144974,24.1872883],[117.9292068,24.1797905],[117.935173,24.1784363],[117.9384384,24.1790123],[117.944519,24.1684647],[117.945961,24.167038],[117.9522476,24.167738],[117.9533463,24.1642532],[117.9449921,24.1555862],[117.9253235,24.1211281],[117.9202423,24.1254387],[117.9175034,24.1255341],[117.914917,24.123785],[117.9005814,24.0969486],[117.8970718,24.0782375],[117.8988266,24.0722046],[117.9009628,24.044342],[117.9050903,24.0414429],[117.9047775,24.0398464],[117.9004517,24.0381584],[117.8978577,24.0357208],[117.8949432,24.0314598],[117.894577,24.0287151],[117.8868332,24.0349541],[117.876297,24.0343952],[117.8765564,24.0408173],[117.8730316,24.0433369],[117.8696213,24.0412216],[117.8665237,24.0393353],[117.8647079,24.0382366],[117.856163,24.0371513],[117.8390808,24.029007],[117.8316727,24.018465],[117.8302231,24.0072613],[117.8312836,24.0024033],[117.8303223,24.0000114],[117.8281097,23.9965858],[117.8249207,23.994442],[117.822403,23.9950676],[117.8197937,24.0000076],[117.8199997,24.0016365],[117.8199692,24.0071487],[117.8098679,24.0045071],[117.8103714,24.0000038],[117.8079376,23.999033],[117.8052902,23.9952946],[117.8019867,23.9885559],[117.7974014,23.9744377],[117.7981033,23.9677982],[117.7967377,23.962944],[117.7871933,23.9643154],[117.7824936,23.9628201],[117.7776337,23.9581089],[117.7735901,23.9508915],[117.7694168,23.9312744],[117.7712097,23.921217],[117.7706223,23.9156914],[117.7575912,23.9167442],[117.7527237,23.9124908],[117.7498703,23.9075985],[117.7491989,23.9048271],[117.7436218,23.9076729],[117.7358398,23.9088535],[117.7354965,23.911829],[117.7391586,23.923172],[117.7380829,23.9258995],[117.7303467,23.9339714],[117.727211,23.9384842],[117.7342606,23.9368229],[117.7371674,23.9396515],[117.7550201,23.9446888],[117.7576828,23.9477406],[117.7612534,23.9537983],[117.770668,23.9737759],[117.7803192,23.9857235],[117.7885818,23.9939632],[117.7904587,24.0000038],[117.7904587,24.0005684],[117.7907867,24.0026245],[117.797081,24.0099907],[117.7974319,24.0125046],[117.7915573,24.0094891],[117.7858582,24.0170288],[117.7917862,24.027853],[117.7914429,24.0317688],[117.7887726,24.0336952],[117.7846985,24.0319958],[117.7781525,24.0234261],[117.7729034,24.0266838],[117.7640533,24.0186577],[117.7587967,24.0235291],[117.7605972,24.0299816],[117.7655411,24.0342464],[117.7750473,24.0472488],[117.7752838,24.0529823],[117.7737579,24.0587749],[117.770813,24.0600224],[117.7701569,24.0587883],[117.7705765,24.0478573],[117.752037,24.0278091],[117.7502975,24.0280972],[117.7481613,24.0309238],[117.7415619,24.028389],[117.730072,24.0352001],[117.7242813,24.0340157],[117.7213287,24.0352631],[117.7089462,24.0450096],[117.7090073,24.0336037],[117.7096863,24.031744],[117.7126389,24.0304985],[117.7132568,24.0270329],[117.7080231,24.0207767],[117.6953964,24.0177479],[117.6932983,24.0150623],[117.6942596,24.0076828],[117.6906128,24.0036678],[117.6868286,24.0028763],[117.6843109,24.0000057],[117.6871872,23.9941521],[117.6872787,23.9866047],[117.6828995,23.9825897],[117.6926804,23.9816914],[117.7017212,23.9635525],[117.7060699,23.951725],[117.7019272,23.9481773],[117.6986237,23.9501591],[117.6927032,23.9474831],[117.6748428,23.9344044],[117.6665115,23.9289112],[117.6584778,23.9218197],[117.6483612,23.9091625],[117.6409378,23.8984127],[117.6352768,23.8872452],[117.6266174,23.85993],[117.6258163,23.8530235],[117.6251068,23.835556],[117.6261063,23.818821],[117.627388,23.8096695],[117.6295395,23.8046722],[117.6341171,23.8015766],[117.6465073,23.7968426],[117.6411438,23.7925739],[117.6310272,23.7803726],[117.6284332,23.7754841],[117.6275177,23.7724762],[117.6274872,23.7651272],[117.6252975,23.763464],[117.6220016,23.764986],[117.6151962,23.7590714],[117.6079636,23.750618],[117.604393,23.7450142],[117.5971832,23.7356415],[117.5908508,23.7223911],[117.582283,23.7241707],[117.5811234,23.7289352],[117.5813828,23.7339497],[117.5824738,23.7384453],[117.5856476,23.745676],[117.5900803,23.7476273],[117.5924225,23.7527409],[117.5953064,23.7560291],[117.5955124,23.7578716],[117.5941162,23.7624283],[117.5955124,23.7659092],[117.5920181,23.7658176],[117.5884933,23.7671032],[117.5898972,23.7696667],[117.5952835,23.7737083],[117.594902,23.777832],[117.6009903,23.7910767],[117.6060181,23.7980957],[117.6137619,23.8061028],[117.6138,23.813221],[117.6111603,23.8260117],[117.6081772,23.8500404],[117.6049423,23.8579941],[117.605423,23.8669605],[117.6021194,23.8687115],[117.598587,23.8775749],[117.5980835,23.8866596],[117.5942764,23.8882542],[117.5873566,23.8938141],[117.5842133,23.8985538],[117.5836105,23.9019814],[117.5786133,23.9066982],[117.5701523,23.9089775],[117.5681076,23.9103031],[117.5632324,23.906271],[117.5560837,23.903101],[117.5460968,23.9111042],[117.5402908,23.9136181],[117.5355911,23.9112873],[117.5283432,23.9115562],[117.5147629,23.9144115],[117.5079193,23.9172153],[117.50383,23.9200916],[117.5015564,23.9204922],[117.4926529,23.9179592],[117.4849014,23.9179821],[117.4723129,23.9210911],[117.4589005,23.9262428],[117.450058,23.9315605],[117.447937,23.9328384],[117.4430618,23.9368401],[117.4385529,23.9436684],[117.4172897,23.9455605],[117.4116974,23.9405861],[117.4085083,23.9388924],[117.395668,23.9417591],[117.3875732,23.9447556],[117.3861237,23.9442062],[117.3862534,23.9392071],[117.3886032,23.936058],[117.3904724,23.9322052],[117.3810272,23.9242744],[117.3845062,23.92309],[117.3973999,23.9344597],[117.400383,23.9352283],[117.4033966,23.9346218],[117.4150238,23.9227676],[117.4186096,23.9198799],[117.4244003,23.9184303],[117.4324188,23.9179554],[117.446579,23.9125977],[117.4528732,23.9113884],[117.4571228,23.9115009],[117.4650726,23.9128628],[117.4733429,23.9121647],[117.4811783,23.9091587],[117.4901886,23.9006748],[117.4944077,23.8936691],[117.4955521,23.8891068],[117.4936981,23.8844662],[117.4942932,23.8812675],[117.5034409,23.8684235],[117.5042572,23.8663788],[117.5036774,23.8606243],[117.5011063,23.8550453],[117.4925613,23.8408127],[117.4944611,23.8360405],[117.4956665,23.8291855],[117.4952469,23.8266487],[117.4893265,23.8246536],[117.4860535,23.8257141],[117.4828262,23.8244801],[117.4791565,23.8142796],[117.4777908,23.810112],[117.4751587,23.8063679],[117.4765396,23.8022709],[117.4744186,23.7980824],[117.4543076,23.7865219],[117.4475937,23.7700405],[117.443779,23.7641964],[117.4441071,23.7616787],[117.4412079,23.7586174],[117.4250183,23.7652988],[117.4129333,23.776453],[117.4101562,23.7772961],[117.4099579,23.7746334],[117.4098129,23.7726955],[117.4179382,23.7680931],[117.4256592,23.7609539],[117.430069,23.7557907],[117.4329834,23.7505875],[117.4332962,23.7404938],[117.4338531,23.7386723],[117.4445267,23.7403374],[117.4485474,23.7395248],[117.4487381,23.7415981],[117.4516373,23.7444305],[117.4563599,23.745245],[117.4633865,23.7438259],[117.4686127,23.7446556],[117.4735565,23.7537422],[117.4795837,23.7532139],[117.4846115,23.7517414],[117.487999,23.7552757],[117.4881134,23.7596416],[117.4968033,23.7612514],[117.4979782,23.755312],[117.4993362,23.7519035],[117.5061111,23.7507057],[117.5115814,23.7515392],[117.5150986,23.7507133],[117.5189438,23.7476006],[117.5352097,23.7381554],[117.5252533,23.7293968],[117.5248184,23.7190533],[117.5195999,23.7184563],[117.5159378,23.7158337],[117.5124283,23.7161999],[117.5038834,23.7263069],[117.4998016,23.7289524],[117.4934235,23.7257996],[117.4908066,23.721138],[117.4807892,23.7066345],[117.4720383,23.6751709],[117.4762192,23.6693115],[117.4867096,23.6689034],[117.4882507,23.6595287],[117.4858704,23.6557922],[117.4816437,23.6556797],[117.4750671,23.6580296],[117.4725723,23.6581936],[117.464447,23.6547604],[117.461937,23.6553822],[117.4572372,23.6616859],[117.4454269,23.6643543],[117.4404526,23.6642208],[117.435257,23.6629314],[117.4289169,23.6581688],[117.4212265,23.6487751],[117.4193573,23.6448212],[117.4187622,23.640213],[117.4189377,23.6347065],[117.417717,23.625946],[117.4178467,23.6137791],[117.4210205,23.6083546],[117.4229279,23.6031227],[117.4255676,23.5986004],[117.4357605,23.5995655],[117.443718,23.592432],[117.4416809,23.5857162],[117.4383469,23.5805759],[117.4303589,23.5812778],[117.4264221,23.5873718],[117.4231491,23.5884304],[117.4190369,23.5844173],[117.4106522,23.5814342],[117.3969574,23.5808315],[117.3851471,23.5759182],[117.3784637,23.5748177],[117.3735199,23.5730762],[117.3716583,23.5691185],[117.3691101,23.5784664],[117.3677979,23.5804977],[117.3607788,23.5816822],[117.3572083,23.5841103],[117.3476028,23.5806313],[117.3431931,23.5782127],[117.3317184,23.5783577],[117.3277588,23.5773296],[117.3228683,23.5744381],[117.3139572,23.5723534],[117.3127823,23.5792675],[117.3152695,23.5873775],[117.3214569,23.5925312],[117.3239365,23.5972824],[117.3296204,23.6020737],[117.3469162,23.6095486],[117.3584366,23.6158352],[117.3737335,23.6288834],[117.3792419,23.6359234],[117.3947372,23.6505833],[117.4074173,23.6596527],[117.4105835,23.6700726],[117.4144821,23.6727047],[117.4115601,23.6783657],[117.3961563,23.6763401],[117.3840408,23.6808338],[117.3748627,23.6870136],[117.3725967,23.6871815],[117.3695831,23.680439],[117.3640671,23.673399],[117.3562622,23.6754818],[117.3451309,23.6802273],[117.3416138,23.6810493],[117.338028,23.6839371],[117.3406219,23.6886005],[117.3466721,23.6945076],[117.3568726,23.7030544],[117.3636169,23.7105865],[117.3644485,23.7158909],[117.3628082,23.7286434],[117.3551483,23.7333183],[117.3499298,23.7386169],[117.3490982,23.7430267],[117.3492584,23.7457848],[117.3530731,23.7511711],[117.3622971,23.7592335],[117.3679504,23.7623177],[117.377327,23.7656136],[117.3804626,23.7691422],[117.381073,23.7735214],[117.3848724,23.7793655],[117.3905563,23.7811279],[117.3963394,23.7801361],[117.3982162,23.7808228],[117.3990479,23.7811279],[117.3952408,23.7908993],[117.3822632,23.7829685],[117.3734131,23.778595],[117.3668213,23.7740517],[117.366333,23.7735176],[117.3619919,23.7688675],[117.3560181,23.7606678],[117.3499527,23.7554493],[117.3425369,23.7527199],[117.3313522,23.7514935],[117.3242798,23.7538242],[117.3182983,23.7536583],[117.3121796,23.7652016],[117.3065186,23.7703266],[117.3016663,23.7734051],[117.3015137,23.7784519],[117.3045883,23.7835903],[117.3047867,23.7893295],[117.2988663,23.7829723],[117.2929688,23.7800522],[117.2867813,23.7785034],[117.294899,23.7743664],[117.3028336,23.7688446],[117.3087234,23.763958],[117.3112335,23.7559891],[117.3059235,23.7505608],[117.2918472,23.7455788],[117.2880936,23.7461624],[117.2712479,23.7344418],[117.2709579,23.7204266],[117.2793579,23.6850662],[117.2747269,23.6814938],[117.267601,23.6631527],[117.2687073,23.6519299],[117.2719116,23.6458206],[117.2742233,23.6438179],[117.279953,23.6439781],[117.2838135,23.6401825],[117.2708969,23.6232872],[117.2645798,23.6258659],[117.2557831,23.6215],[117.2561722,23.6162148],[117.2548065,23.6120434],[117.2524338,23.6087608],[117.231102,23.6049461],[117.2296829,23.6101875],[117.232933,23.61763],[117.2312469,23.6233215],[117.2303009,23.6292648],[117.2395172,23.637104],[117.2323608,23.642416],[117.2395172,23.6596107],[117.2490005,23.6748028],[117.2426071,23.6792164],[117.234787,23.6895599],[117.2324905,23.6913319],[117.2321701,23.6904316],[117.2302094,23.6848373],[117.2321167,23.6798401],[117.2368927,23.6712475],[117.2372665,23.6673546],[117.2332993,23.6667824],[117.2250824,23.6738987],[117.2228928,23.6795788],[117.219368,23.6806278],[117.2118835,23.6790276],[117.2144623,23.6706161],[117.2144012,23.6648731],[117.2123184,23.6599903],[117.2141724,23.6568279],[117.220787,23.6526527],[117.2223434,23.6510887],[117.2225266,23.6455822],[117.2210007,23.6388798],[117.2216873,23.6329288],[117.2241135,23.627943],[117.2232437,23.6240158],[117.2161865,23.6258831],[117.2047424,23.62533],[117.1938477,23.6229534],[117.1898117,23.6215858],[117.1810837,23.6376648],[117.1270828,23.6520691],[117.0461731,23.7033234],[117.0386581,23.7720356],[117.0167313,23.8005219],[117.0150909,23.8390656],[116.9863586,23.8573971],[116.9644394,23.904438],[116.9756699,24.0002556],[116.9545135,24.0049229],[116.9393616,24.0287209],[116.9431763,24.056118],[116.9286194,24.0555553],[116.919899,24.088047],[116.9285126,24.1214523],[116.9841385,24.167654],[116.9844284,24.1892262],[116.930191,24.2247028],[116.9276733,24.2716427],[116.906311,24.3080845],[116.911293,24.3175316],[116.8955078,24.3500767],[116.9067688,24.3650112],[116.8972092,24.3752651],[116.8367767,24.4309273],[116.8378601,24.453846],[116.8529892,24.4548569],[116.8434677,24.4768162],[116.8267899,24.4910202],[116.7888031,24.5012321],[116.7518921,24.5458336],[116.7509689,24.5584984],[116.7723236,24.5845356],[116.7901764,24.6329803],[116.8093338,24.6441727],[116.7930374,24.6778755],[116.7699738,24.6746387],[116.7520981,24.6585693],[116.721962,24.6657028],[116.6547623,24.6554146],[116.63311,24.6442947],[116.5943298,24.649662],[116.5440979,24.6129665],[116.5292282,24.6068611],[116.5063934,24.6141357],[116.5096893,24.6541958],[116.4919434,24.7023811],[116.4850922,24.7127342],[116.4566727,24.7137775],[116.4147263,24.739645],[116.4095688,24.7540665],[116.4170685,24.7700977],[116.4026337,24.7742939],[116.3888321,24.7986736],[116.3707962,24.8016186],[116.3687363,24.8179951],[116.4128494,24.8407402],[116.3948975,24.851263],[116.3850403,24.8738899],[116.3481293,24.8660316],[116.3405533,24.8304863],[116.3222427,24.8267765],[116.3038025,24.8026352],[116.2391129,24.7927494],[116.2271729,24.8025818],[116.2460632,24.8260269],[116.2186127,24.8267574],[116.2118912,24.8527069],[116.1922302,24.8651009],[116.139183,24.8446617],[116.0856934,24.8561306],[116.046402,24.8572311],[116.0261307,24.8983192],[115.9865875,24.8998699],[115.9731293,24.9228153],[115.9269028,24.9213581],[115.8772736,24.9358349],[115.8780136,24.9484386],[115.8622437,24.9579029],[115.8651123,24.9734211],[115.8718567,24.9782543],[115.8920135,24.9704819],[115.8994827,24.9869976],[115.8712921,25.0021477],[115.8682938,25.0222187],[115.9263763,25.0543041],[115.9041367,25.0857964],[115.8813171,25.0966396],[115.8677063,25.1232548],[115.8795624,25.1419258],[115.8585968,25.1552315],[115.8498688,25.1775532],[115.8537292,25.2180653],[115.9228973,25.2401543],[115.9435806,25.2704716],[116.0070419,25.3253117],[115.9911194,25.3510971],[115.9880524,25.3817348],[116.000267,25.3957939],[115.9960098,25.4156799],[116.015358,25.4306507],[116.0148621,25.4432945],[115.9875717,25.4639454],[116.0133286,25.492939],[116.0318832,25.5499496],[116.0501328,25.555769],[116.0550537,25.5707569],[116.0514221,25.5998077],[116.0379333,25.6110516],[116.0436783,25.6338196],[116.0647278,25.6457424],[116.0508194,25.6905212],[116.062912,25.7066479],[116.0873718,25.7023792],[116.1013412,25.7085667],[116.1218719,25.762516],[116.1414185,25.7680492],[116.1672668,25.7543087],[116.1725006,25.7699718],[116.1655273,25.7975349],[116.1262207,25.8362999],[116.1257477,25.8615742],[116.1854935,25.9031582],[116.2102127,25.9103432],[116.2418365,25.9062614],[116.2924881,25.9244671],[116.3359299,25.9638081],[116.3613129,25.9679585],[116.3575363,26.0039139],[116.385231,26.0431099],[116.4203568,26.0769825],[116.4829102,26.113987],[116.4870834,26.1273823],[116.4623413,26.178566],[116.4235916,26.1673355],[116.3909912,26.1854954],[116.4038467,26.2169514],[116.3837433,26.2410889],[116.3945389,26.2717018],[116.4177628,26.2890091],[116.4513168,26.3431377],[116.4913483,26.3701591],[116.5128326,26.4045086],[116.5368881,26.4054661],[116.5768738,26.3690929],[116.595993,26.3794079],[116.6047287,26.4027328],[116.5978394,26.4307728],[116.6321716,26.4712868],[116.6297073,26.4844666],[116.5936203,26.4892502],[116.5722427,26.5359612],[116.5350876,26.5685501],[116.5486298,26.5793037],[116.5642014,26.6457748],[116.5151672,26.6882057],[116.5072708,26.7116814],[116.5540237,26.7703571],[116.5390396,26.8074093],[116.5527573,26.8553467],[116.5975571,26.892271],[116.6546097,26.9656849],[116.7058334,26.9956779],[116.752449,26.9877186],[116.7601471,27.0037251],[116.8128967,27.0219154],[116.8466263,27.0128136],[116.8989487,27.0376472],[116.9229736,27.034874],[116.931633,27.0228271],[116.9627533,27.0652256],[117.048233,27.1095924],[117.0402527,27.1452675],[117.0894012,27.2071247],[117.1383972,27.239584],[117.1624527,27.2771778],[117.1645584,27.2982121],[117.1347122,27.308836],[117.1289291,27.3267479],[117.0987625,27.3364563],[117.0985184,27.3927097],[117.1262894,27.4168415],[117.101593,27.4786682],[117.1074371,27.4974861],[117.0911331,27.5472603],[117.0749435,27.5692558],[117.051239,27.5495415],[117.0257568,27.5560608],[117.0154114,27.5658817],[117.0257568,27.5973759],[117.0035782,27.6287804],[117.0203171,27.6639233],[117.0529175,27.6752548],[117.0945663,27.6306725],[117.1065979,27.6538315],[117.0959167,27.6774406],[117.1015625,27.6868553],[117.1276016,27.6959076],[117.1982803,27.6884556],[117.198143,27.7157745],[117.2477036,27.7295837],[117.2725601,27.7650566],[117.2950134,27.7788181],[117.2952728,27.8380222],[117.2782288,27.8584614],[117.2816772,27.8750725],[117.3204727,27.9037628],[117.3373566,27.8608322],[117.3657837,27.8892536],[117.4089966,27.9037361],[117.4387894,27.9375935],[117.4805832,27.9442921],[117.5175476,27.9919739],[117.5500183,27.9714603],[117.5581894,27.9460163],[117.5765991,27.9378281],[117.598938,27.8738804],[117.6765137,27.8307171],[117.7009583,27.8328552],[117.7080002,27.8153267],[117.7354736,27.8069954],[117.7772064,27.8496704],[117.7841568,27.8991718],[117.8092499,27.921463],[117.8518219,27.9503078],[117.8628769,27.9442997],[117.8925018,27.9505348],[117.9376984,27.9748726],[117.9703369,27.966032],[117.9914093,27.9871674],[118.0292969,27.9904041],[118.0893097,27.9667263],[118.0881119,28.0111866],[118.1177673,28.0280628],[118.120697,28.0587864],[118.2004166,28.0671654],[118.2583237,28.0903149],[118.3080063,28.0998878],[118.3367767,28.0960846],[118.3453064,28.1039028],[118.3594513,28.1314449],[118.3539276,28.1545773],[118.3690872,28.1908321],[118.3350983,28.1969185],[118.312973,28.2190781],[118.3150024,28.2282505],[118.3739777,28.2758751],[118.4242706,28.2922821]]]]},
  2141 +"properties":{
  2142 +"gid":357,
  2143 +"name":"福建省"}
  2144 +},
  2145 +{"type":"Feature",
  2146 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.6875992,28.2952023],[121.6907272,28.2926769],[121.6913528,28.2835045],[121.6911316,28.279604],[121.6885986,28.274765],[121.6846771,28.2777157],[121.6781769,28.2803574],[121.6739273,28.2837296],[121.6734238,28.2890949],[121.6762085,28.2943935],[121.6813736,28.2953548],[121.6875992,28.2952023]]]]},
  2147 +"properties":{
  2148 +"gid":358,
  2149 +"name":"浙江省"}
  2150 +},
  2151 +{"type":"Feature",
  2152 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.7336197,28.2705593],[121.7318192,28.2679024],[121.7309418,28.270174],[121.7336197,28.2705593]]]]},
  2153 +"properties":{
  2154 +"gid":359,
  2155 +"name":"浙江省"}
  2156 +},
  2157 +{"type":"Feature",
  2158 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.1544037,28.217453],[121.1522369,28.2227039],[121.1517715,28.2284355],[121.1592712,28.2334919],[121.1667709,28.2406063],[121.1723328,28.2413197],[121.1766434,28.2388],[121.1761627,28.2354355],[121.1730194,28.2319221],[121.1755066,28.2276554],[121.1756363,28.2234592],[121.1684036,28.2179451],[121.1638184,28.2140141],[121.1615372,28.2117939],[121.1575165,28.2103653],[121.155838,28.2133751],[121.1544037,28.217453]]]]},
  2159 +"properties":{
  2160 +"gid":360,
  2161 +"name":"浙江省"}
  2162 +},
  2163 +{"type":"Feature",
  2164 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.6356812,28.2313385],[121.6339417,28.2281284],[121.6316833,28.2296677],[121.6329193,28.2319431],[121.6356812,28.2313385]]]]},
  2165 +"properties":{
  2166 +"gid":361,
  2167 +"name":"浙江省"}
  2168 +},
  2169 +{"type":"Feature",
  2170 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.6472168,28.2245655],[121.6484222,28.2211723],[121.6455917,28.2209225],[121.6447296,28.2233295],[121.6472168,28.2245655]]]]},
  2171 +"properties":{
  2172 +"gid":362,
  2173 +"name":"浙江省"}
  2174 +},
  2175 +{"type":"Feature",
  2176 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.2561569,28.1207829],[121.2572937,28.1148872],[121.2640381,28.1084881],[121.2785568,28.1032486],[121.2914886,28.1112804],[121.2972031,28.1083126],[121.2850266,28.0991383],[121.2928238,28.0909081],[121.2778091,28.0874519],[121.2905273,28.0712185],[121.2661667,28.0748425],[121.2651291,28.0807934],[121.2578735,28.0862732],[121.2555466,28.0794029],[121.2485504,28.0848846],[121.2428589,28.0814381],[121.229393,28.0814133],[121.2483215,28.0704613],[121.2436905,28.0551167],[121.2366867,28.0596809],[121.2223663,28.0687199],[121.2102737,28.0639763],[121.2260818,28.0592022],[121.2148666,28.0518322],[121.1958237,28.0492954],[121.1756516,28.0389462],[121.1751099,28.0478725],[121.154747,28.0390263],[121.1518784,28.0483036],[121.1427078,28.0601521],[121.155899,28.0661392],[121.1545181,28.072546],[121.1496429,28.0777969],[121.1431427,28.0862503],[121.1467438,28.0931263],[121.1415482,28.0990658],[121.1363602,28.1024857],[121.1329575,28.1116333],[121.1389084,28.1155396],[121.1339569,28.1230831],[121.1292496,28.1372623],[121.1378021,28.1361408],[121.1486893,28.1341076],[121.1593018,28.1394024],[121.1626434,28.1501694],[121.1735077,28.1524849],[121.1779022,28.157074],[121.1864471,28.1612148],[121.1903076,28.1683197],[121.2058487,28.1731625],[121.2008896,28.1861992],[121.2081299,28.1928558],[121.2036972,28.2033749],[121.2109528,28.205452],[121.2231216,28.2130318],[121.2350464,28.2112236],[121.242569,28.2123833],[121.2576218,28.2041683],[121.2638626,28.1977692],[121.2797089,28.1808548],[121.2714081,28.1829033],[121.2651978,28.1762524],[121.2582169,28.1657104],[121.2538528,28.1499062],[121.256218,28.1341171],[121.2634811,28.1286354],[121.2559433,28.121933],[121.2561569,28.1207829]]]]},
  2177 +"properties":{
  2178 +"gid":363,
  2179 +"name":"浙江省"}
  2180 +},
  2181 +{"type":"Feature",
  2182 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.1446686,28.1788578],[121.1479187,28.177969],[121.1482773,28.1714439],[121.1559372,28.170908],[121.1571121,28.1687107],[121.1564865,28.1665802],[121.1542969,28.1646824],[121.1525192,28.1637344],[121.1493378,28.1631718],[121.1420975,28.1614647],[121.1387863,28.1622372],[121.1367569,28.1647663],[121.1371689,28.1686058],[121.1391068,28.1738853],[121.1419983,28.1768284],[121.1446686,28.1788578]]]]},
  2183 +"properties":{
  2184 +"gid":364,
  2185 +"name":"浙江省"}
  2186 +},
  2187 +{"type":"Feature",
  2188 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.3650513,28.1129742],[121.3650589,28.1063328],[121.3609238,28.0971737],[121.3510895,28.0914402],[121.3384018,28.0923424],[121.3391724,28.0982933],[121.3469391,28.1001358],[121.3585892,28.1051846],[121.3650513,28.1129742]]]]},
  2189 +"properties":{
  2190 +"gid":365,
  2191 +"name":"浙江省"}
  2192 +},
  2193 +{"type":"Feature",
  2194 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.4955978,28.0837269],[121.5025864,28.0942554],[121.511673,28.097002],[121.5189972,28.1027012],[121.526947,28.0972271],[121.5249481,28.0927124],[121.520813,28.088728],[121.5170822,28.0876617],[121.5155334,28.0908756],[121.5093307,28.0878448],[121.5033264,28.0799351],[121.4961166,28.0766296],[121.4955978,28.0837269]]]]},
  2195 +"properties":{
  2196 +"gid":366,
  2197 +"name":"浙江省"}
  2198 +},
  2199 +{"type":"Feature",
  2200 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.404007,28.0987644],[121.4057083,28.097908],[121.4053574,28.0943565],[121.4044571,28.0905857],[121.4046173,28.087862],[121.4065323,28.0854702],[121.4070969,28.0831299],[121.4035263,28.0778179],[121.3973236,28.076355],[121.3926773,28.0803623],[121.3939438,28.0860271],[121.3963776,28.0907631],[121.3987885,28.0962543],[121.3997574,28.0986576],[121.4014664,28.0996017],[121.404007,28.0987644]]]]},
  2201 +"properties":{
  2202 +"gid":367,
  2203 +"name":"浙江省"}
  2204 +},
  2205 +{"type":"Feature",
  2206 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.1400833,28.0138969],[121.1381836,28.0153275],[121.1389923,28.0184612],[121.1402969,28.0219059],[121.1415863,28.0242004],[121.1445694,28.0250969],[121.1469193,28.0272369],[121.1498871,28.0281334],[121.1516037,28.0280685],[121.1538773,28.0275364],[121.1553879,28.027504],[121.1563568,28.0258255],[121.1560364,28.0241508],[121.155098,28.0225677],[121.1531296,28.0201797],[121.1505432,28.0190353],[121.1478424,28.0173321],[121.1462021,28.0166206],[121.1447601,28.0158768],[121.1427994,28.014637],[121.1400833,28.0138969]]]]},
  2207 +"properties":{
  2208 +"gid":368,
  2209 +"name":"浙江省"}
  2210 +},
  2211 +{"type":"Feature",
  2212 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.0824203,28.0000057],[121.0776901,27.9955997],[121.0720062,27.9937401],[121.0634995,27.9909496],[121.0531769,27.9893036],[121.0444031,27.9860516],[121.0358734,27.9871674],[121.0394897,27.9935341],[121.0442734,27.9951591],[121.0596008,27.9950714],[121.0657501,28.0000095],[121.0712433,28.0103073],[121.0826187,28.0108013],[121.0824203,28.0000057]]]]},
  2213 +"properties":{
  2214 +"gid":369,
  2215 +"name":"浙江省"}
  2216 +},
  2217 +{"type":"Feature",
  2218 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.1936569,27.9988194],[121.1964722,27.9957657],[121.2046204,27.997366],[121.2121582,27.9955215],[121.2155533,27.9960575],[121.2194672,27.9981747],[121.2262268,27.9984512],[121.2315826,27.9976482],[121.2348709,27.994894],[121.2322464,27.9922791],[121.220253,27.9899368],[121.2137375,27.9877892],[121.2092972,27.9890823],[121.2037735,27.984705],[121.196312,27.9824905],[121.1909866,27.9816227],[121.1877899,27.980854],[121.187561,27.9796371],[121.1899872,27.9776077],[121.1899109,27.9759541],[121.1795807,27.9727306],[121.1759186,27.9738846],[121.1744003,27.9770279],[121.1726303,27.9862442],[121.1737595,27.9899521],[121.1823807,27.9929848],[121.1847687,27.9988365],[121.1936569,27.9988194]]]]},
  2219 +"properties":{
  2220 +"gid":370,
  2221 +"name":"浙江省"}
  2222 +},
  2223 +{"type":"Feature",
  2224 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.043869,27.9492416],[121.0434799,27.958704],[121.0413666,27.9602108],[121.0410233,27.968441],[121.0437927,27.9712334],[121.051239,27.9740677],[121.0618973,27.9794044],[121.0645065,27.9865875],[121.071907,27.9887562],[121.0725403,27.9816303],[121.0842133,27.9833755],[121.089447,27.9873161],[121.1018372,27.9815102],[121.1112823,27.984066],[121.120697,27.9885216],[121.1229401,27.9793987],[121.1363068,27.9750595],[121.1360931,27.9704056],[121.1423416,27.9650784],[121.1471024,27.9640732],[121.1484833,27.9609356],[121.1467667,27.958847],[121.1366119,27.9609509],[121.1273727,27.9524689],[121.1111526,27.9472542],[121.097702,27.9488831],[121.0949097,27.943409],[121.0883865,27.9465408],[121.08535,27.951601],[121.0874863,27.9542103],[121.0884094,27.9608116],[121.0772934,27.9626827],[121.069603,27.9582424],[121.0590668,27.9533119],[121.043869,27.9492416]]]]},
  2225 +"properties":{
  2226 +"gid":371,
  2227 +"name":"浙江省"}
  2228 +},
  2229 +{"type":"Feature",
  2230 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.8907089,27.9517574],[120.8808289,27.9546108],[120.8685074,27.9620323],[120.8554535,27.971241],[120.8495178,27.9754868],[120.8485031,27.9774799],[120.8497772,27.9793453],[120.8609085,27.9795589],[120.8722305,27.980772],[120.8865814,27.9821491],[120.9036789,27.9833317],[120.9109116,27.9812412],[120.9143066,27.9786243],[120.9187469,27.9749584],[120.920929,27.9705334],[120.9192123,27.9662724],[120.9120636,27.960144],[120.9037476,27.9539814],[120.8958664,27.9526749],[120.8907089,27.9517574]]]]},
  2231 +"properties":{
  2232 +"gid":372,
  2233 +"name":"浙江省"}
  2234 +},
  2235 +{"type":"Feature",
  2236 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.2179489,27.9505615],[121.2202835,27.9498806],[121.2241669,27.945755],[121.2218704,27.9388561],[121.2172394,27.9347076],[121.2117996,27.9388275],[121.2153931,27.9434338],[121.2179489,27.9505615]]]]},
  2237 +"properties":{
  2238 +"gid":373,
  2239 +"name":"浙江省"}
  2240 +},
  2241 +{"type":"Feature",
  2242 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.1088333,27.9182854],[121.1178513,27.9222221],[121.117897,27.9118824],[121.1083679,27.9081745],[121.1057587,27.9132195],[121.1088333,27.9182854]]]]},
  2243 +"properties":{
  2244 +"gid":374,
  2245 +"name":"浙江省"}
  2246 +},
  2247 +{"type":"Feature",
  2248 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.1504288,27.9090805],[121.146347,27.9023266],[121.1449738,27.8967228],[121.1474533,27.891325],[121.1468811,27.8882904],[121.1434174,27.8855114],[121.134407,27.8863392],[121.127243,27.8886242],[121.1262589,27.887558],[121.125473,27.8864632],[121.1259308,27.8827515],[121.1249237,27.8794365],[121.1229172,27.8781757],[121.120369,27.8811569],[121.1185684,27.8829861],[121.116188,27.8807392],[121.1099472,27.8756046],[121.1062164,27.8733883],[121.1029968,27.8738689],[121.1050262,27.8794613],[121.1138992,27.8859043],[121.1216125,27.8925953],[121.122467,27.8954029],[121.1218491,27.8982697],[121.1215668,27.9004078],[121.1291428,27.9068871],[121.1400604,27.9120159],[121.1450577,27.9126587],[121.1493912,27.9118366],[121.1504288,27.9090805]]]]},
  2249 +"properties":{
  2250 +"gid":375,
  2251 +"name":"浙江省"}
  2252 +},
  2253 +{"type":"Feature",
  2254 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.0148773,27.8510189],[121.0207825,27.8522415],[121.0227814,27.851944],[121.0253067,27.8531971],[121.0257187,27.8553753],[121.0235596,27.8589802],[121.0240479,27.863554],[121.0216064,27.8676643],[121.0240479,27.872097],[121.026947,27.8716679],[121.0324783,27.8694248],[121.0361099,27.8680706],[121.0377502,27.8694553],[121.0334396,27.8733482],[121.0310287,27.8775711],[121.0304794,27.8807068],[121.0324478,27.8826504],[121.0361099,27.8831787],[121.0444336,27.8800697],[121.0545731,27.8761101],[121.0596237,27.8667278],[121.0615005,27.8655186],[121.0686264,27.8681183],[121.0763474,27.8714447],[121.0827026,27.8698902],[121.0835876,27.8673172],[121.0778275,27.8622742],[121.06884,27.8534393],[121.067421,27.8495827],[121.0617371,27.8468189],[121.0578766,27.8487644],[121.0569229,27.8497219],[121.0557022,27.8529549],[121.0557785,27.8594532],[121.053772,27.8609695],[121.0463486,27.8555641],[121.0301666,27.8473911],[121.0302429,27.8453465],[121.0304871,27.8418503],[121.0277481,27.8394108],[121.0227814,27.8427067],[121.0172882,27.8458443],[121.0148773,27.8510189]]]]},
  2255 +"properties":{
  2256 +"gid":376,
  2257 +"name":"浙江省"}
  2258 +},
  2259 +{"type":"Feature",
  2260 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.1704865,27.8762131],[121.1702576,27.8697777],[121.1640778,27.8653927],[121.1529999,27.861681],[121.1460266,27.8612003],[121.1454773,27.8671703],[121.1483078,27.8715458],[121.1552734,27.8743248],[121.1614609,27.8731976],[121.1704865,27.8762131]]]]},
  2261 +"properties":{
  2262 +"gid":377,
  2263 +"name":"浙江省"}
  2264 +},
  2265 +{"type":"Feature",
  2266 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.1438599,27.8313694],[121.1349869,27.8215199],[121.1315536,27.8267517],[121.1286469,27.8322926],[121.1227722,27.8266544],[121.1177368,27.8172073],[121.1071396,27.8180065],[121.0926208,27.8210526],[121.0855637,27.8273869],[121.0893478,27.8326988],[121.098587,27.8369255],[121.1070328,27.8420601],[121.1162186,27.8501797],[121.1251831,27.855547],[121.1337967,27.8496838],[121.1307907,27.8432369],[121.1444626,27.8449898],[121.1503296,27.8503208],[121.1556625,27.8567924],[121.1620636,27.8612137],[121.1728516,27.8654537],[121.1820831,27.8703632],[121.1896133,27.8686085],[121.1921082,27.8562641],[121.1875687,27.8484268],[121.1793594,27.8476715],[121.17379,27.8446922],[121.1758499,27.8368492],[121.1715469,27.8301601],[121.1806717,27.8245296],[121.167099,27.8163681],[121.1573029,27.8200741],[121.1498795,27.8240509],[121.1438599,27.8313694]]]]},
  2267 +"properties":{
  2268 +"gid":378,
  2269 +"name":"浙江省"}
  2270 +},
  2271 +{"type":"Feature",
  2272 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.1480408,27.8180084],[121.1462708,27.8095016],[121.1414032,27.8023605],[121.1362686,27.7959118],[121.127533,27.7908268],[121.1259537,27.7961063],[121.1241074,27.8025341],[121.130043,27.805542],[121.1356888,27.8099251],[121.1413498,27.8136196],[121.1480408,27.8180084]]]]},
  2273 +"properties":{
  2274 +"gid":379,
  2275 +"name":"浙江省"}
  2276 +},
  2277 +{"type":"Feature",
  2278 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.0836334,27.7975636],[121.0898514,27.7923031],[121.0922089,27.7858791],[121.087059,27.7828712],[121.0777893,27.7807693],[121.0718307,27.7841949],[121.0777435,27.7895012],[121.0836334,27.7975636]]]]},
  2279 +"properties":{
  2280 +"gid":380,
  2281 +"name":"浙江省"}
  2282 +},
  2283 +{"type":"Feature",
  2284 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.1332321,27.7841835],[121.1394501,27.7782288],[121.1433487,27.7724972],[121.1335373,27.7745323],[121.1265564,27.775198],[121.1288681,27.7798023],[121.1332321,27.7841835]]]]},
  2285 +"properties":{
  2286 +"gid":381,
  2287 +"name":"浙江省"}
  2288 +},
  2289 +{"type":"Feature",
  2290 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.1286469,27.7691612],[121.1309586,27.7710094],[121.1338196,27.7703857],[121.1364517,27.76861],[121.1383438,27.7661266],[121.1384277,27.7631435],[121.13237,27.7586346],[121.1300583,27.7581196],[121.1292572,27.7590199],[121.1281128,27.7628994],[121.1275177,27.7652245],[121.1274719,27.7665405],[121.1279831,27.7676888],[121.1282425,27.7685242],[121.1286469,27.7691612]]]]},
  2291 +"properties":{
  2292 +"gid":382,
  2293 +"name":"浙江省"}
  2294 +},
  2295 +{"type":"Feature",
  2296 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.1432495,27.7660122],[121.1463013,27.7674618],[121.1496887,27.7666225],[121.1518478,27.7634563],[121.1503677,27.7611237],[121.1493683,27.7601814],[121.1467972,27.7594318],[121.1437073,27.7593575],[121.141861,27.7606926],[121.1412811,27.7627487],[121.141983,27.7650642],[121.1432495,27.7660122]]]]},
  2297 +"properties":{
  2298 +"gid":383,
  2299 +"name":"浙江省"}
  2300 +},
  2301 +{"type":"Feature",
  2302 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.8972092,27.7152367],[120.8949738,27.7124214],[120.8898468,27.7111435],[120.8869705,27.7124519],[120.8853531,27.7144775],[120.8865814,27.7165794],[120.8898697,27.7185001],[120.8939972,27.7186031],[120.8963776,27.7170525],[120.8972092,27.7152367]]]]},
  2303 +"properties":{
  2304 +"gid":384,
  2305 +"name":"浙江省"}
  2306 +},
  2307 +{"type":"Feature",
  2308 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.9104538,27.6969509],[120.9073486,27.6971054],[120.9052124,27.6993484],[120.9030533,27.702282],[120.9021988,27.7047901],[120.903183,27.706192],[120.9062424,27.7074165],[120.9094162,27.7049713],[120.9108429,27.7010975],[120.9104538,27.6969509]]]]},
  2309 +"properties":{
  2310 +"gid":385,
  2311 +"name":"浙江省"}
  2312 +},
  2313 +{"type":"Feature",
  2314 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.806778,27.6940937],[120.8064117,27.6973019],[120.8091736,27.6999016],[120.8145523,27.7009602],[120.8179321,27.7001266],[120.8165131,27.6964111],[120.8083496,27.6934452],[120.806778,27.6940937]]]]},
  2315 +"properties":{
  2316 +"gid":386,
  2317 +"name":"浙江省"}
  2318 +},
  2319 +{"type":"Feature",
  2320 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.9159317,27.6952496],[120.9192276,27.6969414],[120.9210434,27.6969852],[120.923378,27.6963539],[120.9254913,27.6947994],[120.9250565,27.6922588],[120.9201813,27.6914482],[120.9170685,27.6920605],[120.9154663,27.6936302],[120.9159317,27.6952496]]]]},
  2321 +"properties":{
  2322 +"gid":387,
  2323 +"name":"浙江省"}
  2324 +},
  2325 +{"type":"Feature",
  2326 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.8280029,27.6925697],[120.8324127,27.6919918],[120.836113,27.6891003],[120.838829,27.68503],[120.8383865,27.6824932],[120.8371506,27.6810799],[120.8351135,27.6803379],[120.8338013,27.6809978],[120.8319168,27.6832447],[120.8278732,27.6886578],[120.8270264,27.6904755],[120.8280029,27.6925697]]]]},
  2327 +"properties":{
  2328 +"gid":388,
  2329 +"name":"浙江省"}
  2330 +},
  2331 +{"type":"Feature",
  2332 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.9780731,27.6758595],[120.9796066,27.6750889],[120.981369,27.6697922],[120.9842834,27.6624222],[120.9831467,27.6605453],[120.9748764,27.6522465],[120.9730225,27.6504822],[120.9689636,27.6491776],[120.9666519,27.6491127],[120.9654922,27.6502361],[120.9670334,27.6559963],[120.9669037,27.6610489],[120.9651337,27.6671619],[120.9654617,27.6688843],[120.9722672,27.6718216],[120.9748764,27.6751099],[120.9763107,27.6762562],[120.9780731,27.6758595]]]]},
  2333 +"properties":{
  2334 +"gid":389,
  2335 +"name":"浙江省"}
  2336 +},
  2337 +{"type":"Feature",
  2338 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.831337,27.6534882],[120.8308868,27.6512089],[120.8285599,27.6491528],[120.8242493,27.6452579],[120.8224869,27.6429882],[120.8214722,27.6423378],[120.8202133,27.6427898],[120.8204727,27.6466141],[120.8212891,27.6486244],[120.8231125,27.6560783],[120.82547,27.6566658],[120.8289108,27.6566925],[120.8313904,27.655529],[120.831337,27.6534882]]]]},
  2339 +"properties":{
  2340 +"gid":390,
  2341 +"name":"浙江省"}
  2342 +},
  2343 +{"type":"Feature",
  2344 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.0581512,27.6375961],[121.0563889,27.6361771],[121.0535736,27.6354179],[121.0524368,27.6388397],[121.0543365,27.6439419],[121.057663,27.6451702],[121.0597229,27.6454487],[121.0615997,27.6429653],[121.0616226,27.6422768],[121.0591583,27.6383095],[121.0581512,27.6375961]]]]},
  2345 +"properties":{
  2346 +"gid":391,
  2347 +"name":"浙江省"}
  2348 +},
  2349 +{"type":"Feature",
  2350 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.2099533,27.6420918],[121.2124023,27.6411037],[121.21492,27.6375084],[121.2150879,27.6332741],[121.213913,27.6307278],[121.2106628,27.6260223],[121.2084732,27.6178169],[121.20784,27.6155567],[121.2044525,27.6138363],[121.2011566,27.6140842],[121.2001114,27.6151085],[121.200882,27.6184578],[121.2035065,27.6220245],[121.2042465,27.6230259],[121.2030411,27.623951],[121.1973114,27.6208515],[121.1931915,27.6210995],[121.1917725,27.6216831],[121.1909409,27.6239128],[121.1916428,27.6261578],[121.1933136,27.6276379],[121.1949768,27.6283798],[121.2004166,27.6284275],[121.2012024,27.6306648],[121.2033768,27.6367683],[121.2045364,27.6391926],[121.2099533,27.6420918]]]]},
  2351 +"properties":{
  2352 +"gid":392,
  2353 +"name":"浙江省"}
  2354 +},
  2355 +{"type":"Feature",
  2356 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.173233,27.6370983],[121.1732864,27.6350307],[121.1715469,27.633152],[121.1669464,27.6314354],[121.1635971,27.631588],[121.1622391,27.6338539],[121.1642303,27.6361961],[121.1677933,27.6381187],[121.1721573,27.6382217],[121.173233,27.6370983]]]]},
  2357 +"properties":{
  2358 +"gid":393,
  2359 +"name":"浙江省"}
  2360 +},
  2361 +{"type":"Feature",
  2362 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.1341019,27.6343441],[121.1341324,27.6334267],[121.1352005,27.6323032],[121.1347275,27.630682],[121.1327362,27.6283379],[121.1304626,27.6269035],[121.1294403,27.6266518],[121.1281433,27.627079],[121.127327,27.6282101],[121.1275024,27.6307411],[121.1305313,27.63311],[121.1341019,27.6343441]]]]},
  2363 +"properties":{
  2364 +"gid":394,
  2365 +"name":"浙江省"}
  2366 +},
  2367 +{"type":"Feature",
  2368 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.2209702,27.6213303],[121.2217102,27.6213913],[121.2224579,27.6214542],[121.2232971,27.6189461],[121.2218628,27.615696],[121.219101,27.6131039],[121.2165375,27.6125851],[121.2146912,27.6136913],[121.2146072,27.6164494],[121.2163467,27.618557],[121.2191391,27.6204605],[121.2209702,27.6213303]]]]},
  2369 +"properties":{
  2370 +"gid":395,
  2371 +"name":"浙江省"}
  2372 +},
  2373 +{"type":"Feature",
  2374 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.640152,27.5938683],[120.6405869,27.5959511],[120.6421509,27.5957623],[120.6415863,27.597126],[120.6456528,27.5988445],[120.6484833,27.5989208],[120.6503525,27.5971317],[120.6501389,27.5959778],[120.6476288,27.5938396],[120.6445618,27.5930691],[120.640152,27.5938683]]]]},
  2375 +"properties":{
  2376 +"gid":396,
  2377 +"name":"浙江省"}
  2378 +},
  2379 +{"type":"Feature",
  2380 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.6605988,27.5171852],[120.6629791,27.5154095],[120.6668396,27.5157433],[120.6693878,27.5165005],[120.6717224,27.5161037],[120.6736069,27.5136242],[120.6733932,27.5126991],[120.6713867,27.510807],[120.6701202,27.510313],[120.6675568,27.5097847],[120.6631622,27.510128],[120.6605377,27.5116673],[120.6589203,27.5136929],[120.6588287,27.5162182],[120.6595688,27.5171585],[120.6605988,27.5171852]]]]},
  2381 +"properties":{
  2382 +"gid":397,
  2383 +"name":"浙江省"}
  2384 +},
  2385 +{"type":"Feature",
  2386 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.0843964,27.4982567],[121.088501,27.4990425],[121.0929031,27.4982281],[121.0950012,27.4971275],[121.0947876,27.4957447],[121.0907288,27.4935799],[121.0873718,27.4937286],[121.0855331,27.4950638],[121.0836334,27.4982357],[121.0843964,27.4982567]]]]},
  2387 +"properties":{
  2388 +"gid":398,
  2389 +"name":"浙江省"}
  2390 +},
  2391 +{"type":"Feature",
  2392 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.1055222,27.4515457],[121.1021729,27.4514542],[121.0985413,27.4533825],[121.0917892,27.4623146],[121.0888138,27.4641457],[121.0868225,27.4642429],[121.0869675,27.4626389],[121.0883713,27.4594612],[121.0863113,27.4579849],[121.0830383,27.4582748],[121.080452,27.4598522],[121.0756683,27.4627438],[121.0692978,27.4666653],[121.0664978,27.4694576],[121.0643692,27.4699745],[121.0633316,27.469141],[121.0626373,27.466671],[121.0673065,27.4548855],[121.0637817,27.4514523],[121.0537109,27.4592896],[121.0461273,27.4673519],[121.0502319,27.4714928],[121.0532227,27.4720345],[121.0546188,27.473608],[121.0527496,27.4778461],[121.0526428,27.4828796],[121.0556335,27.4825649],[121.0588837,27.4808922],[121.0609589,27.4789982],[121.06427,27.4777107],[121.0669327,27.4777107],[121.066803,27.4816914],[121.0708618,27.4832611],[121.0781326,27.4817791],[121.0839233,27.4771519],[121.0949631,27.4685707],[121.0995636,27.4647141],[121.1039505,27.4585133],[121.1066437,27.4539547],[121.1055222,27.4515457]]]]},
  2393 +"properties":{
  2394 +"gid":399,
  2395 +"name":"浙江省"}
  2396 +},
  2397 +{"type":"Feature",
  2398 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.1238937,27.4791965],[121.1264572,27.4797153],[121.1293335,27.4786339],[121.1319733,27.4763985],[121.1322708,27.4747944],[121.1317978,27.4734058],[121.1284637,27.4730968],[121.1242599,27.4755249],[121.1234436,27.4771156],[121.1238937,27.4791965]]]]},
  2399 +"properties":{
  2400 +"gid":400,
  2401 +"name":"浙江省"}
  2402 +},
  2403 +{"type":"Feature",
  2404 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.1076584,27.4792709],[121.1120529,27.4791431],[121.1141434,27.4780445],[121.1188812,27.4747105],[121.1199722,27.4726658],[121.1159134,27.4707317],[121.1120377,27.470871],[121.1091537,27.472641],[121.105423,27.4766903],[121.1053696,27.4782982],[121.1068802,27.4794807],[121.1076584,27.4792709]]]]},
  2405 +"properties":{
  2406 +"gid":401,
  2407 +"name":"浙江省"}
  2408 +},
  2409 +{"type":"Feature",
  2410 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.0756989,27.438055],[121.079277,27.4390621],[121.0816116,27.438427],[121.0853271,27.43507],[121.0871582,27.4339619],[121.0874786,27.4319019],[121.086731,27.4311943],[121.0833969,27.4304256],[121.0823669,27.4304008],[121.0800171,27.4314938],[121.0774002,27.4330406],[121.075798,27.4348412],[121.0752487,27.435976],[121.0756989,27.438055]]]]},
  2411 +"properties":{
  2412 +"gid":402,
  2413 +"name":"浙江省"}
  2414 +},
  2415 +{"type":"Feature",
  2416 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.5802231,27.3459415],[120.5809021,27.3487682],[120.5821228,27.3500538],[120.5852127,27.3526745],[120.5893478,27.3538284],[120.592453,27.3546944],[120.5954514,27.3558693],[120.5987015,27.3548126],[120.5998535,27.3521595],[120.5993576,27.349453],[120.595108,27.3449535],[120.5934601,27.3440228],[120.5916824,27.343256],[120.5897827,27.3435326],[120.5890503,27.3449554],[120.5876389,27.3453064],[120.5874634,27.3425541],[120.5870972,27.3396816],[120.5844269,27.3393402],[120.5821075,27.3409901],[120.5802765,27.3435936],[120.5802231,27.3459415]]]]},
  2417 +"properties":{
  2418 +"gid":403,
  2419 +"name":"浙江省"}
  2420 +},
  2421 +{"type":"Feature",
  2422 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.5630569,27.3308678],[120.5631485,27.3285713],[120.5606613,27.3262043],[120.5570908,27.3251858],[120.5549927,27.3265076],[120.5559387,27.3286037],[120.5581665,27.3309631],[120.5604706,27.3314877],[120.5623016,27.3306198],[120.5630569,27.3308678]]]]},
  2423 +"properties":{
  2424 +"gid":404,
  2425 +"name":"浙江省"}
  2426 +},
  2427 +{"type":"Feature",
  2428 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.2778702,27.2874584],[120.2809906,27.2840385],[120.2759476,27.2764053],[120.269577,27.2712917],[120.2618484,27.2737484],[120.2653732,27.2799873],[120.2722473,27.2848778],[120.2778702,27.2874584]]]]},
  2429 +"properties":{
  2430 +"gid":405,
  2431 +"name":"福建省"}
  2432 +},
  2433 +{"type":"Feature",
  2434 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.2860336,27.2705231],[120.2861023,27.265007],[120.2776489,27.2628613],[120.273613,27.2577667],[120.2660904,27.2632122],[120.2706604,27.2671642],[120.2778091,27.2711372],[120.2860336,27.2705231]]]]},
  2435 +"properties":{
  2436 +"gid":406,
  2437 +"name":"福建省"}
  2438 +},
  2439 +{"type":"Feature",
  2440 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.5500031,27.2495861],[120.5595016,27.2498474],[120.5605621,27.2489567],[120.5609207,27.2459774],[120.5556335,27.2428417],[120.5522766,27.2432098],[120.5501633,27.2449913],[120.5500031,27.2495861]]]]},
  2441 +"properties":{
  2442 +"gid":407,
  2443 +"name":"浙江省"}
  2444 +},
  2445 +{"type":"Feature",
  2446 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.5226669,27.1846924],[120.5230713,27.1858997],[120.5266037,27.1858025],[120.5274963,27.1848431],[120.5291367,27.1828156],[120.5305328,27.1802692],[120.5309296,27.1756611],[120.52565,27.1695423],[120.5240402,27.1682472],[120.52285,27.1667652],[120.5230637,27.1645298],[120.5246811,27.1637878],[120.5266113,27.1602936],[120.5274506,27.1572762],[120.5261078,27.1558151],[120.5236969,27.1535454],[120.5207977,27.1528625],[120.5181427,27.1535206],[120.5147171,27.1584263],[120.5123672,27.1651077],[120.5131683,27.1669235],[120.5174103,27.172514],[120.5191269,27.1751633],[120.5238113,27.1780701],[120.5253525,27.1797771],[120.524292,27.1815853],[120.5226669,27.1846924]]]]},
  2447 +"properties":{
  2448 +"gid":408,
  2449 +"name":"浙江省"}
  2450 +},
  2451 +{"type":"Feature",
  2452 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.4665833,27.1660671],[120.4680481,27.1671925],[120.4701538,27.1674023],[120.473999,27.1670551],[120.4797134,27.161087],[120.4842224,27.1554317],[120.4881516,27.151125],[120.489212,27.1487083],[120.4881363,27.1478367],[120.4871368,27.1460304],[120.4872589,27.1448765],[120.4858017,27.1444683],[120.4835815,27.1448917],[120.480957,27.1480503],[120.4781036,27.1508274],[120.4760513,27.1514606],[120.4704819,27.1532612],[120.4679031,27.1562042],[120.4649734,27.1622868],[120.4652405,27.1650257],[120.4665833,27.1660671]]]]},
  2453 +"properties":{
  2454 +"gid":409,
  2455 +"name":"浙江省"}
  2456 +},
  2457 +{"type":"Feature",
  2458 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.4024963,27.0992146],[120.4016571,27.1010303],[120.4038162,27.1052303],[120.4098282,27.109539],[120.4133835,27.1107922],[120.417778,27.1097679],[120.4204102,27.1080036],[120.4207077,27.106863],[120.4164734,27.1035213],[120.4144516,27.1023159],[120.4098969,27.1005745],[120.4091568,27.0996342],[120.4068832,27.09865],[120.4043198,27.0985775],[120.4024963,27.0992146]]]]},
  2459 +"properties":{
  2460 +"gid":410,
  2461 +"name":"福建省"}
  2462 +},
  2463 +{"type":"Feature",
  2464 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.3111572,27.0894451],[120.3128815,27.0915642],[120.3159332,27.0925732],[120.3179703,27.0928631],[120.319313,27.0915222],[120.3193588,27.0901451],[120.3186417,27.0887432],[120.3153687,27.087038],[120.3125076,27.0878735],[120.3111572,27.0894451]]]]},
  2465 +"properties":{
  2466 +"gid":411,
  2467 +"name":"福建省"}
  2468 +},
  2469 +{"type":"Feature",
  2470 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.2898636,27.0412235],[120.2921677,27.0415192],[120.293808,27.0388088],[120.293663,27.0358162],[120.2919312,27.0341549],[120.2896271,27.0338573],[120.2885284,27.0358944],[120.2881927,27.0379543],[120.2889099,27.0393543],[120.2904129,27.0405483],[120.2898636,27.0412235]]]]},
  2471 +"properties":{
  2472 +"gid":412,
  2473 +"name":"福建省"}
  2474 +},
  2475 +{"type":"Feature",
  2476 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.6909637,27.0132275],[120.6919632,27.0147476],[120.6938477,27.0158539],[120.6967468,27.0164318],[120.6999207,27.0146637],[120.7017136,27.0090523],[120.704483,27.0072689],[120.7062683,27.0063782],[120.7060318,27.0035267],[120.7023773,27.0004215],[120.6983414,26.9990044],[120.6962509,26.9983063],[120.6935883,26.999073],[120.6925812,27.0012283],[120.6908417,27.0047474],[120.6906128,27.0072918],[120.6898422,27.0100384],[120.6909637,27.0132275]]]]},
  2477 +"properties":{
  2478 +"gid":413,
  2479 +"name":"福建省"}
  2480 +},
  2481 +{"type":"Feature",
  2482 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.709053,26.9954109],[120.7107315,26.9970627],[120.7140808,26.9961967],[120.719017,26.9948444],[120.7211838,26.9936485],[120.7213364,26.9922428],[120.7169571,26.989748],[120.7151108,26.9857521],[120.715477,26.9831867],[120.716011,26.9814777],[120.7144775,26.9784412],[120.7133179,26.9797401],[120.7120438,26.981184],[120.7111588,26.9855785],[120.7089996,26.9921722],[120.709053,26.9954109]]]]},
  2483 +"properties":{
  2484 +"gid":414,
  2485 +"name":"福建省"}
  2486 +},
  2487 +{"type":"Feature",
  2488 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.4846268,26.9794464],[120.4899673,26.9805183],[120.4920273,26.9803448],[120.4938812,26.9790173],[120.4947128,26.9772015],[120.4917068,26.9750481],[120.4844894,26.976223],[120.4837112,26.9764328],[120.4836731,26.977581],[120.4846268,26.9794464]]]]},
  2489 +"properties":{
  2490 +"gid":415,
  2491 +"name":"福建省"}
  2492 +},
  2493 +{"type":"Feature",
  2494 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.3227234,26.9482708],[120.3204498,26.9495544],[120.3222122,26.9534607],[120.3261337,26.9573784],[120.3273773,26.9624977],[120.3330917,26.9704552],[120.3385162,26.9728756],[120.3434372,26.9744129],[120.348732,26.9720554],[120.3544769,26.9702721],[120.3589325,26.9712334],[120.365242,26.964571],[120.3705902,26.9625263],[120.3726883,26.9603062],[120.3729706,26.9538689],[120.3727036,26.950388],[120.3779221,26.9416428],[120.3856964,26.9392471],[120.3921967,26.9376755],[120.3928528,26.9353409],[120.389267,26.9332962],[120.3798981,26.932724],[120.3751526,26.9321251],[120.3649368,26.9268742],[120.357811,26.9269371],[120.3512573,26.928196],[120.3369675,26.9340801],[120.3244934,26.9441795],[120.3227234,26.9482708]]]]},
  2495 +"properties":{
  2496 +"gid":416,
  2497 +"name":"福建省"}
  2498 +},
  2499 +{"type":"Feature",
  2500 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.3727188,26.9666042],[120.3855972,26.9651356],[120.3891907,26.9652386],[120.3912811,26.9641495],[120.3908463,26.9620667],[120.3896027,26.9611111],[120.385788,26.960083],[120.3798904,26.9599113],[120.3759918,26.9611797],[120.3730774,26.9638557],[120.3732834,26.9654713],[120.3727188,26.9666042]]]]},
  2501 +"properties":{
  2502 +"gid":417,
  2503 +"name":"福建省"}
  2504 +},
  2505 +{"type":"Feature",
  2506 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.3156128,26.9402103],[120.320488,26.9372711],[120.3183136,26.9335499],[120.3126068,26.9327927],[120.3052063,26.9280663],[120.2929611,26.9314156],[120.2836609,26.9352989],[120.2850189,26.9389439],[120.2991867,26.942358],[120.3081589,26.9476242],[120.3118515,26.9453468],[120.3156128,26.9402103]]]]},
  2507 +"properties":{
  2508 +"gid":418,
  2509 +"name":"福建省"}
  2510 +},
  2511 +{"type":"Feature",
  2512 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.2484818,26.9346466],[120.2497025,26.9362545],[120.2549515,26.9361382],[120.2580566,26.936533],[120.2613525,26.937952],[120.2638931,26.9390583],[120.2660828,26.9388523],[120.2664337,26.9375439],[120.2664871,26.9359608],[120.257843,26.9319534],[120.2559967,26.9302216],[120.2554932,26.9286175],[120.2573013,26.9276257],[120.2603302,26.9282417],[120.263237,26.9295044],[120.2673264,26.9294472],[120.2699127,26.9281368],[120.2693863,26.9265327],[120.2665863,26.9246254],[120.2576218,26.9228611],[120.252449,26.9220257],[120.2501678,26.9203587],[120.2480927,26.9205494],[120.247467,26.9223137],[120.2485962,26.9306469],[120.2484818,26.9346466]]]]},
  2513 +"properties":{
  2514 +"gid":419,
  2515 +"name":"福建省"}
  2516 +},
  2517 +{"type":"Feature",
  2518 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.1921005,26.8929825],[120.1940918,26.8946514],[120.1987,26.8947906],[120.2002563,26.8941479],[120.2003326,26.8923092],[120.1991196,26.8904343],[120.1973572,26.8894615],[120.1935272,26.8891163],[120.1917191,26.8895226],[120.1913376,26.8929596],[120.1921005,26.8929825]]]]},
  2519 +"properties":{
  2520 +"gid":420,
  2521 +"name":"福建省"}
  2522 +},
  2523 +{"type":"Feature",
  2524 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.223732,26.8921623],[120.2257233,26.8913345],[120.2268372,26.8890858],[120.2257614,26.8858776],[120.2229919,26.8828182],[120.2208481,26.8798523],[120.218132,26.8776951],[120.2164917,26.8770199],[120.2152328,26.8772907],[120.2143936,26.8823147],[120.215271,26.8867302],[120.2166138,26.8885403],[120.219368,26.8909645],[120.221611,26.8921909],[120.223732,26.8921623]]]]},
  2525 +"properties":{
  2526 +"gid":421,
  2527 +"name":"福建省"}
  2528 +},
  2529 +{"type":"Feature",
  2530 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.2004166,26.8833447],[120.2039108,26.8859787],[120.2086334,26.8833618],[120.2089691,26.881073],[120.2064972,26.8784676],[120.2026596,26.8783531],[120.2000427,26.8798847],[120.1997223,26.881485],[120.2004166,26.8833447]]]]},
  2531 +"properties":{
  2532 +"gid":422,
  2533 +"name":"福建省"}
  2534 +},
  2535 +{"type":"Feature",
  2536 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.1164169,26.8348007],[120.1191483,26.8371849],[120.1227036,26.8379822],[120.1237488,26.8375549],[120.1293869,26.8372688],[120.1302567,26.8349953],[120.1252518,26.831852],[120.1183777,26.8307209],[120.1167831,26.8320541],[120.1164169,26.8348007]]]]},
  2537 +"properties":{
  2538 +"gid":423,
  2539 +"name":"福建省"}
  2540 +},
  2541 +{"type":"Feature",
  2542 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.1101685,26.8309288],[120.1130371,26.8296375],[120.114151,26.8273735],[120.1121826,26.825243],[120.1086197,26.8246727],[120.1060028,26.8262024],[120.1051483,26.8282452],[120.1065903,26.8305912],[120.1093826,26.8313656],[120.1101685,26.8309288]]]]},
  2543 +"properties":{
  2544 +"gid":424,
  2545 +"name":"福建省"}
  2546 +},
  2547 +{"type":"Feature",
  2548 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.0881119,26.8247337],[120.0910416,26.8285027],[120.0968704,26.830061],[120.0991821,26.8301334],[120.1002502,26.8290157],[120.0993423,26.8259983],[120.0955734,26.8240414],[120.090477,26.8231945],[120.0881119,26.8247337]]]]},
  2549 +"properties":{
  2550 +"gid":425,
  2551 +"name":"福建省"}
  2552 +},
  2553 +{"type":"Feature",
  2554 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.1434784,26.8057785],[120.1498871,26.8066711],[120.1525803,26.807848],[120.1568909,26.8089008],[120.1602402,26.8085403],[120.1608124,26.8069496],[120.1598434,26.805769],[120.1563492,26.803133],[120.1493073,26.7996998],[120.1447067,26.7993298],[120.1410828,26.8003693],[120.1404572,26.8031101],[120.1414337,26.8047485],[120.1434784,26.8057785]]]]},
  2555 +"properties":{
  2556 +"gid":426,
  2557 +"name":"福建省"}
  2558 +},
  2559 +{"type":"Feature",
  2560 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.5950623,26.7762642],[119.6005173,26.7788887],[119.6043777,26.7794857],[119.6069336,26.7791958],[119.6070938,26.7759781],[119.5990372,26.763546],[119.6017609,26.7600384],[119.5991669,26.7591839],[119.5975723,26.7569256],[119.5969162,26.752121],[119.5897369,26.7516041],[119.5873871,26.7502823],[119.5823669,26.7536144],[119.5811462,26.7559395],[119.583168,26.7636948],[119.585701,26.7714367],[119.5901413,26.7743168],[119.5894775,26.7780037],[119.5902863,26.7793617],[119.5923462,26.7800007],[119.5940399,26.776289],[119.5950623,26.7762642]]]]},
  2561 +"properties":{
  2562 +"gid":427,
  2563 +"name":"福建省"}
  2564 +},
  2565 +{"type":"Feature",
  2566 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.1356125,26.7696152],[120.1400833,26.773201],[120.1433563,26.7746811],[120.1456528,26.7749805],[120.1472168,26.7741089],[120.146553,26.7715588],[120.142067,26.7682037],[120.1390228,26.7676506],[120.1374664,26.7680626],[120.1356125,26.7696152]]]]},
  2567 +"properties":{
  2568 +"gid":428,
  2569 +"name":"福建省"}
  2570 +},
  2571 +{"type":"Feature",
  2572 +"geometry":{"type":"MultiPolygon","coordinates":[[[[109.5374527,26.7500324],[109.5710068,26.7673092],[109.5857162,26.7597694],[109.5809402,26.7345543],[109.5582428,26.724268],[109.5380783,26.727047],[109.5374527,26.7500324]]]]},
  2573 +"properties":{
  2574 +"gid":429,
  2575 +"name":"贵州省"}
  2576 +},
  2577 +{"type":"Feature",
  2578 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.6509628,26.752203],[119.6505966,26.7483101],[119.6443787,26.7459354],[119.6423798,26.7475891],[119.6416473,26.7492142],[119.6427536,26.7514839],[119.6509628,26.752203]]]]},
  2579 +"properties":{
  2580 +"gid":430,
  2581 +"name":"福建省"}
  2582 +},
  2583 +{"type":"Feature",
  2584 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.1103516,26.7474537],[120.1120529,26.7498055],[120.1145782,26.750803],[120.1171265,26.751112],[120.1187286,26.749321],[120.1177979,26.7469921],[120.115303,26.7455349],[120.1109619,26.7449417],[120.1096268,26.7462826],[120.1103516,26.7474537]]]]},
  2585 +"properties":{
  2586 +"gid":431,
  2587 +"name":"福建省"}
  2588 +},
  2589 +{"type":"Feature",
  2590 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120,26.7168484],[119.9911575,26.722044],[119.9886093,26.7234421],[119.9886169,26.7245903],[119.9906998,26.7268677],[120,26.7300224],[120.0086365,26.7291164],[120.0104294,26.7294006],[120.0153503,26.7279472],[120.0190201,26.7257614],[120.0193481,26.7239323],[120.0184097,26.7218323],[120.0171738,26.7208729],[120.0118027,26.720705],[120.0062103,26.7196083],[120,26.7168484]]]]},
  2591 +"properties":{
  2592 +"gid":432,
  2593 +"name":"福建省"}
  2594 +},
  2595 +{"type":"Feature",
  2596 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.6343689,26.7202454],[119.6485214,26.7215061],[119.6529617,26.7243824],[119.6573029,26.7235909],[119.6558533,26.7181168],[119.6479187,26.7183075],[119.6383667,26.7157841],[119.6343689,26.7202454]]]]},
  2597 +"properties":{
  2598 +"gid":433,
  2599 +"name":"福建省"}
  2600 +},
  2601 +{"type":"Feature",
  2602 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.6513138,26.7028484],[119.6467667,26.7057114],[119.6428909,26.70397],[119.6406097,26.7047138],[119.6488037,26.7136974],[119.6526489,26.7138329],[119.6536331,26.7124329],[119.6531372,26.7044106],[119.6513138,26.7028484]]]]},
  2603 +"properties":{
  2604 +"gid":434,
  2605 +"name":"福建省"}
  2606 +},
  2607 +{"type":"Feature",
  2608 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.3658829,26.7075138],[120.3654709,26.7052212],[120.3637772,26.7043953],[120.3601303,26.7039585],[120.3554764,26.7018509],[120.355217,26.7003918],[120.3504181,26.6955223],[120.3493576,26.6955681],[120.3472595,26.6998234],[120.3447876,26.7026348],[120.3441772,26.7038975],[120.3461533,26.7083168],[120.347702,26.7085304],[120.3523865,26.7106266],[120.3569107,26.7112598],[120.3592606,26.7117767],[120.3618317,26.7115154],[120.3639603,26.7107811],[120.3649673,26.7083931],[120.3658829,26.7075138]]]]},
  2609 +"properties":{
  2610 +"gid":435,
  2611 +"name":"福建省"}
  2612 +},
  2613 +{"type":"Feature",
  2614 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.1187973,26.7007828],[120.1200409,26.702013],[120.1218872,26.7024841],[120.1239777,26.7027397],[120.127327,26.7017155],[120.1334686,26.6982803],[120.1339874,26.6915474],[120.1313934,26.6899586],[120.1286469,26.6902237],[120.127243,26.6918888],[120.1225662,26.695116],[120.118988,26.6975784],[120.1187973,26.7007828]]]]},
  2615 +"properties":{
  2616 +"gid":436,
  2617 +"name":"福建省"}
  2618 +},
  2619 +{"type":"Feature",
  2620 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.6161118,26.6901531],[119.6188889,26.6974316],[119.6212463,26.699213],[119.6227722,26.698946],[119.622879,26.6938934],[119.6218033,26.6920834],[119.6181564,26.6901054],[119.6161118,26.6901531]]]]},
  2621 +"properties":{
  2622 +"gid":437,
  2623 +"name":"福建省"}
  2624 +},
  2625 +{"type":"Feature",
  2626 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.9405365,26.6606808],[119.9288635,26.6715431],[119.9221268,26.6691952],[119.9208984,26.6708336],[119.9217072,26.6721897],[119.9240265,26.6725883],[119.9264297,26.6757393],[119.9161911,26.6757755],[119.9110413,26.6747627],[119.911438,26.6793423],[119.9096985,26.680994],[119.9053802,26.6820259],[119.9026413,26.684391],[119.9009628,26.6878777],[119.9036636,26.6923981],[119.9099197,26.6961365],[119.9135208,26.6965027],[119.9209518,26.6948948],[119.9436493,26.6941109],[119.9443436,26.6917973],[119.9313889,26.6788216],[119.9328079,26.6751137],[119.9393082,26.6703529],[119.9419785,26.6656933],[119.9405365,26.6606808]]]]},
  2627 +"properties":{
  2628 +"gid":438,
  2629 +"name":"福建省"}
  2630 +},
  2631 +{"type":"Feature",
  2632 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.7719269,26.6792259],[119.7713165,26.6840611],[119.7727127,26.6879292],[119.7756119,26.6908398],[119.7828217,26.6920357],[119.7858429,26.6901245],[119.7877121,26.6845684],[119.7719269,26.6792259]]]]},
  2633 +"properties":{
  2634 +"gid":439,
  2635 +"name":"福建省"}
  2636 +},
  2637 +{"type":"Feature",
  2638 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.3843613,26.6919098],[120.3871689,26.6919918],[120.3893814,26.687685],[120.3900223,26.6840248],[120.3876038,26.680275],[120.3850937,26.6790524],[120.3822784,26.6789703],[120.3806534,26.6814537],[120.3823395,26.6842632],[120.3830109,26.6868114],[120.3828735,26.6907177],[120.3843613,26.6919098]]]]},
  2639 +"properties":{
  2640 +"gid":440,
  2641 +"name":"福建省"}
  2642 +},
  2643 +{"type":"Feature",
  2644 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.8087769,26.670496],[119.8055878,26.6749363],[119.7952881,26.6813946],[119.7946625,26.6860008],[119.7967682,26.6877823],[119.8016434,26.687891],[119.8116913,26.6819],[119.8138809,26.6781712],[119.8190231,26.6787281],[119.820961,26.6754665],[119.8175812,26.6737156],[119.8160706,26.6744423],[119.8184586,26.6691036],[119.8141022,26.6687546],[119.8087769,26.670496]]]]},
  2645 +"properties":{
  2646 +"gid":441,
  2647 +"name":"福建省"}
  2648 +},
  2649 +{"type":"Feature",
  2650 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.7537613,26.6792202],[119.7533569,26.6744099],[119.754837,26.6725368],[119.7525711,26.6654778],[119.7493973,26.6621132],[119.7258835,26.6544342],[119.7162628,26.6491623],[119.7170868,26.6429443],[119.708992,26.6374073],[119.6988602,26.6408672],[119.6889877,26.6358318],[119.6831131,26.6359749],[119.6775665,26.6388645],[119.6764526,26.6446285],[119.6741867,26.6460629],[119.671051,26.6436138],[119.6676865,26.6335964],[119.6646805,26.6359634],[119.6621323,26.6362553],[119.6586609,26.639782],[119.6572189,26.6430302],[119.6585693,26.6455231],[119.6569519,26.6513004],[119.650032,26.6597309],[119.6506424,26.6631584],[119.6540833,26.666748],[119.6585007,26.6691666],[119.6751785,26.6705971],[119.6897583,26.6702404],[119.6976089,26.6675243],[119.7065887,26.6682224],[119.7121887,26.6671658],[119.7149811,26.6664085],[119.7162018,26.6645432],[119.7145767,26.661829],[119.7150574,26.6604385],[119.7224121,26.6581917],[119.7262573,26.6583271],[119.7275772,26.6601295],[119.7243271,26.6707687],[119.7278366,26.6771069],[119.7432632,26.6790218],[119.7501297,26.6777039],[119.7537613,26.6792202]]]]},
  2651 +"properties":{
  2652 +"gid":442,
  2653 +"name":"福建省"}
  2654 +},
  2655 +{"type":"Feature",
  2656 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.3212204,26.6553478],[120.3196182,26.6571407],[120.3200073,26.6601429],[120.3215027,26.6615658],[120.3251038,26.661211],[120.3254471,26.660675],[120.3264465,26.6591816],[120.3275375,26.6573734],[120.3240433,26.655201],[120.3212204,26.6553478]]]]},
  2657 +"properties":{
  2658 +"gid":443,
  2659 +"name":"福建省"}
  2660 +},
  2661 +{"type":"Feature",
  2662 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.3537064,26.6553764],[120.3591232,26.6546135],[120.3638535,26.6513004],[120.3673172,26.6472626],[120.3676529,26.6454315],[120.3643265,26.6451073],[120.3606873,26.6466103],[120.3547974,26.6466694],[120.3509369,26.6472473],[120.3497772,26.651123],[120.3504868,26.6527538],[120.3522263,26.6541824],[120.3529892,26.6542053],[120.3537064,26.6553764]]]]},
  2663 +"properties":{
  2664 +"gid":444,
  2665 +"name":"福建省"}
  2666 +},
  2667 +{"type":"Feature",
  2668 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.5478897,26.6495399],[119.5456238,26.6507397],[119.5451736,26.6528187],[119.54673,26.653698],[119.550827,26.6538334],[119.5548401,26.6509838],[119.5478897,26.6495399]]]]},
  2669 +"properties":{
  2670 +"gid":445,
  2671 +"name":"福建省"}
  2672 +},
  2673 +{"type":"Feature",
  2674 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.3369293,26.6525879],[120.3402863,26.6515369],[120.3411026,26.6504116],[120.3406677,26.6483288],[120.3384094,26.6471119],[120.3363571,26.6470528],[120.3350372,26.6481647],[120.3339462,26.6502018],[120.3356705,26.652092],[120.3369293,26.6525879]]]]},
  2675 +"properties":{
  2676 +"gid":446,
  2677 +"name":"福建省"}
  2678 +},
  2679 +{"type":"Feature",
  2680 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.5638733,26.6358528],[119.5626297,26.6372585],[119.5627213,26.6402397],[119.5692368,26.6444473],[119.5740891,26.644104],[119.5755768,26.6426907],[119.5760574,26.6415329],[119.5711594,26.6402702],[119.5664368,26.6362495],[119.5638733,26.6358528]]]]},
  2681 +"properties":{
  2682 +"gid":447,
  2683 +"name":"福建省"}
  2684 +},
  2685 +{"type":"Feature",
  2686 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.5550232,26.6321125],[119.559967,26.6336479],[119.5601425,26.630661],[119.5572815,26.6291218],[119.5547714,26.6307869],[119.5550232,26.6321125]]]]},
  2687 +"properties":{
  2688 +"gid":448,
  2689 +"name":"福建省"}
  2690 +},
  2691 +{"type":"Feature",
  2692 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.7645264,26.6054344],[119.7594681,26.6060886],[119.7564774,26.6086864],[119.7575226,26.6178417],[119.7522125,26.6198101],[119.7664108,26.6240482],[119.7705765,26.6264687],[119.7779999,26.6265125],[119.7908707,26.6289444],[119.7891388,26.631052],[119.7956009,26.6329556],[119.7973404,26.6313057],[119.7967529,26.6290245],[119.8116531,26.6226807],[119.8125916,26.6199036],[119.8072815,26.6136112],[119.8058929,26.6097431],[119.7982864,26.6124592],[119.7936325,26.6161995],[119.7914886,26.6151218],[119.7898865,26.6135902],[119.7900467,26.6103725],[119.7869186,26.608614],[119.7792206,26.6078892],[119.772438,26.6034698],[119.7645264,26.6054344]]]]},
  2693 +"properties":{
  2694 +"gid":449,
  2695 +"name":"福建省"}
  2696 +},
  2697 +{"type":"Feature",
  2698 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.0971375,26.6141148],[120.0970383,26.616642],[120.0980301,26.617363],[120.1028595,26.6182003],[120.1064606,26.6176224],[120.1085434,26.616766],[120.1086273,26.6144695],[120.1078873,26.6137562],[120.1048737,26.6125126],[120.1013031,26.6121731],[120.0971375,26.6141148]]]]},
  2699 +"properties":{
  2700 +"gid":450,
  2701 +"name":"福建省"}
  2702 +},
  2703 +{"type":"Feature",
  2704 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.1535797,26.612793],[120.1579208,26.6127014],[120.1623917,26.6084156],[120.1632538,26.5869064],[120.1604233,26.5823517],[120.1529617,26.5794983],[120.1478729,26.5802212],[120.1449738,26.5785465],[120.1462631,26.5710602],[120.1451569,26.5680866],[120.1336975,26.560585],[120.1318512,26.5616283],[120.1275635,26.5669289],[120.1202316,26.5697918],[120.117157,26.570488],[120.1151962,26.5741558],[120.1175613,26.577734],[120.1197128,26.5800381],[120.1237564,26.5799866],[120.1337891,26.584301],[120.1368103,26.5883083],[120.1365433,26.5917358],[120.1383438,26.5953922],[120.1459579,26.6023998],[120.1486206,26.6093235],[120.1508636,26.6121368],[120.1535797,26.612793]]]]},
  2705 +"properties":{
  2706 +"gid":451,
  2707 +"name":"福建省"}
  2708 +},
  2709 +{"type":"Feature",
  2710 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.8046265,26.6031094],[119.8034668,26.5976391],[119.792778,26.5995159],[119.7968597,26.6074467],[119.8046265,26.6031094]]]]},
  2711 +"properties":{
  2712 +"gid":452,
  2713 +"name":"福建省"}
  2714 +},
  2715 +{"type":"Feature",
  2716 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.8101501,26.5738277],[119.8105698,26.5625706],[119.7999268,26.5658226],[119.8012924,26.5685425],[119.8101501,26.5738277]]]]},
  2717 +"properties":{
  2718 +"gid":453,
  2719 +"name":"福建省"}
  2720 +},
  2721 +{"type":"Feature",
  2722 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.1567993,26.5678539],[120.1610336,26.5676613],[120.1614532,26.5639915],[120.1614838,26.5602951],[120.1587219,26.5575256],[120.1510162,26.5568256],[120.1482315,26.5574818],[120.1451797,26.5585384],[120.1478119,26.5617123],[120.1514969,26.5634327],[120.154213,26.566803],[120.1567993,26.5678539]]]]},
  2723 +"properties":{
  2724 +"gid":454,
  2725 +"name":"福建省"}
  2726 +},
  2727 +{"type":"Feature",
  2728 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.9685135,26.5564938],[119.9710007,26.5575047],[119.9715271,26.550375],[119.9646072,26.5496387],[119.9610901,26.551569],[119.9648209,26.5562897],[119.9685135,26.5564938]]]]},
  2729 +"properties":{
  2730 +"gid":455,
  2731 +"name":"福建省"}
  2732 +},
  2733 +{"type":"Feature",
  2734 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120,26.5353832],[119.9881668,26.534214],[119.9957428,26.5483799],[119.993988,26.5520668],[120,26.5542374],[120.0029831,26.5553627],[120.005188,26.5539513],[120.0076065,26.5485115],[120.0056534,26.54245],[120.0013733,26.5380917],[120,26.5353832]]]]},
  2735 +"properties":{
  2736 +"gid":456,
  2737 +"name":"福建省"}
  2738 +},
  2739 +{"type":"Feature",
  2740 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.1415863,26.5486298],[120.144783,26.549366],[120.1480637,26.5465546],[120.1484299,26.5420685],[120.1455612,26.5378647],[120.1401215,26.53438],[120.1356964,26.5339622],[120.1333313,26.5353413],[120.1327515,26.5369892],[120.1355515,26.5421295],[120.1386566,26.5442352],[120.1415863,26.5486298]]]]},
  2741 +"properties":{
  2742 +"gid":457,
  2743 +"name":"福建省"}
  2744 +},
  2745 +{"type":"Feature",
  2746 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.0216064,26.5034904],[120.022377,26.5054817],[120.0274506,26.507822],[120.0299835,26.5089931],[120.0326996,26.5099468],[120.033577,26.5113487],[120.0331726,26.5138893],[120.0302429,26.516592],[120.0287628,26.520237],[120.0341263,26.5206261],[120.0396194,26.5229073],[120.0430069,26.5252953],[120.0447083,26.527729],[120.0490494,26.5246353],[120.0510788,26.5216751],[120.0532913,26.5209827],[120.0555267,26.5216217],[120.0562897,26.5247612],[120.0613632,26.5307274],[120.0631104,26.5310516],[120.0653915,26.5307312],[120.0651321,26.5195045],[120.0642776,26.5158062],[120.0607224,26.5124893],[120.0581436,26.5098],[120.0595779,26.5071144],[120.0597916,26.5034561],[120.0558929,26.5015945],[120.0504608,26.5022907],[120.0468292,26.5033741],[120.0457916,26.5071487],[120.0450134,26.5063038],[120.0441284,26.5049019],[120.0430374,26.5035267],[120.0416489,26.5016232],[120.0384827,26.4980602],[120.0362473,26.4974213],[120.0331879,26.4968967],[120.028923,26.4992161],[120.0216064,26.5034904]]]]},
  2747 +"properties":{
  2748 +"gid":458,
  2749 +"name":"福建省"}
  2750 +},
  2751 +{"type":"Feature",
  2752 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.1410675,26.497015],[120.1423264,26.4975147],[120.1406326,26.495163],[120.1387711,26.4902763],[120.1370468,26.4886131],[120.1360321,26.4883518],[120.1336899,26.4894314],[120.130928,26.4948654],[120.1315765,26.4978752],[120.1370773,26.500803],[120.1426392,26.5025845],[120.1432419,26.5003014],[120.1410675,26.497015]]]]},
  2753 +"properties":{
  2754 +"gid":459,
  2755 +"name":"福建省"}
  2756 +},
  2757 +{"type":"Feature",
  2758 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.9839935,26.4968739],[119.9804535,26.5014744],[119.9850616,26.5020409],[119.9875793,26.5008259],[119.9839935,26.4968739]]]]},
  2759 +"properties":{
  2760 +"gid":460,
  2761 +"name":"福建省"}
  2762 +},
  2763 +{"type":"Feature",
  2764 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.6179733,26.4378605],[119.6156998,26.4390621],[119.6173172,26.4417782],[119.620697,26.4439926],[119.6229172,26.4414158],[119.6208115,26.43894],[119.6179733,26.4378605]]]]},
  2765 +"properties":{
  2766 +"gid":461,
  2767 +"name":"福建省"}
  2768 +},
  2769 +{"type":"Feature",
  2770 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.8820496,26.4202633],[119.884613,26.4201984],[119.8883667,26.4182644],[119.8883133,26.4164295],[119.8828125,26.4119816],[119.8789368,26.4107037],[119.8774414,26.41189],[119.8782578,26.4132462],[119.8829422,26.4161091],[119.8820496,26.4202633]]]]},
  2771 +"properties":{
  2772 +"gid":462,
  2773 +"name":"福建省"}
  2774 +},
  2775 +{"type":"Feature",
  2776 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.9133072,26.4195671],[119.9141464,26.4178238],[119.9128494,26.4089069],[119.9031067,26.4075527],[119.9028931,26.4089355],[119.9133072,26.4195671]]]]},
  2777 +"properties":{
  2778 +"gid":463,
  2779 +"name":"福建省"}
  2780 +},
  2781 +{"type":"Feature",
  2782 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.5047073,26.3918629],[120.5077972,26.3904915],[120.5084915,26.3857727],[120.5073929,26.3810844],[120.5044327,26.3761978],[120.4953232,26.3687687],[120.489418,26.3679981],[120.4869995,26.3688107],[120.4855728,26.3708649],[120.4855728,26.3751316],[120.4882965,26.3803959],[120.4923782,26.3823128],[120.4989471,26.3883419],[120.5047073,26.3918629]]]]},
  2783 +"properties":{
  2784 +"gid":464,
  2785 +"name":"福建省"}
  2786 +},
  2787 +{"type":"Feature",
  2788 +"geometry":{"type":"MultiPolygon","coordinates":[[[[109.4780197,26.032774],[109.5086517,26.0013237],[109.5242233,25.9990349],[109.5467377,26.0223465],[109.5938034,26.0260391],[109.6148834,26.045414],[109.6362228,26.0489426],[109.647438,26.017868],[109.7000427,26.0105782],[109.7179871,25.987402],[109.7066116,25.966341],[109.6858673,25.9577789],[109.6570663,25.8836384],[109.7424164,25.8926506],[109.7573624,25.8809147],[109.7745972,25.8689747],[109.8016663,25.8780689],[109.8214722,25.9146233],[109.8019333,25.9768372],[109.77771,25.9953442],[109.7974167,26.0376434],[109.8100662,26.0442448],[109.8357162,26.0324097],[109.8644867,26.0341644],[109.8812866,26.0867481],[109.8955994,26.1011715],[109.9028091,26.1483459],[109.9617691,26.1989212],[109.9798508,26.1832962],[110.0037994,26.1851902],[110.0227737,26.1594639],[110.0468292,26.1723804],[110.0812836,26.1711693],[110.087059,26.1381645],[110.070137,26.1069641],[110.0601425,26.0531044],[110.0931473,26.0224762],[110.110527,26.038063],[110.1507492,26.0210533],[110.1769714,26.0635986],[110.1919098,26.0713406],[110.2074966,26.0462418],[110.2406235,26.0254574],[110.2435837,25.9682999],[110.2769318,25.9684124],[110.3208618,25.9787254],[110.3685532,26.0921822],[110.4331436,26.1570873],[110.4693527,26.1833591],[110.4858093,26.1688042],[110.5129013,26.1901665],[110.5408173,26.2324276],[110.5377121,26.2657013],[110.5701218,26.2664261],[110.5810089,26.3048668],[110.612648,26.3374958],[110.6304703,26.3139801],[110.676651,26.3186893],[110.7061996,26.295248],[110.7369232,26.3172817],[110.7455063,26.2971306],[110.727562,26.2726631],[110.7565536,26.2524223],[110.7837982,26.2617912],[110.8317871,26.259573],[110.8508606,26.2716331],[110.8937073,26.2767124],[110.9150085,26.2589226],[110.93293,26.2923222],[110.9228134,26.3193645],[110.941597,26.3385296],[110.9378128,26.3759422],[110.9586868,26.3863907],[110.9770966,26.3846493],[110.9892502,26.3585339],[110.9925079,26.3236446],[111.0146866,26.3304176],[111.0387573,26.3174438],[111.0698929,26.3233337],[111.0929489,26.3057537],[111.1611176,26.3067322],[111.1890106,26.289156],[111.1977692,26.26898],[111.2598038,26.266901],[111.2817764,26.2548008],[111.2821198,26.227705],[111.2571564,26.2120075],[111.2654266,26.1775856],[111.2484436,26.1492825],[111.2668762,26.1213264],[111.2437973,26.0840435],[111.2479706,26.0576477],[111.2126236,26.0386925],[111.1952286,25.9869537],[111.1933136,25.9559402],[111.2171097,25.919054],[111.2154007,25.8979187],[111.2455368,25.8633461],[111.2766037,25.8547211],[111.2870102,25.8598061],[111.2925491,25.8816414],[111.325058,25.9019489],[111.3639984,25.9004478],[111.3772583,25.8844051],[111.4029465,25.8860741],[111.4271317,25.880846],[111.4472198,25.889616],[111.4495392,25.8698692],[111.4843826,25.8738403],[111.4826202,25.8600559],[111.4513779,25.8510208],[111.4195786,25.8362751],[111.4346924,25.7724609],[111.410553,25.7710304],[111.3824005,25.7365131],[111.3117828,25.7305794],[111.2976074,25.710556],[111.3014526,25.6986256],[111.3085938,25.6855564],[111.3038864,25.6416759],[111.3339386,25.6061649],[111.3109665,25.5597057],[111.3222122,25.526207],[111.2969818,25.4783611],[111.2912369,25.4443512],[111.2558517,25.4166775],[111.2308884,25.3791561],[111.2005463,25.3602142],[111.1711731,25.3587227],[111.1349106,25.3075886],[111.0919876,25.281908],[111.1043625,25.2305183],[111.0988617,25.216486],[111.0600433,25.1882877],[110.9923935,25.1606216],[110.9718933,25.1198616],[110.9715195,25.0945988],[110.9516373,25.0777245],[110.942009,25.040926],[110.9523392,25.0005627],[110.9798431,24.9591427],[110.9916534,24.9226894],[111.085701,24.9403725],[111.0973129,24.9976101],[111.0938721,25.0313549],[111.136261,25.0423336],[111.1521072,25.059164],[111.18013,25.0670834],[111.2630234,25.1456966],[111.2759171,25.1418362],[111.301033,25.111599],[111.3382263,25.0972385],[111.3571701,25.1041794],[111.3697433,25.1313133],[111.3897171,25.131134],[111.4023972,25.1056709],[111.4312286,25.1011429],[111.413353,25.0682621],[111.4128799,25.0441475],[111.4338684,25.0301838],[111.4598923,25.0265617],[111.4594269,24.9985447],[111.43293,24.9870071],[111.4253769,24.9697666],[111.434761,24.9472809],[111.4648209,24.9317245],[111.4630814,24.9163342],[111.441658,24.895853],[111.4560623,24.8804951],[111.4439774,24.8598022],[111.4740829,24.8003826],[111.448967,24.7270756],[111.4225922,24.6863728],[111.4324417,24.6710091],[111.46418,24.664875],[111.4926376,24.664238],[111.5120468,24.6392384],[111.5198593,24.6341991],[111.5437698,24.6459446],[111.5613937,24.6411457],[111.5885696,24.6960602],[111.6339111,24.6839294],[111.6371918,24.7330761],[111.6762619,24.77742],[111.7002106,24.7856941],[111.7314606,24.7755947],[111.7692871,24.7896004],[111.8030396,24.7739735],[111.8433838,24.7790012],[111.863533,24.7748528],[111.8677902,24.7587738],[111.8985519,24.7665501],[111.9330673,24.7600784],[111.9557724,24.7706089],[112.0159073,24.7399616],[111.952858,24.7164173],[111.9371567,24.6886539],[111.94664,24.6523571],[111.9209137,24.6312656],[111.9409332,24.5873795],[111.9961777,24.5491695],[111.9998322,24.5110455],[111.9805908,24.4685974],[111.9966125,24.4469852],[112.0146866,24.439373],[112.0569,24.3651199],[112.0167465,24.2983837],[111.988327,24.2814465],[111.9739532,24.2596569],[111.9488831,24.2677326],[111.9302216,24.2360725],[111.9161835,24.2360916],[111.8995819,24.222105],[111.8719864,24.2287922],[111.8656921,24.2115784],[111.8656235,24.1769085],[111.8776016,24.1493454],[111.8707123,24.0903454],[111.906189,24.0437012],[111.9106064,24.0058155],[111.9196625,24.0025787],[111.9253922,23.97439],[111.908783,23.9521313],[111.8859024,23.9439411],[111.8479767,23.9499321],[111.8572769,23.9202251],[111.8068008,23.8887501],[111.820488,23.8509617],[111.7999725,23.8152065],[111.7425537,23.8188915],[111.6959076,23.8419266],[111.6798477,23.8196373],[111.6585236,23.831583],[111.6362686,23.8121128],[111.6112137,23.7321148],[111.6493225,23.725256],[111.6601562,23.7143497],[111.6187134,23.6765156],[111.6110535,23.6454048],[111.5826492,23.6489353],[111.562767,23.6360779],[111.4991608,23.6383724],[111.4828568,23.6321201],[111.4810333,23.5649242],[111.4461136,23.5031166],[111.4241562,23.4813175],[111.3961182,23.4708195],[111.4009933,23.4615917],[111.3858871,23.4493542],[111.3845978,23.4025631],[111.3850708,23.3793869],[111.3552094,23.3386135],[111.3731613,23.319622],[111.3755112,23.3074379],[111.3511429,23.2877159],[111.3922806,23.1675358],[111.3894424,23.1590729],[111.3732376,23.1551056],[111.3727798,23.0947609],[111.3847733,23.0781193],[111.4130173,23.0720997],[111.4259796,23.0538387],[111.4247971,23.0382481],[111.3896637,23.0085411],[111.3918762,22.985342],[111.3576584,22.9689293],[111.3540802,22.960474],[111.3719406,22.9373493],[111.3518066,22.8925686],[111.2885818,22.8309841],[111.2843628,22.8076172],[111.2372131,22.783268],[111.2217865,22.7563267],[111.1710434,22.7400246],[111.1133118,22.744648],[111.0539169,22.7311325],[111.0858307,22.696909],[111.0514679,22.6540413],[110.9958267,22.6390991],[110.962677,22.6460056],[110.953743,22.6433182],[110.9428329,22.6133327],[110.895752,22.6122952],[110.8853989,22.5880394],[110.8160324,22.5857563],[110.7994995,22.5610771],[110.7781296,22.5843945],[110.7649918,22.5837879],[110.7576599,22.5629482],[110.7457733,22.5623341],[110.7540207,22.538414],[110.7381592,22.5020199],[110.7398987,22.4687309],[110.7195511,22.4608212],[110.6909637,22.4784317],[110.6815414,22.4757328],[110.69104,22.4529552],[110.7075729,22.4450569],[110.7080231,22.3667889],[110.7369308,22.3643208],[110.7441711,22.3390293],[110.7628326,22.3221588],[110.7693024,22.294117],[110.7816467,22.2926617],[110.7825928,22.2853107],[110.7600327,22.2760429],[110.7243271,22.2964592],[110.6938019,22.2766724],[110.689682,22.2525959],[110.6599731,22.2422085],[110.6445312,22.2250805],[110.6736832,22.1870461],[110.6279907,22.14851],[110.6001663,22.1622009],[110.5921707,22.1858845],[110.552948,22.1948051],[110.5208588,22.1534176],[110.4936676,22.1484966],[110.4373932,22.1999302],[110.4149475,22.2087479],[110.3814163,22.1698627],[110.3698196,22.1701393],[110.3467178,22.1968498],[110.3226471,22.17169],[110.3265305,22.1535454],[110.3637009,22.1286182],[110.348999,22.0967693],[110.3487473,22.0416851],[110.3602524,22.0184593],[110.3509903,21.9879665],[110.3797073,21.9589348],[110.372467,21.9406013],[110.3864288,21.9182835],[110.3818665,21.8935108],[110.3677902,21.8850727],[110.344902,21.8927345],[110.3254013,21.8863792],[110.2959366,21.9142551],[110.2425613,21.8777046],[110.2167435,21.8922424],[110.1667099,21.8958244],[110.1363678,21.8867207],[110.11866,21.8991585],[110.1003723,21.8794613],[110.056221,21.8641739],[109.9793625,21.8799152],[109.9354172,21.8274117],[109.9306335,21.7500668],[109.9027405,21.6975346],[109.8990021,21.6576004],[109.8889008,21.6518707],[109.872673,21.6622143],[109.8517532,21.647541],[109.7971191,21.6397667],[109.7835922,21.6459694],[109.7725296,21.6735153],[109.7631836,21.6673203],[109.7405319,21.6209564],[109.7436066,21.5869999],[109.7445679,21.5832481],[109.741951,21.5806942],[109.7394867,21.5805187],[109.7391815,21.578228],[109.7452164,21.564312],[109.7458496,21.5599327],[109.7449265,21.5526009],[109.7510529,21.5418987],[109.7489471,21.53689],[109.7541733,21.5296535],[109.7539825,21.5223045],[109.7599411,21.5148239],[109.762291,21.5012169],[109.769249,21.4849815],[109.7693863,21.4808426],[109.7669373,21.480896],[109.7645264,21.4827881],[109.7591019,21.4918671],[109.7566223,21.4907722],[109.7557068,21.4747105],[109.745697,21.4772263],[109.7429733,21.4759064],[109.7409363,21.4731922],[109.7387924,21.4663467],[109.7348022,21.4641361],[109.7231369,21.4694443],[109.7109528,21.4733829],[109.7033005,21.4815903],[109.7011871,21.4855404],[109.696579,21.4881668],[109.6836929,21.4934978],[109.6758728,21.4955025],[109.668602,21.4995651],[109.6617432,21.5102787],[109.6598129,21.511467],[109.6514511,21.5118752],[109.6529922,21.5145988],[109.6582336,21.517704],[109.6617813,21.5217648],[109.6614075,21.5364761],[109.6623688,21.5454159],[109.6699066,21.562027],[109.6711197,21.5709629],[109.6699066,21.5916653],[109.6709671,21.5943985],[109.6831665,21.6001129],[109.6884232,21.6039066],[109.689537,21.609396],[109.689743,21.6169739],[109.6955795,21.6242008],[109.693161,21.6258602],[109.6865463,21.6271515],[109.6806488,21.6275063],[109.6774063,21.625967],[109.6758728,21.6230125],[109.678093,21.6137753],[109.6657181,21.6105938],[109.6456833,21.5960846],[109.6389465,21.5925522],[109.6339035,21.5873737],[109.6315231,21.580761],[109.6339569,21.5602627],[109.6333237,21.5538425],[109.6199265,21.5692883],[109.6111832,21.5738373],[109.6090927,21.5789356],[109.6098785,21.5807552],[109.6118393,21.5804863],[109.6157074,21.5776463],[109.6186981,21.5791931],[109.6201477,21.5883522],[109.6269836,21.6017075],[109.6064835,21.5927734],[109.6032333,21.600193],[109.6044312,21.6093578],[109.5990067,21.6191216],[109.6012802,21.6213703],[109.6059799,21.6221924],[109.608757,21.6251221],[109.6064835,21.6325207],[109.6075363,21.6359444],[109.6150436,21.6408424],[109.6143799,21.6438427],[109.6157532,21.6493282],[109.6132584,21.6482296],[109.6069565,21.6419296],[109.5962067,21.6352615],[109.5921783,21.6314392],[109.5878296,21.6244087],[109.5850983,21.6235466],[109.5821762,21.6252155],[109.5793762,21.6314754],[109.5788269,21.6487179],[109.5715179,21.6518574],[109.5725708,21.6548214],[109.5771332,21.6597805],[109.5747604,21.6637363],[109.5632172,21.6646633],[109.5605698,21.6672459],[109.5672836,21.6700935],[109.5688019,21.6718998],[109.5675507,21.6811161],[109.5608902,21.6803341],[109.5636597,21.6830349],[109.5716324,21.687006],[109.5709534,21.6893177],[109.5561371,21.6873245],[109.5524826,21.6890087],[109.5510864,21.692255],[109.5517578,21.6995926],[109.5575867,21.7065945],[109.5602875,21.7063084],[109.5645905,21.7009354],[109.5679932,21.709137],[109.5742798,21.7149792],[109.577507,21.7162914],[109.5821991,21.7164249],[109.5843735,21.7145405],[109.591629,21.7295532],[109.6021118,21.7355366],[109.6051636,21.7393799],[109.6111603,21.7431602],[109.6068192,21.7466965],[109.6051636,21.7494888],[109.6050873,21.7568417],[109.6031265,21.7571125],[109.5948181,21.7494755],[109.5918427,21.7486172],[109.5940628,21.7586803],[109.5998917,21.7675667],[109.5955505,21.7692184],[109.5936279,21.7710953],[109.5903625,21.7686348],[109.5885468,21.7647686],[109.5859299,21.7583904],[109.5831604,21.7458115],[109.5815887,21.7421684],[109.5793304,21.7403774],[109.5786438,21.7422295],[109.5721436,21.7485676],[109.5753326,21.7581501],[109.5752029,21.7625179],[109.5596008,21.7490559],[109.5561066,21.7470589],[109.5514603,21.7485332],[109.548378,21.7433128],[109.5448914,21.7415466],[109.5413589,21.7379436],[109.5378876,21.736866],[109.5372772,21.7320538],[109.533493,21.7279949],[109.5183029,21.720953],[109.5162811,21.7189255],[109.5231628,21.7183266],[109.5248032,21.7150764],[109.5177536,21.708559],[109.5145264,21.7072449],[109.5125732,21.7077446],[109.5103073,21.7160606],[109.5083466,21.7165604],[109.5034409,21.7067814],[109.4969406,21.7027779],[109.4939804,21.7023792],[109.4938965,21.6993923],[109.498291,21.6974659],[109.5016632,21.6944103],[109.5015564,21.6900482],[109.4983215,21.6882763],[109.4970169,21.6853161],[109.5076599,21.6876278],[109.5130768,21.687748],[109.5174484,21.68536],[109.5229568,21.6691666],[109.5216675,21.6662064],[109.5187607,21.6683331],[109.5133667,21.6691322],[109.5173721,21.6616993],[109.5182266,21.6566277],[109.5130463,21.6560421],[109.5052185,21.6575794],[109.4962997,21.6655712],[109.4866104,21.6616325],[109.4814835,21.6628857],[109.47332,21.6717796],[109.4698868,21.672308],[109.4673309,21.6706657],[109.4660416,21.6659508],[109.4614868,21.6605282],[109.4614182,21.6575432],[109.4700317,21.6578312],[109.4731674,21.6550102],[109.4726028,21.6520367],[109.4735489,21.6504078],[109.4919968,21.6502666],[109.5092926,21.6427937],[109.5235825,21.643652],[109.5277023,21.6410408],[109.5422211,21.6205254],[109.5467834,21.616066],[109.5591736,21.6091499],[109.5613022,21.6058884],[109.5409622,21.6090641],[109.5440826,21.6057835],[109.54776,21.6054802],[109.5567703,21.6016178],[109.5745697,21.5851669],[109.5781631,21.5809574],[109.5800095,21.5760956],[109.5777664,21.575222],[109.5755768,21.576416],[109.5728302,21.5744057],[109.5672073,21.5657902],[109.5596695,21.5588245],[109.558342,21.5547161],[109.5524063,21.55369],[109.5502472,21.5454636],[109.5511322,21.5415401],[109.5542831,21.5394077],[109.5559311,21.5363865],[109.5549011,21.5345707],[109.5492325,21.5339966],[109.555687,21.5267429],[109.5563278,21.5223637],[109.5537109,21.5157566],[109.5448914,21.5067482],[109.5258789,21.4931221],[109.4967194,21.4760265],[109.4706268,21.4639168],[109.4684677,21.4662571],[109.4680634,21.4697113],[109.4711075,21.4740162],[109.4763412,21.4771271],[109.4791336,21.4805164],[109.4783173,21.4878845],[109.4737701,21.4930305],[109.4762268,21.5033207],[109.4755478,21.5058613],[109.472641,21.5075264],[109.4720001,21.5013371],[109.4662094,21.4954796],[109.4653931,21.4922791],[109.4676285,21.4828148],[109.4650803,21.4787312],[109.4526672,21.4734669],[109.4538269,21.470686],[109.4564819,21.468565],[109.4566269,21.4641991],[109.4479523,21.4593525],[109.4399414,21.4548817],[109.427597,21.4523697],[109.4028168,21.4542389],[109.3933563,21.4592476],[109.3858109,21.4680023],[109.3845673,21.4619465],[109.3774414,21.4510593],[109.3739777,21.4499779],[109.3598022,21.4532413],[109.3412628,21.4478569],[109.336113,21.4486446],[109.3310394,21.4524193],[109.3328629,21.4572086],[109.3381119,21.4610138],[109.3352966,21.4675007],[109.3360977,21.4697819],[109.3341827,21.4718857],[109.3305283,21.4733353],[109.3291473,21.4779568],[109.3259506,21.4818134],[109.3280182,21.4710865],[109.3265686,21.461235],[109.3214569,21.4528332],[109.3096771,21.4427204],[109.3064728,21.4416332],[109.3027878,21.4419327],[109.3015976,21.4435635],[109.3019028,21.4458561],[109.3044205,21.4490242],[109.3020172,21.4513664],[109.2933884,21.4501514],[109.2914276,21.4501896],[109.2897415,21.4518299],[109.2863007,21.4516659],[109.2776413,21.4490738],[109.2737122,21.4491482],[109.2656784,21.4525146],[109.2606735,21.4482441],[109.2577133,21.4476109],[109.2543182,21.4497433],[109.2444305,21.4471703],[109.2415237,21.4488335],[109.2401428,21.4529953],[109.2438583,21.4657898],[109.2429581,21.4809704],[109.2480469,21.4891434],[109.2464066,21.4906921],[109.2398682,21.4968777],[109.2338791,21.4926262],[109.2385864,21.4833488],[109.2396393,21.4752884],[109.2372971,21.4695873],[109.233757,21.4648304],[109.2247162,21.4558086],[109.2212677,21.4441566],[109.2223663,21.4386215],[109.2257233,21.4364109],[109.2277832,21.4270363],[109.2274399,21.4229069],[109.2221603,21.4174919],[109.2142487,21.4151115],[109.2066269,21.4152527],[109.1990585,21.4169998],[109.1921005,21.4132233],[109.1807098,21.4090672],[109.1674271,21.4081612],[109.1640472,21.4109802],[109.1617889,21.4202099],[109.1641388,21.4380856],[109.1632538,21.4424667],[109.1592331,21.438406],[109.1579437,21.4352131],[109.1561127,21.4184761],[109.1578369,21.407877],[109.1651001,21.4026909],[109.1630936,21.4004288],[109.1571503,21.3984699],[109.1463776,21.4002743],[109.1325531,21.4078751],[109.1277237,21.4118671],[109.1199265,21.4154549],[109.110611,21.4160805],[109.1062393,21.4186859],[109.0927429,21.4306412],[109.0878525,21.4321079],[109.0709229,21.4333267],[109.0682373,21.4345226],[109.0652008,21.4416981],[109.0615311,21.4424515],[109.0560913,21.4404793],[109.0493164,21.4337063],[109.0453262,21.4312496],[109.0427628,21.4374962],[109.0410233,21.448555],[109.0675964,21.4745064],[109.0729065,21.4817638],[109.0748978,21.4826469],[109.077301,21.4798489],[109.0782166,21.4766159],[109.0818863,21.4758606],[109.0956268,21.4753876],[109.1104889,21.4804058],[109.1308823,21.4919872],[109.1608963,21.5167141],[109.1646271,21.5297413],[109.1642532,21.5348015],[109.1607513,21.544054],[109.1490097,21.5582809],[109.1480865,21.5615139],[109.1513367,21.563982],[109.1526337,21.5662556],[109.1522369,21.5691662],[109.1519928,21.5710926],[109.1536407,21.5793343],[109.1514282,21.5908604],[109.1503372,21.597311],[109.1478119,21.594141],[109.146347,21.5831413],[109.1448135,21.5806408],[109.1423569,21.5811462],[109.1405106,21.5862331],[109.1533127,21.621151],[109.1524887,21.6289749],[109.1500397,21.6297092],[109.1440811,21.6040878],[109.13517,21.5895462],[109.1343613,21.5863438],[109.1369019,21.5787182],[109.1353836,21.5764465],[109.1331635,21.5760269],[109.1288071,21.5795517],[109.1302185,21.588026],[109.12854,21.590353],[109.1205215,21.583147],[109.1142731,21.5901508],[109.10672,21.5932732],[109.1065369,21.5967216],[109.1103516,21.6023979],[109.1101608,21.6051559],[109.1009369,21.5991192],[109.100502,21.590168],[109.0977173,21.5865402],[109.0942612,21.5856819],[109.0925827,21.5873222],[109.0896072,21.5871449],[109.0836563,21.5847225],[109.0802765,21.5877686],[109.0748062,21.5961361],[109.0740509,21.6074066],[109.0715866,21.6189365],[109.0734329,21.6312141],[109.0702133,21.623785],[109.0681229,21.6180782],[109.0665817,21.6029434],[109.0634308,21.5933495],[109.0577927,21.5939083],[109.0514679,21.5976963],[109.0493164,21.6009502],[109.0513306,21.6027527],[109.0629883,21.6076012],[109.0636368,21.6151695],[109.0549164,21.609581],[109.0557632,21.614851],[109.0651093,21.6266308],[109.0674667,21.6337109],[109.067421,21.643362],[109.0662766,21.6472874],[109.0633469,21.6484871],[109.0610962,21.6469193],[109.0612793,21.6436977],[109.057869,21.6336498],[109.0535736,21.6279831],[109.0480728,21.6232548],[109.0416031,21.6199226],[109.0240097,21.6137962],[109.0165863,21.6123161],[109.0141602,21.6132774],[109.0028076,21.6235809],[109.0000763,21.6227093],[109.0052414,21.6102142],[109.004921,21.6065445],[109.0029526,21.6065788],[108.9910431,21.6132164],[108.9849091,21.6142387],[108.986763,21.6084652],[108.9954605,21.6009636],[108.9963989,21.5988808],[108.9833221,21.5968075],[108.9680634,21.5961475],[108.9621811,21.5971661],[108.9597473,21.5988159],[108.9531479,21.6005363],[108.941597,21.6009617],[108.9269028,21.6041946],[108.9142227,21.6094608],[108.9064636,21.6153336],[108.904808,21.6188068],[108.9052734,21.6295948],[108.8984528,21.6462479],[108.9010086,21.6510315],[108.8954315,21.6552582],[108.8954773,21.6580143],[108.893837,21.6617165],[108.8881912,21.6622696],[108.8765717,21.6597042],[108.8738937,21.6604385],[108.8569412,21.6751881],[108.8518295,21.6780281],[108.8492203,21.6828957],[108.8480988,21.6886559],[108.8488998,21.6918583],[108.8518982,21.6943378],[108.8556137,21.6951962],[108.8660736,21.701458],[108.865799,21.7131767],[108.8649216,21.7187042],[108.8580322,21.7316818],[108.8603134,21.7344017],[108.8642731,21.7359447],[108.8738708,21.7360172],[108.8836594,21.7326393],[108.8928375,21.7363949],[108.8981476,21.7436581],[108.9060898,21.7467422],[108.9171829,21.7472458],[108.9224319,21.7512932],[108.9316025,21.7545872],[108.9348984,21.7584209],[108.9322281,21.7587547],[108.9262772,21.7594986],[108.912117,21.752615],[108.8990784,21.7535191],[108.8871536,21.7479744],[108.8890228,21.7555237],[108.8913116,21.7589321],[108.8975601,21.7636547],[108.9037628,21.7658482],[108.905777,21.7683411],[108.9049911,21.7784615],[108.9023132,21.7796555],[108.9002914,21.7773914],[108.8976898,21.7703133],[108.8939896,21.7701454],[108.8905106,21.7685947],[108.8872375,21.7649727],[108.881073,21.7517509],[108.8753433,21.7481689],[108.8681717,21.7466774],[108.8650436,21.7499466],[108.8646088,21.75317],[108.8651962,21.758213],[108.8675232,21.763689],[108.8671417,21.7698975],[108.8643799,21.7795906],[108.8706589,21.7859211],[108.8738937,21.799881],[108.8716812,21.8006058],[108.8694534,21.7999535],[108.8662033,21.79702],[108.8610611,21.7865353],[108.8572922,21.7824631],[108.8548431,21.7831917],[108.8515167,21.7899075],[108.8523636,21.7947197],[108.8585434,21.8079891],[108.8485413,21.8012123],[108.8452606,21.7971306],[108.8403702,21.8119125],[108.8376312,21.8103485],[108.8379517,21.801384],[108.8208237,21.806715],[108.814003,21.81073],[108.8072586,21.832201],[108.8008881,21.8376007],[108.7905884,21.8366032],[108.7880783,21.834116],[108.7875671,21.8324451],[108.7920609,21.8232555],[108.7962494,21.8231888],[108.8039474,21.8265114],[108.8068771,21.8119926],[108.795311,21.8126354],[108.7861633,21.8104858],[108.7848969,21.808897],[108.7931824,21.8041706],[108.8172531,21.8008003],[108.8188629,21.7948017],[108.8163071,21.7897873],[108.8135605,21.7877655],[108.8154297,21.7826805],[108.8292007,21.7815399],[108.8333817,21.7686081],[108.8480835,21.7642365],[108.852417,21.7595692],[108.8535919,21.7565651],[108.853302,21.7542725],[108.8495865,21.753643],[108.8461685,21.7548466],[108.8441772,21.7539616],[108.8458328,21.7500286],[108.8504028,21.744442],[108.851799,21.740284],[108.8479919,21.7343731],[108.8438568,21.724102],[108.8415909,21.7213821],[108.8315125,21.7222347],[108.8258133,21.7202587],[108.8294067,21.7156067],[108.8350296,21.7132187],[108.8381805,21.7104111],[108.8391113,21.7078686],[108.8360825,21.703783],[108.8313522,21.7011032],[108.8286591,21.7018356],[108.8155289,21.7100868],[108.8133926,21.7142563],[108.8126831,21.7287407],[108.8088226,21.7460308],[108.8061371,21.7476826],[108.7994232,21.7436543],[108.7993469,21.739521],[108.804863,21.7318516],[108.8042603,21.7261181],[108.8010406,21.7250214],[108.7929916,21.7290554],[108.7885818,21.7300434],[108.7848892,21.7298737],[108.784111,21.7278175],[108.7911835,21.7240295],[108.7928467,21.7212467],[108.7839584,21.71978],[108.7875977,21.7171955],[108.7981796,21.7170277],[108.8005829,21.7135429],[108.7997665,21.70965],[108.7955475,21.7076492],[108.801857,21.7029552],[108.8069077,21.6969013],[108.8129272,21.7032375],[108.8151474,21.7032013],[108.8219528,21.6984978],[108.8262863,21.6933746],[108.830513,21.6829681],[108.8422928,21.6680756],[108.842453,21.6639385],[108.8411713,21.6612015],[108.8414764,21.6513176],[108.8302765,21.6448383],[108.8220367,21.6383095],[108.8237381,21.6371326],[108.8274307,21.6375332],[108.8408432,21.6437473],[108.8491135,21.6392498],[108.8618317,21.6353645],[108.8676605,21.6313648],[108.85746,21.6255589],[108.8489609,21.6183472],[108.8393402,21.6171246],[108.8336105,21.6133118],[108.8294296,21.6133804],[108.8156967,21.6287632],[108.8118134,21.6311226],[108.7923813,21.6312027],[108.7831573,21.6246872],[108.7752304,21.622057],[108.7703934,21.6129436],[108.7543793,21.6118183],[108.7436829,21.6053238],[108.7422867,21.5966167],[108.7403488,21.5977955],[108.7320328,21.6135464],[108.7340164,21.627758],[108.7313995,21.6326237],[108.712677,21.6446285],[108.7090683,21.6492786],[108.7065125,21.6575871],[108.7089996,21.6589279],[108.7116623,21.6565895],[108.7161636,21.6471024],[108.7203369,21.646349],[108.7343674,21.647049],[108.7353973,21.649559],[108.7332306,21.6521206],[108.7273636,21.6540489],[108.7305984,21.6560669],[108.7384567,21.6550255],[108.7418518,21.6526756],[108.7450027,21.6497631],[108.7546921,21.6552315],[108.745903,21.6588135],[108.7503967,21.6621895],[108.7516708,21.6644669],[108.7507782,21.6695347],[108.7550888,21.6763592],[108.7510071,21.6817055],[108.7508926,21.6888294],[108.7494431,21.6904602],[108.7463608,21.6833878],[108.7450867,21.6682453],[108.7423325,21.6653023],[108.7346725,21.6635838],[108.7319794,21.6640854],[108.7274323,21.6710472],[108.7247162,21.6710892],[108.7211533,21.6640224],[108.7143631,21.6691818],[108.7093506,21.67799],[108.7052078,21.6803493],[108.7028122,21.6838322],[108.7041397,21.6893253],[108.71698,21.7049789],[108.7152786,21.7061539],[108.7090988,21.7048702],[108.7126694,21.7117062],[108.7171707,21.7155418],[108.7223663,21.7170696],[108.726799,21.717001],[108.7295303,21.7183361],[108.7265015,21.7275734],[108.7166138,21.7249699],[108.7131729,21.7254829],[108.7125092,21.7298584],[108.7178421,21.7387333],[108.7184067,21.74263],[108.7141037,21.7493591],[108.7106705,21.75033],[108.7131805,21.7394962],[108.7126312,21.736517],[108.7071228,21.7313194],[108.7053299,21.7276707],[108.7039108,21.7173557],[108.7018738,21.7130222],[108.6958466,21.7069111],[108.6912003,21.694809],[108.6887207,21.6941566],[108.6867676,21.6948757],[108.6828766,21.697691],[108.6821899,21.7004585],[108.6839828,21.7043362],[108.6810684,21.7062187],[108.6766434,21.7067451],[108.6639328,21.7113037],[108.6527023,21.716526],[108.6478577,21.7209644],[108.6604614,21.7237606],[108.6575699,21.7274799],[108.6392212,21.7337284],[108.6485519,21.760006],[108.6550598,21.7656517],[108.6571732,21.773428],[108.661911,21.7770329],[108.6673431,21.7776394],[108.6681671,21.7829113],[108.6699524,21.7863293],[108.6775436,21.7974701],[108.6845627,21.8040257],[108.6861267,21.8088264],[108.674942,21.8032532],[108.6628418,21.787817],[108.658577,21.7835159],[108.6556015,21.7821827],[108.6533966,21.7835941],[108.6509094,21.7955761],[108.6517487,21.8010769],[108.6584091,21.8152199],[108.6580887,21.8177605],[108.6557236,21.8166389],[108.6514511,21.8118782],[108.6466064,21.8029919],[108.6471405,21.777256],[108.6327896,21.7595539],[108.6271515,21.7750282],[108.6199265,21.7843246],[108.6185379,21.7901039],[108.6152267,21.7830162],[108.6132202,21.7809792],[108.6131821,21.7786808],[108.62146,21.7732754],[108.6244202,21.7596779],[108.6355362,21.7480259],[108.635437,21.7427425],[108.6286316,21.733427],[108.6241302,21.7295895],[108.6216583,21.7289371],[108.6096115,21.729805],[108.6125031,21.7260857],[108.6186066,21.7234688],[108.6205368,21.7211418],[108.6162262,21.7145443],[108.6080017,21.7082348],[108.6014633,21.7138443],[108.5997925,21.7173157],[108.5998535,21.7209892],[108.6053925,21.7280293],[108.5958633,21.7313862],[108.5932922,21.7396946],[108.5929871,21.7507248],[108.5945435,21.7543774],[108.5995483,21.7595863],[108.59935,21.7623463],[108.5897064,21.7606506],[108.5848007,21.760952],[108.5721436,21.7689476],[108.5653381,21.7747879],[108.564949,21.7805386],[108.5622711,21.7826443],[108.5610962,21.7861061],[108.568367,21.7931213],[108.5785294,21.7971096],[108.5780792,21.7991829],[108.5744171,21.8017635],[108.5732269,21.8040771],[108.5777664,21.8095245],[108.588707,21.8160267],[108.6012192,21.8266392],[108.6217804,21.833456],[108.6068497,21.8387318],[108.5999908,21.8551426],[108.6000366,21.8578968],[108.6028137,21.8615322],[108.6062927,21.8628597],[108.6111984,21.8618679],[108.6113434,21.8556633],[108.6087112,21.8467445],[108.6096497,21.844202],[108.6121521,21.8460026],[108.6149368,21.8507862],[108.6168823,21.8629322],[108.6189499,21.8684139],[108.6259537,21.874054],[108.6358719,21.8778114],[108.6327515,21.882452],[108.6244965,21.8892365],[108.6186676,21.8943768],[108.6130066,21.8949203],[108.6100464,21.8935051],[108.5996094,21.9103584],[108.5962296,21.8937893],[108.5932007,21.889698],[108.5875015,21.8879452],[108.5789185,21.8901386],[108.5767288,21.8917789],[108.5743103,21.8943405],[108.5738831,21.8982506],[108.5759201,21.9018974],[108.5724792,21.9024067],[108.5697021,21.8987713],[108.5689011,21.8951073],[108.5698166,21.8916492],[108.5775833,21.883955],[108.5749664,21.8827896],[108.565239,21.8829861],[108.5623093,21.8846359],[108.5551682,21.898983],[108.5505524,21.8887119],[108.5478134,21.8871441],[108.543663,21.8890419],[108.5427933,21.8959446],[108.5466537,21.9053078],[108.5529633,21.9144039],[108.5574875,21.9193935],[108.5694504,21.9270306],[108.572319,21.9359474],[108.5770187,21.9367981],[108.5785294,21.9386139],[108.5699234,21.9394283],[108.5666733,21.936718],[108.5596008,21.9276314],[108.5508575,21.9206371],[108.5457687,21.9117527],[108.5430069,21.9090347],[108.5340576,21.90411],[108.5322876,21.9016075],[108.532959,21.8974648],[108.5314331,21.8947296],[108.5285034,21.8963795],[108.52491,21.9026337],[108.5217438,21.9040565],[108.5187378,21.9018021],[108.5154266,21.8961067],[108.5151062,21.8917446],[108.5234833,21.8911667],[108.525177,21.8897648],[108.5248718,21.8856354],[108.519043,21.8762989],[108.5160522,21.8742733],[108.5116806,21.8780117],[108.5023193,21.8783741],[108.4998169,21.876112],[108.5006866,21.8696671],[108.4998932,21.866003],[108.4966736,21.8646717],[108.4836502,21.8671513],[108.4794235,21.864912],[108.4866333,21.8535576],[108.4882736,21.8487091],[108.4884262,21.8429642],[108.4859314,21.8411617],[108.4793015,21.8426323],[108.4676132,21.8506069],[108.4635162,21.8561764],[108.4611588,21.8628712],[108.4640121,21.8715611],[108.4667664,21.8742771],[108.4685593,21.8781586],[108.467659,21.8832245],[108.4614487,21.895256],[108.4607773,21.8998604],[108.462822,21.9037361],[108.47509,21.9150524],[108.4766235,21.9177856],[108.4771729,21.9216824],[108.4712677,21.9226856],[108.4589615,21.9039097],[108.4563522,21.8999214],[108.454277,21.8937473],[108.4580994,21.886343],[108.4575806,21.8700409],[108.45681,21.8682156],[108.4523468,21.866209],[108.4454498,21.8665333],[108.439209,21.8615646],[108.436409,21.8560905],[108.4468307,21.8605423],[108.4487991,21.8605156],[108.4505005,21.8588829],[108.4545822,21.8523941],[108.4566727,21.8440971],[108.4670868,21.834074],[108.4719009,21.8273449],[108.4718323,21.8229828],[108.4685364,21.8175144],[108.470993,21.8165627],[108.4740829,21.8100872],[108.4780731,21.8130169],[108.4812927,21.8141212],[108.4842377,21.8136196],[108.487648,21.8112755],[108.4952621,21.8102493],[108.4974136,21.8058548],[108.4978485,21.8026333],[108.4931183,21.799942],[108.4991837,21.7941132],[108.5039062,21.7676296],[108.5038528,21.764185],[108.5018311,21.7614555],[108.4975967,21.7589912],[108.4997025,21.7518387],[108.5034027,21.7522449],[108.5062485,21.7535858],[108.5086136,21.7546997],[108.5127563,21.7521133],[108.5141907,21.7497959],[108.514122,21.7456627],[108.5242691,21.7487335],[108.5320587,21.7437973],[108.5347672,21.7437592],[108.5382767,21.7476139],[108.5427399,21.7493877],[108.5454407,21.7488899],[108.5488129,21.7442455],[108.5487366,21.7403412],[108.5434875,21.735363],[108.5346375,21.7361813],[108.5311813,21.7355404],[108.5249176,21.7291985],[108.5210876,21.7209835],[108.5165634,21.7148457],[108.5140762,21.7141914],[108.5081024,21.7243843],[108.5029373,21.7246857],[108.5017319,21.7263126],[108.5039368,21.7407532],[108.5025406,21.7449074],[108.5015182,21.7450581],[108.4990997,21.7454147],[108.4965973,21.7433834],[108.4949875,21.735136],[108.4924469,21.7310371],[108.4890823,21.7354488],[108.4861603,21.7373276],[108.48172,21.7367001],[108.4695663,21.7315865],[108.4665833,21.729332],[108.465538,21.7259007],[108.468483,21.7249413],[108.4803467,21.7284508],[108.4862671,21.7288265],[108.4906235,21.7244015],[108.4941711,21.7158527],[108.504837,21.7058239],[108.4761276,21.696579],[108.4723969,21.6945648],[108.4716034,21.6904411],[108.4725571,21.6888199],[108.476738,21.6889896],[108.4839325,21.6923351],[108.4871216,21.6918297],[108.4895172,21.6876621],[108.4917297,21.6876316],[108.4985428,21.6974144],[108.5005264,21.6987629],[108.5019836,21.6969051],[108.5011368,21.6911736],[108.5024872,21.6840343],[108.500351,21.6734962],[108.5029831,21.6690941],[108.5064774,21.6722622],[108.5126038,21.6845798],[108.5078201,21.6931477],[108.5103836,21.6993122],[108.5136337,21.7020226],[108.5155869,21.7013054],[108.518959,21.6968937],[108.5207138,21.6984768],[108.5220795,21.7069569],[108.5246124,21.710825],[108.5353165,21.718483],[108.5389862,21.7172813],[108.5399399,21.7149696],[108.5402298,21.7032509],[108.5339966,21.6989746],[108.5277481,21.6928635],[108.5290298,21.6813583],[108.5260925,21.6676178],[108.5270386,21.6657677],[108.5335922,21.674633],[108.5385132,21.6743317],[108.5410995,21.6676331],[108.5468826,21.6606579],[108.5473328,21.658123],[108.5445633,21.6540298],[108.5398865,21.6520424],[108.5415497,21.6506271],[108.5412521,21.6478748],[108.5519333,21.6532345],[108.5546417,21.6538849],[108.5550919,21.6515808],[108.5517273,21.6417503],[108.5489502,21.6376553],[108.5384521,21.6279297],[108.5352478,21.6275158],[108.5348816,21.6348724],[108.5306702,21.6333237],[108.5252914,21.6350098],[108.5229797,21.6293011],[108.517128,21.6325989],[108.5024338,21.6360245],[108.5021362,21.6335011],[108.5074387,21.6267643],[108.5105972,21.6251125],[108.5158234,21.6280231],[108.5182877,21.6282177],[108.5206985,21.6251984],[108.5274963,21.6205063],[108.5291367,21.6156578],[108.5263596,21.6111031],[108.5260086,21.605135],[108.5240173,21.6033268],[108.5203323,21.603838],[108.5167084,21.6077957],[108.5141373,21.6009407],[108.5157166,21.5928783],[108.5146713,21.5889874],[108.5129166,21.5874043],[108.5047531,21.5836163],[108.4872131,21.5790386],[108.4844666,21.5770111],[108.4846268,21.5717239],[108.4877167,21.5654793],[108.484993,21.5636806],[108.475853,21.5766716],[108.4803696,21.581892],[108.4750214,21.5856419],[108.4832535,21.5926476],[108.4887772,21.5996914],[108.491478,21.5989647],[108.4970627,21.5947514],[108.498703,21.5901337],[108.5007019,21.591713],[108.5015564,21.5985928],[108.5008469,21.6011295],[108.4935837,21.6069756],[108.4922485,21.6157227],[108.4883194,21.6162376],[108.4884567,21.6095734],[108.4838333,21.6123962],[108.4781113,21.6088009],[108.4814377,21.601862],[108.4749832,21.5980473],[108.4709015,21.5893745],[108.4675598,21.5657616],[108.461647,21.5649242],[108.4563065,21.5695934],[108.4528732,21.5691814],[108.452507,21.5629845],[108.4473038,21.5598412],[108.4482269,21.5561523],[108.4632492,21.5577812],[108.4728088,21.5560398],[108.4745026,21.5541782],[108.4722519,21.5521431],[108.461937,21.5529747],[108.4550323,21.5514641],[108.4451294,21.5474663],[108.4414673,21.5488949],[108.437767,21.5487175],[108.4322968,21.5446568],[108.4200974,21.550106],[108.4011383,21.548069],[108.3954926,21.5488338],[108.3911285,21.5527973],[108.390213,21.5562553],[108.3914871,21.5603733],[108.3988419,21.5738258],[108.3972473,21.5814285],[108.3943634,21.5856018],[108.3941574,21.5881329],[108.3998337,21.5894337],[108.4084167,21.5886288],[108.4229965,21.5925636],[108.4266663,21.5918255],[108.4293365,21.5894909],[108.4292908,21.5860462],[108.4265213,21.58218],[108.4217911,21.5785675],[108.4185715,21.5774651],[108.4109497,21.5773373],[108.4077072,21.5748558],[108.4081573,21.5720921],[108.4152603,21.5703888],[108.4234314,21.5734921],[108.4334869,21.5719757],[108.4403763,21.5727997],[108.4442368,21.5828533],[108.4396286,21.5868225],[108.4404221,21.5900288],[108.4344177,21.5990696],[108.4344635,21.601366],[108.4366913,21.6024837],[108.4406281,21.6026592],[108.4447937,21.6014538],[108.4477463,21.6023331],[108.4464188,21.6110783],[108.449173,21.6135693],[108.4499588,21.6165428],[108.4403305,21.6146088],[108.4318695,21.6085224],[108.4271164,21.6035347],[108.42173,21.6049862],[108.4210434,21.6082115],[108.418869,21.6105385],[108.4134827,21.6122208],[108.42173,21.6203766],[108.4181671,21.6284657],[108.4287033,21.6255646],[108.4336929,21.6294022],[108.4393692,21.6311607],[108.4373169,21.6410675],[108.4418488,21.6472073],[108.4479828,21.6459751],[108.4502716,21.6505356],[108.4524994,21.6516552],[108.4552002,21.6511574],[108.4619827,21.6446323],[108.4619064,21.6549702],[108.4636536,21.6565533],[108.4717865,21.657589],[108.4745331,21.6591587],[108.4684601,21.6642971],[108.4507599,21.6652317],[108.4473038,21.66436],[108.4383469,21.658741],[108.4322128,21.6592846],[108.4229813,21.6520615],[108.4197693,21.6509552],[108.4163513,21.6528397],[108.4186707,21.6590099],[108.4209213,21.6612778],[108.4283371,21.6632442],[108.4311066,21.6671104],[108.4312973,21.6792831],[108.4365768,21.685873],[108.4351501,21.6891079],[108.4314499,21.6884689],[108.4257431,21.6853313],[108.4198227,21.6842632],[108.4133377,21.6792984],[108.3992691,21.6765022],[108.3970032,21.6728592],[108.3969498,21.6701012],[108.3998566,21.6670761],[108.4064484,21.6640015],[108.4046936,21.6617279],[108.401207,21.6599369],[108.39431,21.6588821],[108.3923798,21.6612053],[108.3900375,21.6685867],[108.3871384,21.6720715],[108.3764267,21.6641769],[108.3746567,21.6614437],[108.3743515,21.6573124],[108.3762665,21.6540699],[108.3821564,21.6533031],[108.3821335,21.6514645],[108.3803864,21.6501102],[108.3817825,21.6448078],[108.3591537,21.6290302],[108.3561401,21.6258545],[108.3507767,21.6130619],[108.3462372,21.605999],[108.3424835,21.6014557],[108.3380203,21.5994473],[108.33535,21.6015491],[108.3310318,21.6087284],[108.3313522,21.6135483],[108.3390732,21.6191883],[108.3481293,21.6326218],[108.3636093,21.6468887],[108.363678,21.6512527],[108.3460464,21.6409187],[108.3450928,21.64254],[108.3478928,21.6487045],[108.356163,21.6577835],[108.3557434,21.662384],[108.3530807,21.6658649],[108.3548431,21.66745],[108.3607635,21.6689796],[108.3639526,21.6680183],[108.3663483,21.6645393],[108.3691101,21.6679497],[108.3675003,21.6748619],[108.3648376,21.6778831],[108.3586807,21.6772747],[108.3524704,21.673912],[108.3471985,21.6824818],[108.3383789,21.6851234],[108.3364334,21.6865292],[108.3352432,21.6893005],[108.3388214,21.697752],[108.3407288,21.7094421],[108.3469467,21.7141857],[108.3494797,21.7180576],[108.3523865,21.7306538],[108.3517532,21.737093],[108.3485336,21.7359867],[108.3456879,21.7272968],[108.3347321,21.7194004],[108.3338699,21.7116013],[108.3248672,21.7032185],[108.323349,21.6997929],[108.3273315,21.6868782],[108.3272781,21.6834335],[108.3252411,21.6793232],[108.3157806,21.6720963],[108.3071899,21.6735859],[108.3112717,21.666872],[108.3119125,21.6604328],[108.3231888,21.6423683],[108.3237381,21.6299572],[108.3174362,21.6208496],[108.3173218,21.6130409],[108.314827,21.6112347],[108.3074265,21.6090355],[108.3068237,21.6014633],[108.301033,21.5925789],[108.3009872,21.5907421],[108.3029327,21.5881901],[108.3082962,21.5906277],[108.3177032,21.5891457],[108.3209229,21.5909424],[108.3205566,21.5838261],[108.3185272,21.5797176],[108.3084564,21.5651455],[108.2937164,21.5492573],[108.289093,21.5359936],[108.28022,21.534729],[108.2722931,21.5302372],[108.2638931,21.5278168],[108.2606506,21.5251007],[108.2622833,21.5191097],[108.2474365,21.5130939],[108.2179337,21.4948559],[108.2140121,21.4960537],[108.211113,21.4988461],[108.2099228,21.5018482],[108.2111969,21.5050488],[108.2206268,21.5118217],[108.2286301,21.5204506],[108.2344208,21.5297966],[108.2468338,21.5379105],[108.2463837,21.5399837],[108.2415009,21.5430298],[108.2415466,21.5457878],[108.2563934,21.5681114],[108.2555008,21.5743256],[108.2614365,21.5772343],[108.2621078,21.5885601],[108.2537231,21.5867519],[108.2482529,21.5994549],[108.2485504,21.6031265],[108.2463989,21.6106396],[108.2371368,21.6129169],[108.226799,21.6123581],[108.2219162,21.6147156],[108.2394333,21.6347103],[108.2412109,21.638134],[108.2405319,21.6425076],[108.2443237,21.6484318],[108.2415237,21.6590347],[108.2408371,21.6671715],[108.2356262,21.6597977],[108.2361908,21.6483059],[108.2253265,21.6289158],[108.2208405,21.624836],[108.2171173,21.6228161],[108.2144623,21.6262932],[108.2142868,21.6315784],[108.2176285,21.6404972],[108.2159424,21.6428146],[108.2132187,21.6419296],[108.2096481,21.6332436],[108.207901,21.6331272],[108.2053604,21.6348228],[108.1987762,21.6402874],[108.2004623,21.63484],[108.2034378,21.6291866],[108.2062988,21.6229496],[108.2040634,21.6211395],[108.203537,21.6190777],[108.2049866,21.6176815],[108.211113,21.6157684],[108.2139893,21.6106796],[108.213707,21.6086159],[108.2082596,21.6056957],[108.2003784,21.6048737],[108.1880264,21.6013508],[108.176857,21.5941372],[108.1700363,21.5985832],[108.1594315,21.5968742],[108.1522369,21.5928268],[108.1581268,21.5918369],[108.1637421,21.5885525],[108.1705017,21.5799732],[108.1699829,21.5781422],[108.1654968,21.574749],[108.1566772,21.5762329],[108.1447906,21.5701752],[108.1406479,21.5740376],[108.1401978,21.5759716],[108.134697,21.5700665],[108.1314926,21.5687256],[108.1309662,21.5668926],[108.1392365,21.5610523],[108.1415482,21.5499992],[108.1442032,21.5462933],[108.1497726,21.5407124],[108.1561127,21.5369606],[108.1667023,21.5382118],[108.1706238,21.5377045],[108.1769333,21.5314255],[108.1852493,21.5292568],[108.187439,21.5276222],[108.1859283,21.5248833],[108.1812363,21.5235634],[108.1213303,21.5109596],[108.1174164,21.5123844],[108.1181793,21.5144424],[108.1233826,21.5173664],[108.1246414,21.5194187],[108.1244431,21.5219498],[108.1227493,21.5242653],[108.118103,21.5261593],[108.1053238,21.5256195],[108.1001816,21.5277481],[108.0997162,21.5300503],[108.1012268,21.5325584],[108.1106186,21.5358944],[108.1123734,21.5377121],[108.1064987,21.5398483],[108.0826874,21.5426521],[108.0799789,21.5419941],[108.0782166,21.5399475],[108.0789032,21.5348873],[108.0773773,21.5326061],[108.0667725,21.5295124],[108.0630875,21.5295563],[108.0601425,21.5300484],[108.0540466,21.5342541],[108.0511627,21.5381908],[108.0502701,21.5450916],[108.048317,21.5462627],[108.0355377,21.5464077],[108.0327835,21.5489712],[108.0299301,21.5478783],[108.0269394,21.5467358],[108.0229568,21.5435638],[108.0185165,21.5417767],[108.0128632,21.5420685],[108.0051498,21.5471115],[108.0041809,21.5446568],[107.9999237,21.5447712],[107.9973068,21.5389481],[107.9929276,21.5344734],[107.9819565,21.532896],[107.9746933,21.5296497],[107.9686966,21.5238476],[107.961441,21.5285091],[107.9564819,21.5335827],[107.9559708,21.5406971],[107.9527435,21.5512486],[107.9500198,21.5579014],[107.9374466,21.5716515],[107.9281006,21.5793438],[107.9168015,21.5865383],[107.9101181,21.5875664],[107.9049835,21.5906487],[107.8978119,21.5922375],[107.8921204,21.6039314],[107.8908615,21.6131096],[107.8891068,21.6197624],[107.8866272,21.6266422],[107.8829269,21.6326027],[107.8757706,21.6401615],[107.8703537,21.643364],[107.8592529,21.6528263],[107.8556519,21.6456318],[107.8474274,21.6440907],[107.8397217,21.6415215],[107.8314972,21.6456318],[107.8258438,21.6507702],[107.8171082,21.6528263],[107.8104324,21.6548805],[107.7975769,21.6584778],[107.7898788,21.6533394],[107.7816467,21.6477165],[107.7754669,21.6450329],[107.7700729,21.6428032],[107.7592926,21.6390572],[107.7513809,21.6376057],[107.740593,21.6331444],[107.7329865,21.6248913],[107.7253876,21.61936],[107.7158585,21.6214542],[107.7091827,21.6185436],[107.6996078,21.6126213],[107.6893463,21.6090908],[107.6866531,21.6081829],[107.6804962,21.6055641],[107.6790237,21.6035023],[107.6735992,21.600996],[107.6696625,21.6003227],[107.66745,21.5998726],[107.6642532,21.5996552],[107.6613007,21.5998955],[107.6536789,21.6019917],[107.6465607,21.6043148],[107.6406631,21.6061726],[107.6387634,21.6064587],[107.634079,21.6061115],[107.6323166,21.6060276],[107.6313324,21.6058102],[107.6298676,21.6060619],[107.6246796,21.6042995],[107.623703,21.604084],[107.6194916,21.6023064],[107.6185074,21.6020908],[107.6175232,21.6018753],[107.6113586,21.6003551],[107.6101303,21.6003723],[107.6032486,21.6000099],[107.6010437,21.6000404],[107.593277,21.6004105],[107.5882874,21.6044388],[107.5838394,21.6087818],[107.5698395,21.6071205],[107.5617599,21.6013508],[107.5554123,21.5942116],[107.5488129,21.5877571],[107.5439224,21.5833778],[107.5365601,21.5815105],[107.5299072,21.5833187],[107.522522,21.5858135],[107.5119476,21.5873756],[107.5018463,21.5907745],[107.4947128,21.5921211],[107.5003128,21.6010971],[107.4985809,21.6020069],[107.4933777,21.6090984],[107.4896393,21.6173458],[107.4891129,21.619791],[107.4858932,21.621954],[107.482048,21.6256104],[107.479187,21.632906],[107.4768219,21.6399841],[107.4774933,21.6456814],[107.4784164,21.6493988],[107.4786835,21.6567459],[107.4772186,21.6588154],[107.4720535,21.6602077],[107.4668884,21.6611385],[107.4621964,21.6590843],[107.4558029,21.6558857],[107.4474335,21.6531506],[107.4424973,21.6492596],[107.4331436,21.6444607],[107.4245224,21.639658],[107.4166336,21.632328],[107.4114532,21.6272869],[107.4052963,21.6215591],[107.3996277,21.616291],[107.3966675,21.6110153],[107.3909912,21.6036797],[107.3875427,21.5988636],[107.38311,21.594511],[107.3786774,21.5938301],[107.3725281,21.5947609],[107.3661423,21.5968418],[107.3619614,21.5984573],[107.3592606,21.6021366],[107.3577881,21.6062717],[107.3578033,21.6120129],[107.3575668,21.6175251],[107.3578186,21.6232662],[107.3588181,21.6315308],[107.3600464,21.6374989],[107.3605576,21.6450768],[107.359581,21.6510487],[107.3576279,21.657711],[107.3536987,21.6634598],[107.3502731,21.6694374],[107.3455963,21.6774826],[107.3382263,21.6857643],[107.334053,21.693119],[107.3279114,21.6995602],[107.3249664,21.705307],[107.3180771,21.7145042],[107.3126831,21.723238],[107.3087463,21.7292156],[107.3033371,21.735424],[107.3016205,21.7391014],[107.2986679,21.7404842],[107.2952194,21.7395706],[107.2888184,21.7354469],[107.2804413,21.7320137],[107.2757568,21.7297249],[107.2659073,21.7244568],[107.2590103,21.7194138],[107.2533417,21.7134495],[107.2486572,21.7070274],[107.2434921,21.7056561],[107.235611,21.7052059],[107.2287216,21.7054424],[107.2215881,21.7063694],[107.2124786,21.7070694],[107.2041092,21.7112103],[107.1979599,21.7194824],[107.1955032,21.721323],[107.193779,21.7252293],[107.1932907,21.7277546],[107.1925507,21.7337246],[107.1873932,21.7385521],[107.1834412,21.7408524],[107.1777802,21.7424641],[107.1718826,21.7443066],[107.1674423,21.7472954],[107.1610413,21.7498264],[107.1544037,21.7539654],[107.1472473,21.7571831],[107.141098,21.7615509],[107.1351929,21.7643108],[107.1312485,21.7672958],[107.1268234,21.7714329],[107.122879,21.7751083],[107.1179504,21.78269],[107.1127777,21.7868252],[107.1058807,21.7905025],[107.100708,21.7914219],[107.0979996,21.7932606],[107.0928268,21.7973957],[107.0891266,21.8029079],[107.0832214,21.8061237],[107.0753326,21.8061256],[107.0679474,21.8058987],[107.0593338,21.8063583],[107.0506973,21.8070469],[107.0408478,21.8093433],[107.0334473,21.8116398],[107.028038,21.8132477],[107.0218811,21.8146248],[107.0139923,21.82197],[107.0079727,21.8289127],[107.0061417,21.8345737],[107.0060577,21.8385487],[107.0064774,21.8420162],[107.0078583,21.8479462],[107.0102692,21.8541203],[107.0157471,21.8598766],[107.0235672,21.8646851],[107.0329208,21.8701973],[107.0410538,21.8750191],[107.0485687,21.8806133],[107.0524368,21.8853245],[107.0549469,21.8895016],[107.0560837,21.8947678],[107.0553284,21.9005089],[107.0535965,21.9067097],[107.0513763,21.9140568],[107.0471878,21.9209461],[107.0410233,21.925539],[107.0336227,21.9317379],[107.0259705,21.938858],[107.0207901,21.9439087],[107.0148773,21.9443665],[107.0082092,21.9436913],[107.0029831,21.9438839],[106.9989777,21.9461727],[106.9920731,21.9510994],[106.988739,21.9443588],[106.9867706,21.9399967],[106.978653,21.9266739],[106.9729767,21.9229984],[106.9688034,21.9197807],[106.9618988,21.9179401],[106.9567184,21.9177094],[106.9492569,21.9207592],[106.944191,21.923214],[106.9427185,21.9239178],[106.9417419,21.9243851],[106.9357529,21.9271126],[106.9305725,21.9291744],[106.9276123,21.9312382],[106.9271088,21.9358311],[106.9261169,21.940424],[106.9243927,21.9427185],[106.9231567,21.9443245],[106.9226532,21.9493771],[106.9228973,21.9528217],[106.923378,21.958334],[106.9231262,21.9622364],[106.9218903,21.9670582],[106.9162064,21.9702682],[106.9153137,21.9703083],[106.9151917,21.9703083],[106.9105377,21.9704933],[106.904129,21.9718647],[106.898201,21.9736977],[106.8920364,21.9752998],[106.8868637,21.9762135],[106.8782196,21.9778118],[106.8695831,21.9803295],[106.8607101,21.98032],[106.8535538,21.9796219],[106.8471527,21.9796143],[106.8436737,21.9803944],[106.8412781,21.9787788],[106.8393173,21.9766254],[106.8388214,21.975481],[106.8358536,21.9729862],[106.8350983,21.9723034],[106.8333664,21.9711723],[106.8323669,21.9702644],[106.8281708,21.9684658],[106.825943,21.9675694],[106.819809,21.9694595],[106.8102188,21.9702358],[106.803978,21.975544],[106.8007889,21.9765682],[106.7943573,21.9841366],[106.7901535,21.9907894],[106.7869263,21.9988213],[106.7809982,22.0020256],[106.7750778,22.0031643],[106.7701263,22.0077496],[106.7654266,22.0109577],[106.7587738,22.011404],[106.7545776,22.0125465],[106.7503815,22.0129967],[106.7474213,22.0136814],[106.7442169,22.0134449],[106.7407684,22.0120621],[106.7365799,22.0095272],[106.7336273,22.0060768],[106.7321625,22.0021706],[106.72995,21.9971161],[106.7282486,21.9902229],[106.7260437,21.984478],[106.7243271,21.9787331],[106.7181778,21.9743595],[106.7117691,21.9727383],[106.7056122,21.971117],[106.7011795,21.9681244],[106.6940536,21.962368],[106.6915817,21.962822],[106.6873779,21.9660282],[106.6853867,21.9708462],[106.6841583,21.9751625],[106.6818466,21.9788952],[106.6776962,21.9831505],[106.6735992,21.989624],[106.674202,21.993803],[106.6776962,21.9974422],[106.6809464,22.0010853],[106.6850433,22.0046005],[106.6897125,22.0082855],[106.6958618,22.0144978],[106.7005386,22.0191021],[106.7029877,22.0243874],[106.7059326,22.0285263],[106.7039413,22.0356407],[106.6989899,22.0406837],[106.696022,22.0438919],[106.6950226,22.0471039],[106.6947632,22.0519257],[106.6967163,22.0562935],[106.7006531,22.0613537],[106.7013779,22.0664062],[106.7018585,22.0707703],[106.7028275,22.0762844],[106.7062607,22.0840988],[106.7084579,22.0923691],[106.7077026,22.0987968],[106.7057114,22.1015491],[106.6987762,22.1077347],[106.6955566,22.1125507],[106.6920776,22.1212692],[106.6903305,22.1283836],[106.6917877,22.1357346],[106.6929932,22.1442337],[106.6964264,22.1497517],[106.7011108,22.1538944],[106.7038193,22.1573429],[106.7033234,22.1614761],[106.6986237,22.1623859],[106.6909637,22.163517],[106.6830368,22.1669445],[106.6785965,22.1691723],[106.6734238,22.1728401],[106.6707077,22.1772823],[106.6708984,22.1825314],[106.6723633,22.1873569],[106.6760406,22.1947136],[106.677742,22.1985836],[106.6801605,22.2002716],[106.6876297,22.1995544],[106.6914902,22.206934],[106.6956024,22.2140865],[106.697258,22.222435],[106.6965408,22.2263927],[106.6950073,22.2301178],[106.6934967,22.2338409],[106.6925201,22.2380486],[106.6905365,22.2452335],[106.6892014,22.2532978],[106.6879272,22.2613316],[106.6871719,22.2686768],[106.6875534,22.2696495],[106.6888885,22.2730446],[106.6886292,22.2764874],[106.6861572,22.2783184],[106.6817093,22.2787685],[106.675293,22.2782955],[106.6713333,22.2787457],[106.6673584,22.2819519],[106.6675873,22.2867737],[106.666832,22.2929726],[106.6650772,22.2998562],[106.6643066,22.3069725],[106.6635513,22.3131714],[106.6625366,22.3182201],[106.661293,22.3244171],[106.6587982,22.3306103],[106.6533432,22.3349609],[106.6461563,22.3376999],[106.63974,22.3369942],[106.6303482,22.3360538],[106.6249084,22.33535],[106.6167526,22.3357887],[106.6075974,22.3369122],[106.5994415,22.3364315],[106.5880737,22.3373184],[106.5786591,22.3405075],[106.5670166,22.3441486],[106.5605927,22.346426],[106.5568695,22.3480225],[106.5558701,22.3496265],[106.5575867,22.3539944],[106.5595474,22.3585911],[106.5615082,22.3634205],[106.5637131,22.368248],[106.5671616,22.3714733],[106.5716095,22.3728638],[106.5772934,22.3742561],[106.5837173,22.3751945],[106.5866699,22.3786469],[106.5851669,22.3811684],[106.5824432,22.3850632],[106.5782166,22.3873482],[106.5730209,22.3914661],[106.5670624,22.3967304],[106.5638199,22.4022312],[106.5605698,22.4109478],[106.5585785,22.415535],[106.558548,22.423111],[106.5592728,22.428854],[106.5602264,22.4348278],[106.5582275,22.4405613],[106.5559921,22.4433098],[106.5559692,22.4483604],[106.5576782,22.4541073],[106.5601196,22.4610023],[106.5618286,22.4674358],[106.5664978,22.4759445],[106.5689621,22.4793968],[106.5704498,22.4780235],[106.5709534,22.475729],[106.5727005,22.4715996],[106.574913,22.4685326],[106.5768738,22.4685478],[106.5776596,22.4700031],[106.5774765,22.4712086],[106.5781403,22.4776402],[106.5792694,22.4856853],[106.5803909,22.4948769],[106.5822296,22.5054512],[106.585083,22.5153484],[106.5872269,22.5211067],[106.5878372,22.5309811],[106.5887527,22.5371876],[106.5935822,22.5464134],[106.599678,22.5538177],[106.6001434,22.556118],[106.6010208,22.5653057],[106.5996933,22.5724068],[106.6015778,22.5797691],[106.6015472,22.5845108],[106.601532,22.5892677],[106.5995331,22.5918255],[106.5992584,22.5963974],[106.5989838,22.6003761],[106.6000137,22.6044979],[106.6002579,22.606102],[106.6027603,22.6095238],[106.6037598,22.6108932],[106.606987,22.6122456],[106.6079788,22.6124668],[106.6121826,22.6119747],[106.6152496,22.6110744],[106.6164932,22.6113205],[106.6199265,22.6089668],[106.6249008,22.6056767],[106.6281815,22.6018944],[106.6308212,22.599884],[106.6348877,22.5920811],[106.6396103,22.5872707],[106.644577,22.5833797],[106.649292,22.5804062],[106.6545029,22.5778942],[106.6589737,22.5767555],[106.6606903,22.5764637],[106.6654434,22.5778027],[106.6669235,22.578249],[106.6743698,22.5818577],[106.6753693,22.5823078],[106.6845322,22.584528],[106.6872635,22.5854225],[106.6961517,22.5842018],[106.6991119,22.5837173],[106.7003326,22.5827808],[106.7045135,22.5825958],[106.7111969,22.5819206],[106.7164001,22.5844574],[106.7218399,22.588829],[106.7270279,22.5927429],[106.7294922,22.5961914],[106.7284927,22.6010113],[106.7237625,22.6067429],[106.7215271,22.6104126],[106.72052,22.6161499],[106.7239685,22.6228142],[106.7254333,22.6294765],[106.7231979,22.6329155],[106.7241669,22.6393471],[106.7266312,22.6446323],[106.7310715,22.6512985],[106.7357635,22.6586552],[106.7399597,22.6632557],[106.7453918,22.6690044],[106.7523117,22.6754475],[106.7540436,22.6805],[106.7537766,22.6846333],[106.7547531,22.6901455],[106.7567291,22.6945095],[106.7619171,22.7002583],[106.7666092,22.7057781],[106.7715607,22.7094593],[106.770813,22.7140503],[106.7689133,22.7161674],[106.7669296,22.7168369],[106.7655334,22.7175198],[106.7645264,22.7177582],[106.7605896,22.7194138],[106.7584763,22.720438],[106.7549362,22.7233467],[106.753952,22.723814],[106.7522507,22.7272701],[106.7547531,22.7293148],[106.7559814,22.7295322],[106.7577209,22.7304363],[106.7589569,22.7306538],[106.7599564,22.7313328],[106.7612,22.7313232],[106.7643585,22.7336788],[106.7645569,22.7347031],[106.7689972,22.740221],[106.773201,22.7475739],[106.7766571,22.7517128],[106.7803802,22.7501106],[106.7817764,22.7521992],[106.7848282,22.7567768],[106.7820892,22.7618237],[106.7810822,22.7677898],[106.7830734,22.7680225],[106.7865372,22.768259],[106.7887573,22.768261],[106.7954636,22.7703381],[106.8023987,22.7714977],[106.8095932,22.7726555],[106.8162766,22.7765675],[106.8202362,22.7820835],[106.8217087,22.7878246],[106.8254166,22.7942581],[106.8298569,22.800005],[106.8303528,22.8052845],[106.8263779,22.8089523],[106.8228989,22.8126221],[106.8206711,22.8168182],[106.8145523,22.8175468],[106.8063736,22.8174782],[106.7986832,22.8171844],[106.7915115,22.8157463],[106.7828369,22.8147526],[106.7749329,22.8135357],[106.7667618,22.8123188],[106.7662201,22.8162155],[106.7671204,22.8237953],[106.7630997,22.8285789],[106.7536163,22.8340034],[106.7426376,22.8396435],[106.7309036,22.8461914],[106.7223434,22.8575897],[106.7175674,22.8625946],[106.7138367,22.8641319],[106.7123337,22.8705215],[106.7123337,22.8730469],[106.7128067,22.8760319],[106.7128067,22.878788],[106.7093201,22.882225],[106.7055893,22.8840523],[106.6996307,22.886795],[106.6921768,22.8876991],[106.6852264,22.8876839],[106.6780167,22.8901939],[106.6698227,22.8931599],[106.6671829,22.8933067],[106.665863,22.8933811],[106.6646271,22.8894749],[106.6643829,22.8867188],[106.6636505,22.8825836],[106.662178,22.8779888],[106.6582336,22.8724709],[106.6552505,22.8708572],[106.6522827,22.8697033],[106.6440811,22.8722076],[106.6393509,22.8758698],[106.6311493,22.8795223],[106.6294098,22.8811245],[106.6261597,22.8868561],[106.6231689,22.8912106],[106.6194229,22.8973999],[106.6156769,22.9029007],[106.6111832,22.9102345],[106.607933,22.9171143],[106.6071625,22.9228516],[106.6006775,22.9315586],[106.5934677,22.9347515],[106.5860214,22.9326649],[106.5790863,22.9294319],[106.5728912,22.9264297],[106.5661926,22.924345],[106.5589905,22.9263897],[106.5525208,22.928896],[106.5460434,22.9343872],[106.5412979,22.9414883],[106.534317,22.9472065],[106.5243835,22.9506207],[106.5194016,22.9519825],[106.5151901,22.9494419],[106.51297,22.9462223],[106.507782,22.9413834],[106.5055771,22.933342],[106.5016327,22.9287376],[106.5006485,22.9248314],[106.5006714,22.9204693],[106.4992065,22.9126587],[106.4927826,22.9080467],[106.488327,22.9043579],[106.4821167,22.9043369],[106.479393,22.9061642],[106.4773865,22.9093704],[106.4724197,22.9102726],[106.4697113,22.9052124],[106.4689789,22.9026852],[106.4632874,22.8994503],[106.4605484,22.9012775],[106.4578018,22.9047108],[106.4515915,22.9051476],[106.4476395,22.9012318],[106.4454193,22.8977795],[106.4409714,22.8940907],[106.4367523,22.8945332],[106.431778,22.8958931],[106.4213486,22.8960838],[106.415657,22.8930779],[106.4129486,22.8893929],[106.4129715,22.884573],[106.4129868,22.8811302],[106.4110031,22.8806629],[106.4060364,22.8815613],[106.3998337,22.8829155],[106.3918762,22.884491],[106.3839264,22.8860664],[106.3779831,22.8848934],[106.372757,22.8841839],[106.3680496,22.8837051],[106.366333,22.881403],[106.3660965,22.8786469],[106.3644028,22.8719826],[106.3619537,22.866003],[106.3572464,22.8627701],[106.3495636,22.8609009],[106.3458405,22.8615742],[106.3406067,22.864996],[106.3368607,22.8700314],[106.3318787,22.8725338],[106.325943,22.8692951],[106.3197632,22.8658237],[106.3150482,22.8651142],[106.3083191,22.8701344],[106.3013611,22.8710232],[106.2953873,22.8728333],[106.2899475,22.8712006],[106.2837524,22.8697948],[106.2775269,22.871603],[106.2725372,22.8754826],[106.2668076,22.8805065],[106.2590866,22.8855209],[106.2536011,22.8896255],[106.2525864,22.8928356],[106.2548065,22.8956013],[106.2592468,22.8992958],[106.2629471,22.9032154],[106.2649002,22.9085064],[106.2648773,22.9121799],[106.2621231,22.9169884],[106.2583618,22.9217911],[106.2546234,22.9247589],[106.2501221,22.9297867],[106.2428665,22.9375572],[106.2391205,22.9419022],[106.2346191,22.9473896],[106.2292023,22.9518452],[106.2238235,22.9563255],[106.2154083,22.9643097],[106.2083664,22.974577],[106.2066116,22.9775543],[106.2033691,22.9811707],[106.2003326,22.9834156],[106.1969376,22.9847164],[106.1928482,22.9847622],[106.1870728,22.9851437],[106.1802368,22.9845886],[106.1727982,22.9833488],[106.1682968,22.9834614],[106.1611862,22.9876423],[106.1545868,22.99473],[106.1473694,22.9967556],[106.1394119,22.9974022],[106.1324768,22.9941502],[106.1257935,22.992506],[106.1210709,22.9922504],[106.1156082,22.9917603],[106.1099167,22.9878254],[106.1047287,22.9848118],[106.1019974,22.9852562],[106.0907516,22.9939137],[106.081543,22.9968452],[106.0738373,22.9968014],[106.0693893,22.9944782],[106.0639496,22.9914627],[106.0577469,22.9893589],[106.052269,22.991621],[106.0457916,22.9943371],[106.0380936,22.9945202],[106.0279083,22.9942284],[106.0219421,22.9946518],[106.0175171,22.9935074],[106.0164871,22.9932404],[106.0130081,22.9941349],[106.0047302,22.9949036],[106.0001526,22.9919415],[106.0000992,22.9873371],[106.0015488,22.9817142],[106.0060501,22.9776649],[106.0074615,22.9727516],[106.0065231,22.9658585],[106.0062637,22.9616337],[106.0064621,22.9564381],[106.0064163,22.9524822],[106.0047684,22.9480457],[106.0009766,22.9453907],[105.995018,22.9451237],[105.9905396,22.9462433],[105.9855576,22.9480476],[105.9808197,22.951231],[105.9755936,22.9532642],[105.9661484,22.953661],[105.9594421,22.9538479],[105.9547577,22.949913],[105.9542923,22.9453182],[105.9498596,22.9409275],[105.9441528,22.9408894],[105.9401627,22.9426994],[105.9321594,22.9493046],[105.9256973,22.9508667],[105.9192429,22.9499054],[105.9135513,22.9482594],[105.9043732,22.9470482],[105.8949585,22.9446888],[105.8877792,22.9418831],[105.8855972,22.9347496],[105.8866577,22.9285583],[105.8864594,22.923048],[105.8817673,22.9200287],[105.8758011,22.9206772],[105.872551,22.9234085],[105.8690109,22.9307308],[105.8639679,22.939188],[105.8564682,22.9446449],[105.8530579,22.9487457],[105.8475418,22.9538784],[105.8455734,22.9554901],[105.842598,22.9584827],[105.8408737,22.9605522],[105.8359299,22.9663029],[105.8351822,22.9672222],[105.8302536,22.9738884],[105.8295135,22.9757252],[105.82827,22.977335],[105.8265533,22.9837646],[105.8258133,22.9851418],[105.8230972,22.992033],[105.8191376,22.9950256],[105.8161697,22.9966412],[105.8141937,22.9966469],[105.8037109,22.9937992],[105.7991028,22.9984035],[105.7963181,23.0038929],[105.7927094,23.009573],[105.7898483,23.009737],[105.7861023,23.0092697],[105.7813034,23.0083675],[105.7728806,23.0118294],[105.771637,23.0127506],[105.7674332,23.0178089],[105.7647171,23.0230904],[105.7637329,23.0253887],[105.7627411,23.0267677],[105.7575531,23.0325165],[105.7535782,23.0336742],[105.752327,23.0336761],[105.7456436,23.0343819],[105.7349777,23.0348663],[105.7337265,23.0348701],[105.725563,23.036726],[105.7216034,23.0420094],[105.7216034,23.0431576],[105.7216034,23.044075],[105.7213516,23.0454521],[105.7193832,23.0514202],[105.7186432,23.0527973],[105.7183914,23.0539455],[105.7159195,23.0589981],[105.7151794,23.0596886],[105.7089767,23.0638313],[105.7053223,23.0650406],[105.6995621,23.0651188],[105.6891174,23.0654926],[105.6818924,23.0677299],[105.6744232,23.0699635],[105.6641922,23.0726318],[105.6539383,23.0787449],[105.6476822,23.0830536],[105.6392136,23.0850487],[105.632019,23.0833797],[105.625618,23.077816],[105.6182327,23.0720119],[105.6132431,23.0731182],[105.6097412,23.0746956],[105.6010132,23.0782909],[105.5945435,23.0782356],[105.5891266,23.0738258],[105.5876617,23.0734024],[105.5845795,23.0699234],[105.5805969,23.0674076],[105.5796127,23.0669498],[105.5744019,23.0658112],[105.57341,23.0658131],[105.5724182,23.0658131],[105.5714264,23.065815],[105.5654678,23.0665131],[105.5644836,23.0667439],[105.5619965,23.0681229],[105.5607605,23.0692711],[105.5565414,23.0745544],[105.5562973,23.0754719],[105.5520782,23.0793762],[105.5503464,23.0809841],[105.5476227,23.0855751],[105.5493469,23.0903893],[105.5496063,23.0917664],[105.5503464,23.0926819],[105.5548172,23.0986385],[105.5558167,23.1002445],[105.5572968,23.1023064],[105.5605392,23.1071186],[105.5609283,23.1084194],[105.5613403,23.1097698],[105.5606232,23.1119099],[105.5595474,23.1187878],[105.559227,23.1242943],[105.5601425,23.1325665],[105.5605316,23.1422119],[105.5609436,23.1495628],[105.5616074,23.1562252],[105.5592804,23.1649284],[105.5571899,23.1740913],[105.5556335,23.1807346],[105.5510864,23.1852856],[105.5435562,23.191185],[105.5390778,23.192522],[105.5388794,23.1924896],[105.5245209,23.2472534],[105.5572281,23.2601757],[105.586998,23.3143845],[105.6513138,23.3535004],[105.6699829,23.3300133],[105.6891403,23.3317776],[105.6677094,23.3573093],[105.6865311,23.367794],[105.6473236,23.4014397],[105.6604309,23.4102726],[105.6966171,23.4041424],[105.7347031,23.4333687],[105.7553406,23.4622211],[105.8028564,23.4701576],[105.8124619,23.5099354],[105.8228607,23.5182743],[105.8775864,23.5319824],[105.9057693,23.5023403],[105.9326096,23.5117016],[105.9828796,23.4922943],[105.9941864,23.4799709],[105.9836426,23.4599361],[105.9909363,23.4505711],[106.0325394,23.4852581],[106.0688171,23.5001659],[106.0825806,23.5266399],[106.1037064,23.536171],[106.1169815,23.5617218],[106.1378632,23.5721645],[106.116188,23.6027966],[106.1405411,23.6513557],[106.1545868,23.7120171],[106.1332626,23.7979546],[106.1521225,23.8164139],[106.1887665,23.8273926],[106.169281,23.8642349],[106.1885223,23.8650227],[106.1942062,23.8737717],[106.149292,23.8992348],[106.1208496,23.9617195],[106.0928268,23.9962082],[106.0963974,24.0251865],[106.0894089,24.0375671],[106.0541534,24.0582275],[106.0459366,24.0935173],[105.9986496,24.1320438],[105.9575729,24.1155682],[105.9162369,24.1251984],[105.9002228,24.108242],[105.8962021,24.0546322],[105.8541412,24.0624104],[105.8403778,24.0523224],[105.8381271,24.0310154],[105.7890778,24.0373955],[105.8010788,24.0600872],[105.7692719,24.0760975],[105.7359924,24.0623131],[105.6969299,24.0684452],[105.6776962,24.0464211],[105.6604233,24.045475],[105.6426163,24.060564],[105.6244583,24.1274281],[105.5675888,24.1330299],[105.5372925,24.12883],[105.5165634,24.1090698],[105.4977493,24.0414295],[105.4925308,24.0288124],[105.4782791,24.0255642],[105.4096527,24.0416031],[105.388237,24.0742893],[105.3465881,24.0945206],[105.3184204,24.121212],[105.2826538,24.1112061],[105.2648163,24.0730953],[105.2050171,24.110384],[105.1787872,24.1430149],[105.1789169,24.1631794],[105.1911392,24.1744671],[105.2187119,24.1718559],[105.2308426,24.1989498],[105.1789627,24.2862186],[105.1931992,24.3399105],[105.1415329,24.3783646],[105.1086731,24.3752041],[105.098793,24.3895836],[105.1059036,24.41506],[105.0904694,24.4321575],[105.0399094,24.4446888],[105.0060577,24.4378338],[104.9773407,24.4158783],[104.9326935,24.4114552],[104.9061737,24.4309788],[104.8341904,24.4497013],[104.7824783,24.4467812],[104.7519531,24.4612007],[104.7417831,24.4475994],[104.7133865,24.4491959],[104.7031937,24.4397144],[104.718689,24.3429165],[104.7118073,24.3279648],[104.6995468,24.3239651],[104.6459274,24.3670368],[104.6053314,24.3843155],[104.6118164,24.4121017],[104.5671616,24.4545403],[104.540741,24.5042439],[104.5419693,24.5292339],[104.5212173,24.5414085],[104.5028915,24.5831661],[104.4977875,24.6335316],[104.4829178,24.6576748],[104.5208664,24.7268009],[104.5338669,24.7344913],[104.5826569,24.7168465],[104.6378098,24.6653271],[104.6879425,24.6593494],[104.700737,24.6365414],[104.7242432,24.6261959],[104.7405396,24.6311436],[104.7611237,24.6636219],[104.8239822,24.6778145],[104.8512192,24.6892986],[104.873642,24.7458382],[105.0308838,24.7973099],[105.0368729,24.8775558],[105.0649414,24.8992672],[105.072113,24.9194756],[105.1366196,24.9672794],[105.1630707,24.9724617],[105.2062988,25.0004101],[105.2372208,24.9739761],[105.254631,24.9722214],[105.2734985,24.9340363],[105.3161316,24.9291782],[105.384903,24.9459476],[105.4240112,24.939209],[105.445549,24.9110947],[105.4598236,24.870348],[105.5053635,24.8111286],[105.5587769,24.8027916],[105.5960464,24.8111286],[105.6258316,24.7816296],[105.6782227,24.7750797],[105.7051773,24.7687035],[105.805687,24.7067108],[105.8298492,24.7067261],[105.8693619,24.7328682],[105.9358063,24.7289772],[105.9609604,24.6849709],[105.9923935,24.6531048],[106.0180283,24.6404839],[106.0513077,24.6938496],[106.1291504,24.7322502],[106.1420364,24.7574387],[106.1707764,24.7695351],[106.1796417,24.7896843],[106.2002029,24.8467083],[106.1987534,24.8739815],[106.1444016,24.9570312],[106.1634369,24.9686947],[106.1891479,24.9597092],[106.2199936,24.9869175],[106.2421722,24.978159],[106.2754974,24.9872456],[106.299942,24.9807663],[106.4085617,25.0136604],[106.4561462,25.0448856],[106.5135193,25.0586357],[106.5307693,25.0739174],[106.5305786,25.0853767],[106.5727997,25.0950432],[106.5899582,25.0940475],[106.6009369,25.1139336],[106.6336594,25.1357746],[106.6431885,25.16506],[106.6784134,25.1804619],[106.6966324,25.1842594],[106.7242889,25.1646252],[106.7618408,25.1857224],[106.7855225,25.1766415],[106.8543625,25.1901855],[106.8871765,25.186758],[106.9007034,25.2297535],[106.9203415,25.250473],[106.9416122,25.2537594],[106.98423,25.2415295],[106.9877472,25.2664852],[107.0106201,25.2784595],[107.0025787,25.3110657],[107.0095673,25.3543282],[106.9793472,25.370142],[106.959137,25.4296513],[106.9666367,25.4463272],[106.9935303,25.4518566],[106.9977264,25.4667225],[107.0114136,25.493433],[107.069397,25.5168152],[107.0624771,25.5595016],[107.0892334,25.5725784],[107.141449,25.5719128],[107.2014618,25.6108093],[107.2161713,25.6106777],[107.2314835,25.5965576],[107.2282715,25.5594559],[107.3274536,25.5021343],[107.3361435,25.4667511],[107.3065491,25.4289951],[107.3296432,25.4115791],[107.3536072,25.4053822],[107.3760223,25.4159279],[107.3980637,25.3964481],[107.4197769,25.392786],[107.4035873,25.3546791],[107.4283371,25.2918491],[107.4447632,25.2902985],[107.4720078,25.3042164],[107.4841766,25.2875824],[107.4626236,25.226162],[107.4708328,25.2166748],[107.5024567,25.21908],[107.6051025,25.2719975],[107.6279602,25.3132114],[107.651062,25.3182049],[107.665657,25.3134441],[107.6542664,25.2963924],[107.6578064,25.2619686],[107.6901474,25.2271919],[107.6905136,25.2008305],[107.7026291,25.1999912],[107.7379303,25.2430954],[107.7490692,25.2440987],[107.758667,25.2274742],[107.7558212,25.1915245],[107.785347,25.1576786],[107.7729568,25.1246071],[107.8102264,25.1335163],[107.829277,25.1245537],[107.8578873,25.1285229],[107.8996964,25.1657696],[107.9651489,25.1808929],[107.9978333,25.1994457],[108.0734482,25.1899719],[108.1051865,25.203186],[108.1178436,25.2292385],[108.1295013,25.237112],[108.1390915,25.2725048],[108.1293411,25.2940884],[108.1478119,25.3205109],[108.1316681,25.3440018],[108.1478577,25.3620968],[108.1323776,25.3803215],[108.1401672,25.3908539],[108.177002,25.3968258],[108.1822968,25.4066067],[108.1733627,25.4263725],[108.1475677,25.4326248],[108.1457901,25.4413109],[108.1884384,25.4570732],[108.2142792,25.4315186],[108.2362137,25.427227],[108.2389832,25.4633656],[108.2769699,25.4828949],[108.3013229,25.5190887],[108.3161469,25.533226],[108.3365479,25.5295734],[108.3920288,25.4863052],[108.4112701,25.4410324],[108.4456406,25.4544582],[108.4867935,25.452179],[108.5476227,25.404377],[108.5562134,25.3756218],[108.5808563,25.3630695],[108.5801163,25.3423767],[108.5955429,25.3241081],[108.6195602,25.3358879],[108.6221771,25.3524837],[108.6165237,25.4054298],[108.5927429,25.4338589],[108.5946732,25.46698],[108.6067734,25.4798794],[108.6340485,25.4846058],[108.6289368,25.5161991],[108.6622467,25.5127792],[108.6790237,25.5220966],[108.659462,25.553381],[108.6597137,25.5740623],[108.7009888,25.6188164],[108.7799072,25.6312561],[108.7659607,25.5990372],[108.7928314,25.5793743],[108.7780991,25.5588551],[108.7984695,25.5452595],[108.8049622,25.5283928],[108.834343,25.55196],[108.8741302,25.5543652],[108.8936691,25.5434971],[108.9341812,25.5585327],[108.9653931,25.5359364],[108.9917603,25.5366707],[109.0096664,25.5184059],[109.0279465,25.5180607],[109.0701675,25.548254],[109.0368423,25.5751972],[109.0301666,25.647892],[109.0617676,25.6900597],[109.0692825,25.7186832],[109.0614166,25.7412796],[109.0368576,25.7371464],[109.0226593,25.7240162],[109.0006104,25.7327881],[108.9780121,25.7206421],[108.968338,25.6986332],[108.9376526,25.6736908],[108.9092026,25.6738243],[108.8895493,25.6998539],[108.9067307,25.7259216],[108.9213104,25.733099],[108.9630432,25.7309227],[108.9714432,25.7531357],[108.9910736,25.7620106],[108.9875336,25.7839966],[109.0604782,25.7846794],[109.1009216,25.8077049],[109.1319427,25.7963238],[109.1233368,25.7575779],[109.1448517,25.7501545],[109.1760483,25.765873],[109.1573334,25.7974701],[109.175209,25.8062878],[109.1945877,25.7914696],[109.2033234,25.7376423],[109.2228775,25.7379837],[109.2333069,25.7250729],[109.2570419,25.7326031],[109.2770386,25.7237568],[109.3298569,25.7386608],[109.3322525,25.7465115],[109.3075104,25.7768784],[109.32827,25.7944527],[109.3308487,25.8317089],[109.3626709,25.8434906],[109.3839722,25.8737011],[109.3878174,25.8992596],[109.4266968,25.92906],[109.4246979,25.9549828],[109.4010391,25.9672356],[109.4577637,25.9984608],[109.4780197,26.032774]]]]},
  2789 +"properties":{
  2790 +"gid":465,
  2791 +"name":"广西壮族自治区"}
  2792 +},
  2793 +{"type":"Feature",
  2794 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.4727097,26.3844223],[120.4823532,26.3858471],[120.4829636,26.3833332],[120.4812927,26.3800659],[120.476738,26.378788],[120.4752121,26.3787441],[120.4711227,26.3790874],[120.4705887,26.3795338],[120.4704895,26.3822899],[120.4714584,26.3836975],[120.4727097,26.3844223]]]]},
  2795 +"properties":{
  2796 +"gid":466,
  2797 +"name":"福建省"}
  2798 +},
  2799 +{"type":"Feature",
  2800 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.7278824,26.3555298],[119.7253723,26.3569698],[119.7261963,26.3587856],[119.7373123,26.3635597],[119.7385712,26.3628407],[119.7397919,26.3609734],[119.7384567,26.3591709],[119.7278824,26.3555298]]]]},
  2801 +"properties":{
  2802 +"gid":467,
  2803 +"name":"福建省"}
  2804 +},
  2805 +{"type":"Feature",
  2806 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.7317963,26.3552074],[119.7360764,26.3567047],[119.7460632,26.3571434],[119.747818,26.356411],[119.7490234,26.353857],[119.7466583,26.3516197],[119.7397385,26.3508739],[119.7303619,26.3529434],[119.7317963,26.3552074]]]]},
  2807 +"properties":{
  2808 +"gid":468,
  2809 +"name":"福建省"}
  2810 +},
  2811 +{"type":"Feature",
  2812 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.7002792,26.3199425],[119.698288,26.3215981],[119.7032471,26.3256092],[119.7093277,26.3238525],[119.7082672,26.3225002],[119.7002792,26.3199425]]]]},
  2813 +"properties":{
  2814 +"gid":469,
  2815 +"name":"福建省"}
  2816 +},
  2817 +{"type":"Feature",
  2818 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.9797211,26.2806625],[119.9872437,26.2845955],[119.9890137,26.2838593],[119.9894867,26.2748928],[119.9921875,26.2716084],[119.9923172,26.2677021],[119.9854126,26.2593918],[119.9798508,26.2609177],[119.9773788,26.263279],[119.9749985,26.2686214],[119.9786072,26.2701321],[119.9800262,26.2742271],[119.9776077,26.2784233],[119.9797211,26.2806625]]]]},
  2819 +"properties":{
  2820 +"gid":470,
  2821 +"name":"福建省"}
  2822 +},
  2823 +{"type":"Feature",
  2824 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.9997864,26.2498837],[120.0046463,26.253479],[120.0065231,26.2521267],[120.0073776,26.250103],[120.0050964,26.2474327],[119.9999313,26.2451725],[119.9988785,26.2448177],[119.9955063,26.2448578],[119.995697,26.2487392],[119.9997864,26.2498837]]]]},
  2825 +"properties":{
  2826 +"gid":471,
  2827 +"name":"福建省"}
  2828 +},
  2829 +{"type":"Feature",
  2830 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120,26.2420425],[120.0027771,26.240963],[120.0085297,26.239336],[120.0105667,26.2406807],[120.013649,26.2410622],[120.0124969,26.2303715],[120.0149002,26.2256584],[120.0128784,26.222681],[120.0106201,26.2235432],[120.0074463,26.227787],[120.0037308,26.2307663],[120,26.2311497],[119.9981995,26.2290707],[119.9898911,26.2166653],[119.9859619,26.2213612],[119.973732,26.2136517],[119.9728928,26.1950779],[119.9687729,26.1938095],[119.9670563,26.1961517],[119.96772,26.2089901],[119.9661179,26.2228069],[119.9704208,26.2292309],[119.9770126,26.2338276],[119.9827271,26.2372055],[119.9901428,26.2403049],[119.9942169,26.2401962],[120,26.2420425]]]]},
  2831 +"properties":{
  2832 +"gid":472,
  2833 +"name":"福建省"}
  2834 +},
  2835 +{"type":"Feature",
  2836 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.9176712,26.1771297],[119.9288406,26.1725025],[119.9297867,26.1701832],[119.9246292,26.168251],[119.9300079,26.162344],[119.9354782,26.1583672],[119.9384232,26.1572132],[119.9422836,26.1588955],[119.9448166,26.161005],[119.9472885,26.1676559],[119.949913,26.1701126],[119.9539719,26.1672497],[119.9583206,26.1698914],[119.9607773,26.1673012],[119.9626694,26.1624298],[119.9621277,26.153492],[119.9559097,26.1502113],[119.9531403,26.1512032],[119.9508133,26.1503468],[119.9451828,26.1415405],[119.9385376,26.1407986],[119.9355927,26.1443195],[119.9329681,26.1420918],[119.9319916,26.135231],[119.9284134,26.1348667],[119.9251709,26.1370163],[119.9247131,26.1388645],[119.9104996,26.1406136],[119.9098129,26.1429272],[119.9145126,26.1547413],[119.9118805,26.1600895],[119.9160538,26.1712303],[119.9133301,26.1735973],[119.9149399,26.1763096],[119.9176712,26.1771297]]]]},
  2837 +"properties":{
  2838 +"gid":473,
  2839 +"name":"福建省"}
  2840 +},
  2841 +{"type":"Feature",
  2842 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.6177521,26.1732025],[119.6231003,26.1760597],[119.6296997,26.1662598],[119.6384583,26.1607685],[119.6422501,26.1597576],[119.6577988,26.1598396],[119.66082,26.1586189],[119.6617966,26.157217],[119.6571808,26.1561813],[119.6522064,26.1519413],[119.6538925,26.1482277],[119.6486206,26.1421585],[119.6509705,26.1354446],[119.6401215,26.1304283],[119.6368027,26.1387711],[119.6130066,26.1443958],[119.6058807,26.1535187],[119.6011581,26.1575336],[119.6005402,26.1625996],[119.6030426,26.1696548],[119.6059036,26.171423],[119.6120071,26.171505],[119.6177521,26.1732025]]]]},
  2843 +"properties":{
  2844 +"gid":474,
  2845 +"name":"福建省"}
  2846 +},
  2847 +{"type":"Feature",
  2848 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.9697266,26.1685429],[119.9721069,26.1628685],[119.9697876,26.1617813],[119.9680634,26.1634369],[119.9678574,26.1655064],[119.9697266,26.1685429]]]]},
  2849 +"properties":{
  2850 +"gid":475,
  2851 +"name":"福建省"}
  2852 +},
  2853 +{"type":"Feature",
  2854 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.6713104,26.1440239],[119.6785202,26.1366081],[119.6720123,26.1319485],[119.6706467,26.1292248],[119.6710129,26.1239376],[119.6726685,26.1197643],[119.6703796,26.1113281],[119.6669006,26.1141682],[119.6627121,26.1275826],[119.655777,26.1346378],[119.6680222,26.1435223],[119.6713104,26.1440239]]]]},
  2855 +"properties":{
  2856 +"gid":476,
  2857 +"name":"福建省"}
  2858 +},
  2859 +{"type":"Feature",
  2860 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.5422974,26.0859356],[119.545723,26.0899868],[119.5511627,26.1017952],[119.5559387,26.108799],[119.5632935,26.1164284],[119.5677109,26.1195374],[119.5762024,26.122551],[119.5843735,26.1232738],[119.5879898,26.1250229],[119.5898438,26.1275043],[119.5949936,26.1289883],[119.6024933,26.1239891],[119.6110535,26.1208],[119.6237106,26.1179695],[119.641777,26.0826397],[119.6403732,26.078083],[119.6471863,26.0763111],[119.6501923,26.074173],[119.6518631,26.0702305],[119.6466827,26.0671406],[119.6299667,26.0618076],[119.6065826,26.06283],[119.5911102,26.0742188],[119.5776672,26.0761452],[119.5625,26.0799484],[119.5380936,26.0812149],[119.5422974,26.0859356]]]]},
  2861 +"properties":{
  2862 +"gid":477,
  2863 +"name":"福建省"}
  2864 +},
  2865 +{"type":"Feature",
  2866 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.6283722,26.1208401],[119.6251221,26.1227551],[119.6170197,26.1245575],[119.6165771,26.1270924],[119.6262512,26.1266308],[119.6325684,26.1248703],[119.6332932,26.1232452],[119.6324692,26.1214314],[119.6283722,26.1208401]]]]},
  2867 +"properties":{
  2868 +"gid":478,
  2869 +"name":"福建省"}
  2870 +},
  2871 +{"type":"Feature",
  2872 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.6397934,26.1102352],[119.6343307,26.1154175],[119.6344299,26.1188564],[119.6399765,26.117115],[119.6397934,26.1102352]]]]},
  2873 +"properties":{
  2874 +"gid":479,
  2875 +"name":"福建省"}
  2876 +},
  2877 +{"type":"Feature",
  2878 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.5539703,26.0753307],[119.5532532,26.076725],[119.5563126,26.0773411],[119.5631104,26.0744247],[119.580101,26.0719566],[119.5864563,26.0720348],[119.5954971,26.0672264],[119.5974426,26.0641956],[119.5971298,26.0621376],[119.5798798,26.0643864],[119.5683365,26.0704002],[119.5539703,26.0753307]]]]},
  2879 +"properties":{
  2880 +"gid":480,
  2881 +"name":"福建省"}
  2882 +},
  2883 +{"type":"Feature",
  2884 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.5572205,26.0664272],[119.5643768,26.0652142],[119.5713577,26.0602264],[119.5725632,26.0576725],[119.5679626,26.0573235],[119.5621872,26.0599861],[119.5574493,26.0635414],[119.5572205,26.0664272]]]]},
  2885 +"properties":{
  2886 +"gid":481,
  2887 +"name":"福建省"}
  2888 +},
  2889 +{"type":"Feature",
  2890 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.5517502,26.0600033],[119.546463,26.0621929],[119.5455017,26.0642815],[119.5463028,26.0651817],[119.5500488,26.0627995],[119.5517502,26.0600033]]]]},
  2891 +"properties":{
  2892 +"gid":482,
  2893 +"name":"福建省"}
  2894 +},
  2895 +{"type":"Feature",
  2896 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.9350128,25.9655018],[119.9307404,25.9672203],[119.9272079,25.9743099],[119.9269867,25.9798641],[119.932991,25.9808636],[119.9419327,25.9803963],[119.9468918,25.9791908],[119.9460068,25.9753113],[119.9379425,25.9695568],[119.9350128,25.9655018]]]]},
  2897 +"properties":{
  2898 +"gid":483,
  2899 +"name":"福建省"}
  2900 +},
  2901 +{"type":"Feature",
  2902 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.9835129,25.9675179],[119.9859772,25.9680538],[119.985733,25.9602547],[119.983078,25.9568825],[119.9708633,25.9489422],[119.9623413,25.9450359],[119.9618912,25.9466553],[119.9674683,25.9562836],[119.9680023,25.9593639],[119.9723129,25.9624481],[119.97892,25.9620438],[119.9835129,25.9675179]]]]},
  2903 +"properties":{
  2904 +"gid":484,
  2905 +"name":"福建省"}
  2906 +},
  2907 +{"type":"Feature",
  2908 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.6964493,25.9481297],[123.6984634,25.9481125],[123.7053833,25.9462051],[123.7057571,25.9423046],[123.7022934,25.9392357],[123.6986771,25.9407597],[123.6968231,25.9432468],[123.6954727,25.9462013],[123.6964493,25.9481297]]]]},
  2909 +"properties":{
  2910 +"gid":485,
  2911 +"name":"台湾省"}
  2912 +},
  2913 +{"type":"Feature",
  2914 +"geometry":{"type":"MultiPolygon","coordinates":[[[[124.5708237,25.9172096],[124.5745468,25.9155045],[124.5756073,25.9129944],[124.5761871,25.9097862],[124.5757828,25.9060993],[124.572197,25.9067268],[124.5685883,25.9089642],[124.567482,25.9130802],[124.5684433,25.9156265],[124.5708237,25.9172096]]]]},
  2915 +"properties":{
  2916 +"gid":486,
  2917 +"name":"台湾省"}
  2918 +},
  2919 +{"type":"Feature",
  2920 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.5485764,25.7941093],[123.550972,25.7921276],[123.5508804,25.7868366],[123.5496674,25.7849674],[123.5471573,25.7839851],[123.5460892,25.785799],[123.5457382,25.7890091],[123.5468979,25.7924862],[123.5485764,25.7941093]]]]},
  2921 +"properties":{
  2922 +"gid":487,
  2923 +"name":"台湾省"}
  2924 +},
  2925 +{"type":"Feature",
  2926 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.5570297,25.7877045],[123.5590515,25.7890244],[123.5597,25.7891235],[123.5619965,25.7884903],[123.5643768,25.7857895],[123.5649567,25.7835045],[123.5632095,25.7825413],[123.5578537,25.783329],[123.556488,25.7859688],[123.5570297,25.7877045]]]]},
  2927 +"properties":{
  2928 +"gid":488,
  2929 +"name":"台湾省"}
  2930 +},
  2931 +{"type":"Feature",
  2932 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.5800018,25.7650185],[123.5815506,25.7641354],[123.5823364,25.7634659],[123.5829163,25.7611809],[123.581749,25.7579327],[123.5807571,25.7569885],[123.5792236,25.7576408],[123.5771103,25.7601185],[123.5780334,25.7633591],[123.5800018,25.7650185]]]]},
  2933 +"properties":{
  2934 +"gid":489,
  2935 +"name":"台湾省"}
  2936 +},
  2937 +{"type":"Feature",
  2938 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.6738968,25.7556534],[119.668129,25.758091],[119.6664734,25.7622643],[119.667717,25.7643242],[119.6775894,25.7603836],[119.6738968,25.7556534]]]]},
  2939 +"properties":{
  2940 +"gid":490,
  2941 +"name":"福建省"}
  2942 +},
  2943 +{"type":"Feature",
  2944 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.4698868,25.7457352],[123.4776688,25.7486897],[123.4840164,25.7486191],[123.4856033,25.7468185],[123.4859238,25.7447567],[123.4842072,25.7426453],[123.4755936,25.742197],[123.4730301,25.7428246],[123.4706421,25.7438164],[123.4698868,25.7457352]]]]},
  2945 +"properties":{
  2946 +"gid":491,
  2947 +"name":"台湾省"}
  2948 +},
  2949 +{"type":"Feature",
  2950 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.5574265,25.7479115],[123.5590286,25.7454205],[123.5598679,25.7429104],[123.5591888,25.7401371],[123.5568924,25.7405415],[123.5549316,25.7464695],[123.5574265,25.7479115]]]]},
  2951 +"properties":{
  2952 +"gid":492,
  2953 +"name":"台湾省"}
  2954 +},
  2955 +{"type":"Feature",
  2956 +"geometry":{"type":"MultiPolygon","coordinates":[[[[123.5619507,25.7330761],[123.5649796,25.7336102],[123.5690536,25.7332497],[123.571373,25.7321587],[123.5712128,25.7291641],[123.5651169,25.7287865],[123.5630722,25.7296543],[123.5617218,25.732151],[123.5619507,25.7330761]]]]},
  2957 +"properties":{
  2958 +"gid":493,
  2959 +"name":"台湾省"}
  2960 +},
  2961 +{"type":"Feature",
  2962 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.6612167,25.6870956],[119.6603165,25.6907902],[119.6667328,25.6931591],[119.6677322,25.6926746],[119.6681595,25.6901398],[119.6612167,25.6870956]]]]},
  2963 +"properties":{
  2964 +"gid":494,
  2965 +"name":"福建省"}
  2966 +},
  2967 +{"type":"Feature",
  2968 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.6367798,25.6670303],[119.6355133,25.6672916],[119.6350937,25.6698265],[119.6398621,25.6770573],[119.6513519,25.6795311],[119.6494522,25.6752167],[119.6367798,25.6670303]]]]},
  2969 +"properties":{
  2970 +"gid":495,
  2971 +"name":"福建省"}
  2972 +},
  2973 +{"type":"Feature",
  2974 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.5772095,25.6606598],[119.5724869,25.664217],[119.5819092,25.6738625],[119.5865402,25.6762772],[119.5875168,25.6751041],[119.5808868,25.665163],[119.5810394,25.6612587],[119.5772095,25.6606598]]]]},
  2975 +"properties":{
  2976 +"gid":496,
  2977 +"name":"福建省"}
  2978 +},
  2979 +{"type":"Feature",
  2980 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.6175537,25.6691036],[119.6168671,25.671875],[119.6200333,25.6757011],[119.6246719,25.6738663],[119.6195831,25.6692848],[119.6175537,25.6691036]]]]},
  2981 +"properties":{
  2982 +"gid":497,
  2983 +"name":"福建省"}
  2984 +},
  2985 +{"type":"Feature",
  2986 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.6596069,25.6592178],[119.645813,25.654644],[119.6422501,25.654501],[119.6415329,25.656126],[119.6431732,25.6645622],[119.6472931,25.6684761],[119.6551437,25.6700268],[119.6602936,25.6639328],[119.6596069,25.6592178]]]]},
  2987 +"properties":{
  2988 +"gid":498,
  2989 +"name":"福建省"}
  2990 +},
  2991 +{"type":"Feature",
  2992 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.7646866,25.638113],[119.7694321,25.622654],[119.7720566,25.6173077],[119.7762909,25.6146755],[119.7787781,25.6130047],[119.7879333,25.6136932],[119.8007812,25.6191063],[119.8063431,25.6185055],[119.8095627,25.616127],[119.8097382,25.6133671],[119.8114471,25.6114864],[119.8142929,25.612793],[119.8180389,25.6110897],[119.8269119,25.6028271],[119.8329163,25.6001472],[119.8362579,25.5931759],[119.8329163,25.5921116],[119.8296967,25.5862274],[119.8178406,25.5798721],[119.8141708,25.5758343],[119.8151321,25.5745125],[119.8163528,25.5725651],[119.8193588,25.5713406],[119.8229218,25.5717087],[119.8322525,25.5783558],[119.8334808,25.577177],[119.8332596,25.5698357],[119.8344803,25.5684261],[119.8435974,25.5679626],[119.8634567,25.5626297],[119.8708267,25.5628967],[119.8750229,25.5671501],[119.8814468,25.5704269],[119.8821869,25.5694885],[119.8791504,25.561533],[119.8797989,25.5578442],[119.8748779,25.5545273],[119.8708801,25.5482025],[119.8646469,25.5435448],[119.858078,25.5444031],[119.8614273,25.5378876],[119.8515015,25.5365372],[119.8530884,25.5468273],[119.8436127,25.5521221],[119.8379364,25.5573196],[119.8291397,25.5513458],[119.8248672,25.544569],[119.8143768,25.5413933],[119.8106079,25.5421772],[119.8054733,25.5315189],[119.8026962,25.5155201],[119.8048782,25.4957218],[119.8060837,25.4936256],[119.808609,25.49333],[119.8183136,25.4875736],[119.8195877,25.4877701],[119.8204498,25.4909611],[119.8242569,25.4913235],[119.8246765,25.4887886],[119.8212128,25.4829082],[119.8262634,25.48209],[119.8377075,25.483633],[119.8437576,25.4827881],[119.8424835,25.4738674],[119.8523102,25.4807301],[119.8574295,25.4824352],[119.8591919,25.4819298],[119.8575974,25.4796753],[119.8551636,25.4661942],[119.8499527,25.4615078],[119.8531189,25.4577522],[119.8509979,25.4545918],[119.836792,25.4540405],[119.8389587,25.4666119],[119.8308182,25.4656715],[119.8174362,25.4673939],[119.8115311,25.4645596],[119.8114777,25.4627247],[119.8146973,25.4603462],[119.8133698,25.4583149],[119.8100662,25.4579391],[119.8025589,25.4611149],[119.7921677,25.4526558],[119.7876892,25.4552956],[119.7810135,25.4503078],[119.7702637,25.4403553],[119.7669983,25.4411259],[119.7567368,25.4370232],[119.7504272,25.4206543],[119.7580872,25.4144917],[119.7602234,25.4096184],[119.7631302,25.4136753],[119.7662277,25.4156647],[119.7768021,25.4135609],[119.7796707,25.4079781],[119.7785873,25.4059391],[119.7715378,25.4070358],[119.7710114,25.4063606],[119.771347,25.4006119],[119.7735214,25.3971138],[119.7636566,25.3978214],[119.7579727,25.3936043],[119.7521133,25.392374],[119.7506409,25.3940182],[119.75177,25.397892],[119.7508011,25.3995228],[119.7425308,25.402256],[119.737381,25.4163895],[119.7356186,25.4166641],[119.7329865,25.4201202],[119.7314072,25.419754],[119.7291565,25.4209576],[119.7235336,25.4188023],[119.7100296,25.4248772],[119.7090988,25.4276543],[119.7114487,25.4301224],[119.7097778,25.4333763],[119.7024994,25.4356232],[119.7005768,25.4393444],[119.7003937,25.4414158],[119.7048035,25.4452095],[119.7071991,25.4490509],[119.7046967,25.4502621],[119.7043686,25.4560089],[119.7031021,25.4560394],[119.7009735,25.4524193],[119.6979523,25.4619064],[119.6984329,25.469471],[119.6994934,25.4708214],[119.7052536,25.4686127],[119.7093735,25.4625416],[119.7114487,25.464098],[119.7129288,25.4629135],[119.716507,25.4637413],[119.7173233,25.4657879],[119.7154694,25.4800682],[119.7226334,25.4821854],[119.7304535,25.4810715],[119.728653,25.4886932],[119.7249069,25.4906216],[119.7192917,25.4893837],[119.7108002,25.4850044],[119.7010498,25.489378],[119.6970291,25.4819012],[119.6955872,25.4849224],[119.6928635,25.4868259],[119.6843719,25.4824448],[119.6745911,25.4684525],[119.6714096,25.4717484],[119.6721191,25.477911],[119.6803284,25.491497],[119.679863,25.4924278],[119.6744995,25.4914112],[119.67202,25.493309],[119.6728287,25.4948959],[119.6941833,25.5056171],[119.6910019,25.5095997],[119.7025299,25.5136757],[119.7055664,25.5135994],[119.707283,25.5114918],[119.7095108,25.507494],[119.7145462,25.509016],[119.71772,25.513298],[119.7205429,25.5143757],[119.7352676,25.5066624],[119.7385864,25.5074978],[119.7393875,25.5088558],[119.7397308,25.5118313],[119.7380371,25.5146294],[119.7240524,25.5216331],[119.7245483,25.5381508],[119.7281265,25.5477047],[119.7281189,25.5559673],[119.7301636,25.5648708],[119.7345505,25.5760098],[119.7387772,25.5816441],[119.7340622,25.5852051],[119.7300415,25.5949459],[119.7282333,25.5932674],[119.7253494,25.5907021],[119.7167206,25.5904579],[119.7104034,25.5825787],[119.7041016,25.5838833],[119.7039337,25.5781479],[119.7071762,25.5764618],[119.7028427,25.5756512],[119.6867828,25.5815563],[119.6871719,25.5859089],[119.6913834,25.5913143],[119.6875229,25.5891151],[119.6842728,25.5905724],[119.6814728,25.5991344],[119.6822586,25.6000347],[119.6852798,25.5992699],[119.6906281,25.6000557],[119.6921997,25.6018543],[119.6919098,25.6089783],[119.6945572,25.6130447],[119.7011032,25.6110458],[119.704277,25.6155605],[119.6977768,25.6189346],[119.7075806,25.6242008],[119.7061996,25.6205616],[119.7112274,25.6188316],[119.7143097,25.6203613],[119.7197876,25.6252766],[119.7214279,25.629137],[119.7202225,25.631464],[119.7256622,25.6350002],[119.7244797,25.6380138],[119.7255325,25.6393661],[119.7356033,25.6450825],[119.7366333,25.6455173],[119.7373428,25.6438923],[119.7395706,25.6335049],[119.7412567,25.6309376],[119.7434082,25.6347866],[119.7412872,25.6401196],[119.7437134,25.6448803],[119.7481613,25.6493607],[119.7806473,25.6664486],[119.7844772,25.6672707],[119.786087,25.6614895],[119.7847519,25.6594582],[119.777359,25.6500034],[119.7646866,25.638113]]]]},
  2993 +"properties":{
  2994 +"gid":499,
  2995 +"name":"福建省"}
  2996 +},
  2997 +{"type":"Feature",
  2998 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.5659027,25.6287918],[119.5652237,25.6313343],[119.5629807,25.6329937],[119.5554733,25.6363869],[119.5625229,25.6437931],[119.5635605,25.6444569],[119.5655594,25.6434917],[119.5658798,25.6368275],[119.5707169,25.6376305],[119.5755692,25.6473846],[119.5725479,25.6483765],[119.5725937,25.6499805],[119.5833435,25.6529388],[119.5869827,25.656065],[119.5899429,25.6619625],[119.6012497,25.6669712],[119.6057663,25.6654854],[119.6049423,25.6542568],[119.6027985,25.6504059],[119.5874634,25.6376896],[119.582077,25.6355228],[119.5753021,25.6292572],[119.5722427,25.62887],[119.5707626,25.6300545],[119.5659027,25.6287918]]]]},
  2999 +"properties":{
  3000 +"gid":500,
  3001 +"name":"福建省"}
  3002 +},
  3003 +{"type":"Feature",
  3004 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.7136536,25.6665192],[119.7108383,25.6571789],[119.7143631,25.6474495],[119.7144699,25.6426258],[119.7119827,25.6355705],[119.6971436,25.6403008],[119.6832428,25.633297],[119.6754379,25.6355553],[119.6716232,25.6351891],[119.6702805,25.6326962],[119.6682205,25.6315994],[119.6644669,25.6337585],[119.6629028,25.6406822],[119.6575394,25.6394367],[119.6565628,25.6406078],[119.6582336,25.6453876],[119.6697235,25.6568146],[119.6709366,25.6551781],[119.6699982,25.6490021],[119.67173,25.647583],[119.6775436,25.6475658],[119.6805725,25.6484985],[119.6804428,25.6501236],[119.6812286,25.6512527],[119.6844788,25.6495647],[119.6931992,25.6527939],[119.6986465,25.6567898],[119.7072983,25.6659889],[119.7136536,25.6665192]]]]},
  3005 +"properties":{
  3006 +"gid":501,
  3007 +"name":"福建省"}
  3008 +},
  3009 +{"type":"Feature",
  3010 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.0650635,25.6548405],[122.0711288,25.6483841],[122.0695801,25.64011],[122.0634766,25.6343803],[122.0586929,25.6396828],[122.0584488,25.6454334],[122.0650635,25.6548405]]]]},
  3011 +"properties":{
  3012 +"gid":502,
  3013 +"name":"台湾省"}
  3014 +},
  3015 +{"type":"Feature",
  3016 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.7940292,25.6499348],[119.7966003,25.6485977],[119.7972565,25.6451378],[119.7936783,25.64431],[119.7925415,25.6484699],[119.7940292,25.6499348]]]]},
  3017 +"properties":{
  3018 +"gid":503,
  3019 +"name":"福建省"}
  3020 +},
  3021 +{"type":"Feature",
  3022 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.5330582,25.6292248],[119.5341873,25.6288528],[119.5346375,25.6267776],[119.5318298,25.6169739],[119.5367279,25.6108894],[119.5365677,25.605154],[119.5341568,25.6008492],[119.5268784,25.5943642],[119.5238266,25.5942059],[119.5268402,25.6108913],[119.5255737,25.6201038],[119.5269165,25.6230564],[119.5330582,25.6292248]]]]},
  3023 +"properties":{
  3024 +"gid":504,
  3025 +"name":"福建省"}
  3026 +},
  3027 +{"type":"Feature",
  3028 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.8942719,25.6072845],[119.9001694,25.60116],[119.8979187,25.5860672],[119.8963394,25.5842724],[119.8866196,25.5898056],[119.8839798,25.5864315],[119.8793793,25.5851746],[119.8782425,25.5893345],[119.8693466,25.5891075],[119.8678894,25.6072807],[119.8686981,25.6088676],[119.8722305,25.6080875],[119.8746796,25.6054974],[119.877533,25.5989952],[119.8833466,25.5988445],[119.8854294,25.6003971],[119.8864212,25.5996838],[119.8863068,25.596014],[119.892601,25.594471],[119.8932114,25.6059341],[119.8942719,25.6072845]]]]},
  3029 +"properties":{
  3030 +"gid":505,
  3031 +"name":"福建省"}
  3032 +},
  3033 +{"type":"Feature",
  3034 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.8567734,25.5979271],[119.8581696,25.5965137],[119.8582382,25.5905437],[119.8573685,25.5868912],[119.8555832,25.5867081],[119.8537674,25.5934143],[119.8567734,25.5979271]]]]},
  3035 +"properties":{
  3036 +"gid":506,
  3037 +"name":"福建省"}
  3038 +},
  3039 +{"type":"Feature",
  3040 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.8363495,25.579628],[119.8340836,25.5803757],[119.834137,25.5819798],[119.837532,25.5851078],[119.840271,25.5834293],[119.8363495,25.579628]]]]},
  3041 +"properties":{
  3042 +"gid":507,
  3043 +"name":"福建省"}
  3044 +},
  3045 +{"type":"Feature",
  3046 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.60495,25.5752869],[119.6053085,25.5789528],[119.6114807,25.5817871],[119.6124268,25.5794697],[119.6113586,25.5776577],[119.60495,25.5752869]]]]},
  3047 +"properties":{
  3048 +"gid":508,
  3049 +"name":"福建省"}
  3050 +},
  3051 +{"type":"Feature",
  3052 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.8454666,25.5793934],[119.8446274,25.5766602],[119.8413162,25.5765152],[119.8405914,25.5774536],[119.841423,25.5794983],[119.8454666,25.5793934]]]]},
  3053 +"properties":{
  3054 +"gid":509,
  3055 +"name":"福建省"}
  3056 +},
  3057 +{"type":"Feature",
  3058 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.598259,25.5717754],[119.6003036,25.5724144],[119.6029129,25.5659237],[119.6109695,25.5377235],[119.6099167,25.5366001],[119.5936203,25.5427322],[119.5876465,25.5465488],[119.5842209,25.550993],[119.5826569,25.5586052],[119.5870285,25.5603371],[119.594902,25.5697899],[119.598259,25.5717754]]]]},
  3059 +"properties":{
  3060 +"gid":510,
  3061 +"name":"福建省"}
  3062 +},
  3063 +{"type":"Feature",
  3064 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.3564606,25.5564976],[119.3539734,25.5581589],[119.3528137,25.562088],[119.3538971,25.5652771],[119.3629227,25.5705833],[119.3619995,25.5646362],[119.3564606,25.5564976]]]]},
  3065 +"properties":{
  3066 +"gid":511,
  3067 +"name":"福建省"}
  3068 +},
  3069 +{"type":"Feature",
  3070 +"geometry":{"type":"MultiPolygon","coordinates":[[[[122.0863495,25.5008144],[122.0881729,25.5023537],[122.0912781,25.5027657],[122.0934067,25.5033379],[122.0971527,25.5018158],[122.0983582,25.500246],[122.0979233,25.4980259],[122.0957031,25.4970093],[122.0922699,25.4975643],[122.0892487,25.4975948],[122.0864029,25.4985142],[122.0863495,25.5008144]]]]},
  3071 +"properties":{
  3072 +"gid":512,
  3073 +"name":"台湾省"}
  3074 +},
  3075 +{"type":"Feature",
  3076 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.2626877,25.4950714],[119.2690201,25.4891033],[119.2684402,25.4863605],[119.2583466,25.4783173],[119.2546387,25.4816113],[119.2541809,25.4834576],[119.2594986,25.4932117],[119.2626877,25.4950714]]]]},
  3077 +"properties":{
  3078 +"gid":513,
  3079 +"name":"福建省"}
  3080 +},
  3081 +{"type":"Feature",
  3082 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.6461563,25.4774036],[119.6468735,25.4734936],[119.6457825,25.4709949],[119.6439972,25.4705791],[119.6433792,25.4756451],[119.6461563,25.4774036]]]]},
  3083 +"properties":{
  3084 +"gid":514,
  3085 +"name":"福建省"}
  3086 +},
  3087 +{"type":"Feature",
  3088 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.6894073,25.4641838],[119.6917038,25.4645863],[119.6920929,25.4606743],[119.6944809,25.4557953],[119.6902695,25.4503899],[119.6943207,25.4417953],[119.6869431,25.4403706],[119.6828232,25.4466705],[119.6828766,25.4574585],[119.6894073,25.4641838]]]]},
  3089 +"properties":{
  3090 +"gid":515,
  3091 +"name":"福建省"}
  3092 +},
  3093 +{"type":"Feature",
  3094 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.9252625,25.446125],[121.9270172,25.4499645],[121.9294968,25.4523163],[121.9356232,25.4527073],[121.9361725,25.4503288],[121.9369507,25.4465408],[121.9357681,25.4430656],[121.9313431,25.4410286],[121.9269333,25.4417343],[121.9252396,25.4433804],[121.9252625,25.446125]]]]},
  3095 +"properties":{
  3096 +"gid":516,
  3097 +"name":"台湾省"}
  3098 +},
  3099 +{"type":"Feature",
  3100 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.6624222,25.4510746],[119.6656723,25.4496174],[119.6670914,25.4461403],[119.6660538,25.4452477],[119.6638031,25.4459915],[119.6618576,25.4490223],[119.6624222,25.4510746]]]]},
  3101 +"properties":{
  3102 +"gid":517,
  3103 +"name":"福建省"}
  3104 +},
  3105 +{"type":"Feature",
  3106 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.5634766,25.4454327],[119.5619888,25.4466152],[119.5640793,25.4488602],[119.567627,25.4492359],[119.5686188,25.4482937],[119.568573,25.4466877],[119.5662613,25.4453659],[119.5634766,25.4454327]]]]},
  3107 +"properties":{
  3108 +"gid":518,
  3109 +"name":"福建省"}
  3110 +},
  3111 +{"type":"Feature",
  3112 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.8062973,25.4341602],[119.8030319,25.4349327],[119.7987671,25.4446831],[119.7998962,25.446579],[119.8028564,25.4459572],[119.8062897,25.4421959],[119.8071518,25.4373531],[119.8062973,25.4341602]]]]},
  3113 +"properties":{
  3114 +"gid":519,
  3115 +"name":"福建省"}
  3116 +},
  3117 +{"type":"Feature",
  3118 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.3911514,25.4420929],[119.3982162,25.4318295],[119.3953934,25.4302864],[119.3884277,25.4352627],[119.3810883,25.4354305],[119.3796005,25.4366112],[119.3857727,25.4396858],[119.3909531,25.4439297],[119.3911514,25.4420929]]]]},
  3119 +"properties":{
  3120 +"gid":520,
  3121 +"name":"福建省"}
  3122 +},
  3123 +{"type":"Feature",
  3124 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.687912,25.4304752],[119.6965637,25.4320984],[119.6993027,25.4304237],[119.6931763,25.4287395],[119.6873779,25.4298],[119.687912,25.4304752]]]]},
  3125 +"properties":{
  3126 +"gid":521,
  3127 +"name":"福建省"}
  3128 +},
  3129 +{"type":"Feature",
  3130 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.5619965,25.4320374],[119.565773,25.4279308],[119.5659027,25.4240246],[119.5643387,25.422226],[119.562561,25.4222679],[119.5613937,25.4255085],[119.5619965,25.4320374]]]]},
  3131 +"properties":{
  3132 +"gid":522,
  3133 +"name":"福建省"}
  3134 +},
  3135 +{"type":"Feature",
  3136 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.6608734,25.4283657],[119.6663437,25.4204464],[119.6633835,25.4145508],[119.6624069,25.4074574],[119.6608505,25.4058895],[119.6588516,25.4068565],[119.6576538,25.4174461],[119.6584778,25.4199505],[119.6557922,25.42346],[119.6584396,25.4272976],[119.6608734,25.4283657]]]]},
  3137 +"properties":{
  3138 +"gid":523,
  3139 +"name":"福建省"}
  3140 +},
  3141 +{"type":"Feature",
  3142 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.8153687,25.4160233],[119.813942,25.4190426],[119.8142776,25.4217892],[119.8176422,25.4239998],[119.8188324,25.4216728],[119.8153687,25.4160233]]]]},
  3143 +"properties":{
  3144 +"gid":524,
  3145 +"name":"福建省"}
  3146 +},
  3147 +{"type":"Feature",
  3148 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.5326538,25.4119587],[119.5577774,25.4232998],[119.5589676,25.420517],[119.557518,25.4138947],[119.5512085,25.414732],[119.5350266,25.4068527],[119.5327911,25.4082813],[119.5339127,25.4116993],[119.5326538,25.4119587]]]]},
  3149 +"properties":{
  3150 +"gid":525,
  3151 +"name":"福建省"}
  3152 +},
  3153 +{"type":"Feature",
  3154 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.5861969,25.3633957],[119.5842209,25.3648186],[119.5833206,25.3687439],[119.5767288,25.3773956],[119.5813675,25.3845158],[119.5814514,25.3832493],[119.5836868,25.3818188],[119.5902634,25.3814335],[119.5907211,25.3798141],[119.5865021,25.3737183],[119.5886536,25.3695335],[119.5883026,25.3658695],[119.5861969,25.3633957]]]]},
  3155 +"properties":{
  3156 +"gid":526,
  3157 +"name":"福建省"}
  3158 +},
  3159 +{"type":"Feature",
  3160 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.6558533,25.3765831],[119.6590271,25.3783855],[119.6602783,25.3776665],[119.6599884,25.3762589],[119.6566467,25.3700485],[119.65522,25.3683071],[119.6532593,25.3714123],[119.653717,25.3743458],[119.6558533,25.3765831]]]]},
  3161 +"properties":{
  3162 +"gid":527,
  3163 +"name":"福建省"}
  3164 +},
  3165 +{"type":"Feature",
  3166 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.7000732,25.3535004],[119.6943436,25.3568554],[119.6920776,25.3656349],[119.6959534,25.3674755],[119.6998062,25.3690186],[119.6993408,25.3716526],[119.7039719,25.3742943],[119.7098007,25.3743782],[119.7155533,25.3717098],[119.7164078,25.3751316],[119.7192612,25.3775864],[119.7257385,25.3739815],[119.7264709,25.373045],[119.7238007,25.3685207],[119.727562,25.3672771],[119.7302628,25.3642254],[119.7294235,25.3614922],[119.7253265,25.360218],[119.7238388,25.3614025],[119.7230225,25.3593559],[119.7193985,25.3566933],[119.712822,25.3568554],[119.7000732,25.3535004]]]]},
  3167 +"properties":{
  3168 +"gid":528,
  3169 +"name":"福建省"}
  3170 +},
  3171 +{"type":"Feature",
  3172 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.5401764,25.3739033],[119.5437393,25.3655548],[119.5330963,25.365118],[119.5299988,25.362896],[119.5259628,25.3632202],[119.5255127,25.3655281],[119.5288925,25.3686619],[119.5401764,25.3739033]]]]},
  3173 +"properties":{
  3174 +"gid":529,
  3175 +"name":"福建省"}
  3176 +},
  3177 +{"type":"Feature",
  3178 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.252861,25.3537922],[119.2516403,25.3554268],[119.2537918,25.3604298],[119.257843,25.3605709],[119.2566071,25.3521042],[119.252861,25.3537922]]]]},
  3179 +"properties":{
  3180 +"gid":530,
  3181 +"name":"福建省"}
  3182 +},
  3183 +{"type":"Feature",
  3184 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.2638702,25.3521748],[119.2650528,25.355135],[119.2686081,25.3559761],[119.269577,25.3543472],[119.2685165,25.3523045],[119.2638702,25.3521748]]]]},
  3185 +"properties":{
  3186 +"gid":531,
  3187 +"name":"福建省"}
  3188 +},
  3189 +{"type":"Feature",
  3190 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.4826584,25.353447],[119.4830933,25.3506813],[119.4794006,25.3454876],[119.4779663,25.3397827],[119.4825592,25.3316422],[119.4814606,25.3284531],[119.4776306,25.3271656],[119.4684601,25.3342648],[119.4626999,25.3364639],[119.4627609,25.3387585],[119.469162,25.3505459],[119.4783936,25.3544655],[119.4814301,25.3548527],[119.4826584,25.353447]]]]},
  3191 +"properties":{
  3192 +"gid":532,
  3193 +"name":"福建省"}
  3194 +},
  3195 +{"type":"Feature",
  3196 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.6831436,25.3461132],[119.6813812,25.346386],[119.6811829,25.3479996],[119.6824722,25.3488846],[119.6852875,25.3499641],[119.6875305,25.3487606],[119.6831436,25.3461132]]]]},
  3197 +"properties":{
  3198 +"gid":533,
  3199 +"name":"福建省"}
  3200 +},
  3201 +{"type":"Feature",
  3202 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.698967,25.3418198],[119.6983337,25.3377018],[119.7014465,25.3316574],[119.6981506,25.3312798],[119.6924896,25.3282051],[119.6938629,25.323122],[119.6963196,25.3207645],[119.7051163,25.31917],[119.7064896,25.3138542],[119.6969299,25.3157005],[119.6955872,25.3129787],[119.6912537,25.3117085],[119.6872787,25.3058376],[119.6857376,25.3051872],[119.6849213,25.3118649],[119.687767,25.3138599],[119.6893692,25.3168049],[119.6884003,25.3182068],[119.683609,25.3187847],[119.6814575,25.3231983],[119.6825867,25.3273029],[119.6836624,25.329113],[119.687233,25.3301716],[119.6959229,25.3414364],[119.698967,25.3418198]]]]},
  3203 +"properties":{
  3204 +"gid":534,
  3205 +"name":"福建省"}
  3206 +},
  3207 +{"type":"Feature",
  3208 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.3576584,25.3356419],[119.3641281,25.3313656],[119.3675079,25.3253231],[119.3636627,25.3235722],[119.3565369,25.3315372],[119.3576584,25.3356419]]]]},
  3209 +"properties":{
  3210 +"gid":535,
  3211 +"name":"福建省"}
  3212 +},
  3213 +{"type":"Feature",
  3214 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.5965729,25.3329315],[119.5977173,25.3325863],[119.596077,25.3280354],[119.5932465,25.3264961],[119.5925522,25.3288078],[119.5965729,25.3329315]]]]},
  3215 +"properties":{
  3216 +"gid":536,
  3217 +"name":"福建省"}
  3218 +},
  3219 +{"type":"Feature",
  3220 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.3395081,25.3190613],[119.3407516,25.318346],[119.3371201,25.3149834],[119.3347015,25.3095284],[119.3310165,25.3139725],[119.3327332,25.3212795],[119.3360367,25.3221245],[119.3395081,25.3190613]]]]},
  3221 +"properties":{
  3222 +"gid":537,
  3223 +"name":"福建省"}
  3224 +},
  3225 +{"type":"Feature",
  3226 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.7602081,25.2911606],[119.7561798,25.2919502],[119.7557526,25.294487],[119.7522964,25.2975578],[119.7523804,25.3000813],[119.7569504,25.303339],[119.7641602,25.2963409],[119.7602081,25.2911606]]]]},
  3227 +"properties":{
  3228 +"gid":538,
  3229 +"name":"福建省"}
  3230 +},
  3231 +{"type":"Feature",
  3232 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.8037415,25.1472569],[121.8087234,25.1457233],[121.8175735,25.140913],[121.8135376,25.1340351],[121.8122864,25.1269302],[121.8160782,25.1225758],[121.8292007,25.1287651],[121.8398132,25.1306019],[121.8552094,25.1296844],[121.8632889,25.1273918],[121.8716278,25.125555],[121.884758,25.1241779],[121.9026871,25.1260071],[121.9163132,25.1303558],[121.9130402,25.1161461],[121.9175873,25.113163],[121.9128036,25.1026211],[121.9102783,25.0929947],[121.9120483,25.0815334],[121.918869,25.0725899],[121.9249268,25.0659409],[121.9203873,25.0579205],[121.9239273,25.0450821],[121.9279709,25.0345364],[121.9360504,25.0267372],[121.9273224,25.0239124],[121.9431229,25.0200863],[121.9521866,25.0246639],[121.9650726,25.0264874],[121.975647,25.0264778],[121.9812088,25.023035],[121.9814606,25.0143242],[121.9988632,25.0159111],[121.9943237,25.0074348],[121.9856415,24.9996605],[121.9775772,24.9946728],[121.9665833,24.9866028],[121.9638901,24.9855118],[121.9383392,24.9751625],[121.9216919,24.9696712],[121.916153,24.9600468],[121.9015427,24.948822],[121.8828812,24.9414921],[121.8798676,24.931179],[121.8730774,24.9153652],[121.8587189,24.9009266],[121.8405991,24.8830471],[121.8297806,24.8704395],[121.8260193,24.855999],[121.8139267,24.8475151],[121.8061523,24.8319283],[121.8110123,24.8356667],[121.8194809,24.84408],[121.8187485,24.8266582],[121.8150024,24.806488],[121.8125229,24.7835674],[121.8117828,24.7656879],[121.8178635,24.7427692],[121.8226471,24.7287903],[121.8279572,24.7180176],[121.8139191,24.7231045],[121.8184509,24.7176151],[121.8156433,24.7115974],[121.8219299,24.7083893],[121.8260269,24.6953735],[121.8292236,24.7113705],[121.8315125,24.6912022],[121.8305283,24.6698856],[121.8323135,24.6598015],[121.8413773,24.6432991],[121.8391266,24.6355076],[121.8476868,24.6235886],[121.8552399,24.616024],[121.8695831,24.6107521],[121.8793793,24.605938],[121.8637924,24.6089191],[121.8537369,24.6086903],[121.8509827,24.6022739],[121.8600388,24.5921898],[121.8703537,24.5857697],[121.8638229,24.5804996],[121.867363,24.5617046],[121.8693771,24.5474949],[121.8631134,24.5362644],[121.850563,24.5272026],[121.832222,24.5199928],[121.832489,24.5078449],[121.8440628,24.4995956],[121.8465805,24.4899693],[121.8538666,24.4833221],[121.8405609,24.4814892],[121.8189774,24.468195],[121.8112106,24.4549007],[121.8057175,24.4477806],[121.7879105,24.4262447],[121.7847366,24.3971138],[121.7799606,24.3760509],[121.7702103,24.3547306],[121.76754,24.3266335],[121.765007,24.313652],[121.762207,24.3085556],[121.7592621,24.3031616],[121.7417374,24.2875652],[121.7397614,24.2747307],[121.7355194,24.2648735],[121.7164993,24.2506485],[121.6994934,24.2359657],[121.6566086,24.1457253],[121.6464005,24.1291103],[121.6221695,24.1105137],[121.615921,24.0991211],[121.6122437,24.0829983],[121.6116104,24.0751991],[121.6145935,24.0520668],[121.6220169,24.0404568],[121.6274872,24.0332127],[121.6374512,24.0200233],[121.639473,24.0147552],[121.634079,24.0000095],[121.625679,23.9894581],[121.6094971,23.9763451],[121.6031036,23.9672489],[121.6042862,23.9587574],[121.6043701,23.9556828],[121.6044235,23.9539204],[121.6070404,23.9392509],[121.6063766,23.9257393],[121.603447,23.911335],[121.6020126,23.8955402],[121.5988464,23.8831997],[121.5936813,23.869278],[121.5885315,23.8565006],[121.5833511,23.8418903],[121.579483,23.8318501],[121.5755997,23.8208923],[121.571022,23.8140659],[121.5642624,23.7835217],[121.5680084,23.7714729],[121.5691528,23.7622948],[121.5637436,23.748373],[121.557579,23.7346878],[121.5514832,23.7253571],[121.5463867,23.7171593],[121.5429764,23.7107868],[121.5469437,23.7013416],[121.5430069,23.6857986],[121.5413666,23.6736698],[121.5407562,23.6645088],[121.5391617,23.6553593],[121.5326385,23.6524467],[121.5292435,23.6396484],[121.5249329,23.612421],[121.5226974,23.5997124],[121.5239182,23.5899696],[121.5220718,23.5815086],[121.5157166,23.5710316],[121.508873,23.5614758],[121.5052795,23.5530338],[121.5028915,23.5402222],[121.4974976,23.5267563],[121.4985809,23.5125351],[121.4987106,23.5022182],[121.507309,23.4913578],[121.5036774,23.4790192],[121.4983597,23.4715099],[121.4913864,23.4685154],[121.4914398,23.4682789],[121.4927673,23.4621696],[121.492157,23.4530067],[121.4828873,23.426054],[121.4825134,23.4252949],[121.4772797,23.4148788],[121.4719467,23.4069099],[121.4718628,23.3982029],[121.4681931,23.3826523],[121.4657822,23.3677769],[121.4641266,23.3538113],[121.461319,23.3474216],[121.4636917,23.3370819],[121.4615784,23.3258724],[121.4590073,23.3197098],[121.4544907,23.3153992],[121.4460068,23.3141079],[121.4406433,23.3102894],[121.4316406,23.2982025],[121.4253235,23.2886372],[121.4207764,23.283638],[121.4191437,23.2710476],[121.4107132,23.2500401],[121.4070969,23.2390709],[121.4097366,23.2298775],[121.4005966,23.2180042],[121.3933563,23.21101],[121.389801,23.2037067],[121.3901825,23.1929302],[121.3940506,23.1823483],[121.3991623,23.1719837],[121.3985291,23.1593819],[121.3966522,23.1465607],[121.3946533,23.1376495],[121.3992386,23.1330109],[121.4054031,23.1285973],[121.4020996,23.1217518],[121.3958511,23.1188316],[121.3868408,23.112957],[121.3810577,23.1070518],[121.369812,23.1009674],[121.3603363,23.099453],[121.3550415,23.0912495],[121.3484497,23.0786362],[121.3446808,23.0750694],[121.3393173,23.0615921],[121.3346786,23.0451298],[121.33181,23.0318604],[121.3276978,23.0188313],[121.3218994,23.0106316],[121.3161469,23.0070152],[121.3180466,22.9980564],[121.3147125,22.9880009],[121.3060532,22.9773636],[121.2945938,22.962965],[121.2813568,22.9562054],[121.2741165,22.9519138],[121.2732773,22.9425201],[121.2701797,22.930397],[121.2618637,22.9171753],[121.2535477,22.9050961],[121.2489777,22.8945904],[121.2458267,22.8854733],[121.2419281,22.8841057],[121.2347488,22.8864613],[121.2258987,22.8688831],[121.219223,22.8719215],[121.2129669,22.8673897],[121.2050171,22.8651638],[121.196579,22.8654633],[121.1908264,22.8609276],[121.1847534,22.8472214],[121.1809235,22.8362484],[121.185318,22.8286457],[121.1908722,22.8123226],[121.1929779,22.7987766],[121.1832733,22.7945023],[121.1775131,22.7878056],[121.1774521,22.7826271],[121.1708527,22.7737904],[121.1709366,22.7736797],[121.1736221,22.7707386],[121.1708679,22.763916],[121.160347,22.7566319],[121.1491013,22.7464066],[121.1374435,22.7372284],[121.1313629,22.7318764],[121.1226196,22.7246094],[121.1126633,22.7189579],[121.099823,22.7137413],[121.0872803,22.708149],[121.0701065,22.7000275],[121.0618591,22.6932716],[121.0451508,22.6800404],[121.0289764,22.6719074],[121.0182037,22.6573124],[121.0118713,22.6403923],[121.0059967,22.6188812],[121.0008926,22.5985126],[120.9980927,22.5907383],[120.9936371,22.5858364],[120.9826202,22.575716],[120.9701233,22.560442],[120.9653091,22.5464897],[120.9599686,22.5269737],[120.956398,22.514452],[120.9495773,22.4973011],[120.942749,22.4771709],[120.9406967,22.4680138],[120.9358902,22.4600677],[120.9326172,22.4455986],[120.9245682,22.4282284],[120.9145203,22.4078884],[120.9084167,22.3859158],[120.9033585,22.3689823],[120.8981628,22.3605175],[120.8902969,22.3422413],[120.8856964,22.3200283],[120.8833466,22.3030758],[120.8798904,22.2915649],[120.8861465,22.2794399],[120.8870773,22.2709503],[120.8842087,22.2628708],[120.8881836,22.2512226],[120.8885727,22.2498951],[120.8917923,22.2385864],[120.8872528,22.2250881],[120.8876572,22.2136192],[120.8883286,22.2035255],[120.8820038,22.1948853],[120.8839493,22.1778736],[120.8853836,22.1716728],[120.8804092,22.1666603],[120.8860321,22.1585979],[120.884491,22.1505814],[120.8889008,22.1452789],[120.878952,22.135025],[120.879631,22.1260777],[120.8796005,22.1165619],[120.8844833,22.1127453],[120.8921127,22.1099434],[120.8913116,22.1021538],[120.8860703,22.0946198],[120.8815994,22.090292],[120.8848419,22.060461],[120.8855515,22.0453854],[120.8911209,22.040699],[120.8809433,22.032053],[120.8749466,22.0224609],[120.8670273,22.0179253],[120.8694534,22.0121765],[120.8669434,22.0055428],[120.8488693,21.9964867],[120.8361969,21.9903316],[120.8359604,21.9834976],[120.8321304,21.9647179],[120.836937,21.9470291],[120.8469391,21.9304562],[120.8537827,21.9205513],[120.8522491,21.9139118],[120.856163,21.9093018],[120.8514404,21.9040565],[120.84478,21.9029522],[120.83564,21.9165211],[120.8217926,21.9280682],[120.8087692,21.9373436],[120.8021164,21.9389877],[120.7945938,21.9421501],[120.7905426,21.9404354],[120.7844162,21.9473515],[120.7749863,21.9464722],[120.7637787,21.9573326],[120.7534637,21.9628963],[120.7428436,21.9606628],[120.7363586,21.949234],[120.736557,21.9418964],[120.7305832,21.9311504],[120.7270737,21.9224567],[120.7164993,21.9264145],[120.7081833,21.9372387],[120.7038574,21.9569817],[120.7062073,21.9796715],[120.693512,22.0022125],[120.6830063,22.0213013],[120.6771927,22.0371552],[120.6804276,22.043787],[120.6890869,22.0476398],[120.6856689,22.0549946],[120.6896591,22.0620823],[120.6968079,22.0606689],[120.6977081,22.0626011],[120.6976776,22.0688],[120.6947021,22.0804005],[120.6912918,22.0889015],[120.698967,22.0943661],[120.706398,22.0968475],[120.7035065,22.1103916],[120.6955032,22.1342831],[120.6879196,22.1457901],[120.6897507,22.1645832],[120.6856537,22.1811142],[120.677063,22.191021],[120.6733093,22.193861],[120.6729736,22.209156],[120.6715469,22.2210865],[120.6671371,22.2270718],[120.6600266,22.2390327],[120.6541672,22.2500706],[120.6433334,22.2558575],[120.6408463,22.2575588],[120.6409683,22.2765064],[120.6349182,22.3001537],[120.6321564,22.3085041],[120.6162567,22.3263874],[120.6032486,22.3431892],[120.6005402,22.3464756],[120.5941696,22.3572197],[120.5813904,22.3724136],[120.5695572,22.3804951],[120.5619736,22.386013],[120.547142,22.3989391],[120.5296173,22.4077301],[120.5128403,22.4174328],[120.5088272,22.4194908],[120.4995117,22.424139],[120.4518585,22.4458847],[120.4360809,22.4608498],[120.4281998,22.4707394],[120.4423065,22.4725189],[120.4517593,22.4827995],[120.4509735,22.4869137],[120.446312,22.4821339],[120.4378662,22.4752884],[120.4272308,22.4769325],[120.4245529,22.4865742],[120.4170609,22.4835663],[120.4156036,22.4785824],[120.4139709,22.4768829],[120.4098892,22.472641],[120.3985519,22.4841461],[120.379303,22.4981995],[120.3647232,22.5067329],[120.3531036,22.5120449],[120.3296432,22.5302353],[120.3113937,22.5500107],[120.3019409,22.5610428],[120.2889328,22.5762157],[120.2677002,22.6001205],[120.257103,22.6191807],[120.2558899,22.6292706],[120.2480011,22.6451111],[120.2438278,22.6609421],[120.2503128,22.6758289],[120.2557831,22.6833801],[120.2550735,22.6923237],[120.2656937,22.6819763],[120.2674637,22.6922874],[120.2620163,22.6971188],[120.2674866,22.7039814],[120.2645416,22.7145367],[120.260437,22.7187901],[120.2555923,22.7047024],[120.2508621,22.6964607],[120.247673,22.7099972],[120.2461014,22.7155437],[120.2443085,22.7218914],[120.2353668,22.7451077],[120.2070007,22.8068504],[120.2086029,22.8086681],[120.1973877,22.8341541],[120.1900024,22.8577843],[120.2001724,22.8582211],[120.2120667,22.852232],[120.2113495,22.8614025],[120.2026825,22.8676147],[120.1950073,22.8770313],[120.1985931,22.8825016],[120.1922836,22.8833675],[120.1880722,22.8834667],[120.1864319,22.8755932],[120.1860733,22.8738422],[120.1855392,22.8621521],[120.179863,22.8731689],[120.1779022,22.8869286],[120.1709976,22.9064312],[120.1702728,22.9156017],[120.1697388,22.9160442],[120.1658096,22.9192791],[120.1668396,22.938076],[120.1636505,22.9566517],[120.1527634,22.9757023],[120.1463165,22.9878654],[120.1574936,22.9779854],[120.1659012,22.9660454],[120.1743469,22.9639645],[120.1795883,22.9772491],[120.1810913,22.9841232],[120.1875687,22.9916744],[120.1764069,22.9985771],[120.1582718,23.0009079],[120.1473465,23.0011597],[120.1423569,22.994751],[120.1326981,23.0041695],[120.140892,23.003006],[120.1461334,23.0101032],[120.1569138,23.0101204],[120.1469193,23.0224304],[120.1569366,23.021595],[120.1678009,23.0256519],[120.1732788,23.0279865],[120.1759415,23.0316753],[120.1708984,23.0358639],[120.164978,23.0389214],[120.1513367,23.0308514],[120.1456528,23.0247746],[120.1397171,23.0226917],[120.134758,23.024189],[120.1297531,23.0211391],[120.1317215,23.0126534],[120.1193008,23.0156574],[120.110611,23.0205555],[120.0930023,23.0340443],[120.0733871,23.0466843],[120.0609665,23.0512886],[120.054512,23.0540485],[120.0560989,23.0564003],[120.0674515,23.0657215],[120.0808792,23.0734921],[120.0960464,23.0801144],[120.0979233,23.0842876],[120.0853729,23.084259],[120.0696869,23.0735111],[120.0605011,23.0730667],[120.0625076,23.0872765],[120.0585632,23.1028709],[120.0762024,23.1049061],[120.0896301,23.1041965],[120.0809326,23.1085644],[120.0834274,23.1142921],[120.0973587,23.1204586],[120.1070404,23.1318817],[120.0933914,23.1264248],[120.0993729,23.1355839],[120.0844498,23.1346912],[120.0797424,23.1440983],[120.0772629,23.1479988],[120.0712967,23.1512184],[120.0698166,23.1656609],[120.0690918,23.1762066],[120.0773087,23.1812363],[120.0855103,23.1764088],[120.0914764,23.1745663],[120.0830383,23.1871872],[120.0808105,23.1949844],[120.0862885,23.1977272],[120.0853119,23.209877],[120.0853271,23.2211075],[120.0920563,23.2284317],[120.0975266,23.2284222],[120.1052475,23.229784],[120.1102219,23.2290878],[120.1174164,23.231369],[120.1084824,23.233675],[120.095787,23.2323227],[120.0880814,23.2339401],[120.0933304,23.2472267],[120.1030502,23.2577534],[120.0965881,23.2623482],[120.1050568,23.2721901],[120.1172791,23.2829399],[120.1247635,23.2881985],[120.1257706,23.3001156],[120.1193008,23.2992096],[120.1175766,23.3168621],[120.1250687,23.3260174],[120.1360092,23.3179741],[120.1345291,23.3257694],[120.1255875,23.3354149],[120.1193771,23.3436775],[120.1261292,23.3606262],[120.1294022,23.3796425],[120.1296692,23.3917904],[120.1351318,23.3823833],[120.1351013,23.3661098],[120.1325989,23.3585491],[120.1402969,23.3489075],[120.1497726,23.3532448],[120.1602173,23.346117],[120.1656265,23.3462257],[120.1623001,23.3506622],[120.1513367,23.3587837],[120.1440735,23.3619843],[120.1455688,23.3769684],[120.1509323,23.3787231],[120.1565475,23.3775253],[120.1510773,23.3851013],[120.1505966,23.3949585],[120.1556931,23.3991852],[120.1553574,23.3997536],[120.1484604,23.4119225],[120.1414566,23.4018288],[120.1410217,23.4234295],[120.1427917,23.4251213],[120.1449432,23.4320984],[120.1364822,23.4380741],[120.1432266,23.4465408],[120.1479721,23.4515743],[120.1641617,23.449707],[120.1714096,23.4567966],[120.1596909,23.454071],[120.146492,23.460516],[120.1280518,23.4589481],[120.1258163,23.467432],[120.1350479,23.470623],[120.1410599,23.4859657],[120.1443176,23.4935226],[120.1517334,23.4967957],[120.1421127,23.5095711],[120.1411209,23.5196571],[120.1445923,23.524231],[120.144989,23.5247498],[120.1453934,23.5338573],[120.1389236,23.5441818],[120.1483002,23.5442867],[120.1379471,23.5526657],[120.1314697,23.5565739],[120.1352386,23.574213],[120.1424789,23.5751152],[120.1322632,23.582468],[120.1288834,23.5950966],[120.1235962,23.6170902],[120.1318665,23.636095],[120.143631,23.6587582],[120.1504135,23.6800575],[120.1524277,23.6901379],[120.1634369,23.7011127],[120.1729431,23.705904],[120.1708908,23.6934242],[120.1771622,23.7003956],[120.1792831,23.7040443],[120.1829529,23.7223816],[120.1894836,23.7409286],[120.1907806,23.7620068],[120.197937,23.7675285],[120.1960602,23.7750568],[120.210083,23.7912922],[120.2180862,23.7981472],[120.2236404,23.7991562],[120.2231064,23.8056965],[120.2341385,23.8189583],[120.2371521,23.8258266],[120.2551422,23.8253212],[120.2786179,23.8234215],[120.290123,23.8231602],[120.2938995,23.8219013],[120.300621,23.8293171],[120.3082199,23.8359509],[120.288887,23.8348503],[120.276413,23.8367176],[120.2736435,23.8309975],[120.2614212,23.8390522],[120.2557068,23.8509808],[120.2664871,23.8660755],[120.2782822,23.8795624],[120.2859192,23.8806],[120.2850571,23.8914566],[120.293129,23.9118252],[120.3041763,23.9303532],[120.3119431,23.9395218],[120.3180084,23.9541397],[120.3401337,23.9891262],[120.3414993,23.9935608],[120.3434906,24.0000134],[120.3482895,24.0182362],[120.3565903,24.0336761],[120.3625031,24.0408421],[120.3685532,24.0376968],[120.3747787,24.0205746],[120.3819427,24.0089607],[120.3892365,24.0058289],[120.3955765,24.0062542],[120.3962326,24.006588],[120.3886414,24.0129261],[120.381279,24.0206413],[120.3753281,24.0357056],[120.3694611,24.0441227],[120.3808594,24.0524902],[120.3887863,24.0585308],[120.3970566,24.0574703],[120.3995132,24.0638332],[120.4003372,24.0740032],[120.4085007,24.0823345],[120.4126892,24.0874195],[120.4180069,24.0824299],[120.4252014,24.0875454],[120.4290466,24.0995007],[120.4322815,24.1033535],[120.4235229,24.101965],[120.4276199,24.1134644],[120.4317627,24.1229019],[120.4329376,24.1301727],[120.4315338,24.1405449],[120.4396362,24.1520844],[120.4515076,24.1643486],[120.4623871,24.1756821],[120.4765167,24.1875076],[120.4862137,24.1944752],[120.4982376,24.1936741],[120.5088501,24.1864414],[120.5147629,24.1743488],[120.5173569,24.1672688],[120.5192337,24.1582851],[120.5195694,24.1585426],[120.5229416,24.1611347],[120.5232697,24.1751156],[120.5155869,24.1887951],[120.5034485,24.1978474],[120.4916229,24.2023201],[120.4845963,24.2022533],[120.4930267,24.2094383],[120.5013428,24.2271633],[120.5064468,24.2395859],[120.5098267,24.2494736],[120.5047379,24.2560711],[120.5134964,24.2572994],[120.5186005,24.2706394],[120.5112534,24.2774467],[120.5179901,24.2795715],[120.5171432,24.2878151],[120.5160522,24.2942219],[120.528183,24.2874584],[120.5333328,24.2969036],[120.5407791,24.3029308],[120.5497665,24.306221],[120.5401993,24.3093414],[120.5432281,24.3281631],[120.5464096,24.3366108],[120.5525436,24.3463535],[120.5605011,24.3539295],[120.5606995,24.354023],[120.571907,24.363718],[120.5780563,24.3736267],[120.5781631,24.3873787],[120.5828018,24.3977337],[120.5877838,24.4027653],[120.5879974,24.4031429],[120.5956268,24.4166412],[120.6035919,24.4244499],[120.6159668,24.438591],[120.6274567,24.4501438],[120.6276474,24.4503288],[120.6350937,24.4575481],[120.641777,24.4660854],[120.6498108,24.466383],[120.6524429,24.4776344],[120.6611328,24.4866467],[120.6685028,24.4914742],[120.6720963,24.4945278],[120.6748734,24.5165558],[120.683548,24.5276279],[120.6833572,24.5445862],[120.6877518,24.5569992],[120.6981506,24.5712948],[120.7030334,24.5850849],[120.7118912,24.603035],[120.7208405,24.6129608],[120.7308807,24.6146431],[120.7413864,24.6087093],[120.7434082,24.6186371],[120.7509613,24.6180077],[120.7608109,24.6132698],[120.7689819,24.6139679],[120.7531815,24.6219215],[120.7548294,24.6329346],[120.7637482,24.6456108],[120.7734528,24.6559982],[120.7808533,24.6592045],[120.7987518,24.6669579],[120.8241196,24.6710377],[120.8387604,24.6654129],[120.8505936,24.6645775],[120.8617401,24.6698799],[120.8447571,24.6695805],[120.8303833,24.6742916],[120.8282928,24.6822987],[120.8427734,24.6934032],[120.8569412,24.71138],[120.8582993,24.727663],[120.8700027,24.7410374],[120.8805237,24.7468395],[120.8755798,24.7362633],[120.8890762,24.7462101],[120.8985214,24.7604847],[120.9011383,24.777462],[120.9115067,24.7990761],[120.9163666,24.8064098],[120.9153137,24.8256912],[120.9136963,24.8373699],[120.9226227,24.8534737],[120.9272232,24.8466263],[120.9370575,24.8446255],[120.9408569,24.8418999],[120.9456406,24.8465099],[120.9352036,24.8547001],[120.9451294,24.8591042],[120.9386826,24.8606815],[120.9311218,24.8601742],[120.9408493,24.8716984],[120.9442368,24.887764],[120.9514313,24.9008751],[120.9627075,24.9085083],[120.9762115,24.9090595],[120.9717331,24.9142952],[120.9619217,24.9126301],[120.9615631,24.925005],[120.9723206,24.9349289],[120.9821167,24.9391136],[120.9857864,24.9512844],[120.9977798,24.9653378],[121.0047836,24.9727135],[121.0098038,24.9764118],[121.0121231,24.9883823],[121.0167236,24.9941025],[121.0196381,25.007185],[121.028862,25.0203018],[121.0350723,25.0213089],[121.0454636,25.0270443],[121.0514526,25.0360165],[121.0591888,25.0461445],[121.0752792,25.0540257],[121.0840683,25.0600338],[121.0905304,25.0615234],[121.0943222,25.0717773],[121.1091919,25.0755234],[121.1197815,25.076952],[121.1248627,25.0730801],[121.1361694,25.0790977],[121.1520309,25.0849056],[121.16185,25.0886211],[121.1652832,25.0861187],[121.1810226,25.0919189],[121.1877136,25.0957432],[121.1869965,25.1018028],[121.1952972,25.1061974],[121.2002563,25.1081848],[121.2058716,25.1128922],[121.2217636,25.1150246],[121.2371063,25.1221962],[121.2416534,25.1251965],[121.2428818,25.1145763],[121.2525101,25.123867],[121.2664185,25.1200256],[121.275589,25.1183243],[121.2772903,25.1180077],[121.2963486,25.1242104],[121.3090591,25.1256943],[121.3290024,25.1257668],[121.3486633,25.1336308],[121.3650436,25.1412506],[121.3815689,25.1479301],[121.3942184,25.1635799],[121.4163818,25.1767139],[121.4110489,25.1831169],[121.4024429,25.1881332],[121.4119263,25.1904507],[121.4205627,25.2033176],[121.4248199,25.2086029],[121.4268112,25.2152557],[121.4326019,25.2207737],[121.4365997,25.2308712],[121.4406281,25.2343197],[121.4417801,25.2384663],[121.4428406,25.2471619],[121.4463577,25.2529049],[121.4640427,25.2550144],[121.4703064,25.2653465],[121.4856873,25.2752438],[121.4957123,25.2782917],[121.4995575,25.2858219],[121.5033188,25.2931652],[121.5084076,25.2860718],[121.5248337,25.2897778],[121.5283203,25.3012466],[121.5409927,25.2927914],[121.5606995,25.2974186],[121.5738373,25.3006516],[121.5864182,25.2934227],[121.5978928,25.291069],[121.6123505,25.2771111],[121.62603,25.267046],[121.6286087,25.2503166],[121.6286469,25.237709],[121.6333618,25.2327595],[121.6407928,25.2313099],[121.6478729,25.2301731],[121.6438522,25.2228336],[121.6555099,25.2109299],[121.6712036,25.2038441],[121.6817932,25.2105045],[121.690361,25.2173901],[121.6865997,25.2050076],[121.6815796,25.1940002],[121.6878128,25.1833286],[121.6975327,25.1784306],[121.7028427,25.1772881],[121.703537,25.1737614],[121.704628,25.1683521],[121.7182617,25.1688232],[121.731163,25.163332],[121.7387466,25.1592121],[121.7410278,25.1525669],[121.7461014,25.1438599],[121.7587128,25.1528091],[121.7627335,25.1617508],[121.7715912,25.1528168],[121.7779083,25.1512146],[121.7822037,25.1475487],[121.7945786,25.150074],[121.8037415,25.1472569]]]]},
  3233 +"properties":{
  3234 +"gid":539,
  3235 +"name":"台湾省"}
  3236 +},
  3237 +{"type":"Feature",
  3238 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.522049,25.2689667],[119.5149689,25.2691326],[119.5065079,25.2649708],[119.5042496,25.2654819],[119.5035477,25.2675648],[119.509903,25.2735977],[119.5106735,25.2773056],[119.5132217,25.2790451],[119.517067,25.2806511],[119.5211868,25.27845],[119.5217209,25.2761974],[119.522049,25.2689667]]]]},
  3239 +"properties":{
  3240 +"gid":540,
  3241 +"name":"福建省"}
  3242 +},
  3243 +{"type":"Feature",
  3244 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.7223129,25.278801],[119.7239532,25.2796745],[119.7251892,25.2789555],[119.7227402,25.2732773],[119.7166519,25.2725105],[119.7166977,25.2741165],[119.7223129,25.278801]]]]},
  3245 +"properties":{
  3246 +"gid":541,
  3247 +"name":"福建省"}
  3248 +},
  3249 +{"type":"Feature",
  3250 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.5624237,25.2610626],[119.5603714,25.264843],[119.5627899,25.2698364],[119.5648422,25.2709351],[119.5686264,25.2703857],[119.5700836,25.2682838],[119.5702362,25.2650661],[119.5678864,25.262598],[119.5624237,25.2610626]]]]},
  3251 +"properties":{
  3252 +"gid":542,
  3253 +"name":"福建省"}
  3254 +},
  3255 +{"type":"Feature",
  3256 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.7195663,25.2623978],[119.7214203,25.2629795],[119.7224808,25.2560673],[119.720871,25.2528915],[119.7175827,25.2525158],[119.7150803,25.2537251],[119.7146912,25.2576389],[119.7155533,25.2610607],[119.7195663,25.2623978]]]]},
  3257 +"properties":{
  3258 +"gid":543,
  3259 +"name":"福建省"}
  3260 +},
  3261 +{"type":"Feature",
  3262 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.616539,25.256052],[119.6201324,25.258585],[119.6292801,25.2599697],[119.6299973,25.2585754],[119.6273804,25.2556553],[119.616478,25.2545433],[119.616539,25.256052]]]]},
  3263 +"properties":{
  3264 +"gid":544,
  3265 +"name":"福建省"}
  3266 +},
  3267 +{"type":"Feature",
  3268 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.4661102,25.2590733],[119.4683914,25.2582836],[119.4737396,25.2505836],[119.4697876,25.2449379],[119.4720001,25.24259],[119.4797668,25.2401142],[119.4841385,25.2425385],[119.4792328,25.2481613],[119.4825134,25.2478561],[119.4877472,25.2452087],[119.4881134,25.2309685],[119.4899292,25.2233505],[119.4920731,25.2184792],[119.4980087,25.2139778],[119.5025635,25.2138729],[119.5049362,25.2177181],[119.5115128,25.2086124],[119.5164871,25.2059689],[119.5313034,25.2019482],[119.5363998,25.2036629],[119.5349579,25.2064514],[119.5352783,25.2087402],[119.5393982,25.2116261],[119.5414963,25.2053795],[119.546257,25.2038879],[119.5536499,25.2060089],[119.5623627,25.2101612],[119.568718,25.2113876],[119.5696335,25.2076931],[119.5635071,25.2062321],[119.5671768,25.2020111],[119.5678635,25.1990108],[119.5652695,25.1967793],[119.5624619,25.1959267],[119.560257,25.1985054],[119.5567169,25.1985893],[119.55336,25.1956844],[119.5491791,25.1996861],[119.5435181,25.1961479],[119.5372467,25.1889515],[119.5391464,25.1850033],[119.5443573,25.1812077],[119.5424805,25.1773491],[119.5432892,25.1702137],[119.5452576,25.1683311],[119.5444336,25.1660557],[119.5423813,25.1649551],[119.5386429,25.1666527],[119.5338135,25.1656189],[119.5227585,25.1681747],[119.5220871,25.161993],[119.520813,25.161335],[119.5190735,25.1625233],[119.5147934,25.172266],[119.5042267,25.1743507],[119.5025635,25.1776028],[119.5021896,25.1826611],[119.5036392,25.1892853],[119.5054016,25.1890144],[119.509491,25.1907539],[119.5222931,25.1874695],[119.5218582,25.1900024],[119.5139389,25.1959286],[119.5096664,25.1971779],[119.5044632,25.2007427],[119.4993134,25.2063732],[119.4940567,25.2083321],[119.4824677,25.2097511],[119.4775696,25.206192],[119.483017,25.2021618],[119.4832916,25.1936626],[119.4895172,25.1903038],[119.4909668,25.1882038],[119.4888535,25.1845798],[119.4763565,25.1896915],[119.4690018,25.1978989],[119.4524612,25.2031021],[119.4391327,25.2057037],[119.4370117,25.2112617],[119.4402618,25.219223],[119.4425812,25.2207756],[119.4431686,25.2237473],[119.4351196,25.2347183],[119.435173,25.2365551],[119.4372864,25.2399502],[119.4401932,25.2352924],[119.4474335,25.2319107],[119.45047,25.231842],[119.4528122,25.2343121],[119.4514313,25.2393951],[119.4514084,25.2476597],[119.4541931,25.2475948],[119.4568863,25.2445488],[119.4596634,25.2444839],[119.464119,25.2593021],[119.4661102,25.2590733]]]]},
  3269 +"properties":{
  3270 +"gid":545,
  3271 +"name":"福建省"}
  3272 +},
  3273 +{"type":"Feature",
  3274 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.5743027,25.2553616],[119.5765686,25.2474689],[119.5747223,25.2447586],[119.5721283,25.2512474],[119.5727081,25.2539883],[119.5743027,25.2553616]]]]},
  3275 +"properties":{
  3276 +"gid":546,
  3277 +"name":"福建省"}
  3278 +},
  3279 +{"type":"Feature",
  3280 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.5810928,25.2405777],[119.5827637,25.2427292],[119.586853,25.2442379],[119.5911331,25.243906],[119.5933228,25.2406387],[119.5889206,25.2373009],[119.5810928,25.2405777]]]]},
  3281 +"properties":{
  3282 +"gid":547,
  3283 +"name":"福建省"}
  3284 +},
  3285 +{"type":"Feature",
  3286 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.6044006,25.2330894],[119.6006699,25.2324276],[119.5931091,25.2332993],[119.5941925,25.2357979],[119.5972672,25.2373295],[119.6044006,25.2330894]]]]},
  3287 +"properties":{
  3288 +"gid":548,
  3289 +"name":"福建省"}
  3290 +},
  3291 +{"type":"Feature",
  3292 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.6412735,25.2289181],[119.6420135,25.2282104],[119.6392212,25.2280483],[119.6324615,25.2302799],[119.6320038,25.2318993],[119.6354065,25.2361774],[119.6396027,25.2324009],[119.6412735,25.2289181]]]]},
  3293 +"properties":{
  3294 +"gid":549,
  3295 +"name":"福建省"}
  3296 +},
  3297 +{"type":"Feature",
  3298 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.5862503,25.1880112],[119.587677,25.193716],[119.5897369,25.1952724],[119.59552,25.1939869],[119.5984497,25.1902428],[119.596611,25.1877613],[119.5903625,25.1904373],[119.5862503,25.1880112]]]]},
  3299 +"properties":{
  3300 +"gid":550,
  3301 +"name":"福建省"}
  3302 +},
  3303 +{"type":"Feature",
  3304 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.5460129,25.1857586],[119.5434799,25.1860485],[119.5427628,25.1874428],[119.5433578,25.1906433],[119.5451584,25.1917477],[119.5468826,25.1898708],[119.5460129,25.1857586]]]]},
  3305 +"properties":{
  3306 +"gid":551,
  3307 +"name":"福建省"}
  3308 +},
  3309 +{"type":"Feature",
  3310 +"geometry":{"type":"MultiPolygon","coordinates":[[[[118.9985733,25.1880569],[118.9988022,25.1837158],[118.9933929,25.1792316],[118.9912567,25.1746826],[118.9899979,25.1747093],[118.9870529,25.1782112],[118.9929733,25.1826839],[118.9943085,25.1861],[118.9985733,25.1880569]]]]},
  3311 +"properties":{
  3312 +"gid":552,
  3313 +"name":"福建省"}
  3314 +},
  3315 +{"type":"Feature",
  3316 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.0177765,25.1849422],[119.0257416,25.1795025],[119.0217972,25.1731548],[119.0200119,25.1725025],[119.0157471,25.1739635],[119.0127869,25.1767788],[119.0177765,25.1849422]]]]},
  3317 +"properties":{
  3318 +"gid":553,
  3319 +"name":"福建省"}
  3320 +},
  3321 +{"type":"Feature",
  3322 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.3615036,25.127697],[119.3640671,25.1208725],[119.3704376,25.1227951],[119.3705673,25.1184311],[119.3596268,25.1154633],[119.3589935,25.1196098],[119.3615036,25.127697]]]]},
  3323 +"properties":{
  3324 +"gid":554,
  3325 +"name":"福建省"}
  3326 +},
  3327 +{"type":"Feature",
  3328 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.1518402,25.1186066],[119.1540527,25.1158047],[119.1522064,25.1133194],[119.1487427,25.1159153],[119.1487808,25.1175213],[119.1518402,25.1186066]]]]},
  3329 +"properties":{
  3330 +"gid":555,
  3331 +"name":"福建省"}
  3332 +},
  3333 +{"type":"Feature",
  3334 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.0443802,25.0938492],[119.0397568,25.1000309],[119.0418167,25.1015968],[119.0473938,25.1024017],[119.0501404,25.1011982],[119.0490265,25.096859],[119.0443802,25.0938492]]]]},
  3335 +"properties":{
  3336 +"gid":556,
  3337 +"name":"福建省"}
  3338 +},
  3339 +{"type":"Feature",
  3340 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.1501465,25.1015911],[119.152092,25.0981731],[119.1507034,25.0929222],[119.1473389,25.0897789],[119.1388321,25.0828419],[119.1356125,25.085434],[119.1318436,25.085743],[119.1280594,25.0761814],[119.1299362,25.0706329],[119.1345901,25.0643387],[119.1325531,25.0636921],[119.1321182,25.0563564],[119.1391678,25.055521],[119.1400909,25.0520592],[119.1358337,25.0530663],[119.1307602,25.0423832],[119.1237411,25.0340366],[119.1186218,25.0311604],[119.1205673,25.0281353],[119.1202316,25.0247002],[119.118187,25.0240536],[119.115448,25.025259],[119.115097,25.0314617],[119.1076431,25.0362091],[119.1094666,25.0389252],[119.1072769,25.041954],[119.1057968,25.0433617],[119.0977631,25.0451355],[119.0943527,25.0497952],[119.0959091,25.0518303],[119.1063766,25.0465622],[119.1116562,25.0459938],[119.1175995,25.0511513],[119.1180573,25.0594044],[119.1144638,25.0672817],[119.1031418,25.0792236],[119.110733,25.0797558],[119.1118164,25.0829468],[119.1218491,25.090313],[119.1252213,25.0941429],[119.1385803,25.0931759],[119.1436768,25.0951347],[119.1501465,25.1015911]]]]},
  3341 +"properties":{
  3342 +"gid":557,
  3343 +"name":"福建省"}
  3344 +},
  3345 +{"type":"Feature",
  3346 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.03965,25.0807972],[119.041832,25.0811672],[119.0427933,25.0790825],[119.0388565,25.0729656],[119.0355682,25.0725727],[119.0323105,25.073555],[119.0351868,25.0778599],[119.03965,25.0807972]]]]},
  3347 +"properties":{
  3348 +"gid":558,
  3349 +"name":"福建省"}
  3350 +},
  3351 +{"type":"Feature",
  3352 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.0204163,25.040514],[119.027153,25.0373955],[119.0242996,25.0340099],[119.0295181,25.0306911],[119.0294495,25.0277081],[119.0258865,25.0268631],[119.02314,25.0278358],[119.0197906,25.0354786],[119.0204163,25.040514]]]]},
  3353 +"properties":{
  3354 +"gid":559,
  3355 +"name":"福建省"}
  3356 +},
  3357 +{"type":"Feature",
  3358 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.4517365,24.9926243],[119.4414825,24.9958458],[119.4387589,24.9975147],[119.4385834,25.0005035],[119.4424362,25.0029392],[119.4534378,24.9992409],[119.4554062,24.9975891],[119.4548035,24.9937],[119.4517365,24.9926243]]]]},
  3359 +"properties":{
  3360 +"gid":560,
  3361 +"name":"福建省"}
  3362 +},
  3363 +{"type":"Feature",
  3364 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.4640427,24.9902725],[119.4717636,24.9866505],[119.4714737,24.9850502],[119.4664536,24.9858551],[119.4630203,24.9898376],[119.4627991,24.9909897],[119.4643173,24.9909534],[119.4640427,24.9902725]]]]},
  3365 +"properties":{
  3366 +"gid":561,
  3367 +"name":"福建省"}
  3368 +},
  3369 +{"type":"Feature",
  3370 +"geometry":{"type":"MultiPolygon","coordinates":[[[[118.6754837,24.9297085],[118.6775436,24.9262791],[118.6747208,24.9240341],[118.6727371,24.9254475],[118.6727829,24.927742],[118.6754837,24.9297085]]]]},
  3371 +"properties":{
  3372 +"gid":562,
  3373 +"name":"福建省"}
  3374 +},
  3375 +{"type":"Feature",
  3376 +"geometry":{"type":"MultiPolygon","coordinates":[[[[118.8301697,24.8584976],[118.8257828,24.8675709],[118.826088,24.8705482],[118.8290863,24.8695736],[118.8327866,24.8656025],[118.8388367,24.8661766],[118.8375092,24.8625298],[118.8316116,24.8582821],[118.8301697,24.8584976]]]]},
  3377 +"properties":{
  3378 +"gid":563,
  3379 +"name":"福建省"}
  3380 +},
  3381 +{"type":"Feature",
  3382 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.9346771,24.8471355],[121.9455109,24.8505611],[121.9533081,24.8493938],[121.955307,24.8420315],[121.9462433,24.8374538],[121.937439,24.8411522],[121.9346771,24.8471355]]]]},
  3383 +"properties":{
  3384 +"gid":564,
  3385 +"name":"台湾省"}
  3386 +},
  3387 +{"type":"Feature",
  3388 +"geometry":{"type":"MultiPolygon","coordinates":[[[[118.1789017,24.6540699],[118.1800537,24.65312],[118.179512,24.6512928],[118.1772003,24.648571],[118.174408,24.6470051],[118.169632,24.6470737],[118.1707382,24.6530247],[118.1750412,24.6547985],[118.1789017,24.6540699]]]]},
  3389 +"properties":{
  3390 +"gid":565,
  3391 +"name":"福建省"}
  3392 +},
  3393 +{"type":"Feature",
  3394 +"geometry":{"type":"MultiPolygon","coordinates":[[[[118.167717,24.6425037],[118.1685333,24.6413517],[118.1677322,24.6383801],[118.1656876,24.6368027],[118.1639404,24.637516],[118.1642303,24.6398067],[118.167717,24.6425037]]]]},
  3395 +"properties":{
  3396 +"gid":566,
  3397 +"name":"福建省"}
  3398 +},
  3399 +{"type":"Feature",
  3400 +"geometry":{"type":"MultiPolygon","coordinates":[[[[118.3243103,24.5472584],[118.3158569,24.5528965],[118.291893,24.5615215],[118.3161163,24.5671196],[118.3216629,24.5674934],[118.3394623,24.5649261],[118.3431931,24.5625744],[118.3446503,24.5600262],[118.3355484,24.5569534],[118.3329773,24.5544701],[118.3321381,24.5492039],[118.3285828,24.5469646],[118.3243103,24.5472584]]]]},
  3401 +"properties":{
  3402 +"gid":567,
  3403 +"name":"福建省"}
  3404 +},
  3405 +{"type":"Feature",
  3406 +"geometry":{"type":"MultiPolygon","coordinates":[[[[118.3830185,24.5550671],[118.3777771,24.5574436],[118.3765564,24.5590706],[118.3786011,24.560873],[118.3836594,24.5626297],[118.388382,24.5598011],[118.3926697,24.5604229],[118.3948975,24.5585518],[118.3867874,24.5547791],[118.3830185,24.5550671]]]]},
  3407 +"properties":{
  3408 +"gid":568,
  3409 +"name":"福建省"}
  3410 +},
  3411 +{"type":"Feature",
  3412 +"geometry":{"type":"MultiPolygon","coordinates":[[[[118.3966827,24.5486145],[118.4023514,24.5538425],[118.402153,24.5563717],[118.4041672,24.556797],[118.4104004,24.5541744],[118.3966827,24.5486145]]]]},
  3413 +"properties":{
  3414 +"gid":569,
  3415 +"name":"福建省"}
  3416 +},
  3417 +{"type":"Feature",
  3418 +"geometry":{"type":"MultiPolygon","coordinates":[[[[118.4024506,24.4911938],[118.4027786,24.4953213],[118.4009018,24.5024624],[118.3969193,24.5045929],[118.3929062,24.5048847],[118.3910217,24.5117989],[118.3952866,24.5115032],[118.4016571,24.5162201],[118.4079514,24.5168095],[118.410759,24.5195179],[118.4048767,24.5278721],[118.4103928,24.5268669],[118.4126205,24.5249958],[118.4136581,24.5263557],[118.4164276,24.5270004],[118.421669,24.5248508],[118.4242172,24.5268764],[118.4269714,24.5263729],[118.4271698,24.5236168],[118.4253922,24.5222664],[118.4294968,24.51371],[118.4327164,24.5115929],[118.443779,24.5111866],[118.4463196,24.4994411],[118.4515228,24.4954548],[118.4511795,24.4906425],[118.4547806,24.4820938],[118.4518967,24.4723396],[118.4613266,24.4826756],[118.4638367,24.4828625],[118.4637909,24.4801102],[118.4604111,24.4741993],[118.4597931,24.4680138],[118.4616165,24.4581165],[118.4642563,24.4523354],[118.4690475,24.4529476],[118.4735336,24.4508076],[118.4742508,24.4489613],[118.4729538,24.4466877],[118.4693909,24.4444504],[118.4703064,24.4396172],[118.4672699,24.4385185],[118.4638367,24.442934],[118.4605026,24.4390888],[118.4583969,24.4340744],[118.4613571,24.4319592],[118.4627914,24.4273472],[118.4531631,24.4224567],[118.454277,24.415554],[118.4535065,24.4146481],[118.4474106,24.4106159],[118.4373627,24.4103203],[118.4299469,24.4037838],[118.4282074,24.4042721],[118.4275131,24.4072666],[118.4326019,24.4110851],[118.4337311,24.4174938],[118.4243011,24.4219933],[118.4180222,24.4237118],[118.4010925,24.4310951],[118.3862762,24.4315586],[118.3661423,24.4286613],[118.3573074,24.4262753],[118.3473892,24.4193153],[118.3355179,24.4011421],[118.3289566,24.3998661],[118.3331833,24.3963604],[118.3320465,24.3897228],[118.3249512,24.385931],[118.3196869,24.3866997],[118.3072968,24.3953781],[118.2963028,24.3978405],[118.2792587,24.4139309],[118.2805405,24.4155178],[118.2828064,24.4159431],[118.2895737,24.4149246],[118.2973938,24.4166412],[118.3013,24.4253006],[118.305603,24.4270706],[118.3095322,24.4221935],[118.3169022,24.4273586],[118.3177032,24.4300995],[118.3143997,24.4303341],[118.3094177,24.4299965],[118.3012009,24.4624767],[118.3100586,24.4662437],[118.3121185,24.4691944],[118.3120117,24.4769993],[118.3074417,24.4743156],[118.304863,24.4702244],[118.2970963,24.4717178],[118.2939682,24.4651108],[118.2895737,24.4725208],[118.2906494,24.4764042],[118.3114624,24.4884815],[118.3154526,24.4870434],[118.3299713,24.470068],[118.3317184,24.4693527],[118.334053,24.4729881],[118.3501663,24.4617252],[118.3569336,24.4611607],[118.3646927,24.4589748],[118.3722916,24.462986],[118.375061,24.4634018],[118.3765335,24.4610844],[118.3785477,24.4619694],[118.3865509,24.4735489],[118.3863907,24.4783688],[118.3794632,24.4842148],[118.3819885,24.4850922],[118.3859863,24.4841118],[118.3905716,24.4872532],[118.3926315,24.4902039],[118.3919373,24.493885],[118.388237,24.4971561],[118.3877869,24.4996891],[118.3915634,24.5003166],[118.3945465,24.4986629],[118.400177,24.4910011],[118.4024506,24.4911938]]]]},
  3419 +"properties":{
  3420 +"gid":570,
  3421 +"name":"福建省"}
  3422 +},
  3423 +{"type":"Feature",
  3424 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.7926025,24.472723],[117.7883911,24.4785309],[117.7875824,24.484724],[117.7919006,24.4797039],[117.8000031,24.4731007],[117.79879,24.4675808],[117.7926025,24.472723]]]]},
  3425 +"properties":{
  3426 +"gid":571,
  3427 +"name":"福建省"}
  3428 +},
  3429 +{"type":"Feature",
  3430 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.8697968,24.4545631],[117.8602066,24.4510021],[117.8545303,24.4508343],[117.8531876,24.4502678],[117.8466263,24.4532089],[117.8377533,24.4641724],[117.8352432,24.4650745],[117.8286972,24.4647999],[117.822197,24.4624615],[117.8164215,24.4621925],[117.8085938,24.4676495],[117.8073196,24.469017],[117.8080597,24.4706306],[117.8170929,24.4718399],[117.8225937,24.4748631],[117.8276062,24.4758148],[117.8313828,24.4753819],[117.8353729,24.4774742],[117.8514328,24.4796486],[117.8642578,24.4776649],[117.8672867,24.4753895],[117.8753204,24.4768181],[117.8835068,24.4744644],[117.8876724,24.4711571],[117.8914108,24.4746246],[117.9022369,24.4717064],[117.9126434,24.4582233],[117.9053192,24.4329185],[117.8998184,24.4303589],[117.894043,24.4305515],[117.8894882,24.4339695],[117.883873,24.444725],[117.8767624,24.4547825],[117.8697968,24.4545631]]]]},
  3431 +"properties":{
  3432 +"gid":572,
  3433 +"name":"福建省"}
  3434 +},
  3435 +{"type":"Feature",
  3436 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.8607635,24.4466515],[117.8727875,24.4497051],[117.8748016,24.4492588],[117.8774033,24.4394016],[117.8819809,24.430706],[117.878479,24.4297657],[117.8751984,24.4311218],[117.8679123,24.4315338],[117.8631516,24.4305859],[117.8509293,24.4315453],[117.8425522,24.4315987],[117.8345032,24.4333801],[117.8299484,24.4370251],[117.8260193,24.4439945],[117.8157501,24.4538517],[117.8036499,24.4626255],[117.805603,24.4641838],[117.8156967,24.4578247],[117.818222,24.4573822],[117.8253326,24.4590073],[117.8310013,24.4602242],[117.8340225,24.4595547],[117.8434296,24.4469891],[117.8459473,24.4456272],[117.8547363,24.4449959],[117.8607635,24.4466515]]]]},
  3437 +"properties":{
  3438 +"gid":573,
  3439 +"name":"福建省"}
  3440 +},
  3441 +{"type":"Feature",
  3442 +"geometry":{"type":"MultiPolygon","coordinates":[[[[118.0558319,24.4469433],[118.0569611,24.4551888],[118.0609818,24.4551353],[118.0706482,24.4472027],[118.0731125,24.4441872],[118.0735626,24.4405079],[118.0695114,24.4384975],[118.064743,24.4387932],[118.0548096,24.4440727],[118.0558319,24.4469433]]]]},
  3443 +"properties":{
  3444 +"gid":574,
  3445 +"name":"福建省"}
  3446 +},
  3447 +{"type":"Feature",
  3448 +"geometry":{"type":"MultiPolygon","coordinates":[[[[118.2615814,24.4224567],[118.2548599,24.4257698],[118.244957,24.4197197],[118.2446976,24.419035],[118.2479401,24.4173813],[118.2491531,24.4148388],[118.2400284,24.4099274],[118.2383423,24.4143105],[118.2340698,24.4141445],[118.2253876,24.405323],[118.2206879,24.4095211],[118.2179108,24.4086437],[118.2119064,24.4098797],[118.2142029,24.411911],[118.2197571,24.4138947],[118.2195969,24.419405],[118.2174072,24.4235668],[118.2179337,24.4249363],[118.2199478,24.4251366],[118.2264023,24.4209118],[118.2294235,24.4208679],[118.2282104,24.4238682],[118.232399,24.4339027],[118.2319412,24.4366627],[118.2297134,24.4380741],[118.22715,24.4353561],[118.2266769,24.4371986],[118.2303772,24.4479294],[118.233429,24.4499512],[118.2406769,24.4484673],[118.2444763,24.4502468],[118.2468033,24.4538841],[118.250061,24.4533768],[118.2567368,24.448],[118.2669601,24.4432583],[118.2622375,24.4316254],[118.263443,24.4281654],[118.260849,24.4238434],[118.2615814,24.4224567]]]]},
  3449 +"properties":{
  3450 +"gid":575,
  3451 +"name":"福建省"}
  3452 +},
  3453 +{"type":"Feature",
  3454 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.8797531,24.4262581],[117.8835297,24.426672],[117.8873367,24.4296074],[117.8927078,24.4187565],[117.8863831,24.4153938],[117.8906021,24.4118996],[117.8905869,24.4107533],[117.8858109,24.4103527],[117.8818207,24.412466],[117.879921,24.4167404],[117.8761063,24.416666],[117.8728638,24.4183121],[117.8699036,24.4215603],[117.864151,24.4232368],[117.8571777,24.4274521],[117.8597031,24.4287987],[117.8797531,24.4262581]]]]},
  3455 +"properties":{
  3456 +"gid":576,
  3457 +"name":"福建省"}
  3458 +},
  3459 +{"type":"Feature",
  3460 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.9576492,24.4174271],[117.9667282,24.4162197],[117.9621277,24.4107723],[117.9630966,24.4086952],[117.971199,24.4129505],[117.9762268,24.4133453],[117.9774399,24.410347],[117.9738693,24.40695],[117.9597626,24.4032307],[117.9552536,24.4032879],[117.9532471,24.4049206],[117.9421921,24.4034538],[117.9394379,24.4039478],[117.9397202,24.4060097],[117.9414978,24.4075928],[117.9460373,24.4089127],[117.9523697,24.4127331],[117.9542007,24.4177589],[117.9576492,24.4174271]]]]},
  3461 +"properties":{
  3462 +"gid":577,
  3463 +"name":"福建省"}
  3464 +},
  3465 +{"type":"Feature",
  3466 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.9110184,24.400404],[117.90728,24.4022865],[117.9073105,24.4041214],[117.9085388,24.405014],[117.9141235,24.4065609],[117.9168701,24.405838],[117.9188538,24.4037476],[117.9173126,24.4014721],[117.9110184,24.400404]]]]},
  3467 +"properties":{
  3468 +"gid":578,
  3469 +"name":"福建省"}
  3470 +},
  3471 +{"type":"Feature",
  3472 +"geometry":{"type":"MultiPolygon","coordinates":[[[[118.164093,24.3871632],[118.1666336,24.3891907],[118.1716537,24.3898087],[118.1731262,24.3874931],[118.1713333,24.3852234],[118.167778,24.3827496],[118.1645126,24.3827953],[118.1568527,24.3895588],[118.1563797,24.3916302],[118.1586838,24.3945827],[118.1609268,24.3938618],[118.1626511,24.3915424],[118.164093,24.3871632]]]]},
  3473 +"properties":{
  3474 +"gid":579,
  3475 +"name":"福建省"}
  3476 +},
  3477 +{"type":"Feature",
  3478 +"geometry":{"type":"MultiPolygon","coordinates":[[[[118.1444931,24.3399754],[118.150177,24.335043],[118.1465988,24.3307343],[118.1472626,24.3254471],[118.1462326,24.3236256],[118.1415863,24.3312626],[118.1416092,24.3326397],[118.1436234,24.3330708],[118.1419601,24.3388309],[118.1444931,24.3399754]]]]},
  3479 +"properties":{
  3480 +"gid":580,
  3481 +"name":"福建省"}
  3482 +},
  3483 +{"type":"Feature",
  3484 +"geometry":{"type":"MultiPolygon","coordinates":[[[[118.2301025,24.1699829],[118.2328796,24.1706963],[118.2347107,24.1705704],[118.235733,24.168848],[118.2347107,24.1674881],[118.2307968,24.1669178],[118.2282028,24.1680965],[118.228447,24.1690216],[118.2301025,24.1699829]]]]},
  3485 +"properties":{
  3486 +"gid":581,
  3487 +"name":"福建省"}
  3488 +},
  3489 +{"type":"Feature",
  3490 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.2851868,23.9247932],[120.2850037,23.9215736],[120.2845078,23.9208775],[120.2840271,23.9197197],[120.2828293,23.9169464],[120.282341,23.9162502],[120.2789001,23.912756],[120.2784119,23.9120579],[120.27742,23.9113541],[120.2749405,23.9101715],[120.2724533,23.9099064],[120.2704391,23.9105663],[120.2721329,23.9142666],[120.2731018,23.915659],[120.2765274,23.9196148],[120.2772675,23.9203148],[120.2807236,23.9231205],[120.2817078,23.9238243],[120.283432,23.925457],[120.2851715,23.9259415],[120.2851868,23.9247932]]]]},
  3491 +"properties":{
  3492 +"gid":582,
  3493 +"name":"台湾省"}
  3494 +},
  3495 +{"type":"Feature",
  3496 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.2842789,23.9127159],[120.2858963,23.9123936],[120.2879486,23.9098949],[120.2874603,23.9091988],[120.2860031,23.9071102],[120.2855072,23.9066429],[120.2850113,23.9061756],[120.2827835,23.904995],[120.2820435,23.9047565],[120.2812881,23.9047451],[120.2800293,23.9051876],[120.2800064,23.9061069],[120.2802277,23.9079475],[120.28022,23.9086361],[120.2804565,23.9093285],[120.2814331,23.9114113],[120.2826538,23.9123478],[120.2831497,23.9128132],[120.2842789,23.9127159]]]]},
  3497 +"properties":{
  3498 +"gid":583,
  3499 +"name":"台湾省"}
  3500 +},
  3501 +{"type":"Feature",
  3502 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.5428085,23.8483791],[117.5372162,23.8514462],[117.5366516,23.8537273],[117.5387802,23.8574562],[117.5412827,23.8572922],[117.5424194,23.8529587],[117.5428085,23.8483791]]]]},
  3503 +"properties":{
  3504 +"gid":584,
  3505 +"name":"福建省"}
  3506 +},
  3507 +{"type":"Feature",
  3508 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.7569199,23.8113995],[117.7544327,23.8115673],[117.7592468,23.8169689],[117.7635193,23.8163853],[117.7611008,23.81357],[117.7569199,23.8113995]]]]},
  3509 +"properties":{
  3510 +"gid":585,
  3511 +"name":"福建省"}
  3512 +},
  3513 +{"type":"Feature",
  3514 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.5939102,23.8046055],[119.5945892,23.8058929],[119.5963135,23.8058643],[119.5973129,23.8048744],[119.5969009,23.8031254],[119.5954285,23.8025875],[119.5940628,23.8034172],[119.5939102,23.8046055]]]]},
  3515 +"properties":{
  3516 +"gid":586,
  3517 +"name":"台湾省"}
  3518 +},
  3519 +{"type":"Feature",
  3520 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.6701279,23.7919884],[117.665863,23.7930279],[117.6647568,23.7959824],[117.6645966,23.8014889],[117.666481,23.8052101],[117.6690979,23.8013744],[117.6701279,23.7919884]]]]},
  3521 +"properties":{
  3522 +"gid":587,
  3523 +"name":"福建省"}
  3524 +},
  3525 +{"type":"Feature",
  3526 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.5984879,23.7938747],[119.5992813,23.795145],[119.6003265,23.7952118],[119.6011581,23.7946701],[119.6015015,23.7932415],[119.6006165,23.7928333],[119.5993881,23.793005],[119.5984879,23.7938747]]]]},
  3527 +"properties":{
  3528 +"gid":588,
  3529 +"name":"台湾省"}
  3530 +},
  3531 +{"type":"Feature",
  3532 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.7241516,23.788538],[117.7201004,23.7905025],[117.7190475,23.7923126],[117.7214737,23.7944393],[117.7277985,23.7918434],[117.7271194,23.7893009],[117.7241516,23.788538]]]]},
  3533 +"properties":{
  3534 +"gid":589,
  3535 +"name":"福建省"}
  3536 +},
  3537 +{"type":"Feature",
  3538 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.176857,23.7929859],[120.1761169,23.7855473],[120.1696701,23.7767925],[120.1644516,23.7694206],[120.1604767,23.7634335],[120.1579971,23.7588272],[120.1560364,23.7519283],[120.1530838,23.7438755],[120.1495972,23.7394981],[120.1436386,23.7339592],[120.136673,23.7286491],[120.1334534,23.724041],[120.130722,23.7189751],[120.1180496,23.705368],[120.1143188,23.7023678],[120.1105804,23.7005138],[120.1068192,23.7037163],[120.1082993,23.7067089],[120.1284332,23.7288456],[120.1406021,23.7408409],[120.1453171,23.7461433],[120.1477966,23.7507477],[120.1500092,23.7587967],[120.151001,23.7610989],[120.1557236,23.7666302],[120.1604385,23.7730808],[120.166893,23.7832146],[120.1706085,23.788744],[120.1728363,23.7926559],[120.1738434,23.7938099],[120.1753311,23.7940445],[120.176857,23.7929859]]]]},
  3539 +"properties":{
  3540 +"gid":590,
  3541 +"name":"台湾省"}
  3542 +},
  3543 +{"type":"Feature",
  3544 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.709877,23.7730255],[117.7038574,23.7801132],[117.7180328,23.7762165],[117.709877,23.7730255]]]]},
  3545 +"properties":{
  3546 +"gid":591,
  3547 +"name":"福建省"}
  3548 +},
  3549 +{"type":"Feature",
  3550 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.6085129,23.7280331],[119.6054764,23.7300568],[119.6006317,23.7364178],[119.6053238,23.7392368],[119.6121368,23.7496586],[119.6138687,23.7508316],[119.6198807,23.7493076],[119.6246796,23.7457027],[119.6262512,23.7409019],[119.6138535,23.7370586],[119.6101837,23.7319603],[119.6085129,23.7280331]]]]},
  3551 +"properties":{
  3552 +"gid":592,
  3553 +"name":"台湾省"}
  3554 +},
  3555 +{"type":"Feature",
  3556 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.5515823,23.7267017],[117.5462494,23.7297745],[117.5456085,23.7341213],[117.5469131,23.7403526],[117.5525589,23.7354507],[117.5515823,23.7267017]]]]},
  3557 +"properties":{
  3558 +"gid":593,
  3559 +"name":"福建省"}
  3560 +},
  3561 +{"type":"Feature",
  3562 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.5583191,23.7133713],[119.5578079,23.7138805],[119.5585709,23.7156334],[119.5596924,23.7159157],[119.5606766,23.7146835],[119.5599365,23.7138023],[119.5591431,23.7132587],[119.5583191,23.7133713]]]]},
  3563 +"properties":{
  3564 +"gid":594,
  3565 +"name":"台湾省"}
  3566 +},
  3567 +{"type":"Feature",
  3568 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.5804901,23.5070534],[119.5767365,23.5076904],[119.5741196,23.5156879],[119.5705566,23.5202274],[119.5590363,23.523737],[119.5527496,23.5275517],[119.5516891,23.5314369],[119.5431671,23.5347595],[119.5416183,23.5377216],[119.5462189,23.5455914],[119.5503769,23.5504723],[119.553093,23.5523472],[119.55439,23.5484638],[119.5544662,23.5441036],[119.5558014,23.5388432],[119.5578918,23.5326748],[119.5599289,23.5301781],[119.5624313,23.5295258],[119.5668869,23.5314255],[119.570343,23.5337677],[119.572113,23.531498],[119.5744476,23.5257912],[119.5767365,23.5230694],[119.5790024,23.5217247],[119.5809708,23.5231285],[119.5846405,23.5273132],[119.5966187,23.5258751],[119.5993576,23.5261421],[119.6024628,23.5346794],[119.6089935,23.5464764],[119.5967636,23.5474548],[119.5796127,23.5451469],[119.5728531,23.5468884],[119.5665588,23.5509319],[119.5710068,23.5528316],[119.5772171,23.5542965],[119.5779037,23.5584373],[119.5716629,23.559267],[119.5659332,23.5584984],[119.560173,23.560482],[119.5669632,23.5713673],[119.5686264,23.5764408],[119.5680313,23.5821724],[119.5694885,23.5844879],[119.574501,23.5827217],[119.5789719,23.583704],[119.5831223,23.5888119],[119.5854034,23.5870075],[119.5887527,23.5801659],[119.5915527,23.5765343],[119.5973663,23.5706463],[119.5992203,23.5796261],[119.6016769,23.5817261],[119.6106033,23.5846043],[119.6093063,23.5875702],[119.608223,23.5928345],[119.6061478,23.5978546],[119.6100998,23.6002064],[119.6115265,23.603899],[119.60289,23.6141071],[119.602562,23.619154],[119.6007919,23.6207352],[119.5965271,23.6215935],[119.5930023,23.6245289],[119.5934372,23.6282082],[119.595787,23.6362743],[119.5942535,23.6396961],[119.5881424,23.6471844],[119.5845337,23.6544781],[119.5806885,23.6603928],[119.5782089,23.659441],[119.5747986,23.6548023],[119.5716095,23.6517735],[119.5656281,23.6516895],[119.5613632,23.6530056],[119.5573425,23.655014],[119.5557632,23.659811],[119.5582275,23.661684],[119.5634308,23.6635933],[119.5725784,23.6685429],[119.5797272,23.6732349],[119.5819702,23.6732655],[119.5877533,23.671051],[119.6019669,23.6698723],[119.6065369,23.6653442],[119.6196136,23.6432629],[119.616127,23.6429844],[119.6103287,23.6470337],[119.6099319,23.6408329],[119.6066132,23.6309166],[119.6138229,23.6317043],[119.615921,23.6250763],[119.6124573,23.6236515],[119.6157532,23.6204834],[119.6194916,23.6051559],[119.6220169,23.6024361],[119.6265411,23.6006622],[119.6293564,23.5956516],[119.6285324,23.5853119],[119.6283875,23.5788822],[119.6289291,23.5763645],[119.6309204,23.5766201],[119.6338806,23.5784988],[119.6352768,23.5842552],[119.6383972,23.5911865],[119.6393204,23.5962467],[119.6415482,23.5974255],[119.6476212,23.5917702],[119.6512299,23.5993938],[119.653923,23.6028728],[119.656868,23.6054401],[119.6591415,23.6036339],[119.663002,23.5961113],[119.6709137,23.5842819],[119.6723785,23.5863667],[119.6740112,23.5932751],[119.6754837,23.594902],[119.6790466,23.5896721],[119.6852264,23.5771294],[119.6891632,23.5650158],[119.6957626,23.5575294],[119.6970367,23.5545616],[119.6910934,23.5531044],[119.6868362,23.5537376],[119.6830597,23.5566711],[119.6792526,23.5612106],[119.6738129,23.5588417],[119.6673431,23.5580654],[119.6494064,23.5580521],[119.6473923,23.5591717],[119.6415634,23.5501385],[119.6381073,23.5477962],[119.6274872,23.542141],[119.6255569,23.5384407],[119.6248779,23.5345306],[119.6159973,23.5286674],[119.6101074,23.5235367],[119.6091385,23.5216866],[119.6089172,23.519619],[119.6129837,23.5153122],[119.6123123,23.5107117],[119.6061096,23.5092487],[119.5804901,23.5070534]]]]},
  3569 +"properties":{
  3570 +"gid":595,
  3571 +"name":"台湾省"}
  3572 +},
  3573 +{"type":"Feature",
  3574 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.6625137,23.6580791],[119.6552429,23.6607361],[119.6529388,23.6639175],[119.6569138,23.66535],[119.6651764,23.6624775],[119.6644974,23.6583366],[119.6625137,23.6580791]]]]},
  3575 +"properties":{
  3576 +"gid":596,
  3577 +"name":"台湾省"}
  3578 +},
  3579 +{"type":"Feature",
  3580 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.1248932,23.660429],[120.1267471,23.6602554],[120.1290817,23.6556931],[120.1296463,23.6515636],[120.1299133,23.6508789],[120.1296768,23.6499557],[120.1304779,23.64744],[120.1305313,23.644453],[120.1290665,23.6428223],[120.1268082,23.6434784],[120.1257935,23.6441517],[120.1242294,23.6478043],[120.1231537,23.6523857],[120.1231232,23.6544533],[120.1228409,23.6555996],[120.1233063,23.6572151],[120.1235428,23.6583672],[120.1248932,23.660429]]]]},
  3581 +"properties":{
  3582 +"gid":597,
  3583 +"name":"台湾省"}
  3584 +},
  3585 +{"type":"Feature",
  3586 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.4730606,23.5550919],[119.4737396,23.5592346],[119.4756165,23.5652294],[119.4785538,23.5694046],[119.48349,23.5715427],[119.4899673,23.5714092],[119.4932327,23.5700798],[119.5061874,23.584959],[119.502327,23.5917892],[119.5012436,23.5972824],[119.5036697,23.6007614],[119.5089569,23.5973949],[119.5113983,23.600872],[119.5118027,23.606617],[119.5107117,23.6116505],[119.5043335,23.6202812],[119.5049973,23.6248817],[119.5073929,23.631115],[119.5139465,23.6410789],[119.5179062,23.6425133],[119.5276184,23.6438026],[119.5356064,23.6432266],[119.5426331,23.6408024],[119.5454025,23.6385479],[119.5449524,23.6355572],[119.5402908,23.6313572],[119.5358582,23.6283112],[119.5244217,23.6263103],[119.525238,23.6224194],[119.5246201,23.6148376],[119.5247269,23.6079502],[119.5235825,23.6024265],[119.5188065,23.5901909],[119.5140762,23.5754318],[119.5133972,23.5710602],[119.5164108,23.5697269],[119.5184479,23.5672302],[119.5162506,23.5644455],[119.5114975,23.5657539],[119.5007629,23.5667458],[119.4990463,23.5646553],[119.4916534,23.5606441],[119.4861984,23.5589581],[119.4824829,23.5584431],[119.4790115,23.5567875],[119.4730606,23.5550919]]]]},
  3587 +"properties":{
  3588 +"gid":598,
  3589 +"name":"台湾省"}
  3590 +},
  3591 +{"type":"Feature",
  3592 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.6765366,23.620348],[119.6764832,23.6210022],[119.6773605,23.6220837],[119.6785736,23.6215115],[119.6791382,23.6207066],[119.678627,23.6197338],[119.6775436,23.6194839],[119.6765366,23.620348]]]]},
  3593 +"properties":{
  3594 +"gid":599,
  3595 +"name":"台湾省"}
  3596 +},
  3597 +{"type":"Feature",
  3598 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.3308868,23.615366],[117.3251266,23.6083183],[117.3217163,23.6059284],[117.3184967,23.6051521],[117.3067627,23.6059723],[117.3044434,23.6082039],[117.3039627,23.6109829],[117.3068771,23.6156807],[117.3153763,23.6170044],[117.3246918,23.6142769],[117.3308868,23.615366]]]]},
  3599 +"properties":{
  3600 +"gid":600,
  3601 +"name":"福建省"}
  3602 +},
  3603 +{"type":"Feature",
  3604 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.290863,23.5968056],[117.2885666,23.5981197],[117.2838669,23.5970688],[117.2849503,23.6019211],[117.2871475,23.6033611],[117.290123,23.6041317],[117.2947464,23.5996685],[117.2945786,23.5973682],[117.290863,23.5968056]]]]},
  3605 +"properties":{
  3606 +"gid":601,
  3607 +"name":"福建省"}
  3608 +},
  3609 +{"type":"Feature",
  3610 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.1084518,23.5832081],[120.1094666,23.5816135],[120.1094971,23.5806961],[120.1094971,23.5800076],[120.1088028,23.577467],[120.1085663,23.5767746],[120.1080933,23.5758476],[120.1071091,23.574913],[120.1066208,23.5742149],[120.1044006,23.5730324],[120.1028976,23.5732384],[120.1026382,23.573925],[120.1023712,23.5746117],[120.1023483,23.5757599],[120.1030731,23.5771503],[120.1035538,23.578537],[120.1045074,23.5806198],[120.1049881,23.5815468],[120.1059723,23.5824814],[120.1066971,23.5831814],[120.1074524,23.5831928],[120.1084518,23.5832081]]]]},
  3611 +"properties":{
  3612 +"gid":602,
  3613 +"name":"台湾省"}
  3614 +},
  3615 +{"type":"Feature",
  3616 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.0334625,23.5639439],[117.0277634,23.5702057],[117.0204468,23.5725174],[117.0185699,23.5765953],[117.0185013,23.5784302],[117.0149689,23.5797043],[117.0131302,23.5824051],[117.0190964,23.5825806],[117.0256729,23.580019],[117.0281677,23.5800934],[117.038063,23.5824509],[117.0408783,23.5802364],[117.0410538,23.5754204],[117.0385437,23.5684566],[117.0366669,23.5647278],[117.0334625,23.5639439]]]]},
  3617 +"properties":{
  3618 +"gid":603,
  3619 +"name":"广东省"}
  3620 +},
  3621 +{"type":"Feature",
  3622 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.077858,23.563179],[117.075882,23.5626602],[117.0733566,23.5635052],[117.0697937,23.5656986],[117.0649872,23.5676231],[117.0588989,23.5708904],[117.0604935,23.5753002],[117.0651932,23.5763569],[117.0704575,23.5753613],[117.0760269,23.5727692],[117.0784073,23.5687046],[117.077858,23.563179]]]]},
  3623 +"properties":{
  3624 +"gid":604,
  3625 +"name":"广东省"}
  3626 +},
  3627 +{"type":"Feature",
  3628 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.0661163,23.5495148],[117.0686417,23.5484409],[117.0683289,23.5431499],[117.066658,23.5410347],[117.0626373,23.5418358],[117.0641403,23.5489998],[117.0661163,23.5495148]]]]},
  3629 +"properties":{
  3630 +"gid":605,
  3631 +"name":"广东省"}
  3632 +},
  3633 +{"type":"Feature",
  3634 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.0557327,23.5474834],[120.0569916,23.5454197],[120.0510483,23.5375805],[120.0389023,23.5237389],[120.027771,23.5069141],[120.0248184,23.5002365],[120.0240936,23.4960976],[120.0203934,23.491024],[120.0166626,23.4877911],[120.0131912,23.4836388],[120.0107193,23.4797211],[120.0090027,23.476265],[120.0080185,23.4732723],[120.0052872,23.4698143],[120.004303,23.46912],[120.0017929,23.4720955],[120.0024719,23.4826698],[120.0051804,23.488657],[120.0148392,23.5008812],[120.0207901,23.5068817],[120.0247498,23.5119553],[120.0309372,23.5191078],[120.0346527,23.5246391],[120.0395966,23.5315552],[120.0465469,23.5391712],[120.0500183,23.5437794],[120.0532532,23.5465527],[120.0557327,23.5474834]]]]},
  3635 +"properties":{
  3636 +"gid":606,
  3637 +"name":"台湾省"}
  3638 +},
  3639 +{"type":"Feature",
  3640 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.0702362,23.5406513],[120.064537,23.5344219],[120.0595779,23.5295753],[120.0546188,23.5242691],[120.0471802,23.5159645],[120.0441971,23.5145721],[120.0436935,23.5166378],[120.0493698,23.5263138],[120.053093,23.5297775],[120.0563126,23.5341568],[120.0597763,23.5380783],[120.0617676,23.5396957],[120.0635071,23.5406227],[120.0682526,23.540184],[120.0702362,23.5406513]]]]},
  3641 +"properties":{
  3642 +"gid":607,
  3643 +"name":"台湾省"}
  3644 +},
  3645 +{"type":"Feature",
  3646 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.1292267,23.5382404],[120.1324463,23.5392094],[120.1332016,23.5387611],[120.1339569,23.5383129],[120.1357269,23.5367298],[120.1359863,23.5360451],[120.1372833,23.5339966],[120.1380692,23.5317078],[120.1378326,23.5310154],[120.1368637,23.5296211],[120.1358719,23.5291481],[120.13414,23.5286617],[120.1333771,23.5288792],[120.1306229,23.5302181],[120.1285706,23.5331745],[120.1277695,23.5359211],[120.1279907,23.5375328],[120.1292267,23.5382404]]]]},
  3647 +"properties":{
  3648 +"gid":608,
  3649 +"name":"台湾省"}
  3650 +},
  3651 +{"type":"Feature",
  3652 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.516983,23.5046959],[119.5173569,23.5060577],[119.5187607,23.5071354],[119.520668,23.506588],[119.521553,23.5044842],[119.5206528,23.5027695],[119.5187073,23.5021915],[119.5170135,23.5029945],[119.516983,23.5046959]]]]},
  3653 +"properties":{
  3654 +"gid":609,
  3655 +"name":"台湾省"}
  3656 +},
  3657 +{"type":"Feature",
  3658 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.5426178,23.4934311],[119.5431595,23.4906845],[119.5421906,23.4890652],[119.5389786,23.4874115],[119.5204163,23.4804878],[119.5147171,23.4790268],[119.5107193,23.4801178],[119.5091934,23.4819317],[119.5098572,23.4863033],[119.5140915,23.486824],[119.5183334,23.4861965],[119.5215912,23.485096],[119.5235519,23.4865017],[119.5279465,23.4913845],[119.5311813,23.4923496],[119.5426178,23.4934311]]]]},
  3659 +"properties":{
  3660 +"gid":610,
  3661 +"name":"台湾省"}
  3662 +},
  3663 +{"type":"Feature",
  3664 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.1260529,23.484911],[117.1261368,23.469965],[117.124382,23.463026],[117.1254425,23.4612198],[117.1277008,23.4605942],[117.1331635,23.4612122],[117.1405411,23.4628716],[117.1407166,23.4586735],[117.1431503,23.4530029],[117.1460266,23.4489517],[117.147171,23.444622],[117.144577,23.4401836],[117.1416016,23.4400978],[117.1359634,23.4447594],[117.1340637,23.4419479],[117.132431,23.4239883],[117.1333084,23.4201088],[117.1381531,23.4168053],[117.1385574,23.4122219],[117.1362915,23.4057274],[117.1325836,23.3978119],[117.1263885,23.3967152],[117.123703,23.3952579],[117.1202164,23.394928],[117.1128082,23.4006844],[117.1103287,23.400383],[117.1050034,23.3958645],[117.1015472,23.3950768],[117.1002121,23.3977928],[117.1005936,23.4010181],[117.1024323,23.4056644],[117.0998611,23.4078884],[117.0908432,23.4099216],[117.0701675,23.4097786],[117.0614929,23.4086056],[117.054863,23.4061146],[117.0487518,23.4027214],[117.0442734,23.4025879],[117.0412674,23.4031887],[117.026123,23.407793],[117.0249329,23.41465],[117.0206375,23.4165897],[117.0064316,23.4168587],[116.9899597,23.4179783],[116.9807968,23.4165573],[116.9708023,23.4176369],[116.9592896,23.4191303],[116.9492493,23.421587],[116.9401779,23.42453],[116.9365921,23.4274082],[116.9351196,23.4334126],[116.9467316,23.4448166],[116.961853,23.4525089],[116.9679565,23.4565868],[116.9772873,23.4598579],[116.9822235,23.461153],[116.9862366,23.4603558],[116.9895325,23.4588451],[117.0007629,23.4509106],[117.0133667,23.4395714],[117.0202637,23.4418411],[117.0391083,23.4511242],[117.0421066,23.4656849],[117.0477676,23.4738503],[117.0633163,23.4784737],[117.0762329,23.4726505],[117.0808334,23.4691105],[117.0886993,23.4649773],[117.0938568,23.4669647],[117.1013565,23.4733829],[117.1082535,23.4834576],[117.1109467,23.4842243],[117.118187,23.4839745],[117.1213684,23.4856739],[117.1260529,23.484911]]]]},
  3665 +"properties":{
  3666 +"gid":611,
  3667 +"name":"广东省"}
  3668 +},
  3669 +{"type":"Feature",
  3670 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.1020203,23.4832764],[117.1023636,23.4805298],[117.1011963,23.4782009],[117.0966263,23.4734745],[117.0941925,23.471796],[117.094101,23.4745502],[117.0966568,23.4796753],[117.1020203,23.4832764]]]]},
  3671 +"properties":{
  3672 +"gid":612,
  3673 +"name":"广东省"}
  3674 +},
  3675 +{"type":"Feature",
  3676 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.0119629,23.4657097],[117.0039673,23.4659328],[117.0067902,23.4710693],[117.0119629,23.4657097]]]]},
  3677 +"properties":{
  3678 +"gid":613,
  3679 +"name":"广东省"}
  3680 +},
  3681 +{"type":"Feature",
  3682 +"geometry":{"type":"MultiPolygon","coordinates":[[[[116.9138718,23.464159],[116.9171066,23.4642544],[116.9194565,23.4611111],[116.9205475,23.4586182],[116.9186172,23.4564934],[116.9141769,23.4556694],[116.9131012,23.4577045],[116.9124374,23.4625072],[116.9138718,23.464159]]]]},
  3683 +"properties":{
  3684 +"gid":614,
  3685 +"name":"广东省"}
  3686 +},
  3687 +{"type":"Feature",
  3688 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.3213196,23.3932419],[119.3202896,23.3950615],[119.3209686,23.3987465],[119.3268967,23.4011326],[119.3333817,23.400547],[119.3331833,23.3982468],[119.3304825,23.3956795],[119.3253021,23.3933029],[119.3213196,23.3932419]]]]},
  3689 +"properties":{
  3690 +"gid":615,
  3691 +"name":"台湾省"}
  3692 +},
  3693 +{"type":"Feature",
  3694 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.5081635,23.3528976],[119.5043564,23.3565159],[119.4961929,23.3545609],[119.4901962,23.3551617],[119.4926071,23.35956],[119.4950638,23.3621197],[119.493187,23.3694401],[119.4928513,23.3751736],[119.4917679,23.3799782],[119.4926834,23.3850422],[119.4883194,23.3923264],[119.4928131,23.3921623],[119.4955521,23.3915138],[119.5080032,23.3914661],[119.5088196,23.3868847],[119.5106277,23.3832378],[119.5097427,23.3767986],[119.5085373,23.3737946],[119.5095901,23.3710556],[119.5163193,23.3702354],[119.5171204,23.367033],[119.5137024,23.363081],[119.5081635,23.3528976]]]]},
  3695 +"properties":{
  3696 +"gid":616,
  3697 +"name":"台湾省"}
  3698 +},
  3699 +{"type":"Feature",
  3700 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.527298,23.3536339],[119.5180817,23.3544197],[119.5219727,23.3595257],[119.5246887,23.3609428],[119.5281219,23.3639774],[119.535553,23.3661499],[119.5415115,23.3666935],[119.5440216,23.3653526],[119.5423279,23.3625755],[119.5358734,23.3622513],[119.52845,23.3593903],[119.5289917,23.3566437],[119.527298,23.3536339]]]]},
  3701 +"properties":{
  3702 +"gid":617,
  3703 +"name":"台湾省"}
  3704 +},
  3705 +{"type":"Feature",
  3706 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.1273422,23.3525219],[117.1285934,23.3551922],[117.1307297,23.3549442],[117.1320267,23.3533897],[117.1315231,23.3512459],[117.1297073,23.3506546],[117.1281662,23.3520374],[117.1273422,23.3525219]]]]},
  3707 +"properties":{
  3708 +"gid":618,
  3709 +"name":"广东省"}
  3710 +},
  3711 +{"type":"Feature",
  3712 +"geometry":{"type":"MultiPolygon","coordinates":[[[[116.7566833,23.3419781],[116.7556229,23.3437824],[116.7565002,23.3470249],[116.7608719,23.3499184],[116.7639389,23.3477173],[116.7617798,23.345583],[116.7566833,23.3419781]]]]},
  3713 +"properties":{
  3714 +"gid":619,
  3715 +"name":"广东省"}
  3716 +},
  3717 +{"type":"Feature",
  3718 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.0781097,23.3333988],[117.0774918,23.3352737],[117.0783234,23.3365803],[117.0821686,23.336134],[117.0829391,23.3338413],[117.0814438,23.3324108],[117.079361,23.3330536],[117.0781097,23.3333988]]]]},
  3719 +"properties":{
  3720 +"gid":620,
  3721 +"name":"广东省"}
  3722 +},
  3723 +{"type":"Feature",
  3724 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.0982437,23.303009],[120.0998764,23.3065224],[120.1001892,23.3083534],[120.1012497,23.3117657],[120.1018372,23.3136768],[120.1027069,23.3155479],[120.1027374,23.3173618],[120.1047668,23.3203506],[120.1061478,23.3224945],[120.1071091,23.3251705],[120.1081772,23.3254833],[120.1097488,23.3257256],[120.1121674,23.3220901],[120.111969,23.3178978],[120.1114197,23.3146954],[120.109993,23.3092747],[120.1076508,23.3044548],[120.1046371,23.3015385],[120.100708,23.3006134],[120.0982437,23.303009]]]]},
  3725 +"properties":{
  3726 +"gid":621,
  3727 +"name":"台湾省"}
  3728 +},
  3729 +{"type":"Feature",
  3730 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.0927429,23.3180828],[117.0914764,23.3200302],[117.0930023,23.3216572],[117.0954819,23.3207684],[117.096817,23.3194122],[117.0965195,23.3172436],[117.0940094,23.3163319],[117.0923309,23.3167267],[117.0927429,23.3180828]]]]},
  3731 +"properties":{
  3732 +"gid":622,
  3733 +"name":"广东省"}
  3734 +},
  3735 +{"type":"Feature",
  3736 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.3164673,23.318409],[119.3165512,23.3200359],[119.3180237,23.3214703],[119.3195267,23.3209362],[119.3199692,23.3192368],[119.3190689,23.3180504],[119.3175278,23.3172798],[119.3164673,23.318409]]]]},
  3737 +"properties":{
  3738 +"gid":623,
  3739 +"name":"台湾省"}
  3740 +},
  3741 +{"type":"Feature",
  3742 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.3357773,23.311657],[119.33638,23.3132114],[119.3374329,23.3142147],[119.3392868,23.3136311],[119.3405228,23.3113327],[119.3397369,23.3098011],[119.3382416,23.309351],[119.3363876,23.3099346],[119.3358536,23.3109913],[119.3357773,23.311657]]]]},
  3743 +"properties":{
  3744 +"gid":624,
  3745 +"name":"台湾省"}
  3746 +},
  3747 +{"type":"Feature",
  3748 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.3448334,23.2995987],[119.3456268,23.3012886],[119.3481064,23.3012753],[119.3496399,23.2997551],[119.3492432,23.298336],[119.3477173,23.2977257],[119.3460312,23.2982845],[119.345253,23.2988853],[119.3448334,23.2995987]]]]},
  3749 +"properties":{
  3750 +"gid":625,
  3751 +"name":"台湾省"}
  3752 +},
  3753 +{"type":"Feature",
  3754 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.0900116,23.2994423],[120.0900497,23.2911682],[120.0886078,23.2817402],[120.0873871,23.2752991],[120.0871811,23.2693233],[120.0872116,23.2635784],[120.0847321,23.2612686],[120.0810013,23.2607937],[120.079483,23.2658443],[120.0799332,23.2736607],[120.0811234,23.2837772],[120.0820923,23.2890663],[120.084053,23.2950497],[120.0860367,23.2973576],[120.0890121,23.2994366],[120.0900116,23.2994423]]]]},
  3755 +"properties":{
  3756 +"gid":626,
  3757 +"name":"台湾省"}
  3758 +},
  3759 +{"type":"Feature",
  3760 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.3031082,23.2790852],[117.3041534,23.2768116],[117.3039169,23.2761135],[117.3013535,23.2718945],[117.2986298,23.271574],[117.296608,23.2721977],[117.2965393,23.2740345],[117.2972031,23.2763557],[117.2983932,23.2780018],[117.3031082,23.2790852]]]]},
  3761 +"properties":{
  3762 +"gid":627,
  3763 +"name":"广东省"}
  3764 +},
  3765 +{"type":"Feature",
  3766 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.5070038,23.2605896],[119.5051193,23.2685966],[119.5083313,23.2695618],[119.5099564,23.2620087],[119.5070038,23.2605896]]]]},
  3767 +"properties":{
  3768 +"gid":628,
  3769 +"name":"台湾省"}
  3770 +},
  3771 +{"type":"Feature",
  3772 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.2855835,23.2665958],[117.2872009,23.2645359],[117.288002,23.2629528],[117.2869034,23.2594681],[117.2852631,23.2564278],[117.2818604,23.2544765],[117.2808533,23.2549019],[117.2802887,23.2564945],[117.2806702,23.2594929],[117.282547,23.2625427],[117.2836914,23.2651081],[117.2855835,23.2665958]]]]},
  3773 +"properties":{
  3774 +"gid":629,
  3775 +"name":"广东省"}
  3776 +},
  3777 +{"type":"Feature",
  3778 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.6688538,23.2449551],[119.6678238,23.2472363],[119.668251,23.2511463],[119.6678925,23.258028],[119.6695938,23.2605762],[119.6733398,23.2597084],[119.6765976,23.2579174],[119.6811295,23.2543049],[119.6799164,23.2526798],[119.6747437,23.249855],[119.6705704,23.2458954],[119.6688538,23.2449551]]]]},
  3779 +"properties":{
  3780 +"gid":630,
  3781 +"name":"台湾省"}
  3782 +},
  3783 +{"type":"Feature",
  3784 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.510437,23.2484703],[119.5106277,23.251688],[119.5125732,23.2544708],[119.5181885,23.2602921],[119.5219727,23.2575912],[119.510437,23.2484703]]]]},
  3785 +"properties":{
  3786 +"gid":631,
  3787 +"name":"台湾省"}
  3788 +},
  3789 +{"type":"Feature",
  3790 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.082283,23.2593727],[120.0832901,23.2586975],[120.0833435,23.2554798],[120.083107,23.2545586],[120.0826263,23.2536297],[120.0817032,23.2501678],[120.0817108,23.2494774],[120.082283,23.2455788],[120.0825729,23.2432842],[120.0808411,23.2430286],[120.079277,23.2464523],[120.0792694,23.2471428],[120.078949,23.2510452],[120.0786514,23.2537975],[120.0788727,23.2549515],[120.0795898,23.2568016],[120.0798264,23.2574959],[120.0808029,23.2584305],[120.0812912,23.2588978],[120.082283,23.2593727]]]]},
  3791 +"properties":{
  3792 +"gid":632,
  3793 +"name":"台湾省"}
  3794 +},
  3795 +{"type":"Feature",
  3796 +"geometry":{"type":"MultiPolygon","coordinates":[[[[116.8030167,23.2584324],[116.8045807,23.2564125],[116.7997818,23.25144],[116.7979736,23.2534523],[116.7981033,23.2569008],[116.8030167,23.2584324]]]]},
  3797 +"properties":{
  3798 +"gid":633,
  3799 +"name":"广东省"}
  3800 +},
  3801 +{"type":"Feature",
  3802 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.6132584,23.2474537],[119.6131973,23.2486191],[119.6138535,23.249567],[119.6157227,23.2495346],[119.6166229,23.2481365],[119.6160507,23.2469444],[119.6145935,23.2464561],[119.6132584,23.2474537]]]]},
  3803 +"properties":{
  3804 +"gid":634,
  3805 +"name":"台湾省"}
  3806 +},
  3807 +{"type":"Feature",
  3808 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.0774078,23.2343502],[120.0776825,23.2297535],[120.0759735,23.2237701],[120.0735092,23.2196236],[120.0715637,23.2115707],[120.0690765,23.2085724],[120.0678329,23.2097168],[120.0675583,23.2154617],[120.0685196,23.2207508],[120.0727005,23.2304211],[120.0751801,23.2329617],[120.0774078,23.2343502]]]]},
  3809 +"properties":{
  3810 +"gid":635,
  3811 +"name":"台湾省"}
  3812 +},
  3813 +{"type":"Feature",
  3814 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.2427368,23.2259674],[117.2446976,23.2242928],[117.2447662,23.222456],[117.242363,23.2205372],[117.240387,23.2197819],[117.2391586,23.2195129],[117.2391129,23.22089],[117.2404633,23.2246113],[117.24189,23.2260399],[117.2427368,23.2259674]]]]},
  3815 +"properties":{
  3816 +"gid":636,
  3817 +"name":"广东省"}
  3818 +},
  3819 +{"type":"Feature",
  3820 +"geometry":{"type":"MultiPolygon","coordinates":[[[[119.4253235,23.1833858],[119.4235382,23.1856537],[119.4222031,23.1909142],[119.422348,23.1966572],[119.4107513,23.2058964],[119.4159012,23.2101059],[119.435463,23.2138443],[119.4424133,23.214407],[119.4444427,23.212141],[119.4450073,23.208477],[119.4418869,23.2022305],[119.4416885,23.1990147],[119.4447479,23.1946964],[119.4375763,23.192524],[119.4319534,23.188076],[119.4280472,23.1834259],[119.4253235,23.1833858]]]]},
  3821 +"properties":{
  3822 +"gid":637,
  3823 +"name":"台湾省"}
  3824 +},
  3825 +{"type":"Feature",
  3826 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.0673828,23.2019005],[120.0681534,23.1991463],[120.0659332,23.19454],[120.0634918,23.1851063],[120.0617676,23.1811905],[120.0597916,23.1793442],[120.0568008,23.1800194],[120.0577698,23.1848507],[120.0599823,23.1896858],[120.0619431,23.1945229],[120.0631714,23.1984348],[120.0673828,23.2019005]]]]},
  3827 +"properties":{
  3828 +"gid":638,
  3829 +"name":"台湾省"}
  3830 +},
  3831 +{"type":"Feature",
  3832 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.0531464,23.1655254],[120.0551605,23.1620865],[120.0544586,23.1542683],[120.0517731,23.145752],[120.0507889,23.1418419],[120.0493164,23.1395359],[120.0463409,23.137455],[120.0426102,23.1372089],[120.0413589,23.1383514],[120.0438232,23.1434193],[120.0472717,23.1491795],[120.0497284,23.154707],[120.0497131,23.1572361],[120.0501938,23.1602268],[120.0511627,23.1645966],[120.0516586,23.1655178],[120.0531464,23.1655254]]]]},
  3833 +"properties":{
  3834 +"gid":639,
  3835 +"name":"台湾省"}
  3836 +},
  3837 +{"type":"Feature",
  3838 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.4094925,23.12957],[121.4101181,23.1310005],[121.4129333,23.1330585],[121.4153366,23.1339321],[121.4185562,23.1341763],[121.4187469,23.1321125],[121.4154205,23.1302471],[121.4127274,23.1295834],[121.4094925,23.12957]]]]},
  3839 +"properties":{
  3840 +"gid":640,
  3841 +"name":"台湾省"}
  3842 +},
  3843 +{"type":"Feature",
  3844 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.0503235,23.1281967],[120.0436783,23.124342],[120.0377274,23.1194897],[120.0347672,23.1146488],[120.0355835,23.1045399],[120.0368729,23.0965004],[120.036911,23.0896053],[120.0356827,23.0863819],[120.0329666,23.0824623],[120.0272903,23.0760021],[120.0255585,23.0743847],[120.0245285,23.0794373],[120.0284729,23.0872688],[120.030899,23.0962448],[120.0293121,23.1125565],[120.0297775,23.1185341],[120.0342331,23.1240692],[120.0394211,23.128231],[120.0446396,23.1296329],[120.0493774,23.1287346],[120.0503235,23.1281967]]]]},
  3845 +"properties":{
  3846 +"gid":641,
  3847 +"name":"台湾省"}
  3848 +},
  3849 +{"type":"Feature",
  3850 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.0406265,23.0842457],[120.0411224,23.0836639],[120.0417862,23.0828648],[120.0420532,23.08218],[120.0420837,23.0812588],[120.042923,23.0762157],[120.0429306,23.0752964],[120.042717,23.0732231],[120.0407562,23.071352],[120.0397797,23.0711079],[120.0380478,23.0706215],[120.03582,23.0698948],[120.0340729,23.0707893],[120.0340576,23.0714779],[120.034729,23.0753975],[120.0354538,23.0765591],[120.0359192,23.0779457],[120.0371094,23.0807209],[120.0375977,23.0814209],[120.0380783,23.0821171],[120.0385666,23.0828133],[120.0406265,23.0842457]]]]},
  3851 +"properties":{
  3852 +"gid":642,
  3853 +"name":"台湾省"}
  3854 +},
  3855 +{"type":"Feature",
  3856 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.0400925,23.0674343],[120.0415726,23.0681458],[120.0433273,23.0674839],[120.0435867,23.0665684],[120.0443573,23.0649719],[120.0443802,23.0640526],[120.0444031,23.0633621],[120.043663,23.0626621],[120.0431671,23.0621948],[120.0426865,23.0617256],[120.0404587,23.0612316],[120.0387115,23.0616627],[120.0384521,23.0623493],[120.0381699,23.0639534],[120.0386429,23.0655708],[120.0388718,23.0662651],[120.03936,23.0669613],[120.0400925,23.0674343]]]]},
  3857 +"properties":{
  3858 +"gid":643,
  3859 +"name":"台湾省"}
  3860 +},
  3861 +{"type":"Feature",
  3862 +"geometry":{"type":"MultiPolygon","coordinates":[[[[115.1054764,22.7755585],[115.1027298,22.7761345],[115.1029129,22.7825775],[115.1051407,22.7879562],[115.1072769,22.7898846],[115.1113968,22.791893],[115.1151123,22.7920456],[115.1083603,22.7828026],[115.1054764,22.7755585]]]]},
  3863 +"properties":{
  3864 +"gid":644,
  3865 +"name":"广东省"}
  3866 +},
  3867 +{"type":"Feature",
  3868 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.5016327,22.7416172],[113.4831619,22.7325726],[113.467308,22.7330971],[113.4520493,22.7363586],[113.461647,22.7470779],[113.4738693,22.7551823],[113.48069,22.7581749],[113.4859238,22.7586918],[113.4887772,22.7606163],[113.4926529,22.759388],[113.504921,22.7621994],[113.5150833,22.7618618],[113.5259094,22.7594299],[113.5341568,22.7545586],[113.5353088,22.752449],[113.5320129,22.7504902],[113.5167389,22.7470913],[113.5038681,22.7417717],[113.5016327,22.7416172]]]]},
  3869 +"properties":{
  3870 +"gid":645,
  3871 +"name":"广东省"}
  3872 +},
  3873 +{"type":"Feature",
  3874 +"geometry":{"type":"MultiPolygon","coordinates":[[[[115.1918488,22.7480755],[115.1951675,22.7459278],[115.1921768,22.7411957],[115.1877899,22.7396355],[115.1832428,22.741518],[115.1918488,22.7480755]]]]},
  3875 +"properties":{
  3876 +"gid":646,
  3877 +"name":"广东省"}
  3878 +},
  3879 +{"type":"Feature",
  3880 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.5031967,22.7379837],[113.527359,22.7458172],[113.5356064,22.7473831],[113.5477295,22.740078],[113.5616913,22.7276154],[113.5645523,22.7261791],[113.5666504,22.7228889],[113.5667801,22.7198963],[113.561142,22.7152576],[113.56147,22.7111073],[113.5699768,22.7066841],[113.5810471,22.6980324],[113.5833435,22.6931267],[113.5841904,22.6896496],[113.5915298,22.6871033],[113.5989227,22.6799469],[113.6026764,22.6743107],[113.6032562,22.6707287],[113.6010132,22.6582069],[113.6006012,22.6459904],[113.5990677,22.6422977],[113.5925827,22.6385536],[113.5901337,22.639555],[113.5848083,22.6365166],[113.5786896,22.6385612],[113.5758667,22.641264],[113.5657196,22.6543007],[113.5516968,22.6642914],[113.5300522,22.6818104],[113.5203171,22.6867352],[113.5033417,22.6964951],[113.4972229,22.6985378],[113.4907227,22.7038116],[113.4844131,22.7136784],[113.4675064,22.7190647],[113.4594574,22.7227802],[113.4551163,22.726141],[113.4542465,22.7291603],[113.4609528,22.7291679],[113.4661331,22.7283077],[113.4724731,22.7255688],[113.4757004,22.7256927],[113.4887085,22.7284813],[113.4942703,22.7310543],[113.5031967,22.7379837]]]]},
  3881 +"properties":{
  3882 +"gid":647,
  3883 +"name":"广东省"}
  3884 +},
  3885 +{"type":"Feature",
  3886 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.9310532,22.7396908],[114.9488983,22.7346992],[114.9462433,22.7129784],[114.9295197,22.7253742],[114.9310532,22.7396908]]]]},
  3887 +"properties":{
  3888 +"gid":648,
  3889 +"name":"广东省"}
  3890 +},
  3891 +{"type":"Feature",
  3892 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.9518433,22.7125988],[114.9495163,22.7145672],[114.9489365,22.716383],[114.9505386,22.7189789],[114.9536591,22.72118],[114.954277,22.7186775],[114.9539795,22.7145271],[114.9518433,22.7125988]]]]},
  3893 +"properties":{
  3894 +"gid":649,
  3895 +"name":"广东省"}
  3896 +},
  3897 +{"type":"Feature",
  3898 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.5882721,22.7106247],[114.5845184,22.7113762],[114.5824432,22.7131233],[114.586998,22.7160854],[114.592453,22.7160969],[114.5950928,22.7129974],[114.5882721,22.7106247]]]]},
  3899 +"properties":{
  3900 +"gid":650,
  3901 +"name":"广东省"}
  3902 +},
  3903 +{"type":"Feature",
  3904 +"geometry":{"type":"MultiPolygon","coordinates":[[[[115.6135712,22.7031479],[115.6112976,22.7042103],[115.6113815,22.7078896],[115.613472,22.7109585],[115.6172104,22.7106419],[115.6192932,22.7084217],[115.6135712,22.7031479]]]]},
  3905 +"properties":{
  3906 +"gid":651,
  3907 +"name":"广东省"}
  3908 +},
  3909 +{"type":"Feature",
  3910 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.5974274,22.7013779],[114.5980301,22.6993332],[114.5931473,22.6977386],[114.590683,22.697628],[114.5876465,22.6986427],[114.5868073,22.7004452],[114.59021,22.7019749],[114.5939178,22.7021408],[114.5974274,22.7013779]]]]},
  3911 +"properties":{
  3912 +"gid":652,
  3913 +"name":"广东省"}
  3914 +},
  3915 +{"type":"Feature",
  3916 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.6542511,22.6915779],[113.6435776,22.6872978],[113.6413879,22.6880951],[113.6397781,22.6902409],[113.639267,22.6941681],[113.6402283,22.6977901],[113.644722,22.6982517],[113.6507797,22.6958828],[113.6542511,22.6915779]]]]},
  3917 +"properties":{
  3918 +"gid":653,
  3919 +"name":"广东省"}
  3920 +},
  3921 +{"type":"Feature",
  3922 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.6352005,22.6856995],[114.635643,22.6880512],[114.6366806,22.6891499],[114.6394272,22.6890659],[114.6411438,22.6878834],[114.640892,22.6855145],[114.6389008,22.6841602],[114.6360168,22.6847687],[114.6352005,22.6856995]]]]},
  3923 +"properties":{
  3924 +"gid":654,
  3925 +"name":"广东省"}
  3926 +},
  3927 +{"type":"Feature",
  3928 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.5079193,22.6883354],[113.5123672,22.6837559],[113.5161133,22.6798992],[113.5199203,22.6771851],[113.5241318,22.6728477],[113.5264435,22.6697502],[113.5260391,22.6672478],[113.5240097,22.6664295],[113.5206299,22.6679726],[113.517807,22.6706371],[113.5157166,22.6732635],[113.5136414,22.67589],[113.5110931,22.6789989],[113.5090714,22.6825409],[113.5079727,22.6848907],[113.5079193,22.6883354]]]]},
  3929 +"properties":{
  3930 +"gid":655,
  3931 +"name":"广东省"}
  3932 +},
  3933 +{"type":"Feature",
  3934 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.4660721,22.6605816],[121.4584885,22.6695995],[121.4536285,22.6779041],[121.4571609,22.6838341],[121.4680328,22.6849384],[121.4807434,22.6856651],[121.4906082,22.6818962],[121.5027695,22.6833801],[121.4997177,22.6767597],[121.5025864,22.6677856],[121.4987793,22.6597958],[121.5016785,22.6531162],[121.4924774,22.6502266],[121.4967804,22.636652],[121.4836426,22.636095],[121.4809799,22.6418552],[121.4770813,22.6476288],[121.4632034,22.6477642],[121.4642715,22.6544056],[121.4660721,22.6605816]]]]},
  3935 +"properties":{
  3936 +"gid":656,
  3937 +"name":"台湾省"}
  3938 +},
  3939 +{"type":"Feature",
  3940 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.5265884,22.6812038],[114.5265808,22.6766052],[114.5195236,22.6693916],[114.5164795,22.6706352],[114.5182114,22.6755409],[114.5226669,22.6803379],[114.5265884,22.6812038]]]]},
  3941 +"properties":{
  3942 +"gid":657,
  3943 +"name":"广东省"}
  3944 +},
  3945 +{"type":"Feature",
  3946 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.608963,22.6747627],[114.6109619,22.6743927],[114.6096497,22.6711159],[114.6065826,22.6679916],[114.6039505,22.6662636],[114.6016998,22.6666241],[114.6015091,22.6702938],[114.6031036,22.6731243],[114.6066818,22.6758099],[114.608963,22.6747627]]]]},
  3947 +"properties":{
  3948 +"gid":658,
  3949 +"name":"广东省"}
  3950 +},
  3951 +{"type":"Feature",
  3952 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.6193771,22.6626511],[114.6205368,22.6649342],[114.6218719,22.6653233],[114.6241913,22.6645966],[114.6247635,22.6630077],[114.6243515,22.6609955],[114.6233673,22.6604042],[114.6218872,22.6603699],[114.6196365,22.661602],[114.6193771,22.6626511]]]]},
  3953 +"properties":{
  3954 +"gid":659,
  3955 +"name":"广东省"}
  3956 +},
  3957 +{"type":"Feature",
  3958 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.5643616,22.6396446],[113.5683823,22.6362305],[113.5722198,22.633976],[113.5732803,22.6309395],[113.5757065,22.6257706],[113.5765991,22.6241207],[113.5681763,22.6158218],[113.5650787,22.6221714],[113.5641937,22.6240501],[113.5623932,22.6271229],[113.5599365,22.6298923],[113.5589523,22.6277542],[113.5532074,22.6312523],[113.545517,22.6355343],[113.5414734,22.6382599],[113.5401917,22.6419945],[113.533783,22.6580677],[113.5369186,22.6590099],[113.5417709,22.6604996],[113.5478592,22.6585903],[113.5513763,22.6552029],[113.555397,22.6517906],[113.5600891,22.6471977],[113.5626068,22.6436329],[113.5637283,22.64151],[113.5643616,22.6396446]]]]},
  3959 +"properties":{
  3960 +"gid":660,
  3961 +"name":"广东省"}
  3962 +},
  3963 +{"type":"Feature",
  3964 +"geometry":{"type":"MultiPolygon","coordinates":[[[[115.5711899,22.6534901],[115.5732269,22.6519604],[115.5730972,22.6494274],[115.5662384,22.6477852],[115.565361,22.6507378],[115.5630035,22.653635],[115.5649414,22.6546288],[115.5674133,22.654953],[115.569397,22.6545715],[115.5711899,22.6534901]]]]},
  3965 +"properties":{
  3966 +"gid":661,
  3967 +"name":"广东省"}
  3968 +},
  3969 +{"type":"Feature",
  3970 +"geometry":{"type":"MultiPolygon","coordinates":[[[[115.4811172,22.6290836],[115.4783936,22.6292057],[115.47612,22.6302662],[115.4747162,22.6336594],[115.477417,22.6342258],[115.4804077,22.6338825],[115.4827118,22.6323624],[115.4840927,22.6294289],[115.4811172,22.6290836]]]]},
  3971 +"properties":{
  3972 +"gid":662,
  3973 +"name":"广东省"}
  3974 +},
  3975 +{"type":"Feature",
  3976 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.6240463,22.6126747],[114.6215668,22.612793],[114.6235504,22.6177082],[114.6289673,22.6181793],[114.6302872,22.6166286],[114.6269836,22.613493],[114.6240463,22.6126747]]]]},
  3977 +"properties":{
  3978 +"gid":663,
  3979 +"name":"广东省"}
  3980 +},
  3981 +{"type":"Feature",
  3982 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.7162018,22.5836258],[114.7157516,22.5875149],[114.7163925,22.5896111],[114.7194366,22.5929623],[114.7216873,22.5877743],[114.7223663,22.5841255],[114.7162018,22.5836258]]]]},
  3983 +"properties":{
  3984 +"gid":664,
  3985 +"name":"广东省"}
  3986 +},
  3987 +{"type":"Feature",
  3988 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.6523666,22.5677185],[114.6498489,22.5685272],[114.6453629,22.5740757],[114.6370621,22.581295],[114.6346664,22.5844078],[114.6337433,22.5880451],[114.6345673,22.5910702],[114.6383438,22.5900879],[114.6421432,22.5835896],[114.6442337,22.5816116],[114.6464615,22.5814819],[114.6490936,22.5786095],[114.6512833,22.574337],[114.6523666,22.5677185]]]]},
  3989 +"properties":{
  3990 +"gid":665,
  3991 +"name":"广东省"}
  3992 +},
  3993 +{"type":"Feature",
  3994 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.5605087,22.5840225],[113.5607605,22.5865936],[113.5733185,22.5850506],[113.5776367,22.5827694],[113.5837479,22.5769577],[113.5901871,22.5768642],[113.5905075,22.5738659],[113.5881271,22.5712318],[113.586647,22.5671768],[113.5808716,22.5658588],[113.5757065,22.566576],[113.5718536,22.5683746],[113.5666733,22.5773525],[113.5633392,22.5798111],[113.5598373,22.5836582],[113.5605087,22.5840225]]]]},
  3995 +"properties":{
  3996 +"gid":666,
  3997 +"name":"广东省"}
  3998 +},
  3999 +{"type":"Feature",
  4000 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.3031769,22.5349255],[114.2972183,22.5351086],[114.2873917,22.538332],[114.2863007,22.5401211],[114.2899933,22.5407524],[114.2916336,22.5424385],[114.2895889,22.5572872],[114.2936935,22.554718],[114.2997208,22.5531578],[114.3056717,22.5529747],[114.3100433,22.5499573],[114.3061905,22.5479393],[114.3027802,22.5468616],[114.2983475,22.5464268],[114.2945404,22.5480919],[114.3031769,22.5349255]]]]},
  4001 +"properties":{
  4002 +"gid":667,
  4003 +"name":"香港特别行政区"}
  4004 +},
  4005 +{"type":"Feature",
  4006 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.4357529,22.542614],[114.4300232,22.5430431],[114.4266434,22.5509357],[114.4319,22.5497952],[114.4357529,22.542614]]]]},
  4007 +"properties":{
  4008 +"gid":668,
  4009 +"name":"香港特别行政区"}
  4010 +},
  4011 +{"type":"Feature",
  4012 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.3149338,22.5327091],[114.315979,22.5362072],[114.3176727,22.5323753],[114.3177032,22.527319],[114.3113937,22.5295563],[114.3089523,22.5333538],[114.3085709,22.5358639],[114.3131027,22.5344658],[114.3149338,22.5327091]]]]},
  4013 +"properties":{
  4014 +"gid":669,
  4015 +"name":"香港特别行政区"}
  4016 +},
  4017 +{"type":"Feature",
  4018 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.8419189,22.5359745],[114.8449631,22.5296688],[114.8393097,22.5287361],[114.838913,22.5317078],[114.8419189,22.5359745]]]]},
  4019 +"properties":{
  4020 +"gid":670,
  4021 +"name":"广东省"}
  4022 +},
  4023 +{"type":"Feature",
  4024 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.3029938,22.5151443],[114.3074799,22.523859],[114.3102036,22.523983],[114.3138275,22.5209332],[114.3158493,22.5201073],[114.3160934,22.5157509],[114.3058624,22.5079193],[114.300972,22.506773],[114.2974396,22.5125885],[114.3029938,22.5151443]]]]},
  4025 +"properties":{
  4026 +"gid":671,
  4027 +"name":"香港特别行政区"}
  4028 +},
  4029 +{"type":"Feature",
  4030 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.8479538,22.5098362],[113.8435135,22.5144253],[113.8430176,22.5202465],[113.8477325,22.518568],[113.8512421,22.515173],[113.8529434,22.5104961],[113.8479538,22.5098362]]]]},
  4031 +"properties":{
  4032 +"gid":672,
  4033 +"name":"广东省"}
  4034 +},
  4035 +{"type":"Feature",
  4036 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.8380585,22.5190296],[114.8457565,22.5184402],[114.8490829,22.5165138],[114.8504028,22.5147324],[114.8463135,22.5124874],[114.8388901,22.5073414],[114.8364716,22.5111446],[114.8362808,22.5150452],[114.8380585,22.5190296]]]]},
  4037 +"properties":{
  4038 +"gid":673,
  4039 +"name":"广东省"}
  4040 +},
  4041 +{"type":"Feature",
  4042 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.3568802,22.4983158],[114.353241,22.5061951],[114.3559036,22.5072384],[114.3607101,22.5053902],[114.3618698,22.502224],[114.3568802,22.4983158]]]]},
  4043 +"properties":{
  4044 +"gid":674,
  4045 +"name":"香港特别行政区"}
  4046 +},
  4047 +{"type":"Feature",
  4048 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.5804367,22.5008488],[113.5809326,22.5016022],[113.583107,22.5020828],[113.5845566,22.5007744],[113.5843735,22.4988041],[113.5831833,22.4982414],[113.5810699,22.4985485],[113.5804596,22.4996567],[113.5804367,22.5008488]]]]},
  4049 +"properties":{
  4050 +"gid":675,
  4051 +"name":"广东省"}
  4052 +},
  4053 +{"type":"Feature",
  4054 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.356842,22.4663582],[114.3576279,22.4703007],[114.3587494,22.4724216],[114.3563614,22.4801292],[114.3565826,22.4854279],[114.3590088,22.4862289],[114.3628693,22.4834175],[114.3640671,22.4793339],[114.3606873,22.4686031],[114.356842,22.4663582]]]]},
  4055 +"properties":{
  4056 +"gid":676,
  4057 +"name":"香港特别行政区"}
  4058 +},
  4059 +{"type":"Feature",
  4060 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.6332626,22.476757],[114.6341324,22.474268],[114.6340027,22.4719639],[114.6355667,22.4701939],[114.6475601,22.4730225],[114.6517487,22.4734383],[114.654541,22.4719524],[114.6567612,22.4672222],[114.6529083,22.4652138],[114.6477203,22.4601555],[114.6453094,22.4589005],[114.6384583,22.4574471],[114.6290512,22.4526634],[114.6246796,22.4510899],[114.6188812,22.4579601],[114.6145782,22.4646645],[114.617157,22.4721355],[114.6211166,22.4720821],[114.6289902,22.4731216],[114.6332626,22.476757]]]]},
  4061 +"properties":{
  4062 +"gid":677,
  4063 +"name":"广东省"}
  4064 +},
  4065 +{"type":"Feature",
  4066 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.2243576,22.4494076],[114.2233734,22.4539604],[114.2287827,22.4590416],[114.2332611,22.4585609],[114.230072,22.4535847],[114.2243576,22.4494076]]]]},
  4067 +"properties":{
  4068 +"gid":678,
  4069 +"name":"香港特别行政区"}
  4070 +},
  4071 +{"type":"Feature",
  4072 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.2163162,22.4469624],[114.2126083,22.4470177],[114.2122269,22.4493008],[114.2127533,22.4534626],[114.2157516,22.4580441],[114.2179489,22.453476],[114.2163162,22.4469624]]]]},
  4073 +"properties":{
  4074 +"gid":679,
  4075 +"name":"香港特别行政区"}
  4076 +},
  4077 +{"type":"Feature",
  4078 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.6509933,22.4494953],[114.6511307,22.446743],[114.6505127,22.444416],[114.6506805,22.4361496],[114.6488495,22.4333076],[114.6424408,22.4327946],[114.637619,22.435112],[114.6391068,22.4400043],[114.6432419,22.4461651],[114.6480408,22.4491348],[114.6509933,22.4494953]]]]},
  4079 +"properties":{
  4080 +"gid":680,
  4081 +"name":"广东省"}
  4082 +},
  4083 +{"type":"Feature",
  4084 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.6535187,22.4362431],[113.6582031,22.4357777],[113.662529,22.4378529],[113.665451,22.4370174],[113.6629715,22.4327812],[113.6596069,22.4304276],[113.6578903,22.426384],[113.6592407,22.4198914],[113.6563873,22.4177418],[113.6493378,22.4158039],[113.646759,22.4140968],[113.6483307,22.407135],[113.6453171,22.4022388],[113.6419601,22.3998833],[113.6382828,22.4002991],[113.6344604,22.3986568],[113.6259232,22.3924313],[113.6135635,22.401083],[113.6094208,22.4065704],[113.6099472,22.4113617],[113.6156235,22.4108467],[113.6179962,22.4134808],[113.6206818,22.4211483],[113.6215668,22.4277573],[113.6232071,22.4304276],[113.631012,22.4325581],[113.6334076,22.435421],[113.6368637,22.4435081],[113.6386414,22.4443359],[113.6422806,22.4430046],[113.6501617,22.4465084],[113.6528702,22.4461422],[113.6544571,22.4437675],[113.6535187,22.4362431]]]]},
  4085 +"properties":{
  4086 +"gid":681,
  4087 +"name":"广东省"}
  4088 +},
  4089 +{"type":"Feature",
  4090 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.7926331,22.4225063],[113.7949066,22.4274368],[113.7986984,22.4286194],[113.8041534,22.4244385],[113.8087234,22.4264965],[113.8139267,22.4264603],[113.8157272,22.4236107],[113.8154831,22.4153633],[113.8216705,22.4028835],[113.81604,22.3999615],[113.8060074,22.4018536],[113.7988129,22.4056664],[113.7932892,22.4128342],[113.7821808,22.4175339],[113.7799301,22.4213219],[113.7814865,22.422617],[113.7888794,22.4217796],[113.7926331,22.4225063]]]]},
  4091 +"properties":{
  4092 +"gid":682,
  4093 +"name":"广东省"}
  4094 +},
  4095 +{"type":"Feature",
  4096 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.8869095,22.3680706],[113.8787537,22.3804264],[113.8779831,22.3841381],[113.8846436,22.3837929],[113.8876877,22.3808804],[113.8881073,22.3755817],[113.8869095,22.3680706]]]]},
  4097 +"properties":{
  4098 +"gid":683,
  4099 +"name":"香港特别行政区"}
  4100 +},
  4101 +{"type":"Feature",
  4102 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.1032181,22.3570118],[114.1101379,22.3525124],[114.1102829,22.3456211],[114.1039963,22.3338261],[114.1008682,22.3322964],[114.0961227,22.3286228],[114.0913162,22.3258648],[114.0884628,22.3420544],[114.0875931,22.3443108],[114.0829773,22.347311],[114.0792694,22.3517323],[114.0780411,22.3560429],[114.0783768,22.35882],[114.0839691,22.3606949],[114.0913925,22.3605881],[114.0977936,22.3613529],[114.100769,22.3610344],[114.1032181,22.3570118]]]]},
  4103 +"properties":{
  4104 +"gid":684,
  4105 +"name":"香港特别行政区"}
  4106 +},
  4107 +{"type":"Feature",
  4108 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.8742371,22.3581944],[113.8742371,22.3600845],[113.8756104,22.3608265],[113.8773727,22.3599892],[113.8779373,22.3582211],[113.8768692,22.3567657],[113.8750534,22.3570919],[113.8742371,22.3581944]]]]},
  4109 +"properties":{
  4110 +"gid":685,
  4111 +"name":"香港特别行政区"}
  4112 +},
  4113 +{"type":"Feature",
  4114 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.0599976,22.3469028],[114.0562515,22.3520126],[114.05867,22.3574181],[114.0613327,22.3586941],[114.063797,22.3585815],[114.0623627,22.3534546],[114.0620804,22.3495331],[114.0599976,22.3469028]]]]},
  4115 +"properties":{
  4116 +"gid":686,
  4117 +"name":"香港特别行政区"}
  4118 +},
  4119 +{"type":"Feature",
  4120 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.3531418,22.3513546],[120.3598099,22.353775],[120.3659897,22.3553982],[120.3711929,22.3531132],[120.3739166,22.3496723],[120.3727036,22.3455296],[120.3665466,22.3379288],[120.3603821,22.3317051],[120.3532181,22.327549],[120.3453064,22.327528],[120.3418427,22.3291283],[120.3442917,22.3348827],[120.3482285,22.3408699],[120.3506775,22.3473129],[120.3531418,22.3513546]]]]},
  4121 +"properties":{
  4122 +"gid":687,
  4123 +"name":"台湾省"}
  4124 +},
  4125 +{"type":"Feature",
  4126 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.8887405,22.3535156],[113.8894119,22.3546619],[113.8916168,22.3546448],[113.8924026,22.3530312],[113.8918762,22.3515282],[113.890007,22.3513451],[113.8888397,22.3526478],[113.8887405,22.3535156]]]]},
  4127 +"properties":{
  4128 +"gid":688,
  4129 +"name":"香港特别行政区"}
  4130 +},
  4131 +{"type":"Feature",
  4132 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114,22.2761192],[113.9970169,22.271162],[113.992897,22.2674026],[113.9950714,22.2651005],[114,22.2652149],[114.0089035,22.2569847],[114.0091705,22.2521687],[114,22.2484818],[113.9951172,22.2440948],[113.9942398,22.2406769],[113.995163,22.2390347],[114,22.2395267],[114.0124588,22.2373772],[114.0167313,22.2362041],[114.019928,22.231987],[114.0175476,22.225893],[114.0092468,22.2282543],[114.0091629,22.2211208],[114.00634,22.2184563],[114,22.2160835],[113.9909286,22.2092915],[113.9869919,22.2096634],[113.9810104,22.2144794],[113.9754486,22.2231903],[113.9748535,22.2266617],[113.9778595,22.2318993],[113.9777832,22.2344952],[113.9697418,22.234436],[113.9606705,22.2303963],[113.9564285,22.2296295],[113.9490433,22.2303562],[113.9471512,22.2265148],[113.9424973,22.2218513],[113.9369736,22.2197514],[113.9245071,22.2190857],[113.927597,22.2163067],[113.9342422,22.2136421],[113.9353638,22.2108421],[113.9330063,22.2079353],[113.9214325,22.2088127],[113.9129333,22.2065887],[113.9038162,22.2073746],[113.8954773,22.2148018],[113.8947372,22.2210369],[113.891037,22.2211685],[113.8863068,22.2204189],[113.8831863,22.2166195],[113.8811569,22.2095642],[113.8766403,22.2078857],[113.8722916,22.204361],[113.8672485,22.2020111],[113.8616104,22.2031307],[113.8559036,22.2024136],[113.8478928,22.1941891],[113.8446808,22.1943035],[113.8448486,22.2044163],[113.8432083,22.206543],[113.8430786,22.2152863],[113.838768,22.224638],[113.8400269,22.2312622],[113.8443069,22.233181],[113.8473282,22.2332554],[113.850647,22.2345409],[113.8493729,22.2419701],[113.8543472,22.242712],[113.8601608,22.2457256],[113.8600464,22.2489491],[113.8582077,22.2522335],[113.8557663,22.2532406],[113.8620605,22.2615261],[113.8751984,22.2681866],[113.8781815,22.269455],[113.8828964,22.2695484],[113.8860474,22.2681179],[113.890419,22.2773037],[113.8942337,22.2796974],[113.8969421,22.2913284],[113.9027481,22.2941113],[113.9124298,22.2949123],[113.9262619,22.2944164],[113.9292831,22.2777519],[113.9320602,22.2735119],[113.9385986,22.2877636],[113.9610138,22.2960262],[113.9750214,22.2949581],[113.9786682,22.2934456],[113.9804764,22.301199],[113.9835663,22.3040771],[113.9883728,22.3062019],[113.9929581,22.3212128],[113.9974289,22.3215103],[114,22.3255444],[114.0065765,22.3256359],[114.0096664,22.3324528],[114.0129623,22.3353729],[114.0185623,22.3370209],[114.0204163,22.3348103],[114.0200272,22.3327217],[114.0216217,22.3309593],[114.0266266,22.3341885],[114.0310364,22.3350887],[114.0343933,22.3370895],[114.0355377,22.3431244],[114.0409088,22.3489017],[114.0453873,22.3484249],[114.0534515,22.3458214],[114.0560608,22.3434162],[114.0559235,22.3323708],[114.0570221,22.3213863],[114.0457001,22.320385],[114.0434265,22.3211956],[114.040657,22.3231926],[114.0351562,22.3141308],[114.0168381,22.3056602],[114.0134811,22.2992916],[114.0179672,22.2985859],[114.0219193,22.2987766],[114.0230026,22.2969875],[114.0198135,22.2922363],[114.0195007,22.2887707],[114.02108,22.2826385],[114.0194702,22.2804909],[114.0192871,22.2747326],[114.0184937,22.2714748],[114.0171204,22.2693386],[114,22.2761192]]]]},
  4133 +"properties":{
  4134 +"gid":689,
  4135 +"name":"香港特别行政区"}
  4136 +},
  4137 +{"type":"Feature",
  4138 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.8885727,22.3480301],[113.8895721,22.3488045],[113.8918991,22.3480892],[113.8917007,22.3460445],[113.8899994,22.3456745],[113.8887863,22.3464661],[113.8886871,22.347332],[113.8885727,22.3480301]]]]},
  4139 +"properties":{
  4140 +"gid":690,
  4141 +"name":"香港特别行政区"}
  4142 +},
  4143 +{"type":"Feature",
  4144 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.9812775,22.3323917],[113.9786224,22.3334484],[113.9797668,22.340044],[113.9809036,22.3422794],[113.9831467,22.3428497],[113.9860611,22.3417778],[113.9873428,22.3384991],[113.9848938,22.3347263],[113.9812775,22.3323917]]]]},
  4145 +"properties":{
  4146 +"gid":691,
  4147 +"name":"香港特别行政区"}
  4148 +},
  4149 +{"type":"Feature",
  4150 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.1416473,22.3190556],[114.1356812,22.3196926],[114.1264038,22.3220119],[114.1262283,22.3252239],[114.1439133,22.3274403],[114.1457138,22.3261471],[114.1451492,22.3229008],[114.1443024,22.3203316],[114.1416473,22.3190556]]]]},
  4151 +"properties":{
  4152 +"gid":692,
  4153 +"name":"香港特别行政区"}
  4154 +},
  4155 +{"type":"Feature",
  4156 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.9300766,22.3113289],[113.9347534,22.3174324],[113.9436569,22.3172436],[113.9471817,22.3217201],[113.9479523,22.3193951],[113.9417267,22.3061657],[113.9404907,22.3001175],[113.9378433,22.2956123],[113.9346313,22.2928486],[113.9345779,22.293932],[113.9310303,22.2938499],[113.9312286,22.3036957],[113.9300766,22.3113289]]]]},
  4157 +"properties":{
  4158 +"gid":693,
  4159 +"name":"香港特别行政区"}
  4160 +},
  4161 +{"type":"Feature",
  4162 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.9105301,22.3005028],[113.9114838,22.3012333],[113.9123764,22.3015614],[113.9136124,22.3007793],[113.9136429,22.2995605],[113.9125366,22.2987099],[113.9111481,22.2993698],[113.9106064,22.2998219],[113.9105301,22.3005028]]]]},
  4163 +"properties":{
  4164 +"gid":694,
  4165 +"name":"香港特别行政区"}
  4166 +},
  4167 +{"type":"Feature",
  4168 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.0397873,22.2829304],[114.0363464,22.2917347],[114.0384369,22.2941341],[114.043663,22.2934647],[114.0421295,22.2899418],[114.0461731,22.2885265],[114.0397873,22.2829304]]]]},
  4169 +"properties":{
  4170 +"gid":695,
  4171 +"name":"香港特别行政区"}
  4172 +},
  4173 +{"type":"Feature",
  4174 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.5931702,22.2857761],[113.5872803,22.2780399],[113.58255,22.2775898],[113.5801392,22.2786274],[113.580307,22.2816029],[113.5907135,22.2858982],[113.5931702,22.2857761]]]]},
  4175 +"properties":{
  4176 +"gid":696,
  4177 +"name":"广东省"}
  4178 +},
  4179 +{"type":"Feature",
  4180 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.0398407,22.2420044],[114.0380325,22.2478943],[114.0276108,22.257513],[114.028923,22.2607937],[114.0424728,22.2570763],[114.0439529,22.2525482],[114.0434418,22.2483845],[114.0420303,22.242569],[114.0398407,22.2420044]]]]},
  4181 +"properties":{
  4182 +"gid":697,
  4183 +"name":"香港特别行政区"}
  4184 +},
  4185 +{"type":"Feature",
  4186 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.6137772,22.2423153],[113.6125717,22.2426815],[113.6119232,22.2447777],[113.6121063,22.2477818],[113.6135178,22.2485523],[113.6147537,22.2484493],[113.6154022,22.2452888],[113.6147232,22.2432137],[113.6137772,22.2423153]]]]},
  4187 +"properties":{
  4188 +"gid":698,
  4189 +"name":"广东省"}
  4190 +},
  4191 +{"type":"Feature",
  4192 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.1562424,22.2389126],[114.1486969,22.244421],[114.1496964,22.2474041],[114.1547928,22.2460957],[114.1577606,22.2414093],[114.1562424,22.2389126]]]]},
  4193 +"properties":{
  4194 +"gid":699,
  4195 +"name":"香港特别行政区"}
  4196 +},
  4197 +{"type":"Feature",
  4198 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.1275711,22.1788158],[114.1185684,22.1809158],[114.1151962,22.1837463],[114.1147385,22.1876335],[114.1173706,22.193737],[114.1192322,22.200264],[114.1203918,22.2106667],[114.1199265,22.2145538],[114.1157684,22.2184944],[114.1102829,22.2193832],[114.1074829,22.2208595],[114.1056137,22.2233009],[114.107132,22.2272816],[114.1097031,22.2299328],[114.107048,22.2332554],[114.1058502,22.2371082],[114.1047592,22.2388954],[114.1106796,22.2391777],[114.1169586,22.2417755],[114.1205368,22.239645],[114.1183777,22.234024],[114.1241226,22.2283192],[114.127121,22.2231731],[114.1320572,22.223177],[114.1341095,22.2218933],[114.1342468,22.2193718],[114.1314774,22.2168083],[114.129631,22.2107353],[114.1315079,22.2079182],[114.1376419,22.209959],[114.1433029,22.2119827],[114.1489334,22.2129383],[114.1537018,22.2115555],[114.1596222,22.2072353],[114.1553268,22.2042732],[114.1465912,22.201561],[114.1432266,22.199791],[114.1439209,22.196146],[114.1456375,22.1918583],[114.1450272,22.1849308],[114.137558,22.1905556],[114.137413,22.1797409],[114.1275711,22.1788158]]]]},
  4199 +"properties":{
  4200 +"gid":700,
  4201 +"name":"香港特别行政区"}
  4202 +},
  4203 +{"type":"Feature",
  4204 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.0224533,22.1990871],[114.0196762,22.2001038],[114.0204697,22.2035904],[114.0248032,22.2056389],[114.0268936,22.2080402],[114.0237427,22.211565],[114.0230865,22.2142944],[114.0245667,22.2187347],[114.0279999,22.2237301],[114.0304413,22.2243061],[114.033287,22.2219143],[114.0301819,22.2155552],[114.0305862,22.2128162],[114.0358505,22.2114582],[114.0395126,22.2079544],[114.0352631,22.2043018],[114.0273132,22.2007008],[114.0224533,22.1990871]]]]},
  4205 +"properties":{
  4206 +"gid":701,
  4207 +"name":"香港特别行政区"}
  4208 +},
  4209 +{"type":"Feature",
  4210 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.9951782,22.1870461],[113.9902267,22.1868477],[113.9841919,22.1933613],[113.9833679,22.2000599],[113.9872894,22.2035255],[113.9904938,22.2033558],[113.9945526,22.1969452],[113.9961014,22.1899796],[113.9951782,22.1870461]]]]},
  4211 +"properties":{
  4212 +"gid":702,
  4213 +"name":"香港特别行政区"}
  4214 +},
  4215 +{"type":"Feature",
  4216 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.9171371,22.1764507],[113.9110031,22.1811314],[113.9061813,22.1832161],[113.9075623,22.1856689],[113.9105911,22.1866589],[113.9179535,22.1816845],[113.9194565,22.1779346],[113.9171371,22.1764507]]]]},
  4217 +"properties":{
  4218 +"gid":703,
  4219 +"name":"香港特别行政区"}
  4220 +},
  4221 +{"type":"Feature",
  4222 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.812027,22.1635437],[113.8056488,22.1643314],[113.8014603,22.1686783],[113.7965317,22.168932],[113.7948303,22.1736088],[113.7949982,22.1763535],[113.7969131,22.1794682],[113.8002396,22.1813622],[113.8046417,22.1804466],[113.8042984,22.1747284],[113.8098984,22.1732922],[113.8106766,22.1656799],[113.812027,22.1635437]]]]},
  4223 +"properties":{
  4224 +"gid":704,
  4225 +"name":"广东省"}
  4226 +},
  4227 +{"type":"Feature",
  4228 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.9175262,22.1585293],[113.9029007,22.1576862],[113.8990402,22.1592655],[113.8976669,22.161171],[113.8983002,22.1634331],[113.9074936,22.1682339],[113.9116898,22.1721439],[113.916893,22.1723328],[113.9209976,22.1707401],[113.9162064,22.1652527],[113.9175262,22.1585293]]]]},
  4229 +"properties":{
  4230 +"gid":705,
  4231 +"name":"香港特别行政区"}
  4232 +},
  4233 +{"type":"Feature",
  4234 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.5766068,22.1580734],[113.5711365,22.1532993],[113.5645905,22.1511021],[113.5594025,22.1511326],[113.5527115,22.1551399],[113.5431137,22.1558475],[113.5417709,22.1582088],[113.5404205,22.1690617],[113.5430222,22.1712265],[113.5473404,22.1689453],[113.5508194,22.1651001],[113.5550537,22.1655769],[113.5566788,22.1680202],[113.5615005,22.1659431],[113.5662079,22.1618061],[113.5766068,22.1580734]]]]},
  4235 +"properties":{
  4236 +"gid":706,
  4237 +"name":"广东省"}
  4238 +},
  4239 +{"type":"Feature",
  4240 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.7195663,22.1675968],[113.7206726,22.1696053],[113.727417,22.1708679],[113.7300873,22.170042],[113.7306671,22.1672592],[113.7231216,22.1651211],[113.7211685,22.1654491],[113.7195663,22.1675968]]]]},
  4241 +"properties":{
  4242 +"gid":707,
  4243 +"name":"广东省"}
  4244 +},
  4245 +{"type":"Feature",
  4246 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.8191071,22.151371],[113.8148727,22.1574306],[113.8145599,22.1604309],[113.8162079,22.1630993],[113.8202591,22.1647263],[113.8273392,22.1632118],[113.8274231,22.1604538],[113.8254929,22.1571121],[113.8191071,22.151371]]]]},
  4247 +"properties":{
  4248 +"gid":708,
  4249 +"name":"广东省"}
  4250 +},
  4251 +{"type":"Feature",
  4252 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.5287018,22.1373768],[113.5286026,22.1265583],[113.5346375,22.1285896],[113.5410385,22.1234722],[113.5439987,22.1187401],[113.5458832,22.1119843],[113.5429611,22.1082058],[113.5336685,22.1005707],[113.542717,22.0990143],[113.5419617,22.0937576],[113.5515976,22.0891857],[113.5545883,22.0849113],[113.5511932,22.0813828],[113.5453415,22.0827961],[113.5405807,22.0862293],[113.5364685,22.0831928],[113.5232162,22.0847054],[113.512413,22.0810471],[113.5031128,22.0731812],[113.4969635,22.0736847],[113.4937515,22.0784283],[113.488533,22.0823402],[113.4843216,22.0822983],[113.4808426,22.0865917],[113.4793091,22.0903416],[113.4857712,22.0912037],[113.4868317,22.0973682],[113.4754028,22.0958061],[113.4675369,22.0968437],[113.4629593,22.0988884],[113.4680405,22.1016521],[113.4750519,22.1036415],[113.4763336,22.1091042],[113.4749069,22.1214504],[113.4742813,22.1269073],[113.4698868,22.1280231],[113.4660568,22.1304913],[113.4717026,22.1343822],[113.4754486,22.139967],[113.4803696,22.1443481],[113.5054626,22.1517448],[113.5144196,22.1531849],[113.5305786,22.1598244],[113.5366135,22.1570244],[113.5401917,22.1499634],[113.5367737,22.1459751],[113.5305176,22.1444149],[113.5277023,22.1424713],[113.5287018,22.1373768]]]]},
  4253 +"properties":{
  4254 +"gid":709,
  4255 +"name":"广东省"}
  4256 +},
  4257 +{"type":"Feature",
  4258 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.8213806,22.1217537],[113.8182907,22.1237507],[113.8162613,22.1270676],[113.8111725,22.1369686],[113.811821,22.1394596],[113.8182831,22.1400452],[113.8227615,22.1487617],[113.8253708,22.1511517],[113.8293228,22.1509476],[113.8323669,22.1482658],[113.8376465,22.1374378],[113.8367691,22.1351871],[113.8276367,22.1313],[113.8255005,22.1286564],[113.8236465,22.1225548],[113.8213806,22.1217537]]]]},
  4259 +"properties":{
  4260 +"gid":710,
  4261 +"name":"广东省"}
  4262 +},
  4263 +{"type":"Feature",
  4264 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.7064514,22.1382046],[113.7035065,22.1385841],[113.7050171,22.1433258],[113.7012711,22.1467285],[113.7034531,22.1500607],[113.7129593,22.1479702],[113.7164383,22.1482506],[113.7190399,22.1462822],[113.7189026,22.1439953],[113.7115784,22.141386],[113.7064514,22.1382046]]]]},
  4265 +"properties":{
  4266 +"gid":711,
  4267 +"name":"广东省"}
  4268 +},
  4269 +{"type":"Feature",
  4270 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.5708237,22.1097164],[113.5658417,22.1131802],[113.5544815,22.1091576],[113.5518494,22.1106663],[113.5508194,22.1141605],[113.5530701,22.1273575],[113.5564575,22.134531],[113.5599976,22.1359596],[113.5654526,22.1405048],[113.5769806,22.1431389],[113.5877228,22.1407642],[113.5894699,22.1370049],[113.5984192,22.1335735],[113.598938,22.1298771],[113.5943298,22.1271229],[113.5774689,22.1220036],[113.5780334,22.1187649],[113.5801468,22.1170502],[113.5802383,22.1142921],[113.5708237,22.1097164]]]]},
  4271 +"properties":{
  4272 +"gid":712,
  4273 +"name":"广东省"}
  4274 +},
  4275 +{"type":"Feature",
  4276 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.7000732,22.1307259],[113.7011871,22.1329651],[113.7064972,22.1349888],[113.7086792,22.1341896],[113.7094879,22.1311646],[113.7049179,22.1291046],[113.7000732,22.1307259]]]]},
  4277 +"properties":{
  4278 +"gid":713,
  4279 +"name":"广东省"}
  4280 +},
  4281 +{"type":"Feature",
  4282 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.8868179,22.112627],[113.8844833,22.1148129],[113.8843765,22.1214733],[113.8872681,22.1282082],[113.8900833,22.1298981],[113.8974228,22.1244659],[113.8984985,22.1218853],[113.8980865,22.119154],[113.8951569,22.1156349],[113.8868179,22.112627]]]]},
  4283 +"properties":{
  4284 +"gid":714,
  4285 +"name":"广东省"}
  4286 +},
  4287 +{"type":"Feature",
  4288 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.7019272,22.1246643],[113.702507,22.1218834],[113.7013779,22.1152859],[113.698082,22.1138477],[113.6971664,22.119173],[113.6991272,22.1232014],[113.7019272,22.1246643]]]]},
  4289 +"properties":{
  4290 +"gid":715,
  4291 +"name":"广东省"}
  4292 +},
  4293 +{"type":"Feature",
  4294 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.8630295,22.1198292],[113.8664093,22.1185055],[113.8691788,22.1192799],[113.8704071,22.1233463],[113.8739319,22.1243114],[113.8806763,22.1173058],[113.8813934,22.1126785],[113.8793411,22.111639],[113.8760529,22.1143341],[113.8671799,22.1147957],[113.8630295,22.1198292]]]]},
  4295 +"properties":{
  4296 +"gid":716,
  4297 +"name":"广东省"}
  4298 +},
  4299 +{"type":"Feature",
  4300 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.7611084,22.1223316],[113.759613,22.1178188],[113.7577591,22.1158485],[113.75457,22.1162415],[113.7553864,22.121706],[113.7571869,22.1227627],[113.7611084,22.1223316]]]]},
  4301 +"properties":{
  4302 +"gid":717,
  4303 +"name":"广东省"}
  4304 +},
  4305 +{"type":"Feature",
  4306 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.0464401,22.0914707],[114.0406494,22.0934925],[114.0369873,22.0969982],[114.0280838,22.0974884],[114.0243378,22.0982285],[114.0221863,22.1059437],[114.0264893,22.1084499],[114.0335236,22.110857],[114.0380402,22.1138344],[114.0422897,22.1128883],[114.0503311,22.1059151],[114.049263,22.1028748],[114.0483093,22.093401],[114.0464401,22.0914707]]]]},
  4307 +"properties":{
  4308 +"gid":718,
  4309 +"name":"广东省"}
  4310 +},
  4311 +{"type":"Feature",
  4312 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.7048492,22.1029453],[113.7102966,22.1031265],[113.7133789,22.1009045],[113.7132721,22.094944],[113.7113266,22.0913715],[113.7046509,22.0912533],[113.6998291,22.0933342],[113.6930389,22.0996475],[113.6927109,22.1024151],[113.6951981,22.1068802],[113.6987228,22.1078491],[113.7048492,22.1029453]]]]},
  4313 +"properties":{
  4314 +"gid":719,
  4315 +"name":"广东省"}
  4316 +},
  4317 +{"type":"Feature",
  4318 +"geometry":{"type":"MultiPolygon","coordinates":[[[[121.5438614,22.0273991],[121.5285492,22.0261803],[121.5163574,22.0386925],[121.5050735,22.0437984],[121.4989777,22.0510273],[121.4998627,22.061842],[121.4982224,22.0714512],[121.4877319,22.0823383],[121.4940109,22.0919094],[121.5112381,22.0866871],[121.5272598,22.0846882],[121.5489731,22.0842342],[121.5608673,22.087553],[121.5632172,22.078352],[121.5682526,22.0652237],[121.5608063,22.061861],[121.5577469,22.0536346],[121.5615768,22.0444183],[121.5782623,22.0352974],[121.5978928,22.0259132],[121.5958099,22.0172176],[121.5873032,22.0067558],[121.5732269,22.0069046],[121.5672836,22.0044441],[121.5597229,22.0118637],[121.552681,22.0215721],[121.5438614,22.0273991]]]]},
  4319 +"properties":{
  4320 +"gid":720,
  4321 +"name":"台湾省"}
  4322 +},
  4323 +{"type":"Feature",
  4324 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.3919983,22.0488815],[113.3998718,22.0434761],[113.3958817,22.0379009],[113.390213,22.0330906],[113.3889313,22.0273952],[113.3903885,22.0220413],[113.3929062,22.0182514],[113.4020233,22.017849],[113.4060669,22.0151405],[113.4066391,22.0116673],[113.4056625,22.0071068],[113.4007568,22.0077839],[113.3972473,22.0113888],[113.3914566,22.0091133],[113.389328,22.007309],[113.3880997,22.0062695],[113.3784637,22.0057716],[113.3708115,22.0010471],[113.3691635,21.9976692],[113.3689194,21.9930782],[113.363739,21.9930763],[113.3586731,21.9953671],[113.3637772,21.9988232],[113.3629608,22.0020809],[113.3535538,22.0013409],[113.3497162,22.0035782],[113.3456802,22.0115757],[113.3408127,22.0081081],[113.3365479,22.0066833],[113.3323593,22.0068665],[113.3284225,22.0070381],[113.3225327,22.0125828],[113.3185272,22.0067768],[113.3124466,22.0035896],[113.3067627,22.003149],[113.3008881,22.0043221],[113.2998123,22.0073605],[113.3007584,22.0114594],[113.2977829,22.0207901],[113.2975006,22.0251713],[113.3127365,22.0288792],[113.3233795,22.0392284],[113.324913,22.0457306],[113.3262177,22.0512962],[113.3218079,22.0666676],[113.3277893,22.0726185],[113.3366165,22.0763741],[113.3430328,22.0763245],[113.3490829,22.073761],[113.3544769,22.0732956],[113.3611374,22.0778351],[113.3696518,22.0802231],[113.373497,22.0878754],[113.3803711,22.0871143],[113.383728,22.0851269],[113.3798676,22.0772457],[113.3788605,22.0719986],[113.3918381,22.0698204],[113.396553,22.070303],[113.3992691,22.0752449],[113.4029007,22.0785351],[113.4086533,22.080122],[113.4154968,22.0786724],[113.4115982,22.074934],[113.4141235,22.0711403],[113.4180069,22.0700493],[113.4012833,22.0613556],[113.3934631,22.0531883],[113.3919983,22.0488815]]]]},
  4325 +"properties":{
  4326 +"gid":721,
  4327 +"name":"广东省"}
  4328 +},
  4329 +{"type":"Feature",
  4330 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.4399796,22.0871162],[113.4399872,22.0829849],[113.4335098,22.0734386],[113.4308777,22.0705853],[113.4276733,22.0705147],[113.4259033,22.0742722],[113.4270096,22.0806408],[113.4319305,22.0845299],[113.4399796,22.0871162]]]]},
  4331 +"properties":{
  4332 +"gid":722,
  4333 +"name":"广东省"}
  4334 +},
  4335 +{"type":"Feature",
  4336 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.9782333,22.055748],[113.9738464,22.0566673],[113.9699631,22.0619202],[113.9689178,22.0649586],[113.9695587,22.0674477],[113.9721222,22.0689201],[113.9755707,22.0687389],[113.9806519,22.0629654],[113.9826279,22.0589581],[113.9824829,22.0564423],[113.9782333,22.055748]]]]},
  4337 +"properties":{
  4338 +"gid":723,
  4339 +"name":"广东省"}
  4340 +},
  4341 +{"type":"Feature",
  4342 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.2286682,22.0221653],[114.2244263,22.0228844],[114.2266235,22.0282745],[114.2393036,22.0355377],[114.2547836,22.0413208],[114.2662811,22.0478363],[114.2732697,22.0509224],[114.2845078,22.0530548],[114.3016891,22.0547733],[114.302269,22.0577888],[114.3005371,22.0625381],[114.3089828,22.0661488],[114.31633,22.0671787],[114.3234329,22.0635986],[114.3208771,22.0604916],[114.3123398,22.0541172],[114.3034592,22.0464592],[114.3025665,22.0428581],[114.2913437,22.0407257],[114.2814636,22.036129],[114.2707214,22.0340176],[114.2611465,22.0331116],[114.2514114,22.0305862],[114.2388,22.0265465],[114.2286682,22.0221653]]]]},
  4343 +"properties":{
  4344 +"gid":724,
  4345 +"name":"广东省"}
  4346 +},
  4347 +{"type":"Feature",
  4348 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.9406204,22.0384445],[113.9292297,22.0381241],[113.9233627,22.0349884],[113.9191895,22.0354347],[113.915863,22.0415764],[113.9166489,22.0504856],[113.9180298,22.0529366],[113.9217834,22.0536594],[113.9349594,22.0470028],[113.9407272,22.0402737],[113.9406204,22.0384445]]]]},
  4349 +"properties":{
  4350 +"gid":725,
  4351 +"name":"广东省"}
  4352 +},
  4353 +{"type":"Feature",
  4354 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.9957199,22.0387611],[113.9940491,22.0397682],[113.9935074,22.0430088],[113.9944,22.0454865],[113.9900665,22.0473213],[113.9886932,22.0490017],[113.9885712,22.0510731],[113.9911194,22.0523148],[113.9957809,22.0518398],[113.9991074,22.0498276],[113.9986115,22.0415936],[113.9957199,22.0387611]]]]},
  4355 +"properties":{
  4356 +"gid":726,
  4357 +"name":"广东省"}
  4358 +},
  4359 +{"type":"Feature",
  4360 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.0170593,22.0425835],[114.0148163,22.0431213],[114.0140305,22.0453262],[114.0148163,22.0477371],[114.0178833,22.0489235],[114.0209885,22.0479698],[114.0213928,22.0455399],[114.019989,22.0430584],[114.0170593,22.0425835]]]]},
  4361 +"properties":{
  4362 +"gid":727,
  4363 +"name":"广东省"}
  4364 +},
  4365 +{"type":"Feature",
  4366 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.6624985,22.0259304],[113.6644897,22.0345497],[113.6611862,22.0413723],[113.6616364,22.0447903],[113.6642532,22.0471821],[113.6680222,22.044239],[113.6695633,22.0326862],[113.6686401,22.02952],[113.6624985,22.0259304]]]]},
  4367 +"properties":{
  4368 +"gid":728,
  4369 +"name":"广东省"}
  4370 +},
  4371 +{"type":"Feature",
  4372 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.9082565,22.0344009],[113.9038315,22.0346298],[113.9041214,22.0394344],[113.9078293,22.043602],[113.9103622,22.0446167],[113.9122925,22.043829],[113.9130096,22.0394287],[113.9116135,22.0367489],[113.9082565,22.0344009]]]]},
  4373 +"properties":{
  4374 +"gid":729,
  4375 +"name":"广东省"}
  4376 +},
  4377 +{"type":"Feature",
  4378 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.4264603,22.0322552],[113.4314728,22.0336151],[113.4376602,22.0337677],[113.4384537,22.0302868],[113.4358673,22.0285778],[113.432663,22.0285072],[113.4275665,22.0301361],[113.4264603,22.0322552]]]]},
  4379 +"properties":{
  4380 +"gid":730,
  4381 +"name":"广东省"}
  4382 +},
  4383 +{"type":"Feature",
  4384 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.7107773,22.0239334],[113.7169113,22.0231628],[113.7226334,22.0237885],[113.7265396,22.0231304],[113.727417,22.0212498],[113.7189865,22.0125008],[113.7124329,22.0100822],[113.7055969,22.0113487],[113.7012863,22.0095024],[113.6991882,22.0116749],[113.6997223,22.0164661],[113.6977234,22.0202408],[113.6918793,22.025816],[113.6937866,22.0289307],[113.7078171,22.0323467],[113.7144928,22.0322361],[113.7200394,22.030117],[113.7107773,22.0239334]]]]},
  4385 +"properties":{
  4386 +"gid":731,
  4387 +"name":"广东省"}
  4388 +},
  4389 +{"type":"Feature",
  4390 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.2193985,22.0111504],[114.2221832,22.009903],[114.2216263,22.006197],[114.2193832,22.002182],[114.2139587,21.9975586],[114.2078934,21.9958935],[114.2009964,21.9955692],[114.1948013,21.9959679],[114.1870728,21.9930744],[114.1819382,21.9921436],[114.1783524,21.994503],[114.1772385,21.9969807],[114.1776581,22.0027485],[114.1811829,22.0107327],[114.1881638,22.0138206],[114.2002335,22.014389],[114.2121964,22.0119629],[114.2193985,22.0111504]]]]},
  4391 +"properties":{
  4392 +"gid":732,
  4393 +"name":"广东省"}
  4394 +},
  4395 +{"type":"Feature",
  4396 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.8281479,21.9878445],[113.8209534,21.9912014],[113.8179932,21.9996147],[113.8191528,22.0105705],[113.8218002,22.0136471],[113.8267136,22.0007706],[113.8300934,21.9955463],[113.8326187,21.996563],[113.8349762,22.0028687],[113.8382187,22.0033875],[113.8399811,21.999855],[113.8359604,21.9904232],[113.8333664,21.988493],[113.8281479,21.9878445]]]]},
  4397 +"properties":{
  4398 +"gid":733,
  4399 +"name":"广东省"}
  4400 +},
  4401 +{"type":"Feature",
  4402 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.8130112,22.0030842],[113.8126373,22.0010395],[113.8095627,21.9991322],[113.8063812,21.9995251],[113.802002,22.0006695],[113.7978134,22.0047874],[113.7976837,22.0068588],[113.8034363,22.0081692],[113.8130112,22.0030842]]]]},
  4403 +"properties":{
  4404 +"gid":734,
  4405 +"name":"广东省"}
  4406 +},
  4407 +{"type":"Feature",
  4408 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.7638092,21.9936848],[113.7674713,22.0012989],[113.7728195,21.999876],[113.7743378,21.996357],[113.7748871,21.9892139],[113.7729111,21.9849548],[113.772583,21.9792366],[113.7706985,21.9768085],[113.7672119,21.9762993],[113.7646332,21.9743671],[113.7628403,21.9650497],[113.7607269,21.962862],[113.7578506,21.964159],[113.7558136,21.9672451],[113.7546463,21.9725838],[113.7525864,21.9754429],[113.7451401,21.9746761],[113.7454987,21.9806252],[113.7372131,21.9906883],[113.738121,21.9936237],[113.7420197,21.9968662],[113.7461624,21.995966],[113.7558899,21.9975338],[113.7593079,21.9968987],[113.760437,21.9952335],[113.7638092,21.9936848]]]]},
  4409 +"properties":{
  4410 +"gid":735,
  4411 +"name":"广东省"}
  4412 +},
  4413 +{"type":"Feature",
  4414 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.1484833,21.9813614],[114.1464996,21.9814987],[114.1434174,21.9836521],[114.1226807,21.9840469],[114.1201019,21.9859943],[114.1224365,21.9884052],[114.1299286,21.9912891],[114.1353073,21.9922352],[114.1412735,21.9913692],[114.1438675,21.9935608],[114.1469727,22.0001469],[114.1516571,21.9955387],[114.1534271,21.9947033],[114.1564026,21.9943848],[114.165947,21.9960861],[114.159523,21.9869442],[114.155899,21.9856224],[114.1534195,21.9857349],[114.1484833,21.9813614]]]]},
  4415 +"properties":{
  4416 +"gid":736,
  4417 +"name":"广东省"}
  4418 +},
  4419 +{"type":"Feature",
  4420 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.7941971,21.9846592],[113.7937775,21.982769],[113.7884293,21.9815235],[113.7876511,21.9822693],[113.7884293,21.9840164],[113.7913437,21.9851303],[113.7941971,21.9846592]]]]},
  4421 +"properties":{
  4422 +"gid":737,
  4423 +"name":"广东省"}
  4424 +},
  4425 +{"type":"Feature",
  4426 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.2864532,21.9755344],[113.295723,21.9821987],[113.2994232,21.9822483],[113.3017502,21.9798412],[113.3015976,21.9770966],[113.2996826,21.9737473],[113.291832,21.9702263],[113.286293,21.9725609],[113.2864532,21.9755344]]]]},
  4427 +"properties":{
  4428 +"gid":738,
  4429 +"name":"广东省"}
  4430 +},
  4431 +{"type":"Feature",
  4432 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.1208267,21.9637222],[114.1195068,21.9652691],[114.1251907,21.9696789],[114.1336517,21.9728413],[114.1413727,21.9715977],[114.1397934,21.9687634],[114.1208267,21.9637222]]]]},
  4433 +"properties":{
  4434 +"gid":739,
  4435 +"name":"广东省"}
  4436 +},
  4437 +{"type":"Feature",
  4438 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.685318,21.9451809],[113.6822281,21.9430428],[113.6775513,21.9432812],[113.6750183,21.9463921],[113.6816406,21.9623489],[113.6852264,21.9646912],[113.6901932,21.9648972],[113.6945572,21.9637566],[113.6956406,21.9611778],[113.6980667,21.9605942],[113.7020798,21.9615383],[113.7042007,21.9598236],[113.7017593,21.9477863],[113.7044067,21.9467335],[113.7049026,21.9423485],[113.7003326,21.944416],[113.6923065,21.9425297],[113.685318,21.9451809]]]]},
  4439 +"properties":{
  4440 +"gid":740,
  4441 +"name":"广东省"}
  4442 +},
  4443 +{"type":"Feature",
  4444 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.134697,21.9497719],[113.12957,21.9507046],[113.1257706,21.9534092],[113.1235275,21.9574146],[113.1234665,21.9608593],[113.1265335,21.96278],[113.1321106,21.9609089],[113.1339264,21.9580688],[113.134697,21.9497719]]]]},
  4445 +"properties":{
  4446 +"gid":741,
  4447 +"name":"广东省"}
  4448 +},
  4449 +{"type":"Feature",
  4450 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.1691895,21.9575386],[113.1692429,21.9538651],[113.1720428,21.946619],[113.1709137,21.944149],[113.1651917,21.9432735],[113.1579666,21.9466],[113.1585388,21.9568977],[113.1613388,21.9583702],[113.1691895,21.9575386]]]]},
  4451 +"properties":{
  4452 +"gid":742,
  4453 +"name":"广东省"}
  4454 +},
  4455 +{"type":"Feature",
  4456 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.7206268,21.9360008],[113.7137222,21.9361229],[113.7091064,21.9498978],[113.7097778,21.9528465],[113.7118835,21.9550343],[113.7156372,21.9559898],[113.7225723,21.9563255],[113.7332687,21.9534836],[113.7444077,21.9540596],[113.7457733,21.9521542],[113.7457733,21.9480228],[113.7503281,21.9457264],[113.7531128,21.9425983],[113.7534027,21.9391422],[113.7441025,21.9322758],[113.7356873,21.9237576],[113.7312164,21.923296],[113.7271118,21.924654],[113.714447,21.9234638],[113.7131271,21.9262867],[113.7206268,21.9360008]]]]},
  4457 +"properties":{
  4458 +"gid":743,
  4459 +"name":"广东省"}
  4460 +},
  4461 +{"type":"Feature",
  4462 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.2655411,21.8801804],[113.2540283,21.8816528],[113.2542038,21.8846283],[113.2561111,21.8879776],[113.2550507,21.8910103],[113.2494125,21.8917408],[113.2466431,21.8904991],[113.2447281,21.8873787],[113.2405014,21.8866653],[113.2357178,21.8894196],[113.2324371,21.8925591],[113.2325516,21.894619],[113.23806,21.8959599],[113.2363968,21.9015465],[113.2332306,21.9067459],[113.2249985,21.9050789],[113.2186127,21.9099731],[113.2167969,21.9130421],[113.2180481,21.917572],[113.2269135,21.9260941],[113.2304077,21.9312038],[113.2326736,21.9363728],[113.2320938,21.9393826],[113.2429504,21.9480362],[113.2465134,21.9499302],[113.2470627,21.9464626],[113.2460098,21.9410076],[113.2484131,21.939743],[113.2527313,21.9464188],[113.2553024,21.9483604],[113.2596207,21.9504471],[113.2725372,21.952116],[113.275177,21.9506111],[113.2760468,21.9487343],[113.2804337,21.9476051],[113.2820129,21.9450035],[113.2744827,21.9382553],[113.2821121,21.9378872],[113.2835922,21.9290962],[113.2922668,21.9254646],[113.2946091,21.9232845],[113.2944489,21.920311],[113.2915802,21.917696],[113.2866669,21.9181633],[113.2833099,21.9197025],[113.2820129,21.914259],[113.2773285,21.9098969],[113.2863007,21.9028072],[113.2880936,21.8995094],[113.2862167,21.8968468],[113.2735138,21.8947086],[113.2717133,21.8934193],[113.2721634,21.8881207],[113.2699585,21.8840961],[113.2655411,21.8801804]]]]},
  4463 +"properties":{
  4464 +"gid":744,
  4465 +"name":"广东省"}
  4466 +},
  4467 +{"type":"Feature",
  4468 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.4984131,21.9481335],[112.5018463,21.9429379],[112.500679,21.9393177],[112.4961472,21.9374504],[112.494751,21.9391193],[112.4950867,21.9409389],[112.4984131,21.9481335]]]]},
  4469 +"properties":{
  4470 +"gid":745,
  4471 +"name":"广东省"}
  4472 +},
  4473 +{"type":"Feature",
  4474 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.4745865,21.9427719],[112.4822006,21.9396648],[112.4792709,21.9354343],[112.4709473,21.9318962],[112.4674301,21.9306736],[112.4620285,21.9311371],[112.4633484,21.9329147],[112.4602432,21.934885],[112.4598465,21.936964],[112.4609299,21.9387531],[112.4647675,21.9413395],[112.4698486,21.9395142],[112.4706802,21.9413128],[112.4745865,21.9427719]]]]},
  4475 +"properties":{
  4476 +"gid":746,
  4477 +"name":"广东省"}
  4478 +},
  4479 +{"type":"Feature",
  4480 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.1213913,21.9008465],[113.1206131,21.9091434],[113.1248169,21.9137611],[113.133812,21.9202175],[113.1317215,21.9315586],[113.1406937,21.9375591],[113.1444168,21.9424286],[113.1480179,21.9406509],[113.1492462,21.9362335],[113.1539688,21.9323368],[113.1533813,21.9210835],[113.1518173,21.916193],[113.1443329,21.9131546],[113.1400223,21.9126301],[113.1213913,21.9008465]]]]},
  4481 +"properties":{
  4482 +"gid":747,
  4483 +"name":"广东省"}
  4484 +},
  4485 +{"type":"Feature",
  4486 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.0307236,21.8849049],[114.0319366,21.8895626],[114.0393906,21.8975105],[114.0422821,21.898798],[114.0527573,21.9055099],[114.0567017,21.9100685],[114.0585938,21.9115391],[114.0606308,21.9102573],[114.0581894,21.9009418],[114.0613708,21.9013252],[114.0703125,21.9001446],[114.0682068,21.897974],[114.0643692,21.8961792],[114.0546722,21.8931847],[114.0428772,21.8923874],[114.0420227,21.8856792],[114.0371933,21.8882065],[114.0307236,21.8849049]]]]},
  4487 +"properties":{
  4488 +"gid":748,
  4489 +"name":"广东省"}
  4490 +},
  4491 +{"type":"Feature",
  4492 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.4111328,21.9000759],[112.4089813,21.9015465],[112.4081802,21.9052505],[112.4100494,21.9087086],[112.4136429,21.9059315],[112.4149933,21.9031219],[112.4136124,21.9004288],[112.4111328,21.9000759]]]]},
  4493 +"properties":{
  4494 +"gid":749,
  4495 +"name":"广东省"}
  4496 +},
  4497 +{"type":"Feature",
  4498 +"geometry":{"type":"MultiPolygon","coordinates":[[[[108.6043625,21.8910275],[108.6101379,21.888586],[108.6195831,21.8828049],[108.6200638,21.8780022],[108.6167679,21.872963],[108.6009521,21.8651638],[108.5940475,21.8559093],[108.5889816,21.8457699],[108.5845413,21.8460999],[108.5857697,21.8514423],[108.5946884,21.8662891],[108.5952911,21.8718815],[108.5914536,21.871994],[108.5882187,21.8667316],[108.5836182,21.8635406],[108.5710526,21.8758106],[108.5742569,21.8777084],[108.5887222,21.8808117],[108.6035767,21.8906879],[108.6043625,21.8910275]]]]},
  4499 +"properties":{
  4500 +"gid":750,
  4501 +"name":"广西壮族自治区"}
  4502 +},
  4503 +{"type":"Feature",
  4504 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.0171738,21.8442707],[113.0155334,21.845953],[113.0140305,21.8591022],[113.0113373,21.8640461],[113.0061264,21.868187],[113.003418,21.8726749],[113.0052872,21.8753395],[113.0157928,21.8778324],[113.0181427,21.8802452],[113.0187683,21.88274],[113.0223389,21.8848667],[113.0292664,21.8854599],[113.040741,21.8830853],[113.0445099,21.8753376],[113.0463562,21.868597],[113.0459518,21.8610458],[113.0442505,21.8569965],[113.0402069,21.8553505],[113.0313416,21.8555374],[113.0296326,21.8584824],[113.0212021,21.8459167],[113.0171738,21.8442707]]]]},
  4505 +"properties":{
  4506 +"gid":751,
  4507 +"name":"广东省"}
  4508 +},
  4509 +{"type":"Feature",
  4510 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.1492767,21.8653355],[113.1547089,21.8698959],[113.1575394,21.8764133],[113.1681671,21.8768253],[113.1705399,21.8751068],[113.1706467,21.8682175],[113.1728897,21.8642101],[113.1757812,21.8629246],[113.1800766,21.8647842],[113.1886826,21.8730927],[113.1924973,21.8752041],[113.1998901,21.8750782],[113.2012482,21.8729496],[113.1955719,21.8684025],[113.1940384,21.8629684],[113.1931686,21.8517685],[113.1914902,21.8481789],[113.1819687,21.8500099],[113.1784363,21.8485737],[113.171402,21.8551044],[113.1657791,21.85606],[113.1580963,21.8552799],[113.1537933,21.8531914],[113.1493378,21.8485851],[113.1438599,21.8387508],[113.1386108,21.8373947],[113.1355209,21.8396053],[113.1326828,21.8461647],[113.1314163,21.8547134],[113.1333771,21.876646],[113.1375427,21.8759899],[113.141098,21.8735256],[113.1492767,21.8653355]]]]},
  4511 +"properties":{
  4512 +"gid":752,
  4513 +"name":"广东省"}
  4514 +},
  4515 +{"type":"Feature",
  4516 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.0053329,21.8537846],[114.0041428,21.8574066],[114.0066071,21.8618946],[114.0053864,21.8703461],[114.0147171,21.8756256],[114.0230865,21.8757992],[114.0256424,21.8750935],[114.025528,21.8717766],[114.0151062,21.868515],[114.0125504,21.8658619],[114.0107269,21.8630142],[114.0103836,21.8604679],[114.0086594,21.8560162],[114.0053329,21.8537846]]]]},
  4517 +"properties":{
  4518 +"gid":753,
  4519 +"name":"广东省"}
  4520 +},
  4521 +{"type":"Feature",
  4522 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.9805984,21.8666821],[113.9818726,21.8677864],[113.9838409,21.8677177],[113.9854889,21.8658199],[113.9846268,21.8628616],[113.9826813,21.86339],[113.9805984,21.8666821]]]]},
  4523 +"properties":{
  4524 +"gid":754,
  4525 +"name":"广东省"}
  4526 +},
  4527 +{"type":"Feature",
  4528 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.0110626,21.8432522],[114.0112991,21.8441925],[114.0122528,21.8447952],[114.0138168,21.8443832],[114.0144119,21.8429604],[114.01371,21.8417873],[114.0124969,21.8414803],[114.0112305,21.8420029],[114.0110626,21.8432522]]]]},
  4529 +"properties":{
  4530 +"gid":755,
  4531 +"name":"广东省"}
  4532 +},
  4533 +{"type":"Feature",
  4534 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.976738,21.8323364],[113.9762268,21.8318939],[113.9749832,21.8314781],[113.9729996,21.8313179],[113.9717484,21.8309021],[113.9697876,21.8309708],[113.9690628,21.8314552],[113.9669495,21.8340588],[113.9672928,21.8363457],[113.9710693,21.8382816],[113.9751816,21.8365288],[113.9768372,21.8348618],[113.9770584,21.8341637],[113.976738,21.8323364]]]]},
  4535 +"properties":{
  4536 +"gid":756,
  4537 +"name":"广东省"}
  4538 +},
  4539 +{"type":"Feature",
  4540 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.0296936,21.8343029],[113.0304031,21.834465],[113.0313797,21.8349304],[113.0332336,21.8350372],[113.0324936,21.8331108],[113.0315323,21.8327541],[113.0305023,21.8329411],[113.0298309,21.83321],[113.0294189,21.8337822],[113.0296936,21.8343029]]]]},
  4541 +"properties":{
  4542 +"gid":757,
  4543 +"name":"广东省"}
  4544 +},
  4545 +{"type":"Feature",
  4546 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.9628677,21.8305244],[113.9643097,21.8295536],[113.9646988,21.8270111],[113.9660873,21.824894],[113.9645462,21.8235683],[113.9623566,21.8241062],[113.9619217,21.8254986],[113.9615784,21.8291893],[113.9628677,21.8305244]]]]},
  4547 +"properties":{
  4548 +"gid":758,
  4549 +"name":"广东省"}
  4550 +},
  4551 +{"type":"Feature",
  4552 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.9993896,21.8260212],[113.9970093,21.8219662],[113.997673,21.8201046],[113.9947128,21.8197498],[113.9938736,21.8236866],[113.9944992,21.8268833],[113.997467,21.8272381],[113.9993896,21.8260212]]]]},
  4553 +"properties":{
  4554 +"gid":759,
  4555 +"name":"广东省"}
  4556 +},
  4557 +{"type":"Feature",
  4558 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.9789505,21.8200741],[113.9776077,21.8186836],[113.9739685,21.8186398],[113.9727631,21.8191433],[113.9728165,21.8209801],[113.9738464,21.8218632],[113.9753571,21.8227291],[113.9785233,21.8214684],[113.9789505,21.8200741]]]]},
  4559 +"properties":{
  4560 +"gid":760,
  4561 +"name":"广东省"}
  4562 +},
  4563 +{"type":"Feature",
  4564 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.9588928,21.8188705],[113.9581528,21.8175869],[113.9564972,21.8172245],[113.955513,21.8192863],[113.9555969,21.8213539],[113.9573669,21.8226719],[113.9583511,21.8224068],[113.9582825,21.8207989],[113.9588928,21.8188705]]]]},
  4565 +"properties":{
  4566 +"gid":761,
  4567 +"name":"广东省"}
  4568 +},
  4569 +{"type":"Feature",
  4570 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.9405212,21.8140659],[113.9382095,21.8116188],[113.9357224,21.8110161],[113.9332504,21.810873],[113.9313278,21.812088],[113.9319382,21.8150558],[113.9352036,21.8165512],[113.9383469,21.8152905],[113.9405212,21.8140659]]]]},
  4571 +"properties":{
  4572 +"gid":762,
  4573 +"name":"广东省"}
  4574 +},
  4575 +{"type":"Feature",
  4576 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.9707184,21.8054218],[113.9689636,21.8045635],[113.9677277,21.8046074],[113.9656677,21.8083572],[113.9652328,21.8097515],[113.9621277,21.8121605],[113.9619217,21.8133163],[113.9657135,21.8154812],[113.968689,21.8160667],[113.9696121,21.8146553],[113.970047,21.813261],[113.9700012,21.8121128],[113.9707184,21.8054218]]]]},
  4577 +"properties":{
  4578 +"gid":763,
  4579 +"name":"广东省"}
  4580 +},
  4581 +{"type":"Feature",
  4582 +"geometry":{"type":"MultiPolygon","coordinates":[[[[108.8379898,21.7765369],[108.8374481,21.7814541],[108.8355713,21.7843227],[108.8336563,21.7862606],[108.8305511,21.7896404],[108.8278732,21.7911396],[108.8259201,21.7923775],[108.8224869,21.7939034],[108.8208313,21.7960644],[108.8204727,21.7991104],[108.8212967,21.8014126],[108.8228302,21.8020554],[108.8255768,21.8019543],[108.8270416,21.8012009],[108.8290024,21.8001957],[108.8304367,21.798975],[108.8323669,21.797039],[108.8332901,21.795372],[108.8340225,21.794878],[108.8364868,21.7940865],[108.8389435,21.7930622],[108.8409119,21.7925243],[108.8418732,21.7913208],[108.8427582,21.7889557],[108.8433304,21.7847347],[108.8427429,21.7826576],[108.8426132,21.7796307],[108.8425522,21.7782326],[108.8412628,21.7771149],[108.841217,21.7761841],[108.8396912,21.7755394],[108.838707,21.7758102],[108.8379898,21.7765369]]]]},
  4583 +"properties":{
  4584 +"gid":764,
  4585 +"name":"广西壮族自治区"}
  4586 +},
  4587 +{"type":"Feature",
  4588 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.0199814,21.7996769],[113.0205994,21.8007622],[113.0214996,21.801178],[113.02285,21.8007488],[113.0234375,21.7995701],[113.02314,21.7981377],[113.0210266,21.7978153],[113.0200424,21.798378],[113.0199814,21.7996769]]]]},
  4589 +"properties":{
  4590 +"gid":765,
  4591 +"name":"广东省"}
  4592 +},
  4593 +{"type":"Feature",
  4594 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.7879181,21.6835308],[112.7729568,21.6834641],[112.7602768,21.685873],[112.7561569,21.6823883],[112.7485275,21.6825047],[112.7479935,21.6770229],[112.7440033,21.6712399],[112.7379684,21.6689892],[112.731987,21.6724701],[112.7271194,21.678196],[112.7235184,21.6799641],[112.7192078,21.6776333],[112.7127533,21.676548],[112.7109833,21.6805286],[112.7033234,21.6847725],[112.7022324,21.6873455],[112.7047806,21.6890659],[112.7127304,21.6903133],[112.7168884,21.6944847],[112.7165298,21.6970253],[112.7067108,21.7025127],[112.707077,21.7047901],[112.7157974,21.7112808],[112.7221222,21.7098484],[112.7185364,21.7166634],[112.7232285,21.7214985],[112.7386169,21.7283764],[112.7423019,21.7282104],[112.7463226,21.7250462],[112.7502365,21.724638],[112.7502289,21.7338161],[112.7527237,21.7343903],[112.757309,21.7325764],[112.7598267,21.7290211],[112.7584076,21.7206001],[112.7601929,21.7168484],[112.7624283,21.7174339],[112.7679672,21.7245235],[112.7729874,21.726366],[112.7688065,21.7311382],[112.7708969,21.7333374],[112.779747,21.7375259],[112.7850113,21.7439404],[112.7832413,21.7476902],[112.7722168,21.7488785],[112.7696075,21.7508316],[112.7691574,21.7563572],[112.7706833,21.761795],[112.7773666,21.7720432],[112.7799301,21.7737637],[112.7826614,21.7740993],[112.7806778,21.7645531],[112.7837906,21.7628059],[112.7874908,21.762867],[112.7920685,21.7608242],[112.8031693,21.7704124],[112.8109512,21.7684536],[112.8162994,21.7716503],[112.8207169,21.7714481],[112.8249893,21.7728596],[112.8316269,21.7773743],[112.8414078,21.7803669],[112.8483505,21.7811966],[112.8482819,21.7752361],[112.8525238,21.7715988],[112.8606873,21.7675552],[112.8633881,21.7674313],[112.8613815,21.7760105],[112.8651199,21.7767582],[112.8773727,21.7752781],[112.8727798,21.7725048],[112.8744812,21.7673798],[112.8733521,21.764679],[112.8760529,21.7551498],[112.8712769,21.7535324],[112.8668365,21.7535076],[112.8607178,21.7450714],[112.8508377,21.744606],[112.8457184,21.7409401],[112.8384933,21.7394352],[112.8325195,21.7429218],[112.8277512,21.7413044],[112.8232422,21.7353153],[112.8175888,21.7309856],[112.8162766,21.7202625],[112.814003,21.7144012],[112.8025131,21.701849],[112.8002472,21.6918583],[112.8003998,21.6854286],[112.8114471,21.6801071],[112.8092804,21.6717167],[112.8141327,21.6701202],[112.818573,21.6657867],[112.8172073,21.6585083],[112.8056793,21.6500874],[112.8006363,21.6337986],[112.79245,21.6279793],[112.7914963,21.6238918],[112.7940826,21.6214809],[112.7923584,21.6169701],[112.7996674,21.6109028],[112.7973404,21.604126],[112.7967224,21.5970421],[112.8066177,21.6025562],[112.8107529,21.6014519],[112.8090515,21.5973988],[112.8111191,21.589962],[112.8033066,21.5820599],[112.7884293,21.5797558],[112.7778091,21.5696869],[112.7720032,21.566967],[112.7697296,21.5705109],[112.7605896,21.5745964],[112.7623062,21.5791073],[112.7679672,21.5838966],[112.7732697,21.5909977],[112.7741928,21.5943966],[112.7700272,21.5950451],[112.7610092,21.5871944],[112.7547836,21.5858707],[112.7494812,21.5879459],[112.7512894,21.603693],[112.7648468,21.6134033],[112.7657013,21.6177597],[112.7557907,21.6145],[112.7510834,21.6186142],[112.7487564,21.6164246],[112.747261,21.6114464],[112.7443237,21.6069908],[112.7385864,21.6056442],[112.7331772,21.6056595],[112.7310486,21.6073608],[112.7295227,21.6156883],[112.7308731,21.6181507],[112.7365036,21.6220264],[112.7389297,21.626276],[112.7393799,21.6301556],[112.745697,21.6333103],[112.7442932,21.6393375],[112.7470932,21.6410465],[112.7492828,21.6450787],[112.7491837,21.6526527],[112.751297,21.6555386],[112.7618713,21.6552906],[112.764183,21.6476154],[112.7674484,21.6488438],[112.7699966,21.6551514],[112.7757721,21.6480064],[112.7784119,21.6513271],[112.7764206,21.6603642],[112.7780914,21.6639595],[112.7841187,21.6707973],[112.7874832,21.6786747],[112.7879181,21.6835308]]]]},
  4595 +"properties":{
  4596 +"gid":766,
  4597 +"name":"广东省"}
  4598 +},
  4599 +{"type":"Feature",
  4600 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.0217667,21.7788277],[113.0225372,21.7797394],[113.0237579,21.7798061],[113.0248566,21.7785873],[113.0245514,21.7769928],[113.023407,21.7759495],[113.0220566,21.7763767],[113.0211563,21.7779026],[113.0217667,21.7788277]]]]},
  4601 +"properties":{
  4602 +"gid":767,
  4603 +"name":"广东省"}
  4604 +},
  4605 +{"type":"Feature",
  4606 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.0379791,21.7770042],[112.0501022,21.7728386],[112.0512085,21.7702713],[112.0491028,21.7671452],[112.0411224,21.7654076],[112.0391769,21.7659454],[112.0375366,21.7676182],[112.0400467,21.7686634],[112.0416336,21.7708912],[112.0395126,21.7730408],[112.0379791,21.7770042]]]]},
  4607 +"properties":{
  4608 +"gid":768,
  4609 +"name":"广东省"}
  4610 +},
  4611 +{"type":"Feature",
  4612 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.8159637,21.7656155],[120.8189468,21.7653904],[120.8186188,21.7635193],[120.8177032,21.7627525],[120.8160095,21.7623882],[120.8151627,21.7634735],[120.815567,21.7649498],[120.8159637,21.7656155]]]]},
  4613 +"properties":{
  4614 +"gid":769,
  4615 +"name":"台湾省"}
  4616 +},
  4617 +{"type":"Feature",
  4618 +"geometry":{"type":"MultiPolygon","coordinates":[[[[120.8155289,21.7568111],[120.8174286,21.7576542],[120.8189468,21.7573147],[120.8198471,21.7555389],[120.8184814,21.7542763],[120.8159866,21.7545376],[120.8149033,21.7556057],[120.8155289,21.7568111]]]]},
  4619 +"properties":{
  4620 +"gid":770,
  4621 +"name":"台湾省"}
  4622 +},
  4623 +{"type":"Feature",
  4624 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.8023224,21.7476463],[111.8081131,21.7399006],[111.8141479,21.7371407],[111.8142776,21.7346115],[111.8048782,21.7338352],[111.8018036,21.7309761],[111.7990494,21.7301674],[111.7976379,21.7371025],[111.79776,21.7451248],[111.7998428,21.7475662],[111.8023224,21.7476463]]]]},
  4625 +"properties":{
  4626 +"gid":771,
  4627 +"name":"广东省"}
  4628 +},
  4629 +{"type":"Feature",
  4630 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.5795364,21.6546516],[112.5738373,21.6572781],[112.5671234,21.6557388],[112.562088,21.6584835],[112.5573883,21.6628208],[112.5551376,21.6670475],[112.5743179,21.6712494],[112.5816803,21.6755123],[112.5871735,21.6768761],[112.5922623,21.6755028],[112.5953217,21.6774311],[112.5925674,21.6814537],[112.5865936,21.6849289],[112.5840302,21.6877956],[112.5839462,21.6910114],[112.5880585,21.6942692],[112.6007309,21.7012787],[112.6083832,21.7016277],[112.6121521,21.7030659],[112.6145172,21.7059441],[112.6177521,21.7064877],[112.6220398,21.6989574],[112.6247635,21.6990662],[112.6300278,21.7105312],[112.6389771,21.7167854],[112.6439133,21.7170238],[112.6510773,21.7079868],[112.6550064,21.7126293],[112.6559219,21.716753],[112.6590729,21.714325],[112.6596603,21.7119617],[112.6632385,21.7084904],[112.6654434,21.7022209],[112.6665115,21.6967449],[112.6639404,21.6899776],[112.6602173,21.684639],[112.65242,21.6815453],[112.6504669,21.6772747],[112.6443634,21.6780052],[112.6389389,21.6744289],[112.6334763,21.6689835],[112.6312485,21.6612396],[112.6309967,21.6572704],[112.6352692,21.6545544],[112.6388626,21.6479702],[112.6475372,21.6489601],[112.649147,21.6468239],[112.659668,21.6454353],[112.6592026,21.6413269],[112.6532669,21.6312695],[112.6427994,21.6335716],[112.637619,21.6333447],[112.6248627,21.6247349],[112.6183929,21.6186008],[112.6156464,21.6084003],[112.6120529,21.6101646],[112.6082993,21.6137733],[112.6041107,21.6137295],[112.6003113,21.6116028],[112.596611,21.60672],[112.5954666,21.6083775],[112.5951233,21.615963],[112.5935135,21.6180992],[112.5774765,21.6176605],[112.5693436,21.6221504],[112.5649033,21.6218872],[112.5460281,21.6140003],[112.5429535,21.6113834],[112.5415573,21.6084633],[112.5421295,21.6049976],[112.5444031,21.6014557],[112.558197,21.5967197],[112.5592804,21.5939178],[112.5582199,21.5923595],[112.5539932,21.5916271],[112.5503464,21.5924778],[112.5465469,21.5903511],[112.5428314,21.5946445],[112.5401764,21.5959072],[112.5330963,21.5920887],[112.5296707,21.5876522],[112.5265274,21.588707],[112.5228271,21.5934563],[112.5213928,21.5990257],[112.5274963,21.6031151],[112.5212173,21.6054554],[112.5211182,21.6082134],[112.5274429,21.6113777],[112.5319138,21.6123276],[112.5291214,21.6154327],[112.5252533,21.6167488],[112.526413,21.6203671],[112.534462,21.6285019],[112.5339584,21.633112],[112.5359116,21.6376152],[112.5394974,21.6404381],[112.5443192,21.6335754],[112.5516968,21.6382961],[112.5603104,21.6381454],[112.564537,21.6439228],[112.5718002,21.6461277],[112.5795364,21.6546516]]]]},
  4631 +"properties":{
  4632 +"gid":772,
  4633 +"name":"广东省"}
  4634 +},
  4635 +{"type":"Feature",
  4636 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.6834869,21.7167416],[112.684639,21.7138271],[112.6919174,21.7116661],[112.6929321,21.7074909],[112.6912918,21.7043533],[112.6810532,21.7015991],[112.6752167,21.6984196],[112.6732635,21.6987381],[112.67099,21.707098],[112.6719131,21.7107258],[112.6804428,21.7135563],[112.6834869,21.7167416]]]]},
  4637 +"properties":{
  4638 +"gid":773,
  4639 +"name":"广东省"}
  4640 +},
  4641 +{"type":"Feature",
  4642 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.7927475,21.6747208],[111.7903366,21.6759624],[111.7897263,21.6787395],[111.7885132,21.6950703],[111.7890091,21.7005558],[111.7905884,21.7027855],[111.7940674,21.7035675],[111.7990265,21.6990128],[111.8075104,21.6959267],[111.8083572,21.69314],[111.7927475,21.6747208]]]]},
  4643 +"properties":{
  4644 +"gid":774,
  4645 +"name":"广东省"}
  4646 +},
  4647 +{"type":"Feature",
  4648 +"geometry":{"type":"MultiPolygon","coordinates":[[[[108.5616302,21.6962605],[108.5629883,21.6967182],[108.5632172,21.6909771],[108.5596313,21.6861572],[108.5607376,21.6851234],[108.5667725,21.684082],[108.5681229,21.6804047],[108.5661392,21.67593],[108.5620728,21.6731796],[108.5613174,21.668932],[108.5625381,21.6638775],[108.5594635,21.6626186],[108.5531769,21.6650391],[108.5465469,21.6702156],[108.5431137,21.6766491],[108.543869,21.6859493],[108.54142,21.6908894],[108.5429001,21.6924953],[108.5513992,21.6921406],[108.5570679,21.6930504],[108.5616302,21.6962605]]]]},
  4649 +"properties":{
  4650 +"gid":775,
  4651 +"name":"广西壮族自治区"}
  4652 +},
  4653 +{"type":"Feature",
  4654 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.4527512,21.6534042],[112.4474564,21.6559258],[112.4417725,21.6535435],[112.4392624,21.6584892],[112.436821,21.6598301],[112.4331436,21.6599884],[112.4345169,21.6679573],[112.4354172,21.6711292],[112.4514465,21.6812172],[112.4536133,21.6900692],[112.4605179,21.6902275],[112.4608688,21.6874599],[112.4580536,21.6852875],[112.4589386,21.6834145],[112.4633408,21.6827641],[112.4651718,21.6799316],[112.4636002,21.6683006],[112.4590683,21.6664333],[112.4594727,21.6597652],[112.4582977,21.6559143],[112.4527512,21.6534042]]]]},
  4655 +"properties":{
  4656 +"gid":776,
  4657 +"name":"广东省"}
  4658 +},
  4659 +{"type":"Feature",
  4660 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.1093903,21.6401958],[112.1089325,21.6459484],[112.1100235,21.6479683],[112.1226273,21.6492805],[112.1283875,21.6460629],[112.12677,21.6431465],[112.1244812,21.6416359],[112.114563,21.6399822],[112.1093903,21.6401958]]]]},
  4661 +"properties":{
  4662 +"gid":777,
  4663 +"name":"广东省"}
  4664 +},
  4665 +{"type":"Feature",
  4666 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.6792221,21.6333199],[112.6762772,21.6334515],[112.6736526,21.6349468],[112.6718369,21.6428261],[112.6725006,21.6460094],[112.6761093,21.6444721],[112.6781693,21.6413956],[112.6792221,21.6333199]]]]},
  4667 +"properties":{
  4668 +"gid":778,
  4669 +"name":"广东省"}
  4670 +},
  4671 +{"type":"Feature",
  4672 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.6696167,21.6142521],[112.6646271,21.6128693],[112.6604538,21.6130562],[112.6578217,21.6145496],[112.6562805,21.6180592],[112.6568985,21.620554],[112.6610336,21.6242714],[112.6644897,21.6245747],[112.6661606,21.6235828],[112.6677704,21.6166267],[112.6696167,21.6142521]]]]},
  4673 +"properties":{
  4674 +"gid":779,
  4675 +"name":"广东省"}
  4676 +},
  4677 +{"type":"Feature",
  4678 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.8752975,21.6026211],[112.8704529,21.5994034],[112.8674927,21.5993099],[112.8646469,21.6015053],[112.861763,21.6071453],[112.8610229,21.6163559],[112.8725815,21.6162815],[112.8831177,21.6199265],[112.8985672,21.614397],[112.9013672,21.611515],[112.9011917,21.6080818],[112.8981171,21.6059284],[112.8953934,21.6007786],[112.8925476,21.5983849],[112.880188,21.5973492],[112.8768234,21.5988808],[112.8752975,21.6026211]]]]},
  4679 +"properties":{
  4680 +"gid":780,
  4681 +"name":"广东省"}
  4682 +},
  4683 +{"type":"Feature",
  4684 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.129921,21.6063175],[112.1311417,21.6113129],[112.1338196,21.6157894],[112.139328,21.6176262],[112.1410065,21.6118202],[112.1410065,21.6067753],[112.1383514,21.6075745],[112.129921,21.6063175]]]]},
  4685 +"properties":{
  4686 +"gid":781,
  4687 +"name":"广东省"}
  4688 +},
  4689 +{"type":"Feature",
  4690 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.6644897,21.6055336],[112.6597366,21.6041412],[112.6562271,21.5932865],[112.6484833,21.5956974],[112.6460037,21.6001663],[112.6465073,21.6100082],[112.6504974,21.6109772],[112.6604767,21.6089249],[112.6633911,21.6081066],[112.6644897,21.6055336]]]]},
  4691 +"properties":{
  4692 +"gid":782,
  4693 +"name":"广东省"}
  4694 +},
  4695 +{"type":"Feature",
  4696 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.5846481,21.5893574],[112.5819473,21.5897064],[112.5809631,21.5943375],[112.5753021,21.5943584],[112.5750122,21.5982704],[112.577507,21.6038952],[112.5819016,21.603014],[112.5852737,21.6063042],[112.5964584,21.6037445],[112.5995331,21.6013145],[112.5995331,21.5962677],[112.5973969,21.59338],[112.5894623,21.5921268],[112.5846481,21.5893574]]]]},
  4697 +"properties":{
  4698 +"gid":783,
  4699 +"name":"广东省"}
  4700 +},
  4701 +{"type":"Feature",
  4702 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.8125,21.5788879],[112.8126526,21.5770454],[112.8049622,21.5712032],[112.7944183,21.5673237],[112.7895966,21.5693798],[112.7880325,21.5722027],[112.7893829,21.5744362],[112.7924118,21.5759029],[112.8105927,21.5798931],[112.8125,21.5788879]]]]},
  4703 +"properties":{
  4704 +"gid":784,
  4705 +"name":"广东省"}
  4706 +},
  4707 +{"type":"Feature",
  4708 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.1859207,21.5633888],[112.1833801,21.5566139],[112.1867371,21.5548668],[112.1954575,21.5570259],[112.2003021,21.5554466],[112.2011414,21.5524311],[112.1970978,21.5503063],[112.184288,21.5499249],[112.1747437,21.5457363],[112.1726379,21.5481167],[112.1713867,21.5527573],[112.1723633,21.5577621],[112.1764679,21.5612602],[112.1859207,21.5633888]]]]},
  4709 +"properties":{
  4710 +"gid":785,
  4711 +"name":"广东省"}
  4712 +},
  4713 +{"type":"Feature",
  4714 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.1098709,21.5525589],[112.1055679,21.5552597],[112.1040497,21.5594521],[112.1047134,21.5628662],[112.1126175,21.5586376],[112.1137238,21.5560703],[112.1126022,21.5531349],[112.1098709,21.5525589]]]]},
  4715 +"properties":{
  4716 +"gid":786,
  4717 +"name":"广东省"}
  4718 +},
  4719 +{"type":"Feature",
  4720 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.6929626,21.5510426],[111.6902084,21.5545311],[111.6927872,21.5558338],[111.6966782,21.5552139],[111.6973038,21.5494137],[111.6929626,21.5510426]]]]},
  4721 +"properties":{
  4722 +"gid":787,
  4723 +"name":"广东省"}
  4724 +},
  4725 +{"type":"Feature",
  4726 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.6885071,21.5451927],[111.6902313,21.5433369],[111.687912,21.5407467],[111.6854324,21.5414066],[111.6841278,21.5436077],[111.6853333,21.5453968],[111.6885071,21.5451927]]]]},
  4727 +"properties":{
  4728 +"gid":788,
  4729 +"name":"广东省"}
  4730 +},
  4731 +{"type":"Feature",
  4732 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.0983582,21.5385056],[112.0996933,21.5408382],[112.1023483,21.5417309],[112.105957,21.5401363],[112.105629,21.5358524],[112.1014862,21.5345211],[112.0981903,21.5363636],[112.0982666,21.5374355],[112.0983582,21.5385056]]]]},
  4733 +"properties":{
  4734 +"gid":789,
  4735 +"name":"广东省"}
  4736 +},
  4737 +{"type":"Feature",
  4738 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.0955963,21.5260201],[112.094223,21.5255585],[112.0913162,21.5282516],[112.092308,21.5301075],[112.0961914,21.5298595],[112.0955963,21.5260201]]]]},
  4739 +"properties":{
  4740 +"gid":790,
  4741 +"name":"广东省"}
  4742 +},
  4743 +{"type":"Feature",
  4744 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.6371765,21.5100498],[111.6317673,21.5038357],[111.6272964,21.5028629],[111.625412,21.5045395],[111.6266479,21.5102272],[111.6287231,21.5124397],[111.6326599,21.5127468],[111.6371765,21.5100498]]]]},
  4745 +"properties":{
  4746 +"gid":791,
  4747 +"name":"广东省"}
  4748 +},
  4749 +{"type":"Feature",
  4750 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.0478973,21.489481],[111.0417404,21.489006],[111.0366135,21.4898739],[111.0333099,21.4934273],[111.0324631,21.4966679],[111.0352783,21.4995499],[111.0419235,21.499548],[111.0466232,21.4941101],[111.0478973,21.489481]]]]},
  4751 +"properties":{
  4752 +"gid":792,
  4753 +"name":"广东省"}
  4754 +},
  4755 +{"type":"Feature",
  4756 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.4661331,21.4844475],[111.4571228,21.4863892],[111.4561996,21.4880276],[111.456871,21.4921322],[111.4587173,21.4950428],[111.4611969,21.4956398],[111.4638672,21.4948502],[111.4663086,21.4885674],[111.4661331,21.4844475]]]]},
  4757 +"properties":{
  4758 +"gid":793,
  4759 +"name":"广东省"}
  4760 +},
  4761 +{"type":"Feature",
  4762 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.3501511,21.4740601],[112.351799,21.4755783],[112.3542099,21.4756126],[112.3557816,21.4734535],[112.3558502,21.4716072],[112.3537827,21.4703236],[112.3510208,21.4713383],[112.3503036,21.4732304],[112.3501511,21.4740601]]]]},
  4763 +"properties":{
  4764 +"gid":794,
  4765 +"name":"广东省"}
  4766 +},
  4767 +{"type":"Feature",
  4768 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.3547974,21.4641132],[112.3554077,21.466116],[112.358223,21.4657116],[112.35923,21.4648209],[112.3594971,21.4627552],[112.3588867,21.4605503],[112.3564835,21.460516],[112.3547592,21.460844],[112.3547974,21.4641132]]]]},
  4769 +"properties":{
  4770 +"gid":795,
  4771 +"name":"广东省"}
  4772 +},
  4773 +{"type":"Feature",
  4774 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.3786316,21.4507771],[111.3792419,21.4477749],[111.3746033,21.4424419],[111.3721008,21.4416161],[111.3667526,21.4429607],[111.3654327,21.4464493],[111.3692398,21.4495182],[111.3764496,21.4513168],[111.3786316,21.4507771]]]]},
  4775 +"properties":{
  4776 +"gid":796,
  4777 +"name":"广东省"}
  4778 +},
  4779 +{"type":"Feature",
  4780 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.1743164,21.3732338],[111.1707535,21.375885],[111.1698837,21.3786678],[111.1703262,21.3834667],[111.1734467,21.3879414],[111.1824493,21.3915176],[111.1865921,21.3906822],[111.1886673,21.3873978],[111.1891937,21.3823357],[111.188118,21.3800793],[111.1743164,21.3732338]]]]},
  4781 +"properties":{
  4782 +"gid":797,
  4783 +"name":"广东省"}
  4784 +},
  4785 +{"type":"Feature",
  4786 +"geometry":{"type":"MultiPolygon","coordinates":[[[[110.5252838,21.1588097],[110.5131073,21.1562729],[110.5087585,21.1580162],[110.5040436,21.1565609],[110.4974823,21.151495],[110.4917374,21.148695],[110.4838715,21.1480255],[110.4880524,21.1417046],[110.4864807,21.1390018],[110.4541168,21.1526279],[110.4510269,21.1554756],[110.452179,21.1600246],[110.4494629,21.1662998],[110.4437027,21.1694603],[110.4313965,21.1686974],[110.4283295,21.1720028],[110.4277802,21.1770649],[110.4307938,21.1788044],[110.4502335,21.1804905],[110.4567184,21.1837273],[110.4618073,21.1888409],[110.4681015,21.2001057],[110.4732666,21.2018833],[110.4788666,21.1993084],[110.4855728,21.2013912],[110.4904175,21.2065125],[110.4949265,21.2091198],[110.5002594,21.2073479],[110.510437,21.1971684],[110.5136871,21.1922512],[110.5100327,21.1859455],[110.5062027,21.181942],[110.5093765,21.181612],[110.526207,21.185894],[110.5282593,21.1881199],[110.5286026,21.1908607],[110.5352707,21.1920242],[110.5400238,21.1943951],[110.5602264,21.1971893],[110.5638504,21.1954708],[110.5719604,21.1826],[110.5770493,21.1808338],[110.5831909,21.1810951],[110.595108,21.1914883],[110.6013718,21.1951828],[110.6067734,21.1883621],[110.6158371,21.2080154],[110.6185226,21.2076988],[110.6212082,21.2007351],[110.6275101,21.2053452],[110.6300964,21.2089291],[110.6337891,21.2090397],[110.6338425,21.2039948],[110.6289062,21.1965885],[110.6135025,21.1849346],[110.6039276,21.1714878],[110.5922165,21.1468735],[110.5829773,21.1162186],[110.5753937,21.1031647],[110.5652466,21.0938606],[110.5569763,21.0893097],[110.5511169,21.0899563],[110.5441589,21.0871983],[110.5382614,21.0866966],[110.5302734,21.0892448],[110.5286484,21.0920467],[110.5282593,21.0948105],[110.5293427,21.0975266],[110.5355072,21.0987072],[110.5318069,21.1047859],[110.5302963,21.1167545],[110.5261765,21.1180325],[110.5195236,21.1170959],[110.5168991,21.1192436],[110.5172501,21.1219845],[110.5240479,21.133688],[110.5257263,21.1393661],[110.5243988,21.1430779],[110.5194473,21.1485062],[110.5255432,21.154274],[110.5252838,21.1588097]]]]},
  4787 +"properties":{
  4788 +"gid":798,
  4789 +"name":"广东省"}
  4790 +},
  4791 +{"type":"Feature",
  4792 +"geometry":{"type":"MultiPolygon","coordinates":[[[[110.5648499,21.2025452],[110.5776596,21.20397],[110.5805817,21.2034168],[110.5819931,21.2015381],[110.5819092,21.1994762],[110.5793228,21.1958923],[110.5773621,21.1959553],[110.5732574,21.197691],[110.5673828,21.1981087],[110.5656967,21.1990795],[110.5648499,21.2025452]]]]},
  4793 +"properties":{
  4794 +"gid":799,
  4795 +"name":"广东省"}
  4796 +},
  4797 +{"type":"Feature",
  4798 +"geometry":{"type":"MultiPolygon","coordinates":[[[[110.4161606,21.1540413],[110.4174728,21.1565208],[110.4222336,21.1591244],[110.4318619,21.1611176],[110.4347763,21.1605682],[110.4364471,21.1589108],[110.4373703,21.150629],[110.4338608,21.148447],[110.4233017,21.1480865],[110.4179688,21.1498566],[110.4161606,21.1540413]]]]},
  4799 +"properties":{
  4800 +"gid":800,
  4801 +"name":"广东省"}
  4802 +},
  4803 +{"type":"Feature",
  4804 +"geometry":{"type":"MultiPolygon","coordinates":[[[[110.4215317,21.092205],[110.3987808,21.1002464],[110.3919296,21.100687],[110.3900299,21.1023502],[110.3997269,21.1064053],[110.4145508,21.1093864],[110.417717,21.1088276],[110.4203491,21.1069126],[110.424881,21.0966835],[110.4240265,21.093502],[110.4215317,21.092205]]]]},
  4805 +"properties":{
  4806 +"gid":801,
  4807 +"name":"广东省"}
  4808 +},
  4809 +{"type":"Feature",
  4810 +"geometry":{"type":"MultiPolygon","coordinates":[[[[110.2861633,21.0953369],[110.2879181,21.0920658],[110.2850037,21.0893841],[110.2795334,21.0872555],[110.2776031,21.0880032],[110.2792435,21.0929966],[110.2822571,21.0951977],[110.2861633,21.0953369]]]]},
  4811 +"properties":{
  4812 +"gid":802,
  4813 +"name":"广东省"}
  4814 +},
  4815 +{"type":"Feature",
  4816 +"geometry":{"type":"MultiPolygon","coordinates":[[[[109.1322327,21.0660629],[109.1406403,21.0601368],[109.1408081,21.0571537],[109.1380005,21.0439243],[109.1340866,21.0353069],[109.1300735,21.0312748],[109.1256332,21.0210629],[109.1223984,21.0195332],[109.1175613,21.0217075],[109.1079483,21.0288067],[109.1033096,21.0293713],[109.0991211,21.0283203],[109.0946426,21.0254459],[109.0943222,21.0229301],[109.1015625,21.0099297],[109.0998001,21.0079079],[109.0956421,21.0082321],[109.0905609,21.0104122],[109.0809402,21.0172787],[109.0843277,21.024765],[109.084549,21.0332394],[109.0817032,21.045681],[109.0817871,21.0493469],[109.0850983,21.0536251],[109.0938034,21.0584679],[109.1026077,21.0672054],[109.1140213,21.072443],[109.1246033,21.0738029],[109.127739,21.0723553],[109.1322327,21.0660629]]]]},
  4817 +"properties":{
  4818 +"gid":803,
  4819 +"name":"广西壮族自治区"}
  4820 +},
  4821 +{"type":"Feature",
  4822 +"geometry":{"type":"MultiPolygon","coordinates":[[[[110.2426605,20.9638577],[110.2407227,20.9572678],[110.2232285,20.9543533],[110.2120667,20.9503307],[110.2052917,20.9454899],[110.2010727,20.9437809],[110.1976776,20.9447994],[110.1948395,20.9476357],[110.1925583,20.9525166],[110.1927032,20.9566402],[110.1940002,20.9588928],[110.2033386,20.9597607],[110.21698,20.9577503],[110.2251129,20.9588833],[110.2392273,20.9639606],[110.2426605,20.9638577]]]]},
  4823 +"properties":{
  4824 +"gid":804,
  4825 +"name":"广东省"}
  4826 +},
  4827 +{"type":"Feature",
  4828 +"geometry":{"type":"MultiPolygon","coordinates":[[[[110.5900116,20.9335442],[110.5925064,20.9341774],[110.5929337,20.9387474],[110.5870895,20.9398537],[110.5835266,20.9429493],[110.5860901,20.9458466],[110.5892563,20.9455147],[110.5954819,20.9480667],[110.6003723,20.9479084],[110.6034622,20.9455166],[110.6062317,20.9408417],[110.6260529,20.9404316],[110.6301193,20.9380054],[110.6333923,20.933773],[110.6344299,20.9286957],[110.6320572,20.9179974],[110.622673,20.9091301],[110.6242371,20.8985348],[110.6233597,20.8946648],[110.6164627,20.8866348],[110.6082382,20.8830032],[110.6116333,20.8755589],[110.6110229,20.872139],[110.6046371,20.8654671],[110.599472,20.8644867],[110.5881119,20.8682938],[110.5829773,20.8684578],[110.5790634,20.8683548],[110.5686722,20.8654785],[110.5626831,20.8688793],[110.5615387,20.8712082],[110.5641479,20.8754826],[110.5629501,20.8828545],[110.558197,20.8802567],[110.5568466,20.8835087],[110.5557785,20.8940887],[110.5541763,20.8971214],[110.5506134,20.9002151],[110.5497131,20.9023075],[110.5503082,20.9052677],[110.5566025,20.9098816],[110.5600891,20.9049549],[110.5643005,20.9128456],[110.5654678,20.9178505],[110.5680466,20.9214363],[110.5737534,20.923317],[110.5793381,20.9355183],[110.5815964,20.9370499],[110.5861435,20.9339237],[110.5900116,20.9335442]]]]},
  4829 +"properties":{
  4830 +"gid":805,
  4831 +"name":"广东省"}
  4832 +},
  4833 +{"type":"Feature",
  4834 +"geometry":{"type":"MultiPolygon","coordinates":[[[[109.2133331,20.8970757],[109.2108917,20.8975925],[109.205719,20.9050484],[109.2048111,20.9078197],[109.2052765,20.9158306],[109.2129822,20.9112949],[109.220787,20.9101925],[109.2226715,20.9073963],[109.2225571,20.9037323],[109.2133331,20.8970757]]]]},
  4835 +"properties":{
  4836 +"gid":806,
  4837 +"name":"广西壮族自治区"}
  4838 +},
  4839 +{"type":"Feature",
  4840 +"geometry":{"type":"MultiPolygon","coordinates":[[[[110.5162735,20.9003258],[110.5273972,20.9053688],[110.5302429,20.8989964],[110.5231781,20.897707],[110.5162735,20.9003258]]]]},
  4841 +"properties":{
  4842 +"gid":807,
  4843 +"name":"广东省"}
  4844 +},
  4845 +{"type":"Feature",
  4846 +"geometry":{"type":"MultiPolygon","coordinates":[[[[116.717247,20.7114983],[116.7221375,20.7098942],[116.7277603,20.7069149],[116.7314224,20.7048512],[116.7326508,20.7011757],[116.7314301,20.6986485],[116.7265472,20.6993313],[116.7204437,20.6995525],[116.7136002,20.7009258],[116.7133636,20.7034512],[116.7148209,20.7046013],[116.7170181,20.7052937],[116.7194595,20.7055264],[116.7182312,20.7080517],[116.7170105,20.7103481],[116.717247,20.7114983]]]]},
  4847 +"properties":{
  4848 +"gid":808,
  4849 +"name":"广东省"}
  4850 +},
  4851 +{"type":"Feature",
  4852 +"geometry":{"type":"MultiPolygon","coordinates":[[[[110.4272232,20.6832371],[110.4231186,20.6849709],[110.4195023,20.6931076],[110.4171524,20.6957016],[110.4130478,20.6972046],[110.4078064,20.7010365],[110.4064484,20.7040577],[110.4092331,20.7067223],[110.4179688,20.7048473],[110.4286575,20.6962605],[110.4307404,20.6929855],[110.4306412,20.690237],[110.4297714,20.686367],[110.4272232,20.6832371]]]]},
  4853 +"properties":{
  4854 +"gid":809,
  4855 +"name":"广东省"}
  4856 +},
  4857 +{"type":"Feature",
  4858 +"geometry":{"type":"MultiPolygon","coordinates":[[[[110.411377,20.6780014],[110.4050827,20.6793442],[110.4014969,20.6819763],[110.3975372,20.6873722],[110.3971481,20.690134],[110.398201,20.6921654],[110.4009171,20.692997],[110.4080887,20.6884193],[110.4118118,20.68326],[110.4124374,20.6802597],[110.411377,20.6780014]]]]},
  4859 +"properties":{
  4860 +"gid":810,
  4861 +"name":"广东省"}
  4862 +},
  4863 +{"type":"Feature",
  4864 +"geometry":{"type":"MultiPolygon","coordinates":[[[[110.3725967,20.6665955],[110.3695908,20.6643963],[110.3644333,20.6634102],[110.3557816,20.6678028],[110.3490829,20.6785545],[110.3484726,20.6822395],[110.3497925,20.6851788],[110.353447,20.6846085],[110.3630219,20.6790409],[110.3680267,20.6685715],[110.3725967,20.6665955]]]]},
  4865 +"properties":{
  4866 +"gid":811,
  4867 +"name":"广东省"}
  4868 +},
  4869 +{"type":"Feature",
  4870 +"geometry":{"type":"MultiPolygon","coordinates":[[[[110.3508072,20.65168],[110.3475876,20.650404],[110.3408127,20.652216],[110.3377304,20.6550617],[110.3372574,20.6624107],[110.3390732,20.6651058],[110.3442307,20.6660938],[110.3508835,20.653511],[110.3508072,20.65168]]]]},
  4871 +"properties":{
  4872 +"gid":812,
  4873 +"name":"广东省"}
  4874 +},
  4875 +{"type":"Feature",
  4876 +"geometry":{"type":"MultiPolygon","coordinates":[[[[110.451149,20.6487923],[110.4533691,20.6494102],[110.4562607,20.6484032],[110.4590836,20.6453342],[110.4635086,20.6461124],[110.4683685,20.6452713],[110.4726105,20.6410103],[110.4781494,20.6318951],[110.4798737,20.6187763],[110.4768219,20.5952606],[110.4776382,20.5842323],[110.4770584,20.581728],[110.4742737,20.5788364],[110.467659,20.5783558],[110.4662933,20.5809212],[110.4699326,20.5872269],[110.4680328,20.5886612],[110.460083,20.5847855],[110.452301,20.5792999],[110.4486771,20.580328],[110.4457321,20.5868416],[110.442543,20.6000061],[110.4401474,20.6012268],[110.4393692,20.6067543],[110.4418716,20.6151562],[110.4421234,20.6220264],[110.4396515,20.6282921],[110.4347229,20.6337185],[110.4303589,20.6278954],[110.4278564,20.6265965],[110.4218292,20.6354961],[110.4057465,20.6435642],[110.4051285,20.6467915],[110.4067535,20.6510963],[110.4095612,20.6544476],[110.4136734,20.6534023],[110.4163895,20.6540051],[110.4199524,20.65802],[110.4269104,20.6543655],[110.4308167,20.6544724],[110.4307327,20.6654778],[110.436058,20.6641655],[110.4452896,20.6558533],[110.4480972,20.6523266],[110.4487076,20.6488686],[110.451149,20.6487923]]]]},
  4877 +"properties":{
  4878 +"gid":813,
  4879 +"name":"广东省"}
  4880 +},
  4881 +{"type":"Feature",
  4882 +"geometry":{"type":"MultiPolygon","coordinates":[[[[110.4553223,20.6601257],[110.4569778,20.6611633],[110.4587479,20.660696],[110.4598465,20.6591358],[110.459938,20.6572552],[110.4586792,20.6561985],[110.4562836,20.6561375],[110.4554062,20.658247],[110.4553223,20.6601257]]]]},
  4883 +"properties":{
  4884 +"gid":814,
  4885 +"name":"广东省"}
  4886 +},
  4887 +{"type":"Feature",
  4888 +"geometry":{"type":"MultiPolygon","coordinates":[[[[110.4171829,20.5872746],[110.4144897,20.5873585],[110.412117,20.5894947],[110.4116287,20.596159],[110.4088211,20.6065617],[110.4108734,20.6090183],[110.4137726,20.6082401],[110.4168091,20.6044788],[110.4190903,20.593174],[110.4171829,20.5872746]]]]},
  4889 +"properties":{
  4890 +"gid":815,
  4891 +"name":"广东省"}
  4892 +},
  4893 +{"type":"Feature",
  4894 +"geometry":{"type":"MultiPolygon","coordinates":[[[[110.4884415,20.6058979],[110.4893494,20.5971584],[110.4853897,20.5890312],[110.4822617,20.5905056],[110.4825974,20.5996647],[110.485199,20.6039371],[110.4884415,20.6058979]]]]},
  4895 +"properties":{
  4896 +"gid":816,
  4897 +"name":"广东省"}
  4898 +},
  4899 +{"type":"Feature",
  4900 +"geometry":{"type":"MultiPolygon","coordinates":[[[[110.5519485,20.3252468],[110.5495529,20.3264694],[110.5504227,20.3301086],[110.5619431,20.3384495],[110.5652466,20.3422413],[110.5701675,20.3498745],[110.5739517,20.3664875],[110.5795135,20.371809],[110.5805817,20.3742962],[110.5809174,20.3768063],[110.5779266,20.3819447],[110.576973,20.3886242],[110.5851822,20.3865261],[110.5895462,20.3792782],[110.5903091,20.3735237],[110.5879593,20.3628254],[110.5809631,20.3515911],[110.5723572,20.3433876],[110.5636902,20.3328915],[110.5593872,20.3286762],[110.5519485,20.3252468]]]]},
  4901 +"properties":{
  4902 +"gid":817,
  4903 +"name":"广东省"}
  4904 +},
  4905 +{"type":"Feature",
  4906 +"geometry":{"type":"MultiPolygon","coordinates":[[[[109.9309082,20.2280807],[109.9309311,20.2266407],[109.9308929,20.2258759],[109.9307175,20.224638],[109.9295273,20.2233505],[109.9282227,20.2215919],[109.9270172,20.220211],[109.925621,20.2186489],[109.9239578,20.2179604],[109.9220963,20.2172832],[109.9202728,20.217371],[109.9193115,20.2184715],[109.9195786,20.2196102],[109.9202728,20.2210159],[109.921463,20.2225876],[109.9223099,20.2231236],[109.9228668,20.2241516],[109.9235382,20.225174],[109.9247513,20.2269382],[109.9264069,20.2276249],[109.927803,20.2288055],[109.9288177,20.2289486],[109.9297333,20.2290001],[109.9309082,20.2280807]]]]},
  4907 +"properties":{
  4908 +"gid":818,
  4909 +"name":"广东省"}
  4910 +},
  4911 +{"type":"Feature",
  4912 +"geometry":{"type":"MultiPolygon","coordinates":[[[[110.1498413,20.0086517],[110.1517563,20.0091133],[110.15448,20.0124378],[110.1526184,20.0143948],[110.1506119,20.0136986],[110.1456528,20.0107517],[110.1410065,20.0083218],[110.1357193,20.0043259],[110.131813,20.0000095],[110.130722,19.9914074],[110.1140366,19.981596],[110.0967712,19.9804878],[110.0889893,19.9799194],[110.0783463,19.9825993],[110.0930328,19.9887829],[110.109848,19.9921856],[110.1166763,19.9941406],[110.1189194,20.0000076],[110.1337967,20.0141087],[110.1443329,20.0312729],[110.1470184,20.0379124],[110.1500092,20.0585308],[110.1534195,20.0610428],[110.1653366,20.061245],[110.1738663,20.0632858],[110.1799469,20.0618954],[110.1913834,20.0627842],[110.1940536,20.0620899],[110.1989136,20.0586395],[110.207901,20.0565529],[110.2307129,20.042511],[110.2522964,20.026865],[110.2634735,20.0233936],[110.2705307,20.024519],[110.2759094,20.0302315],[110.2788162,20.0302219],[110.2826996,20.0260849],[110.2878113,20.0262985],[110.3121796,20.0365314],[110.3182831,20.0394897],[110.3258438,20.044735],[110.3348465,20.0474548],[110.3251419,20.0520706],[110.3236923,20.0545959],[110.3268738,20.056879],[110.346817,20.0570374],[110.3455887,20.0549793],[110.3399811,20.0529366],[110.3399734,20.0508747],[110.3511581,20.0494595],[110.3511734,20.0517521],[110.3589478,20.0505791],[110.3632889,20.0429993],[110.377327,20.0282803],[110.3791428,20.0219288],[110.3802032,20.0181866],[110.3821793,20.0003757],[110.382309,19.9955978],[110.3833466,19.992445],[110.3868637,19.9965191],[110.3879776,20.0000057],[110.3893814,20.0069237],[110.3894501,20.0206718],[110.3878021,20.0312214],[110.3839417,20.0381107],[110.372818,20.0507565],[110.3718567,20.0535107],[110.3738327,20.0585442],[110.3748627,20.0704575],[110.3756027,20.0729752],[110.3773117,20.0741158],[110.3792496,20.0722752],[110.3787308,20.0663185],[110.3816223,20.0603485],[110.3806229,20.0532475],[110.3869095,20.0474949],[110.3876114,20.04245],[110.3902817,20.0408363],[110.3932037,20.0419712],[110.3925095,20.0486202],[110.3896103,20.0527554],[110.38694,20.0543709],[110.3877029,20.0596371],[110.3848114,20.0665245],[110.3870087,20.0678921],[110.3889465,20.0674248],[110.3906631,20.0690231],[110.3821869,20.0779934],[110.3853607,20.0779819],[110.3987198,20.0738049],[110.4064789,20.0689621],[110.4125366,20.0636673],[110.4168701,20.0556297],[110.4146729,20.0522003],[110.4127197,20.0519791],[110.4025192,20.0561447],[110.4024963,20.0527058],[110.4053802,20.044445],[110.4112167,20.0451088],[110.4217072,20.0494213],[110.4243927,20.0494118],[110.425087,20.0468884],[110.4272766,20.0450459],[110.4301987,20.0448055],[110.4318771,20.0427361],[110.4277267,20.0386276],[110.4267426,20.0361099],[110.4315872,20.0324249],[110.439621,20.0330772],[110.4410934,20.0344467],[110.441597,20.0394859],[110.4340973,20.0484543],[110.4251404,20.0549088],[110.4241791,20.0578918],[110.4319534,20.0548801],[110.4503708,20.0417423],[110.4656677,20.0366364],[110.4988937,20.0199909],[110.5071487,20.0178909],[110.5212479,20.0166798],[110.5290375,20.0168724],[110.5431595,20.0200157],[110.5458298,20.0195446],[110.5360184,20.0058403],[110.5376663,20.0000114],[110.540947,19.9915161],[110.5451126,19.9813766],[110.5451508,19.9713078],[110.5452271,19.9632969],[110.552063,19.96455],[110.5580597,19.9733677],[110.5669098,19.9784756],[110.5778503,19.9789677],[110.5820618,19.983242],[110.5782928,19.9888],[110.5696106,19.9916992],[110.5757065,19.9934216],[110.5877686,19.98909],[110.5857086,19.9831772],[110.5821228,19.9743176],[110.5836411,19.9653664],[110.5872726,19.9527168],[110.5797729,19.9539928],[110.57621,19.9465065],[110.5665665,19.9496517],[110.562088,19.9444675],[110.5684128,19.9450417],[110.5814209,19.9402351],[110.585022,19.9497814],[110.5909729,19.9437275],[110.5917892,19.9366188],[110.5836029,19.9397392],[110.5834427,19.9321918],[110.58992,19.9281864],[110.5929489,19.9219532],[110.5920792,19.9151039],[110.6010971,19.9055614],[110.6055069,19.8956432],[110.6041183,19.8869724],[110.6098328,19.8928204],[110.6162872,19.9000263],[110.6230698,19.8994484],[110.6358795,19.8969288],[110.6434326,19.9098377],[110.6434937,19.9123535],[110.635582,19.9175301],[110.6345978,19.9283028],[110.6291275,19.9341221],[110.6314697,19.9416294],[110.6249695,19.9440346],[110.621048,19.9539452],[110.6207581,19.9695168],[110.620697,19.9727135],[110.6125565,19.9778938],[110.6126938,19.9842987],[110.6164627,19.9904079],[110.6101532,20.0000038],[110.6017227,20.0107899],[110.6116867,20.0107384],[110.6166763,20.012434],[110.6114883,20.0171566],[110.6115036,20.0189877],[110.6171036,20.0210228],[110.6217499,20.0251236],[110.6278534,20.0278416],[110.622757,20.0306187],[110.6200867,20.0308609],[110.610817,20.0265541],[110.6029892,20.0197201],[110.5998306,20.0197372],[110.5942688,20.0252647],[110.5913467,20.02528],[110.5876923,20.0239239],[110.5839996,20.0168381],[110.581337,20.0189133],[110.5708694,20.0175896],[110.5708923,20.0205688],[110.5738373,20.0260544],[110.5736237,20.0285778],[110.568779,20.0331841],[110.5680695,20.036396],[110.5690689,20.0400581],[110.575943,20.0494194],[110.5760574,20.0686703],[110.5787735,20.0750732],[110.5790405,20.078968],[110.5788193,20.0821781],[110.5756836,20.0854015],[110.5712967,20.0849648],[110.5688705,20.0868111],[110.5708618,20.0941334],[110.5871964,20.0993233],[110.5930634,20.1025028],[110.599678,20.1091156],[110.6038208,20.1102409],[110.6242294,20.105093],[110.6285629,20.0975075],[110.6334686,20.1036682],[110.6429672,20.1054516],[110.6488266,20.1084003],[110.6591263,20.120491],[110.669899,20.1284523],[110.6733398,20.1330166],[110.6717072,20.1444855],[110.672493,20.150898],[110.6796036,20.1579628],[110.6840363,20.1650429],[110.6869583,20.1652565],[110.6907425,20.1498795],[110.699173,20.1365376],[110.7010803,20.1317139],[110.7040634,20.1060295],[110.7061996,20.0986824],[110.7160187,20.0777702],[110.7234726,20.0653515],[110.7323914,20.0536118],[110.7367325,20.0492325],[110.7442474,20.04529],[110.7632294,20.0467796],[110.7663727,20.0435524],[110.7682266,20.0323124],[110.7725067,20.0185337],[110.7765884,20.0123215],[110.788063,20.0093746],[110.8087082,20.009901],[110.8219528,20.0066051],[110.8260422,20.0000095],[110.8285675,19.9974804],[110.8329315,19.9952946],[110.8368912,19.9931335],[110.8388367,19.9914742],[110.8394089,19.9901314],[110.8463669,19.9859295],[110.8562622,19.982996],[110.8635788,19.9842281],[110.8696899,19.9859409],[110.8797226,19.9894104],[110.8948822,19.9936943],[110.9080429,20.0000038],[110.9134598,20.0056877],[110.9279022,20.0168152],[110.9303131,20.013588],[110.9355927,20.0000114],[110.9467163,19.9874229],[110.9519577,19.9827442],[110.9547272,19.9769688],[110.9577637,19.9707317],[110.9582901,19.9622536],[110.958519,19.9510365],[110.9687729,19.9213161],[110.9754028,19.9031067],[110.9785919,19.8941193],[110.9788513,19.8842754],[110.9806366,19.8776035],[110.9861603,19.8639927],[110.9888611,19.854784],[110.9934387,19.8425655],[110.9959869,19.8267231],[110.9981995,19.8069992],[111.0015869,19.7856483],[111.0029297,19.7487755],[111.0017166,19.7380428],[111.0046997,19.7201309],[111.0090714,19.6992168],[111.0126038,19.684042],[111.0014267,19.6725922],[111.0102463,19.6767654],[111.0235138,19.6840534],[111.0279083,19.6748104],[111.0313416,19.6660442],[111.0331268,19.6593704],[111.0348969,19.651783],[111.0387268,19.6393471],[111.0354309,19.6330032],[111.0263367,19.6384506],[111.013031,19.6391735],[111.0011902,19.6410122],[110.9868469,19.6392384],[110.9816818,19.6359062],[110.9783707,19.6288776],[110.974823,19.6220818],[110.9674988,19.6089497],[110.9541626,19.5979977],[110.9352264,19.5862389],[110.92453,19.5841599],[110.9207993,19.5801125],[110.9124069,19.5734081],[110.8959579,19.5529003],[110.8661499,19.5195999],[110.8490372,19.5233612],[110.8446884,19.5458755],[110.8337173,19.5538673],[110.8448563,19.5536556],[110.8435593,19.5607758],[110.8416595,19.5626411],[110.8328476,19.5696774],[110.8343811,19.5840664],[110.8252869,19.5895042],[110.8271103,19.5954208],[110.834198,19.598032],[110.8416367,19.605444],[110.8490982,19.603241],[110.8547668,19.5967236],[110.8839035,19.5991383],[110.8890381,19.6120853],[110.8952026,19.6163139],[110.8919907,19.6358318],[110.9025879,19.6436367],[110.8989563,19.644165],[110.8897705,19.6448002],[110.8814926,19.6431293],[110.8742981,19.6357155],[110.8762131,19.6235485],[110.866478,19.6219044],[110.8585281,19.6241169],[110.8452301,19.6257458],[110.822403,19.6234341],[110.8121109,19.6185932],[110.8067093,19.6267052],[110.8059235,19.6235161],[110.8004532,19.6174393],[110.7928238,19.6230774],[110.78479,19.6216259],[110.7757721,19.619278],[110.7669678,19.6269951],[110.7617264,19.6202278],[110.7655334,19.6162663],[110.7757034,19.6160755],[110.7776489,19.6167259],[110.7833633,19.6115818],[110.7856369,19.60536],[110.7976532,19.6003265],[110.8070984,19.5889339],[110.8171234,19.5706615],[110.8215866,19.5643978],[110.8293304,19.552578],[110.8315811,19.544981],[110.8336105,19.5380764],[110.8214264,19.5351028],[110.8123169,19.52841],[110.8065872,19.5207367],[110.8064423,19.5143299],[110.8077164,19.5058384],[110.8099518,19.4973259],[110.8070374,19.4857082],[110.7982178,19.4810677],[110.7951965,19.4758606],[110.7897873,19.4722996],[110.7776871,19.4615402],[110.7659607,19.4564972],[110.7578964,19.4536705],[110.7543793,19.4585438],[110.7487335,19.4545288],[110.74617,19.4481678],[110.7432632,19.4365482],[110.7382965,19.4311466],[110.7359772,19.4250088],[110.7419434,19.4200916],[110.7376785,19.4135323],[110.7334518,19.4112835],[110.7281265,19.4084454],[110.7209473,19.4124699],[110.7125168,19.4144573],[110.7061768,19.4122849],[110.7042084,19.41049],[110.6988068,19.4073849],[110.6897507,19.4022865],[110.6837769,19.3948421],[110.678772,19.3910141],[110.6729584,19.38657],[110.6703568,19.378149],[110.6711502,19.3696651],[110.6690369,19.3614635],[110.6661835,19.352129],[110.6709366,19.348381],[110.6759186,19.3432541],[110.6788406,19.3324413],[110.6781464,19.3226109],[110.6682968,19.3143215],[110.656189,19.3021793],[110.6515503,19.3118782],[110.6435165,19.3092785],[110.6368866,19.3045902],[110.6311569,19.2971401],[110.6317368,19.2900333],[110.6359634,19.2721024],[110.6367264,19.2620163],[110.6313782,19.2490654],[110.6197205,19.2350807],[110.6109772,19.2334061],[110.6054535,19.2304649],[110.5999832,19.2393265],[110.5991592,19.2347641],[110.6013565,19.2241955],[110.5961685,19.2187939],[110.5834122,19.2217674],[110.5792084,19.2172642],[110.5886536,19.2180119],[110.5977631,19.213728],[110.6060486,19.2170143],[110.6048431,19.2289391],[110.6155167,19.2308064],[110.6158371,19.2227898],[110.61203,19.2139301],[110.6092834,19.1981831],[110.5946426,19.1911221],[110.5904236,19.1861591],[110.5864334,19.1686039],[110.5827408,19.1535606],[110.5747681,19.1537037],[110.566803,19.1540737],[110.5633163,19.1553555],[110.5550537,19.1584034],[110.5530167,19.1570625],[110.5496521,19.1548347],[110.5449829,19.1507969],[110.5383911,19.147707],[110.5284195,19.1446781],[110.5245972,19.1467648],[110.5193329,19.1496449],[110.5150986,19.147131],[110.5099792,19.1420441],[110.514473,19.135994],[110.5184402,19.1292858],[110.5259933,19.1319008],[110.529007,19.1380291],[110.5397263,19.142189],[110.5508575,19.1426792],[110.5556107,19.1387043],[110.5575638,19.1279106],[110.5554733,19.1197052],[110.5492935,19.1134052],[110.550087,19.1051483],[110.5502472,19.1010246],[110.5515289,19.0923042],[110.5528564,19.0888119],[110.554512,19.0844669],[110.5580597,19.0856895],[110.5608368,19.0866451],[110.5615311,19.0969334],[110.5656433,19.1061535],[110.5682983,19.1206226],[110.5643616,19.1291637],[110.5717468,19.1356716],[110.5762787,19.1445198],[110.5763702,19.1371918],[110.5745163,19.1296692],[110.5714264,19.1201096],[110.568718,19.1057358],[110.5660477,19.0856113],[110.5652924,19.0799274],[110.5643997,19.0478916],[110.5558929,19.0452957],[110.5441971,19.0404663],[110.534462,19.036974],[110.5283813,19.0228863],[110.5207825,19.0051613],[110.5116806,18.9849472],[110.5082932,18.972414],[110.5082397,18.9458561],[110.509697,18.9343853],[110.5121384,18.9112186],[110.5164566,18.8857288],[110.5084915,18.8980026],[110.5024338,18.8965054],[110.500473,18.8949375],[110.4957962,18.8911266],[110.4872971,18.888298],[110.4862823,18.8857975],[110.4808426,18.8790226],[110.4708786,18.875761],[110.4646988,18.8804474],[110.4614563,18.8752365],[110.4635391,18.8706226],[110.4653168,18.8628082],[110.4642334,18.8566437],[110.4672165,18.8492661],[110.4574127,18.8409634],[110.4496689,18.8404102],[110.4349136,18.8383732],[110.4347382,18.8294468],[110.4345932,18.8216648],[110.4383087,18.8147316],[110.4444504,18.808218],[110.4530563,18.8066807],[110.4653015,18.8009911],[110.4754028,18.7994423],[110.4857864,18.8004055],[110.4861069,18.7921581],[110.4993973,18.7928429],[110.5010071,18.8010578],[110.5126266,18.8031445],[110.5092926,18.8171692],[110.4994812,18.8214607],[110.5047073,18.8293819],[110.504837,18.8360195],[110.4991531,18.8413868],[110.4971237,18.8480606],[110.4966431,18.8606625],[110.4995193,18.87183],[110.5045471,18.881815],[110.5102463,18.8775959],[110.5105667,18.8693466],[110.5135727,18.8502922],[110.5168076,18.8310032],[110.523407,18.8114262],[110.5302963,18.794363],[110.539917,18.79282],[110.5379868,18.7856941],[110.535141,18.7807446],[110.531517,18.7833786],[110.5304337,18.7886372],[110.5244217,18.7896576],[110.5177994,18.7842789],[110.51017,18.7768574],[110.4991684,18.7816277],[110.4868469,18.7685623],[110.4806595,18.772562],[110.4749069,18.7744942],[110.4644699,18.7712402],[110.4568329,18.7626705],[110.4448929,18.731966],[110.4356613,18.72892],[110.4323578,18.720047],[110.4315109,18.7015152],[110.4318619,18.6825047],[110.4255295,18.6789494],[110.4100037,18.6618137],[110.3988266,18.6695576],[110.3958435,18.6771641],[110.3791275,18.6730957],[110.365097,18.6708126],[110.3574371,18.6608658],[110.3518066,18.6694317],[110.3431473,18.6702633],[110.3299179,18.6713982],[110.3350677,18.6761227],[110.3453522,18.6841927],[110.3557281,18.6847076],[110.3670273,18.6836033],[110.3805466,18.6847496],[110.4008179,18.6850948],[110.4080429,18.6973362],[110.4113235,18.6920128],[110.4167175,18.6845951],[110.4180832,18.6928139],[110.4180298,18.7026615],[110.4170303,18.7132111],[110.4123764,18.7093983],[110.4055328,18.7042465],[110.3937531,18.7062778],[110.3881302,18.7022514],[110.3946533,18.690464],[110.3881683,18.6917191],[110.3751373,18.6910229],[110.3611526,18.6905708],[110.3495712,18.6905346],[110.3439407,18.6862774],[110.3373566,18.6822662],[110.3236771,18.6731052],[110.3218002,18.6626034],[110.3082275,18.6589355],[110.3000717,18.6611309],[110.2834625,18.6620884],[110.2747574,18.6608582],[110.2614288,18.6569519],[110.243187,18.6480885],[110.2373199,18.6433754],[110.2274094,18.6288815],[110.2177963,18.6301785],[110.2121964,18.6272926],[110.2014465,18.6194515],[110.1857376,18.6034431],[110.1797028,18.5891151],[110.1783905,18.5873566],[110.1759872,18.5841351],[110.1701508,18.5810223],[110.1613922,18.5761223],[110.1516724,18.5714664],[110.1434631,18.5571709],[110.1385269,18.5506077],[110.1315002,18.5481987],[110.1210632,18.5435524],[110.1125412,18.5386486],[110.102951,18.5275764],[110.0994568,18.5212193],[110.0966797,18.5134773],[110.0867462,18.4962273],[110.0726624,18.4898033],[110.0745316,18.4865685],[110.0839233,18.4866543],[110.0811386,18.4786835],[110.0775604,18.4670601],[110.0747604,18.4584026],[110.0723877,18.4465313],[110.0716705,18.433033],[110.0700378,18.4220676],[110.0642166,18.4061279],[110.0622177,18.4155464],[110.0679703,18.4278221],[110.0616531,18.4377651],[110.0535583,18.4433842],[110.0479736,18.4409504],[110.0433121,18.435524],[110.0373993,18.4280586],[110.0375214,18.4209595],[110.0471191,18.4194393],[110.0448303,18.4152679],[110.0417023,18.4124222],[110.0385666,18.4120445],[110.0345764,18.4121475],[110.0315781,18.4112015],[110.0311203,18.4088535],[110.0320511,18.4052601],[110.0340729,18.4026928],[110.0369263,18.40448],[110.0403595,18.4077759],[110.0435104,18.4062157],[110.0478363,18.4052315],[110.0569687,18.4044075],[110.0575867,18.3982143],[110.0569534,18.3895245],[110.046257,18.3832741],[110.0399628,18.3813095],[110.0254974,18.379694],[110.0087738,18.37216],[110.0003815,18.3745747],[109.9973679,18.3814888],[109.9796295,18.3829517],[109.9750366,18.3828392],[109.9712219,18.3838692],[109.9659424,18.3872204],[109.9651184,18.3957062],[109.9590683,18.4077015],[109.975647,18.406311],[109.9788666,18.3975639],[109.9896622,18.3953419],[110.0050278,18.3928242],[110.0121231,18.3995876],[110.0201569,18.4056492],[110.0219574,18.4118042],[110.0216599,18.4225712],[110.0328064,18.4272118],[110.029808,18.4343548],[110.0213928,18.4484482],[110.0130768,18.4559002],[110.0127411,18.4499512],[110.0133514,18.4433022],[110.0175171,18.4338512],[110.0078583,18.4319363],[109.9910202,18.4326458],[109.9802017,18.4332638],[109.9762802,18.4294281],[109.9703369,18.4196701],[109.9642105,18.4128914],[109.955307,18.4137096],[109.9411163,18.4136887],[109.9260101,18.4173431],[109.9050217,18.4144402],[109.8892899,18.4094009],[109.8713608,18.4020996],[109.8659821,18.3969097],[109.8552322,18.3872166],[109.8487473,18.3882236],[109.8397369,18.381712],[109.8291931,18.3836918],[109.8216171,18.3771572],[109.8142929,18.3852749],[109.8124466,18.3905659],[109.804863,18.3973122],[109.7942963,18.3997478],[109.7848969,18.3985043],[109.7845688,18.3982983],[109.7698288,18.3890934],[109.753067,18.3945904],[109.7534485,18.3881741],[109.7608032,18.3809738],[109.7568665,18.3764496],[109.75,18.3678417],[109.7424011,18.3587875],[109.7374268,18.3483219],[109.7333832,18.335783],[109.7291565,18.3115692],[109.7188263,18.2812557],[109.7175064,18.2752094],[109.7211304,18.2750416],[109.7307434,18.2739964],[109.7339783,18.2659378],[109.726738,18.264204],[109.7178879,18.2675285],[109.7100601,18.2742748],[109.7041473,18.2816811],[109.6947632,18.2808895],[109.6922836,18.2751999],[109.6843109,18.2737026],[109.6749496,18.2747421],[109.6760483,18.2680874],[109.6840668,18.257906],[109.6923065,18.2613144],[109.6947708,18.2631016],[109.6941299,18.2685432],[109.6960983,18.2711945],[109.6969986,18.2738571],[109.6977234,18.2744827],[109.6981125,18.273222],[109.6979294,18.2711086],[109.6990967,18.2699223],[109.6996689,18.2676277],[109.6991272,18.2631912],[109.700943,18.2602005],[109.7114334,18.258812],[109.7227707,18.2564735],[109.7310028,18.260025],[109.7407303,18.251421],[109.7367096,18.2358017],[109.7269363,18.2305431],[109.7294998,18.2252407],[109.7277069,18.2188549],[109.7196274,18.2086601],[109.7060394,18.2161694],[109.7039795,18.2072659],[109.7099075,18.2021503],[109.7114868,18.1959457],[109.6985474,18.1958637],[109.6865997,18.202919],[109.685257,18.2095757],[109.6928101,18.2158871],[109.6924362,18.22299],[109.6878128,18.2291889],[109.6830063,18.235939],[109.6713562,18.235651],[109.6620483,18.2327824],[109.6398773,18.2294083],[109.62883,18.2302399],[109.623703,18.2248116],[109.617363,18.2184811],[109.6129379,18.2128143],[109.6112289,18.2110043],[109.6101379,18.2023182],[109.6102524,18.1933861],[109.615921,18.1869011],[109.6201172,18.1781464],[109.6168671,18.1697159],[109.6112137,18.1740971],[109.6023865,18.1765079],[109.5922928,18.1749001],[109.5792007,18.1743221],[109.5747528,18.1619797],[109.5695877,18.1608963],[109.5636902,18.1609764],[109.5587997,18.165329],[109.5563278,18.1716366],[109.5626907,18.1795692],[109.5627899,18.1866665],[109.5699081,18.1964207],[109.5741425,18.2064438],[109.5671692,18.2063026],[109.5589981,18.2066345],[109.5490799,18.218895],[109.5419312,18.2233353],[109.5489578,18.2273693],[109.5579224,18.2320652],[109.5711136,18.2454071],[109.5712967,18.258913],[109.5661621,18.2530251],[109.5618973,18.2411728],[109.5531769,18.236475],[109.5473328,18.2315102],[109.537941,18.2302551],[109.533287,18.2241306],[109.5384827,18.2178841],[109.5346985,18.2055664],[109.5307007,18.2117996],[109.5239029,18.2233334],[109.5178833,18.2224922],[109.5105667,18.216629],[109.5059814,18.2081184],[109.5005722,18.2062206],[109.4943237,18.2062969],[109.4932632,18.19944],[109.4897766,18.192831],[109.4857788,18.1885338],[109.4810028,18.1871872],[109.4746017,18.1889076],[109.4689331,18.1959686],[109.4668579,18.2025108],[109.4669037,18.207262],[109.4688873,18.2098141],[109.4807281,18.2142487],[109.4853668,18.2199154],[109.4818573,18.2265987],[109.4810028,18.2332497],[109.4872665,18.2343178],[109.4963989,18.2342052],[109.4954071,18.2495594],[109.4907074,18.2567139],[109.4752426,18.2683525],[109.4523621,18.2832851],[109.4315567,18.2924652],[109.4226532,18.2911968],[109.4113464,18.2920189],[109.3945084,18.2913036],[109.3778763,18.2894363],[109.3643799,18.2868462],[109.3571396,18.285099],[109.3482895,18.2888641],[109.3201065,18.3036137],[109.3042679,18.3063126],[109.2881088,18.3030605],[109.281601,18.3022175],[109.2719727,18.300951],[109.2613525,18.2987785],[109.2459183,18.2955151],[109.2317734,18.2988758],[109.2209396,18.2983074],[109.2062073,18.2943459],[109.1915665,18.2865715],[109.178688,18.2857132],[109.1614685,18.2936802],[109.1504364,18.2970028],[109.1459274,18.3011723],[109.1432037,18.3137932],[109.1488266,18.3228912],[109.1498871,18.3302078],[109.1327133,18.3413773],[109.1260071,18.3453407],[109.1337738,18.3493805],[109.1338501,18.3562489],[109.1273193,18.3537979],[109.1204071,18.3593655],[109.1138763,18.3564568],[109.1091766,18.3656635],[109.1012573,18.3678055],[109.0847168,18.3727818],[109.0717163,18.3729153],[109.057518,18.371912],[109.0471268,18.3685818],[109.0159836,18.3592758],[108.9983978,18.3573875],[108.9894867,18.356329],[108.9874268,18.3668804],[108.9793472,18.3749714],[108.9738998,18.3783283],[108.9650116,18.38381],[108.9623108,18.4007797],[108.9536667,18.4036083],[108.940239,18.4069405],[108.9554291,18.409544],[108.9467773,18.411459],[108.9417801,18.4160843],[108.9341125,18.4189053],[108.926857,18.4157677],[108.9167862,18.4192963],[108.9006805,18.421505],[108.8857727,18.4221001],[108.8713531,18.4238358],[108.8550415,18.4299355],[108.8486176,18.436861],[108.8570404,18.4367867],[108.8692932,18.4339275],[108.8803024,18.4285603],[108.889679,18.4273319],[108.898819,18.4270172],[108.891861,18.429142],[108.8812866,18.4308414],[108.8731613,18.4359531],[108.8640366,18.4385548],[108.8607025,18.4413319],[108.8523026,18.4441547],[108.8524017,18.452816],[108.8436432,18.4498348],[108.8394928,18.4552937],[108.8336182,18.463028],[108.8258438,18.4700508],[108.8199768,18.4777832],[108.8078918,18.4826946],[108.7917328,18.4859562],[108.7767868,18.488081],[108.7584534,18.4922333],[108.7466736,18.4916401],[108.7401886,18.4899597],[108.7286072,18.4918919],[108.7076416,18.4955502],[108.6962967,18.4974823],[108.6814728,18.5096931],[108.678978,18.517231],[108.6810226,18.5273457],[108.6748428,18.540575],[108.6696701,18.5494576],[108.6703033,18.5568027],[108.6776123,18.5690441],[108.6838837,18.57724],[108.6875687,18.5859089],[108.6920395,18.5991516],[108.6992111,18.6185532],[108.6991272,18.6352673],[108.6989594,18.6425934],[108.6993027,18.6515198],[108.7017975,18.6613426],[108.6999969,18.6750946],[108.6964264,18.679245],[108.6912231,18.6884441],[108.6959534,18.7042027],[108.6948013,18.7106209],[108.6941605,18.7188683],[108.6941376,18.7203789],[108.6940079,18.7277985],[108.690033,18.7404213],[108.6892166,18.7557659],[108.6812668,18.7578926],[108.6762772,18.7647991],[108.6735535,18.7817631],[108.6681519,18.7978306],[108.6581421,18.8105011],[108.6401596,18.8218613],[108.626442,18.8254032],[108.6216965,18.8352833],[108.628212,18.8599567],[108.6376266,18.8617134],[108.6321487,18.868166],[108.6350937,18.8736382],[108.6424332,18.8834229],[108.6492691,18.8927536],[108.6541977,18.903019],[108.6562119,18.9100857],[108.6571884,18.9135246],[108.6557236,18.9368858],[108.6505585,18.9524918],[108.6434326,18.9649086],[108.6449509,18.9715366],[108.6518402,18.9770832],[108.6496201,18.9808846],[108.6470871,18.993494],[108.6414185,19.006815],[108.6314774,19.0295563],[108.6268997,19.0552292],[108.6162872,19.0836964],[108.622551,19.0811291],[108.630722,19.0767155],[108.6288376,19.0824528],[108.6235733,19.087759],[108.6186066,19.0992413],[108.6295319,19.1048794],[108.6382523,19.1073284],[108.6553268,19.1239052],[108.6645432,19.1517563],[108.6733932,19.143446],[108.6773071,19.1479912],[108.670639,19.1583462],[108.6746063,19.1693001],[108.6754227,19.1773052],[108.6677933,19.1881237],[108.6778793,19.1825485],[108.6769638,19.1869068],[108.6726532,19.191061],[108.6628265,19.2009811],[108.6464767,19.2107239],[108.629837,19.2147465],[108.6244507,19.2072334],[108.6221313,19.2180099],[108.6260986,19.2282791],[108.6354294,19.2439995],[108.636261,19.2547512],[108.6326981,19.2618732],[108.6277771,19.2539024],[108.6264038,19.2612362],[108.6272812,19.27771],[108.634697,19.2945881],[108.63414,19.2868118],[108.6357422,19.2774143],[108.6416016,19.2830887],[108.6468964,19.2798424],[108.6409607,19.291563],[108.6479263,19.2871609],[108.6588135,19.2834167],[108.6709671,19.2772121],[108.6703568,19.2796574],[108.6658173,19.2854156],[108.6603394,19.2946148],[108.6692276,19.2883644],[108.6747208,19.2812233],[108.679039,19.2835617],[108.6805573,19.2843819],[108.6765213,19.2921963],[108.6717606,19.3000164],[108.6633682,19.3083229],[108.6613007,19.3197823],[108.6680984,19.3217888],[108.675293,19.315094],[108.6817932,19.3111515],[108.684227,19.3138771],[108.6828537,19.320755],[108.6766129,19.3258419],[108.6669464,19.3277493],[108.6672897,19.3385029],[108.6593399,19.3419991],[108.6613312,19.3483925],[108.6715317,19.3519726],[108.6759262,19.3572006],[108.678833,19.3679428],[108.6828537,19.3720226],[108.692543,19.3719444],[108.7067871,19.3690815],[108.7237167,19.3682556],[108.7419434,19.3754272],[108.7616501,19.3864765],[108.7806473,19.3982143],[108.7923965,19.4118462],[108.7958603,19.4186821],[108.8056183,19.4256916],[108.8159027,19.4361305],[108.8251724,19.4433727],[108.8394928,19.4466782],[108.8559875,19.4504223],[108.8684235,19.4585495],[108.8850479,19.473505],[108.9052963,19.4872799],[108.9204788,19.5022449],[108.9311981,19.5083237],[108.9298782,19.4980373],[108.9314728,19.4893265],[108.9393997,19.48353],[108.9428711,19.490593],[108.9447098,19.4928627],[108.9480286,19.4969521],[108.944191,19.5004215],[108.9364929,19.5052986],[108.9433365,19.5107269],[108.9487305,19.509407],[108.9524231,19.5095882],[108.9485168,19.5128651],[108.9416733,19.5134888],[108.934639,19.5124111],[108.9412308,19.5173836],[108.9470901,19.5214481],[108.9607697,19.5316162],[108.9747314,19.5452156],[108.9904633,19.5652027],[109.0005493,19.5786076],[109.0149536,19.5873928],[109.0261307,19.5909443],[109.041687,19.5958252],[109.0548096,19.598671],[109.0671768,19.5996914],[109.0805664,19.605278],[109.0911102,19.6150131],[109.1037903,19.6212902],[109.1235428,19.6304703],[109.144249,19.6398678],[109.1470566,19.6402378],[109.1522598,19.6409283],[109.1585922,19.6431503],[109.1678238,19.6453419],[109.1785965,19.6541519],[109.1964264,19.6642609],[109.2087173,19.678545],[109.2110825,19.6922493],[109.2121582,19.719698],[109.2181396,19.7134552],[109.225647,19.7131443],[109.2347565,19.7238007],[109.2434692,19.722105],[109.2519608,19.7224693],[109.2723694,19.7259064],[109.2809525,19.7143707],[109.2791672,19.7078743],[109.2905579,19.7073975],[109.2959976,19.6968098],[109.3028564,19.6843758],[109.3115921,19.6847363],[109.3092422,19.6904831],[109.3045273,19.7003765],[109.3139725,19.6995831],[109.3140793,19.7073631],[109.3040237,19.7173157],[109.3024063,19.7237415],[109.2944336,19.7256622],[109.2940292,19.7316151],[109.2858276,19.7351398],[109.2701569,19.742178],[109.2760162,19.7448578],[109.285759,19.7481842],[109.292099,19.7508583],[109.3021011,19.7550945],[109.3089371,19.7584496],[109.3070679,19.7637329],[109.312439,19.7666473],[109.3032913,19.7717857],[109.3043365,19.7781792],[109.2991028,19.784647],[109.2875366,19.7914104],[109.2800903,19.7965279],[109.2749481,19.792923],[109.2667236,19.7756233],[109.2646332,19.7642059],[109.2606277,19.7740898],[109.2547684,19.7709503],[109.2503433,19.7664223],[109.2383881,19.760603],[109.2272415,19.7614117],[109.2264328,19.7550125],[109.224617,19.7467957],[109.2134171,19.7427959],[109.2123032,19.7311382],[109.2025681,19.7287254],[109.184433,19.7325802],[109.1802521,19.7280483],[109.1707535,19.7244873],[109.1766891,19.7335777],[109.177742,19.7406597],[109.1739502,19.7473354],[109.1692276,19.7576828],[109.1615372,19.7641697],[109.1657486,19.7705326],[109.1634369,19.7801666],[109.1635437,19.7881756],[109.1653214,19.7947922],[109.1741333,19.8006496],[109.1837234,19.8113022],[109.194931,19.8153019],[109.2029877,19.8188763],[109.2091599,19.827734],[109.2115021,19.840065],[109.2161713,19.8443623],[109.2206268,19.8518639],[109.2277527,19.8584232],[109.2256775,19.8481503],[109.2324295,19.8444157],[109.2392807,19.848917],[109.2330399,19.8542461],[109.243248,19.8555088],[109.255661,19.8585777],[109.2568207,19.8644905],[109.258522,19.873188],[109.2624435,19.879755],[109.2642288,19.8827362],[109.264183,19.8980675],[109.2714615,19.8975296],[109.2811203,19.8939896],[109.2881622,19.8941402],[109.2882767,19.9032917],[109.2944336,19.9087143],[109.3022766,19.9157181],[109.313652,19.9126167],[109.3199234,19.9091148],[109.3210068,19.89995],[109.3138733,19.892252],[109.3157196,19.8855953],[109.3239136,19.881155],[109.3324432,19.8840313],[109.3407364,19.8871403],[109.3553467,19.8906364],[109.3623962,19.8916988],[109.3681564,19.8872852],[109.3804703,19.8816509],[109.3762436,19.8922253],[109.3839417,19.8871021],[109.3906631,19.8815327],[109.3951569,19.8730145],[109.4032288,19.8601055],[109.4100189,19.8600273],[109.4313965,19.8613758],[109.4412537,19.8717842],[109.4569931,19.8697662],[109.4600677,19.8640079],[109.4618378,19.85186],[109.4701767,19.8410053],[109.4690933,19.8330097],[109.4677734,19.8252468],[109.4767532,19.8251362],[109.4807587,19.8342419],[109.4888916,19.8428364],[109.5039291,19.8424263],[109.510498,19.8439465],[109.5178375,19.8477459],[109.5355072,19.8617134],[109.5370636,19.8509407],[109.5294266,19.8439426],[109.5213013,19.835577],[109.5300217,19.8347836],[109.5400391,19.8394642],[109.549942,19.8530693],[109.5567398,19.8532124],[109.5625992,19.8518505],[109.5671387,19.8507938],[109.5689621,19.8590088],[109.5659332,19.8670559],[109.5593567,19.8666801],[109.5506134,19.8649597],[109.5407867,19.8737755],[109.5308533,19.874815],[109.5222931,19.8703442],[109.5200272,19.8822708],[109.5206604,19.8921013],[109.5166321,19.8990154],[109.5199127,19.9067535],[109.5258026,19.9119434],[109.5335999,19.913908],[109.5464325,19.911459],[109.5519638,19.9081879],[109.5647736,19.9034519],[109.5696716,19.9070511],[109.563652,19.9103298],[109.5597916,19.9122982],[109.5535278,19.9154892],[109.54776,19.9194508],[109.5437469,19.9205647],[109.5417175,19.9211292],[109.5314713,19.917593],[109.5291367,19.9242573],[109.5329514,19.9358788],[109.5357132,19.9424801],[109.5418472,19.9467525],[109.5523529,19.9509697],[109.5602188,19.9575062],[109.5698395,19.96768],[109.5809708,19.9814968],[109.5866165,19.9855442],[109.5988007,19.9885921],[109.6166077,19.9933987],[109.6319275,19.9948044],[109.6467667,19.9966717],[109.6544495,20.0000134],[109.6578598,20.0057564],[109.6615067,20.0064468],[109.6836319,20.0039387],[109.6894684,20.0044022],[109.7074738,20.0112839],[109.7120895,20.0115147],[109.7186508,20.005331],[109.7198715,20.0000076],[109.7288132,19.9930744],[109.7299271,19.987339],[109.7288971,19.9834652],[109.7297592,19.9765892],[109.7284088,19.9679127],[109.7337036,19.9648685],[109.7362137,19.9696388],[109.7350922,19.976059],[109.7342529,19.9838505],[109.7422333,19.9821415],[109.743103,19.9754944],[109.749527,19.9673996],[109.7613831,19.9644947],[109.7701187,19.9641476],[109.7846832,19.9637203],[109.8023911,19.9627914],[109.800293,19.9525242],[109.7972412,19.9447861],[109.8025131,19.9396801],[109.8087769,19.9370766],[109.817131,19.943367],[109.8243332,19.9453812],[109.8219376,19.9552002],[109.8191833,19.9653053],[109.8167038,19.9765511],[109.8163071,19.9829636],[109.8269882,19.9821281],[109.8351517,19.9762955],[109.8388672,19.966404],[109.84095,19.9597397],[109.844162,19.9482555],[109.8501892,19.9456539],[109.8445587,19.9429874],[109.8357391,19.9378471],[109.8334427,19.9307861],[109.8327637,19.9191265],[109.8275299,19.9109631],[109.8346863,19.9033127],[109.8369827,19.9094582],[109.8383484,19.9195061],[109.845993,19.9116211],[109.8458862,19.9205456],[109.8389893,19.9291077],[109.8469009,19.9376926],[109.8556366,19.9375687],[109.864357,19.9367599],[109.8663788,19.9367847],[109.8731079,19.9368668],[109.8729935,19.944191],[109.8797073,19.9541626],[109.8765335,19.9677067],[109.8874893,19.9693813],[109.8893433,19.978508],[109.8889771,19.9862919],[109.8955078,19.9843693],[109.9039917,19.9831047],[109.91008,19.9841614],[109.9248962,19.9844055],[109.9449005,19.9896088],[109.9517899,19.9805851],[109.9537964,19.9700317],[109.9565964,19.9638138],[109.9625168,19.9548054],[109.9684982,19.9494553],[109.978363,19.9440479],[109.9888535,19.9324532],[109.9853516,19.9270134],[109.9777908,19.9250641],[109.9656219,19.9229546],[109.9562836,19.9164543],[109.9617767,19.9113407],[109.969368,19.9083729],[109.978447,19.9065208],[109.9869308,19.9054813],[109.9924088,19.8996811],[109.9971771,19.894577],[110.0006866,19.9009304],[109.9981308,19.9076061],[109.994873,19.915205],[110.0005264,19.9199257],[110.0045776,19.9155178],[110.0061493,19.9081726],[110.0070114,19.9017525],[110.0080719,19.8928146],[110.0142365,19.8988991],[110.0153427,19.9057484],[110.016449,19.9139709],[110.0102234,19.9188671],[110.0042038,19.9217014],[109.999733,19.923811],[109.9977036,19.9247723],[109.9929428,19.9303341],[110.0014267,19.9299793],[110.0089569,19.9303265],[110.0158234,19.9322338],[110.020668,19.9335842],[110.0264511,19.9447098],[110.0234528,19.9534492],[110.0272369,19.9620876],[110.0355682,19.9663105],[110.0433578,19.9673386],[110.0509109,19.9688263],[110.0539169,19.9742718],[110.0582123,19.9838181],[110.0671768,19.982996],[110.0722198,19.9792595],[110.08255,19.9729252],[110.0922699,19.9732361],[110.1029816,19.9746723],[110.1116867,19.9729385],[110.1165771,19.961195],[110.1198273,19.9664078],[110.1252365,19.9704418],[110.1215363,19.9801083],[110.12957,19.9811287],[110.1349869,19.9853916],[110.1410065,19.9958248],[110.1411438,19.9995308],[110.1413498,20.0043106],[110.14431,20.0068245],[110.1471863,20.0080109],[110.1498413,20.0086517]]]]},
  4913 +"properties":{
  4914 +"gid":819,
  4915 +"name":"海南省"}
  4916 +},
  4917 +{"type":"Feature",
  4918 +"geometry":{"type":"MultiPolygon","coordinates":[[[[110.3494186,20.0857716],[110.3684692,20.0895138],[110.3747864,20.0891533],[110.3793564,20.087225],[110.3790512,20.0844765],[110.3702469,20.0718079],[110.3668365,20.0613213],[110.3587875,20.0704365],[110.3547211,20.0735016],[110.353569,20.0762787],[110.3600006,20.0809669],[110.3524933,20.0818081],[110.35009,20.0834618],[110.3494186,20.0857716]]]]},
  4919 +"properties":{
  4920 +"gid":820,
  4921 +"name":"海南省"}
  4922 +},
  4923 +{"type":"Feature",
  4924 +"geometry":{"type":"MultiPolygon","coordinates":[[[[110.3491516,20.0639782],[110.3338928,20.0658932],[110.3312378,20.0670948],[110.3310471,20.0698528],[110.340889,20.0744705],[110.3440628,20.0748653],[110.3473663,20.0711269],[110.3491516,20.0639782]]]]},
  4925 +"properties":{
  4926 +"gid":821,
  4927 +"name":"海南省"}
  4928 +},
  4929 +{"type":"Feature",
  4930 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.2645416,19.9876671],[111.2696762,19.9885998],[111.2722778,19.9848328],[111.2713394,19.980381],[111.2680893,19.9793758],[111.2643738,19.9808083],[111.2633514,19.984478],[111.2645416,19.9876671]]]]},
  4931 +"properties":{
  4932 +"gid":822,
  4933 +"name":"海南省"}
  4934 +},
  4935 +{"type":"Feature",
  4936 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.2576599,19.9709949],[111.262207,19.9725208],[111.2645569,19.9696693],[111.2649536,19.9660378],[111.2612991,19.9638577],[111.2556534,19.9648037],[111.2562332,19.9686775],[111.2576599,19.9709949]]]]},
  4937 +"properties":{
  4938 +"gid":823,
  4939 +"name":"海南省"}
  4940 +},
  4941 +{"type":"Feature",
  4942 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.2482986,19.9643517],[111.2508698,19.9647961],[111.253273,19.9625435],[111.2533112,19.9586334],[111.2503586,19.9573097],[111.246582,19.9578419],[111.2455826,19.9618111],[111.2473297,19.9641094],[111.2482986,19.9643517]]]]},
  4943 +"properties":{
  4944 +"gid":824,
  4945 +"name":"海南省"}
  4946 +},
  4947 +{"type":"Feature",
  4948 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.194809,19.9242382],[111.1934128,19.9262562],[111.1940765,19.9286308],[111.1951675,19.9295311],[111.1982269,19.9295864],[111.2002106,19.9285011],[111.2007828,19.9255676],[111.2001495,19.923914],[111.1970673,19.9236183],[111.194809,19.9242382]]]]},
  4949 +"properties":{
  4950 +"gid":825,
  4951 +"name":"海南省"}
  4952 +},
  4953 +{"type":"Feature",
  4954 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.1992493,19.9143047],[111.2025833,19.914587],[111.2044067,19.911335],[111.2034836,19.9089756],[111.2003326,19.9077168],[111.197113,19.9091206],[111.1968765,19.9132404],[111.1992493,19.9143047]]]]},
  4955 +"properties":{
  4956 +"gid":826,
  4957 +"name":"海南省"}
  4958 +},
  4959 +{"type":"Feature",
  4960 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.2070923,19.8906384],[111.2097015,19.8914452],[111.2120972,19.8891277],[111.2121887,19.8867054],[111.2110367,19.8848419],[111.2082214,19.8847733],[111.2052536,19.8861599],[111.2054977,19.8897686],[111.2065506,19.8901882],[111.2070923,19.8906384]]]]},
  4961 +"properties":{
  4962 +"gid":827,
  4963 +"name":"海南省"}
  4964 +},
  4965 +{"type":"Feature",
  4966 +"geometry":{"type":"MultiPolygon","coordinates":[[[[110.7692795,19.4435139],[110.7666168,19.4367275],[110.7656326,19.4349003],[110.7624817,19.4290543],[110.7610626,19.4263649],[110.7593384,19.4230919],[110.751358,19.4235401],[110.7539215,19.4286308],[110.7552872,19.4313564],[110.7575226,19.4361782],[110.7583618,19.4402828],[110.763382,19.4445133],[110.7683029,19.4489059],[110.7721481,19.45084],[110.7692795,19.4435139]]]]},
  4967 +"properties":{
  4968 +"gid":828,
  4969 +"name":"海南省"}
  4970 +},
  4971 +{"type":"Feature",
  4972 +"geometry":{"type":"MultiPolygon","coordinates":[[[[108.6644516,19.2987556],[108.6600037,19.2992916],[108.6571503,19.3030262],[108.6536179,19.306488],[108.6501923,19.3043957],[108.6458893,19.3051815],[108.6433029,19.3088245],[108.6484528,19.3107929],[108.6534119,19.311924],[108.6644516,19.2987556]]]]},
  4973 +"properties":{
  4974 +"gid":829,
  4975 +"name":"海南省"}
  4976 +},
  4977 +{"type":"Feature",
  4978 +"geometry":{"type":"MultiPolygon","coordinates":[[[[110.4731064,18.6957932],[110.4777069,18.6864033],[110.4791565,18.6797562],[110.4861603,18.6740417],[110.4881134,18.665102],[110.4818497,18.6621075],[110.4731827,18.6641483],[110.473877,18.6733227],[110.470253,18.6829453],[110.4683075,18.6889019],[110.4731064,18.6957932]]]]},
  4979 +"properties":{
  4980 +"gid":830,
  4981 +"name":"海南省"}
  4982 +},
  4983 +{"type":"Feature",
  4984 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.267189,16.9825935],[112.2671127,16.9840088],[112.2691116,16.9837761],[112.2699509,16.9827461],[112.2698364,16.981432],[112.2687836,16.9807148],[112.2674026,16.9816971],[112.267189,16.9825935]]]]},
  4985 +"properties":{
  4986 +"gid":831,
  4987 +"name":"海南省"}
  4988 +},
  4989 +{"type":"Feature",
  4990 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.2016983,16.9811306],[112.2033234,16.9826641],[112.2054672,16.9828186],[112.2074814,16.9811268],[112.2073288,16.9777336],[112.2034531,16.9774971],[112.2010422,16.9796295],[112.2016983,16.9811306]]]]},
  4991 +"properties":{
  4992 +"gid":832,
  4993 +"name":"海南省"}
  4994 +},
  4995 +{"type":"Feature",
  4996 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.3036728,16.9683743],[112.3042221,16.9702702],[112.3064804,16.9708805],[112.3082199,16.9699783],[112.3091736,16.966814],[112.3064423,16.965271],[112.3041229,16.9664078],[112.3036728,16.9683743]]]]},
  4997 +"properties":{
  4998 +"gid":833,
  4999 +"name":"海南省"}
  5000 +},
  5001 +{"type":"Feature",
  5002 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.3199692,16.958847],[112.3205185,16.960907],[112.32267,16.9615002],[112.3246689,16.9601536],[112.3248291,16.9582672],[112.3240585,16.9566345],[112.3210831,16.9571152],[112.3199692,16.958847]]]]},
  5003 +"properties":{
  5004 +"gid":834,
  5005 +"name":"海南省"}
  5006 +},
  5007 +{"type":"Feature",
  5008 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.328537,16.9522438],[112.3294373,16.9535313],[112.3312912,16.9539776],[112.3330765,16.9536533],[112.3338013,16.9526329],[112.3340912,16.9512577],[112.3335571,16.9495544],[112.3320618,16.9485035],[112.3292694,16.9487076],[112.3286133,16.9504967],[112.328537,16.9522438]]]]},
  5009 +"properties":{
  5010 +"gid":835,
  5011 +"name":"海南省"}
  5012 +},
  5013 +{"type":"Feature",
  5014 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.3356705,16.9432087],[112.3370209,16.9450455],[112.3389435,16.9439373],[112.3397827,16.9417477],[112.3382111,16.9397335],[112.3360596,16.9404716],[112.3354263,16.942646],[112.3356705,16.9432087]]]]},
  5015 +"properties":{
  5016 +"gid":836,
  5017 +"name":"海南省"}
  5018 +},
  5019 +{"type":"Feature",
  5020 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.3398666,16.93787],[112.3417587,16.9388943],[112.3437729,16.93894],[112.3443604,16.9361877],[112.3436432,16.9346924],[112.3410416,16.9348831],[112.3397827,16.9367161],[112.3398666,16.93787]]]]},
  5021 +"properties":{
  5022 +"gid":837,
  5023 +"name":"海南省"}
  5024 +},
  5025 +{"type":"Feature",
  5026 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.3410797,16.9302368],[112.3431931,16.9314365],[112.3445969,16.9315281],[112.3454285,16.9293385],[112.3459167,16.927948],[112.345047,16.9270439],[112.3420181,16.926878],[112.3409271,16.9283123],[112.3410797,16.9302368]]]]},
  5027 +"properties":{
  5028 +"gid":838,
  5029 +"name":"海南省"}
  5030 +},
  5031 +{"type":"Feature",
  5032 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.3411636,16.8468628],[112.3430023,16.8487263],[112.345253,16.848381],[112.3466721,16.8473682],[112.3467484,16.8459072],[112.3464127,16.8441124],[112.344841,16.8433189],[112.3418732,16.8439007],[112.3412476,16.845583],[112.3411636,16.8468628]]]]},
  5033 +"properties":{
  5034 +"gid":839,
  5035 +"name":"海南省"}
  5036 +},
  5037 +{"type":"Feature",
  5038 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.3348236,16.8334389],[112.3267212,16.8346443],[112.3274918,16.8408298],[112.3355865,16.8407726],[112.3438873,16.8342915],[112.3348236,16.8334389]]]]},
  5039 +"properties":{
  5040 +"gid":840,
  5041 +"name":"海南省"}
  5042 +},
  5043 +{"type":"Feature",
  5044 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.7214737,16.6950359],[112.7322464,16.695343],[112.7416,16.6812248],[112.740799,16.6775131],[112.7357788,16.6756763],[112.7288208,16.6773319],[112.722641,16.6885796],[112.7214737,16.6950359]]]]},
  5045 +"properties":{
  5046 +"gid":841,
  5047 +"name":"海南省"}
  5048 +},
  5049 +{"type":"Feature",
  5050 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.6994705,16.5859222],[111.6997528,16.5867615],[111.7004395,16.5870361],[111.701828,16.5862999],[111.7018433,16.5847988],[111.7006989,16.584446],[111.6997375,16.5850468],[111.6994705,16.5859222]]]]},
  5051 +"properties":{
  5052 +"gid":842,
  5053 +"name":"海南省"}
  5054 +},
  5055 +{"type":"Feature",
  5056 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.7052078,16.5807152],[111.7058334,16.5815315],[111.7073669,16.5813198],[111.7080765,16.5805225],[111.7076416,16.5790501],[111.7059784,16.5790539],[111.7050476,16.5799751],[111.7052078,16.5807152]]]]},
  5057 +"properties":{
  5058 +"gid":843,
  5059 +"name":"海南省"}
  5060 +},
  5061 +{"type":"Feature",
  5062 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.6645966,16.5756359],[111.6648331,16.5768833],[111.6655121,16.5773411],[111.6672974,16.5767193],[111.6670685,16.575346],[111.6661072,16.5746536],[111.6650925,16.5750999],[111.6645966,16.5756359]]]]},
  5063 +"properties":{
  5064 +"gid":844,
  5065 +"name":"海南省"}
  5066 +},
  5067 +{"type":"Feature",
  5068 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.6318817,16.5721416],[112.6351089,16.573204],[112.6381302,16.57197],[112.6404266,16.5710793],[112.6411667,16.5693016],[112.6414719,16.5674171],[112.6382065,16.5658016],[112.6323166,16.5672531],[112.6318817,16.5721416]]]]},
  5069 +"properties":{
  5070 +"gid":845,
  5071 +"name":"海南省"}
  5072 +},
  5073 +{"type":"Feature",
  5074 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.6825333,16.5683899],[111.683403,16.5695934],[111.6848068,16.5692463],[111.6854935,16.5678139],[111.6843567,16.5666294],[111.6829529,16.5671005],[111.6824799,16.5677624],[111.6825333,16.5683899]]]]},
  5075 +"properties":{
  5076 +"gid":846,
  5077 +"name":"海南省"}
  5078 +},
  5079 +{"type":"Feature",
  5080 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.7073517,16.5483913],[111.7078018,16.5498409],[111.7085114,16.5502872],[111.709877,16.5503597],[111.7108307,16.5493088],[111.7102127,16.5478706],[111.7085037,16.547821],[111.7073517,16.5483913]]]]},
  5081 +"properties":{
  5082 +"gid":847,
  5083 +"name":"海南省"}
  5084 +},
  5085 +{"type":"Feature",
  5086 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.744133,16.5455952],[111.7445908,16.5472088],[111.745697,16.5484486],[111.7478867,16.5479736],[111.7490997,16.5459194],[111.7481232,16.5441761],[111.7460632,16.5439873],[111.7450714,16.5443821],[111.744133,16.5455952]]]]},
  5087 +"properties":{
  5088 +"gid":848,
  5089 +"name":"海南省"}
  5090 +},
  5091 +{"type":"Feature",
  5092 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.7157898,16.5448685],[111.7170868,16.5462608],[111.7187729,16.5459824],[111.719162,16.5443134],[111.7180481,16.5430737],[111.7163773,16.5435143],[111.7157898,16.5448685]]]]},
  5093 +"properties":{
  5094 +"gid":849,
  5095 +"name":"海南省"}
  5096 +},
  5097 +{"type":"Feature",
  5098 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.5999985,16.5362282],[111.598259,16.5381508],[111.6008606,16.540823],[111.6035309,16.5406475],[111.6050034,16.5387421],[111.6050568,16.5358944],[111.6023331,16.5350399],[111.5999985,16.5362282]]]]},
  5099 +"properties":{
  5100 +"gid":850,
  5101 +"name":"海南省"}
  5102 +},
  5103 +{"type":"Feature",
  5104 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.5784302,16.5115414],[111.5796204,16.5132732],[111.5836563,16.513525],[111.5847778,16.5103493],[111.5838318,16.5083447],[111.5810928,16.5074902],[111.5783005,16.5097408],[111.5784302,16.5115414]]]]},
  5105 +"properties":{
  5106 +"gid":851,
  5107 +"name":"海南省"}
  5108 +},
  5109 +{"type":"Feature",
  5110 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.7369995,16.4695854],[111.7373734,16.4707298],[111.7384872,16.4708328],[111.7397537,16.4702091],[111.7396469,16.4689579],[111.7387772,16.4684772],[111.737587,16.4687366],[111.7369995,16.4695854]]]]},
  5111 +"properties":{
  5112 +"gid":852,
  5113 +"name":"海南省"}
  5114 +},
  5115 +{"type":"Feature",
  5116 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.6912079,16.455986],[111.691803,16.4583015],[111.696579,16.4569721],[111.6979065,16.4550667],[111.6975327,16.4518852],[111.6927109,16.4536648],[111.6912079,16.455986]]]]},
  5117 +"properties":{
  5118 +"gid":853,
  5119 +"name":"海南省"}
  5120 +},
  5121 +{"type":"Feature",
  5122 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.5029373,16.4548836],[111.5030289,16.4561481],[111.5037231,16.457489],[111.5057526,16.4574738],[111.5076065,16.4565449],[111.5085831,16.4550953],[111.5078506,16.4531784],[111.5059967,16.4523754],[111.5030289,16.4526844],[111.5029373,16.4548836]]]]},
  5123 +"properties":{
  5124 +"gid":854,
  5125 +"name":"海南省"}
  5126 +},
  5127 +{"type":"Feature",
  5128 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.7048035,16.4549427],[111.7049026,16.4564152],[111.7074127,16.4573917],[111.7089767,16.4569492],[111.7095871,16.4556313],[111.7097321,16.4537373],[111.708847,16.4530563],[111.7070007,16.4526424],[111.7049637,16.4533844],[111.7048035,16.4549427]]]]},
  5129 +"properties":{
  5130 +"gid":855,
  5131 +"name":"海南省"}
  5132 +},
  5133 +{"type":"Feature",
  5134 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.5966415,16.4533215],[111.5967636,16.4549026],[111.5976334,16.4557514],[111.5989075,16.4554405],[111.5998001,16.4548149],[111.6001587,16.4532032],[111.599472,16.4517746],[111.5975723,16.4515591],[111.5966415,16.4533215]]]]},
  5135 +"properties":{
  5136 +"gid":856,
  5137 +"name":"海南省"}
  5138 +},
  5139 +{"type":"Feature",
  5140 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.7549667,16.0527821],[111.7589874,16.053812],[111.7632675,16.0537014],[111.7680206,16.0536041],[111.7669373,16.0501289],[111.7650833,16.0486984],[111.7620087,16.047924],[111.7586823,16.0478306],[111.7562866,16.0482235],[111.7545929,16.0497837],[111.754303,16.051384],[111.7549667,16.0527821]]]]},
  5141 +"properties":{
  5142 +"gid":857,
  5143 +"name":"海南省"}
  5144 +},
  5145 +{"type":"Feature",
  5146 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.1921997,15.7838802],[111.1953964,15.7906799],[111.200798,15.7953701],[111.2072983,15.7924604],[111.2060013,15.7856102],[111.2005997,15.7813797],[111.1945038,15.7828999],[111.1921997,15.7838802]]]]},
  5147 +"properties":{
  5148 +"gid":858,
  5149 +"name":"海南省"}
  5150 +},
  5151 +{"type":"Feature",
  5152 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.7218933,15.229538],[117.7244568,15.2290802],[117.7267685,15.2271852],[117.7276535,15.2250252],[117.7259064,15.2237787],[117.7240524,15.2246571],[117.7217789,15.2253952],[117.7215729,15.2267017],[117.7218933,15.229538]]]]},
  5153 +"properties":{
  5154 +"gid":859,
  5155 +"name":"海南省"}
  5156 +},
  5157 +{"type":"Feature",
  5158 +"geometry":{"type":"MultiPolygon","coordinates":[[[[117.8145981,15.1202097],[117.8102036,15.1185198],[117.8066025,15.1193104],[117.8052979,15.1197004],[117.8046036,15.1209497],[117.8065033,15.12286],[117.8095016,15.1243801],[117.8132019,15.1232595],[117.8145981,15.1202097]]]]},
  5159 +"properties":{
  5160 +"gid":860,
  5161 +"name":"海南省"}
  5162 +},
  5163 +{"type":"Feature",
  5164 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.3481674,11.4522953],[114.3491135,11.4550314],[114.3514862,11.4553013],[114.3530273,11.453825],[114.3513107,11.451663],[114.3495865,11.4513283],[114.3481674,11.4522953]]]]},
  5165 +"properties":{
  5166 +"gid":861,
  5167 +"name":"海南省"}
  5168 +},
  5169 +{"type":"Feature",
  5170 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.3289032,11.4326963],[114.3304596,11.4297228],[114.3282166,11.4274445],[114.3263474,11.42729],[114.3253708,11.4293766],[114.3264465,11.4317675],[114.3289032,11.4326963]]]]},
  5171 +"properties":{
  5172 +"gid":862,
  5173 +"name":"海南省"}
  5174 +},
  5175 +{"type":"Feature",
  5176 +"geometry":{"type":"MultiPolygon","coordinates":[[[[115.0243988,11.0723696],[115.0217972,11.07442],[115.0195999,11.0794296],[115.0236969,11.0802202],[115.0274963,11.0795498],[115.0263977,11.0743599],[115.0243988,11.0723696]]]]},
  5177 +"properties":{
  5178 +"gid":863,
  5179 +"name":"海南省"}
  5180 +},
  5181 +{"type":"Feature",
  5182 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.2843323,11.0451326],[114.2862473,11.0426178],[114.285553,11.0414209],[114.2833862,11.040556],[114.2813416,11.0406542],[114.2818069,11.0435247],[114.2843323,11.0451326]]]]},
  5183 +"properties":{
  5184 +"gid":864,
  5185 +"name":"海南省"}
  5186 +},
  5187 +{"type":"Feature",
  5188 +"geometry":{"type":"MultiPolygon","coordinates":[[[[115.8324966,10.8220911],[115.8304672,10.8224134],[115.8230972,10.8241072],[115.8226395,10.8278532],[115.8270035,10.8290224],[115.8288727,10.8290091],[115.8314667,10.8277473],[115.8324203,10.8248224],[115.8324966,10.8220911]]]]},
  5189 +"properties":{
  5190 +"gid":865,
  5191 +"name":"海南省"}
  5192 +},
  5193 +{"type":"Feature",
  5194 +"geometry":{"type":"MultiPolygon","coordinates":[[[[115.8079987,10.72857],[115.8049393,10.7272205],[115.8022385,10.7293663],[115.800087,10.7338781],[115.8016968,10.7349396],[115.8048019,10.7363691],[115.807991,10.73417],[115.8091812,10.7308311],[115.8079987,10.72857]]]]},
  5195 +"properties":{
  5196 +"gid":866,
  5197 +"name":"海南省"}
  5198 +},
  5199 +{"type":"Feature",
  5200 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.4130707,10.6808491],[114.4145126,10.6815825],[114.4171066,10.6821079],[114.4193268,10.6806335],[114.4185028,10.6782885],[114.4158936,10.6775713],[114.4139481,10.6778545],[114.4130707,10.6808491]]]]},
  5201 +"properties":{
  5202 +"gid":867,
  5203 +"name":"海南省"}
  5204 +},
  5205 +{"type":"Feature",
  5206 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.4748611,10.3862848],[114.4770889,10.3841324],[114.4766769,10.3819466],[114.4742432,10.3800545],[114.4715118,10.382062],[114.4727173,10.3844585],[114.4748611,10.3862848]]]]},
  5207 +"properties":{
  5208 +"gid":868,
  5209 +"name":"海南省"}
  5210 +},
  5211 +{"type":"Feature",
  5212 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.3542404,10.3798122],[114.3559265,10.3811016],[114.3591232,10.3827314],[114.3604431,10.3823137],[114.3609238,10.3801394],[114.359993,10.3786802],[114.3571472,10.3775978],[114.3547363,10.3789902],[114.3542404,10.3798122]]]]},
  5213 +"properties":{
  5214 +"gid":869,
  5215 +"name":"海南省"}
  5216 +},
  5217 +{"type":"Feature",
  5218 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.3607178,10.1873369],[114.3627472,10.1891718],[114.3655319,10.1887102],[114.3663101,10.1867027],[114.3656921,10.1854095],[114.3644409,10.1845636],[114.3609467,10.1847067],[114.3607178,10.1873369]]]]},
  5219 +"properties":{
  5220 +"gid":870,
  5221 +"name":"海南省"}
  5222 +},
  5223 +{"type":"Feature",
  5224 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.5526199,9.8843107],[114.5540237,9.8837872],[114.5559464,9.881669],[114.5560226,9.8783836],[114.5547638,9.8765783],[114.552887,9.8762798],[114.5519714,9.876852],[114.5501099,9.8806028],[114.5505219,9.8827801],[114.5526199,9.8843107]]]]},
  5225 +"properties":{
  5226 +"gid":871,
  5227 +"name":"海南省"}
  5228 +},
  5229 +{"type":"Feature",
  5230 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.3231964,9.8713255],[114.3273315,9.8727617],[114.3308716,9.87117],[114.3317032,9.86868],[114.33181,9.8668385],[114.327507,9.8665752],[114.3241806,9.8673763],[114.3231964,9.8713255]]]]},
  5231 +"properties":{
  5232 +"gid":872,
  5233 +"name":"海南省"}
  5234 +},
  5235 +{"type":"Feature",
  5236 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.8677216,9.5504351],[112.8683929,9.5514097],[112.8718567,9.5516195],[112.8741684,9.550456],[112.8760071,9.5486069],[112.8743668,9.5460873],[112.8706665,9.5470295],[112.8683624,9.5479622],[112.8677216,9.5504351]]]]},
  5237 +"properties":{
  5238 +"gid":873,
  5239 +"name":"海南省"}
  5240 +},
  5241 +{"type":"Feature",
  5242 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.7161865,9.0117064],[113.7162476,9.0105629],[113.7161789,9.0098677],[113.7150116,9.0082693],[113.7126923,9.0078287],[113.7103806,9.0071583],[113.7089996,9.0083189],[113.7085571,9.0103912],[113.711113,9.0119791],[113.7132034,9.0128803],[113.7161865,9.0117064]]]]},
  5243 +"properties":{
  5244 +"gid":874,
  5245 +"name":"海南省"}
  5246 +},
  5247 +{"type":"Feature",
  5248 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.8440323,8.9137373],[112.8424072,8.9130564],[112.8398666,8.9135313],[112.8382568,8.9144592],[112.8380432,8.916069],[112.8392029,8.9167528],[112.841507,8.9167395],[112.8440475,8.9160347],[112.8440323,8.9137373]]]]},
  5249 +"properties":{
  5250 +"gid":875,
  5251 +"name":"海南省"}
  5252 +},
  5253 +{"type":"Feature",
  5254 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.8613663,8.9107466],[112.8631897,8.9110985],[112.8654938,8.9101658],[112.8675613,8.9085455],[112.8663864,8.9067135],[112.8636169,8.9067287],[112.8617935,8.9081192],[112.8613663,8.9107466]]]]},
  5255 +"properties":{
  5256 +"gid":876,
  5257 +"name":"海南省"}
  5258 +},
  5259 +{"type":"Feature",
  5260 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.2541504,8.8782129],[112.2546234,8.8775215],[112.2557602,8.8759089],[112.256218,8.8742971],[112.2564392,8.8719988],[112.2564163,8.8692408],[112.2552719,8.8690157],[112.2531891,8.8687935],[112.2508926,8.8713312],[112.2518234,8.8736258],[112.2522964,8.8752327],[112.2541504,8.8782129]]]]},
  5261 +"properties":{
  5262 +"gid":877,
  5263 +"name":"海南省"}
  5264 +},
  5265 +{"type":"Feature",
  5266 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.548172,8.8456049],[112.5473175,8.8442898],[112.5459213,8.8424578],[112.5433807,8.8420095],[112.5417709,8.843626],[112.5429306,8.8452291],[112.5450134,8.8456793],[112.548172,8.8456049]]]]},
  5267 +"properties":{
  5268 +"gid":878,
  5269 +"name":"海南省"}
  5270 +},
  5271 +{"type":"Feature",
  5272 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.6297073,8.8342285],[112.6299362,8.8346863],[112.6324768,8.8326054],[112.6331635,8.8312225],[112.6338425,8.8286905],[112.6326828,8.8284674],[112.630127,8.8271017],[112.6294479,8.8282537],[112.6287689,8.8312454],[112.6297073,8.8342285]]]]},
  5273 +"properties":{
  5274 +"gid":879,
  5275 +"name":"海南省"}
  5276 +},
  5277 +{"type":"Feature",
  5278 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.565712,8.8278828],[112.5656967,8.8262739],[112.5629272,8.8262873],[112.5615463,8.8267536],[112.560173,8.8281393],[112.5597229,8.8304396],[112.5615692,8.8313503],[112.5638733,8.8301897],[112.565712,8.8278828]]]]},
  5279 +"properties":{
  5280 +"gid":880,
  5281 +"name":"海南省"}
  5282 +},
  5283 +{"type":"Feature",
  5284 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.5714798,8.826705],[112.5730972,8.8278456],[112.5758667,8.8273726],[112.5756226,8.8241568],[112.5760727,8.8225451],[112.573761,8.8223276],[112.5726166,8.8230219],[112.5721588,8.8248634],[112.5714798,8.826705]]]]},
  5285 +"properties":{
  5286 +"gid":881,
  5287 +"name":"海南省"}
  5288 +},
  5289 +{"type":"Feature",
  5290 +"geometry":{"type":"MultiPolygon","coordinates":[[[[111.9233932,8.6393223],[111.9228973,8.6369038],[111.9217377,8.6359882],[111.9205933,8.6359911],[111.9173508,8.6346226],[111.9145737,8.633482],[111.9127274,8.6353254],[111.9127426,8.6385422],[111.9148331,8.6401453],[111.9164429,8.6406002],[111.9192123,8.6410513],[111.9208298,8.6405869],[111.9233932,8.6393223]]]]},
  5291 +"properties":{
  5292 +"gid":882,
  5293 +"name":"海南省"}
  5294 +},
  5295 +{"type":"Feature",
  5296 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.3591309,8.3065262],[113.3618011,8.3080444],[113.3638687,8.3077993],[113.3656998,8.3059473],[113.3661499,8.3036461],[113.3659134,8.3020401],[113.3638306,8.3020544],[113.3622208,8.3022966],[113.3610611,8.3032351],[113.3599396,8.3037882],[113.3591309,8.3065262]]]]},
  5297 +"properties":{
  5298 +"gid":883,
  5299 +"name":"海南省"}
  5300 +},
  5301 +{"type":"Feature",
  5302 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.3681564,8.2955894],[113.3693314,8.2983379],[113.3707199,8.2985582],[113.3737106,8.2978468],[113.3732224,8.2939444],[113.3718414,8.293829],[113.3702316,8.2940979],[113.3692932,8.29457],[113.3681564,8.2955894]]]]},
  5303 +"properties":{
  5304 +"gid":884,
  5305 +"name":"海南省"}
  5306 +},
  5307 +{"type":"Feature",
  5308 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.3602066,8.2494631],[113.3612366,8.24788],[113.3618011,8.2462349],[113.3601685,8.2437191],[113.3587799,8.2437286],[113.357872,8.2451143],[113.3576584,8.2478733],[113.3602066,8.2494631]]]]},
  5309 +"properties":{
  5310 +"gid":885,
  5311 +"name":"海南省"}
  5312 +},
  5313 +{"type":"Feature",
  5314 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.3392105,8.1845913],[113.3401108,8.1815977],[113.3394165,8.1806841],[113.3394012,8.1783857],[113.3382416,8.1781645],[113.3373337,8.1790905],[113.3364182,8.1809349],[113.3373566,8.1827669],[113.3392105,8.1845913]]]]},
  5315 +"properties":{
  5316 +"gid":886,
  5317 +"name":"海南省"}
  5318 +},
  5319 +{"type":"Feature",
  5320 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.3310699,8.173851],[113.3321228,8.1730232],[113.3319702,8.1710873],[113.3317337,8.1701698],[113.3303375,8.1690311],[113.32827,8.1692762],[113.3282928,8.1713438],[113.3289871,8.1727171],[113.3310699,8.173851]]]]},
  5321 +"properties":{
  5322 +"gid":887,
  5323 +"name":"海南省"}
  5324 +},
  5325 +{"type":"Feature",
  5326 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.3019791,8.1352301],[113.3024368,8.1366053],[113.3040695,8.137743],[113.3047638,8.1375084],[113.3056564,8.1354332],[113.3047333,8.1342916],[113.3024292,8.1338482],[113.3019791,8.1352301]]]]},
  5327 +"properties":{
  5328 +"gid":888,
  5329 +"name":"海南省"}
  5330 +},
  5331 +{"type":"Feature",
  5332 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.2938309,8.1267071],[113.2929382,8.1277122],[113.2940979,8.1295424],[113.296402,8.1288366],[113.2966232,8.126997],[113.2961426,8.1256218],[113.2938538,8.1260977],[113.2938309,8.1267071]]]]},
  5333 +"properties":{
  5334 +"gid":889,
  5335 +"name":"海南省"}
  5336 +},
  5337 +{"type":"Feature",
  5338 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.2739182,8.1115341],[113.2743835,8.1099224],[113.2734528,8.1090107],[113.2706604,8.1069622],[113.2690506,8.1072035],[113.2690735,8.1088114],[113.2702332,8.1111002],[113.2739182,8.1115341]]]]},
  5339 +"properties":{
  5340 +"gid":890,
  5341 +"name":"海南省"}
  5342 +},
  5343 +{"type":"Feature",
  5344 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.2315369,8.0805836],[113.2312469,8.079608],[113.2298584,8.0786858],[113.2271423,8.0783167],[113.2262268,8.0794716],[113.2260132,8.0810814],[113.2271729,8.0815325],[113.2315369,8.0805836]]]]},
  5345 +"properties":{
  5346 +"gid":891,
  5347 +"name":"海南省"}
  5348 +},
  5349 +{"type":"Feature",
  5350 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.9310989,7.9831371],[113.9287033,7.9815469],[113.9247971,7.9815779],[113.921402,7.9836731],[113.9208984,7.9852839],[113.9220963,7.987113],[113.925499,7.9866271],[113.9301987,7.9859018],[113.9310989,7.9831371]]]]},
  5351 +"properties":{
  5352 +"gid":892,
  5353 +"name":"海南省"}
  5354 +},
  5355 +{"type":"Feature",
  5356 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.9007492,7.8571148],[112.9000015,7.8601747],[112.9013214,7.8640647],[112.9043884,7.8648143],[112.9077911,7.8635368],[112.9074173,7.8590693],[112.9042664,7.857327],[112.9007492,7.8571148]]]]},
  5357 +"properties":{
  5358 +"gid":893,
  5359 +"name":"海南省"}
  5360 +},
  5361 +{"type":"Feature",
  5362 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.8286972,7.3960981],[113.827301,7.3965678],[113.8268967,7.3977208],[113.8274002,7.398407],[113.8290024,7.3990841],[113.8311005,7.3997569],[113.8317032,7.3972239],[113.8302994,7.3963161],[113.8286972,7.3960981]]]]},
  5363 +"properties":{
  5364 +"gid":894,
  5365 +"name":"海南省"}
  5366 +},
  5367 +{"type":"Feature",
  5368 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.5953979,6.9437232],[113.5960999,6.9423389],[113.5970001,6.9409528],[113.597702,6.9393401],[113.5959015,6.9382038],[113.5944977,6.9389038],[113.5929031,6.9405241],[113.5926971,6.9421339],[113.5929031,6.9432821],[113.5938034,6.9435048],[113.5953979,6.9437232]]]]},
  5369 +"properties":{
  5370 +"gid":895,
  5371 +"name":"海南省"}
  5372 +},
  5373 +{"type":"Feature",
  5374 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.2508011,6.339889],[113.2500992,6.3362169],[113.2481995,6.3343911],[113.245697,6.3344078],[113.2445984,6.3348751],[113.2454987,6.336936],[113.2463989,6.3385391],[113.248703,6.3399029],[113.2508011,6.339889]]]]},
  5375 +"properties":{
  5376 +"gid":896,
  5377 +"name":"海南省"}
  5378 +},
  5379 +{"type":"Feature",
  5380 +"geometry":{"type":"MultiPolygon","coordinates":[[[[113.2363968,6.3234391],[113.2352982,6.3200002],[113.233902,6.3190899],[113.2322998,6.3186412],[113.2304001,6.3195729],[113.2296982,6.3207259],[113.2317963,6.3220911],[113.2341003,6.3229942],[113.2363968,6.3234391]]]]},
  5381 +"properties":{
  5382 +"gid":897,
  5383 +"name":"海南省"}
  5384 +},
  5385 +{"type":"Feature",
  5386 +"geometry":{"type":"MultiPolygon","coordinates":[[[[112.0159073,24.7399616],[112.0296173,24.770937],[112.0771332,24.803442],[112.0976562,24.8318691],[112.118103,24.8350315],[112.13591,24.8108692],[112.149292,24.8154259],[112.1670532,24.9156494],[112.1601334,24.9293003],[112.1088028,24.966877],[112.1129303,24.9893723],[112.1448822,25.0195999],[112.141243,25.0533695],[112.1554718,25.0733089],[112.1807632,25.1839294],[112.1998062,25.2020149],[112.2471466,25.1621227],[112.2724686,25.1663933],[112.2903671,25.1569099],[112.3061371,25.1733837],[112.3563385,25.1926994],[112.385643,25.1470966],[112.3979874,25.1415291],[112.4139633,25.1474247],[112.4389801,25.1824455],[112.4561996,25.1497459],[112.4817505,25.1514549],[112.5354233,25.1270523],[112.651001,25.1316471],[112.6651764,25.1062927],[112.6868362,25.0974236],[112.7173462,25.0604725],[112.7006989,25.0362396],[112.697937,25.0105381],[112.7352295,25.0006371],[112.7373962,24.9620399],[112.7753067,24.9411011],[112.7739487,24.8969707],[112.8553772,24.8968639],[112.8909531,24.919548],[112.9881287,24.9212608],[113.0018921,24.9326229],[113.0032578,24.9638462],[113.002327,24.9923325],[112.977417,25.0001278],[112.9801483,25.0187073],[112.9686966,25.034193],[112.9723969,25.0479431],[112.9970093,25.0566864],[113.0089035,25.0795479],[112.9637833,25.1359787],[112.960228,25.1571388],[112.9811707,25.1751022],[113.0256271,25.1921673],[113.0238037,25.20895],[112.9739838,25.2544022],[112.8953476,25.2385197],[112.8625488,25.2477379],[112.8527603,25.3293476],[112.8666382,25.324646],[112.8855286,25.3387375],[112.8965836,25.306263],[112.9203568,25.3040028],[112.9394836,25.3392143],[112.9610291,25.3408718],[112.9799118,25.3537998],[113.0150604,25.3484383],[113.0411682,25.3711739],[113.0792999,25.3823071],[113.095192,25.4172993],[113.1227493,25.4122143],[113.1235428,25.4546947],[113.1541367,25.4879322],[113.1893234,25.4836769],[113.2272797,25.5152149],[113.2757568,25.4995461],[113.2846298,25.5171375],[113.2940369,25.5186443],[113.2929993,25.4989033],[113.3082428,25.4824295],[113.3021622,25.4471245],[113.317482,25.4549961],[113.3509827,25.4392357],[113.3646088,25.4007263],[113.3917465,25.4024849],[113.4126434,25.3928261],[113.4382629,25.3617458],[113.4673233,25.3731155],[113.5010223,25.3740845],[113.5168762,25.3511505],[113.5348434,25.3658581],[113.5764923,25.3414421],[113.5684891,25.3191299],[113.5737534,25.3134575],[113.6179276,25.3202362],[113.6396866,25.3339615],[113.6710434,25.3305569],[113.682251,25.3494701],[113.7148209,25.3575249],[113.7268066,25.348402],[113.7453232,25.3630753],[113.7548828,25.3592663],[113.7621689,25.3281555],[113.8120728,25.3281326],[113.8256836,25.338501],[113.8324432,25.3613739],[113.8656464,25.3767357],[113.8776321,25.3937836],[113.8837738,25.4364166],[113.9347076,25.4358788],[113.9592133,25.4573231],[113.9917374,25.4356861],[113.9779282,25.4037437],[114.0008621,25.3998528],[114.0349731,25.3581371],[114.0218124,25.3370514],[114.0284195,25.3169575],[114.0119934,25.2853775],[114.0179672,25.2602463],[114.0284576,25.2547626],[114.1181335,25.3121948],[114.1554184,25.3160286],[114.2199936,25.2784348],[114.2771225,25.2770023],[114.3007965,25.2927914],[114.2990723,25.3329926],[114.3506088,25.329586],[114.3819199,25.3176537],[114.3982086,25.3397865],[114.4231491,25.3449726],[114.4259415,25.3731403],[114.4402466,25.3870506],[114.4769135,25.3763561],[114.4984207,25.3850479],[114.5026016,25.3987255],[114.529747,25.4185295],[114.5548401,25.4103756],[114.5683594,25.3868809],[114.5850525,25.3864918],[114.5854034,25.3717937],[114.6058197,25.3600693],[114.6267014,25.3292789],[114.6796494,25.3137856],[114.6972733,25.3193283],[114.7322769,25.2799168],[114.7372513,25.2428417],[114.6955338,25.2172318],[114.6992874,25.2075005],[114.6770401,25.1729202],[114.7133331,25.161026],[114.7315979,25.1293659],[114.7057266,25.108881],[114.6696777,25.1113586],[114.6637192,25.0887794],[114.643692,25.0775528],[114.5899582,25.0707912],[114.5729294,25.0847301],[114.5575485,25.0855484],[114.5287704,25.0228691],[114.5103607,25.0232925],[114.4940872,25.001173],[114.461731,24.9989243],[114.3903198,24.952095],[114.3808975,24.9109936],[114.3953934,24.8778534],[114.3289871,24.8070202],[114.3433609,24.7883492],[114.331131,24.7541924],[114.2848816,24.728569],[114.2696381,24.7036514],[114.1738129,24.6767464],[114.1772537,24.6633644],[114.1870499,24.652607],[114.2291794,24.6469078],[114.2747421,24.628273],[114.3032303,24.5725861],[114.3413925,24.5891991],[114.3726273,24.5658817],[114.3977737,24.5253086],[114.3981018,24.5000591],[114.4261627,24.4870415],[114.5275269,24.5540333],[114.5513916,24.5353508],[114.5693893,24.5406666],[114.5873337,24.5349674],[114.6013336,24.5589619],[114.6536865,24.5781384],[114.664917,24.5753441],[114.6801605,24.5371094],[114.7045822,24.5298615],[114.7107086,24.5501366],[114.7325363,24.5658951],[114.7250214,24.6092243],[114.7871399,24.6086082],[114.7987366,24.6009731],[114.8231964,24.5865898],[114.8395767,24.587553],[114.8649063,24.5605164],[114.8844223,24.5818214],[114.9057999,24.6629753],[114.928978,24.6635246],[114.9391327,24.650177],[114.9826965,24.6749744],[115.0155563,24.6713505],[115.0367508,24.6964931],[115.0604401,24.70504],[115.0833206,24.6810131],[115.0943069,24.6857662],[115.107048,24.6675167],[115.1159973,24.6796684],[115.1510086,24.680088],[115.1615601,24.6871414],[115.1593628,24.6963844],[115.1779785,24.6963272],[115.1837997,24.7046604],[115.2111664,24.7250156],[115.2521591,24.7305241],[115.286293,24.7566414],[115.3534698,24.7397995],[115.3647614,24.7745914],[115.3777084,24.7703133],[115.4108429,24.7808247],[115.466423,24.764267],[115.5450592,24.6820297],[115.5552673,24.6445351],[115.5724716,24.6194515],[115.6213531,24.6211681],[115.6700668,24.5985413],[115.7090302,24.5440693],[115.7216034,24.5372467],[115.7328262,24.5417118],[115.7760391,24.5603123],[115.8315735,24.5654163],[115.8351593,24.5735664],[115.8270264,24.597702],[115.7975616,24.6163235],[115.7621994,24.6654282],[115.7765808,24.6860905],[115.797821,24.6883965],[115.7897873,24.702198],[115.7677078,24.7107067],[115.7516937,24.7463379],[115.7617111,24.7976723],[115.7827606,24.8273029],[115.7815933,24.8491516],[115.7996521,24.860054],[115.7995071,24.8823261],[115.8118973,24.9028206],[115.8422775,24.8990879],[115.8641968,24.8726673],[115.8888397,24.8709469],[115.8956833,24.8780708],[115.8743973,24.90769],[115.8707504,24.9305363],[115.8772736,24.9358349],[115.9269028,24.9213581],[115.9731293,24.9228153],[115.9865875,24.8998699],[116.0261307,24.8983192],[116.046402,24.8572311],[116.0856934,24.8561306],[116.139183,24.8446617],[116.1922302,24.8651009],[116.2118912,24.8527069],[116.2186127,24.8267574],[116.2460632,24.8260269],[116.2271729,24.8025818],[116.2391129,24.7927494],[116.3038025,24.8026352],[116.3222427,24.8267765],[116.3405533,24.8304863],[116.3481293,24.8660316],[116.3850403,24.8738899],[116.3948975,24.851263],[116.4128494,24.8407402],[116.3687363,24.8179951],[116.3707962,24.8016186],[116.3888321,24.7986736],[116.4026337,24.7742939],[116.4170685,24.7700977],[116.4095688,24.7540665],[116.4147263,24.739645],[116.4566727,24.7137775],[116.4850922,24.7127342],[116.4919434,24.7023811],[116.5096893,24.6541958],[116.5063934,24.6141357],[116.5292282,24.6068611],[116.5440979,24.6129665],[116.5943298,24.649662],[116.63311,24.6442947],[116.6547623,24.6554146],[116.721962,24.6657028],[116.7520981,24.6585693],[116.7699738,24.6746387],[116.7930374,24.6778755],[116.8093338,24.6441727],[116.7901764,24.6329803],[116.7723236,24.5845356],[116.7509689,24.5584984],[116.7518921,24.5458336],[116.7888031,24.5012321],[116.8267899,24.4910202],[116.8434677,24.4768162],[116.8529892,24.4548569],[116.8378601,24.453846],[116.8367767,24.4309273],[116.8972092,24.3752651],[116.9067688,24.3650112],[116.8955078,24.3500767],[116.911293,24.3175316],[116.906311,24.3080845],[116.9276733,24.2716427],[116.930191,24.2247028],[116.9844284,24.1892262],[116.9841385,24.167654],[116.9285126,24.1214523],[116.919899,24.088047],[116.9286194,24.0555553],[116.9431763,24.056118],[116.9393616,24.0287209],[116.9545135,24.0049229],[116.9756699,24.0002556],[116.9644394,23.904438],[116.9863586,23.8573971],[117.0150909,23.8390656],[117.0167313,23.8005219],[117.0386581,23.7720356],[117.0461731,23.7033234],[117.1270828,23.6520691],[117.1810837,23.6376648],[117.1898117,23.6215858],[117.1805267,23.6184406],[117.1656036,23.6099758],[117.1592102,23.6070385],[117.1455765,23.597002],[117.1297531,23.5786324],[117.1253433,23.5690899],[117.1231613,23.5669613],[117.117363,23.568861],[117.108139,23.5688229],[117.097023,23.5657463],[117.0911484,23.5625896],[117.0882416,23.5528584],[117.087883,23.5487156],[117.0846329,23.5490799],[117.0800781,23.5581341],[117.0809631,23.5616035],[117.0845871,23.5646954],[117.0861893,23.5691051],[117.0857468,23.5748348],[117.0840683,23.5800686],[117.0842667,23.5885715],[117.0825806,23.5944939],[117.0781937,23.5987282],[117.0759964,23.6044064],[117.0739136,23.6144505],[117.0715485,23.6180553],[117.054718,23.6214695],[117.0447311,23.6218662],[117.0361862,23.6234531],[117.0311813,23.6231689],[117.0292892,23.6211834],[117.0236588,23.6180325],[117.0177307,23.616478],[117.0098495,23.6134911],[117.004097,23.613781],[116.9953613,23.6213303],[116.9912796,23.6239643],[116.9891434,23.6280365],[116.986557,23.6296577],[116.9792099,23.6197033],[116.9748306,23.6165867],[116.9696732,23.6141376],[116.9632568,23.6121082],[116.9615936,23.6099911],[116.963768,23.6047745],[116.9701614,23.6001415],[116.9738922,23.6004829],[116.971817,23.5813599],[116.9670868,23.5809879],[116.96418,23.5714855],[116.9628983,23.5654755],[116.9626465,23.5581188],[116.9637909,23.5542488],[116.9676208,23.5516071],[116.970993,23.5549221],[116.9732666,23.5609627],[116.9767914,23.5674973],[116.9835434,23.5598888],[116.9873428,23.5581646],[117.0056915,23.5681248],[117.0100327,23.5726166],[117.0129471,23.5743084],[117.0142593,23.5653915],[117.0173492,23.5624981],[117.018692,23.5597801],[117.0180588,23.5565472],[117.0138474,23.5555038],[117.0097122,23.5528545],[117.0053864,23.547905],[117.001442,23.5468693],[116.9987564,23.5451813],[116.993988,23.5317192],[116.993103,23.5144672],[116.9915085,23.5098267],[116.9813766,23.511446],[116.9689331,23.513979],[116.9608536,23.5171833],[116.9526825,23.5155621],[116.9452133,23.5153389],[116.9421768,23.5163956],[116.9389877,23.5293922],[116.9349594,23.5375385],[116.9458923,23.5385551],[116.9521408,23.5380535],[116.9586182,23.5382462],[116.9633179,23.5393066],[116.9668732,23.5441723],[116.9649734,23.5477314],[116.9568634,23.5455456],[116.9498978,23.5451069],[116.9453964,23.5454311],[116.9418716,23.5464745],[116.9326401,23.5397663],[116.9258499,23.541399],[116.9158936,23.5553398],[116.9101028,23.5565205],[116.8942871,23.559742],[116.8835526,23.5528851],[116.8899918,23.5472088],[116.8948593,23.5436802],[116.895752,23.5395756],[116.8906708,23.5352859],[116.8895111,23.5326004],[116.8883667,23.5299339],[116.8876572,23.5216446],[116.88311,23.5149593],[116.8794098,23.5083027],[116.8755875,23.5038223],[116.8718414,23.4970493],[116.8622284,23.4993992],[116.8639984,23.4811192],[116.8646927,23.4740906],[116.8747635,23.470953],[116.8690109,23.4599018],[116.8631592,23.4605618],[116.8605423,23.4626064],[116.8555374,23.4633713],[116.8647766,23.4514904],[116.8637238,23.4380016],[116.8532333,23.4248199],[116.8620377,23.4225616],[116.8643265,23.4210243],[116.8617935,23.415432],[116.8507233,23.418541],[116.8497467,23.424942],[116.8427811,23.4247303],[116.83535,23.423584],[116.8293304,23.4176579],[116.8227463,23.4137802],[116.8218079,23.4052525],[116.8202362,23.4003792],[116.8190536,23.3920746],[116.8174362,23.3853931],[116.8078003,23.3796234],[116.7989731,23.3822689],[116.7809067,23.3654022],[116.772438,23.3587074],[116.7680206,23.3569622],[116.7627029,23.3574009],[116.762207,23.3569279],[116.7541122,23.3491802],[116.7435379,23.3456345],[116.7375183,23.3468246],[116.7330475,23.3483143],[116.7223129,23.3522358],[116.7077484,23.3509464],[116.6607285,23.3499222],[116.6583786,23.3528347],[116.6606369,23.359108],[116.6619034,23.3653507],[116.6608963,23.3767109],[116.658287,23.3787346],[116.6569595,23.3709354],[116.6562881,23.3621864],[116.6549683,23.3575497],[116.6535568,23.3554382],[116.6503983,23.3532696],[116.6444397,23.35285],[116.6374817,23.354702],[116.6202927,23.3594322],[116.6141968,23.3626823],[116.6038208,23.3738365],[116.5996933,23.3775978],[116.575737,23.3880177],[116.5700684,23.3906689],[116.5652771,23.3937473],[116.5629196,23.3952637],[116.5554428,23.4019127],[116.5514297,23.4136219],[116.5490036,23.3984547],[116.5469513,23.3856697],[116.5613785,23.3602982],[116.5703125,23.3445053],[116.5703506,23.3444958],[116.5823669,23.3416767],[116.5838165,23.3362103],[116.5878067,23.3294487],[116.5921402,23.3268299],[116.5943069,23.3246708],[116.5954971,23.3234921],[116.5984726,23.3038311],[116.6060333,23.314642],[116.6091995,23.3165798],[116.6136398,23.3176422],[116.6332932,23.3180389],[116.6416702,23.3216724],[116.641861,23.3217564],[116.6481705,23.3260937],[116.6512833,23.3323326],[116.6567917,23.3353252],[116.6645584,23.3406258],[116.6709137,23.3440418],[116.677063,23.3458443],[116.6845627,23.3451633],[116.6893768,23.3427868],[116.6969528,23.3264866],[116.7070312,23.3251152],[116.7184372,23.323946],[116.723938,23.3234291],[116.7274094,23.3237686],[116.7300262,23.3270645],[116.7348022,23.3393898],[116.7520905,23.3227005],[116.7600327,23.3165169],[116.7594299,23.3125916],[116.7575836,23.3086281],[116.7620087,23.3032532],[116.7684021,23.2986279],[116.7700729,23.2936268],[116.7705231,23.2881279],[116.7702789,23.2809982],[116.768631,23.2715282],[116.7703934,23.2573414],[116.771843,23.251873],[116.7757874,23.2457924],[116.7791672,23.2417622],[116.7819519,23.2404709],[116.7921371,23.2436066],[116.8009872,23.2435856],[116.8044662,23.2439232],[116.8101578,23.2376671],[116.8054886,23.236145],[116.7953186,23.2215881],[116.7900772,23.2152233],[116.7867126,23.2121334],[116.7835999,23.2154827],[116.7786636,23.2177353],[116.7745972,23.2230854],[116.7684708,23.2281075],[116.7592773,23.2278214],[116.7557373,23.2290897],[116.7518616,23.2333336],[116.7478638,23.2407894],[116.7467194,23.2446594],[116.7492981,23.2491035],[116.7535629,23.2480888],[116.7575378,23.2482109],[116.7558594,23.2534428],[116.746521,23.2570572],[116.7387238,23.2593422],[116.7313766,23.2630177],[116.7265091,23.2736607],[116.7241287,23.2774906],[116.7188034,23.2803116],[116.7035828,23.2814407],[116.7012177,23.2848129],[116.6979218,23.2796555],[116.691658,23.2808361],[116.6871033,23.2827606],[116.6830521,23.2802868],[116.6824799,23.2799377],[116.6838531,23.2766857],[116.6948166,23.2734528],[116.697937,23.2725334],[116.7051163,23.2732201],[116.7156982,23.2765388],[116.7192383,23.2750416],[116.7216568,23.2700634],[116.7225494,23.2661858],[116.7214432,23.262476],[116.7214203,23.2562733],[116.7288666,23.256506],[116.7351685,23.254406],[116.7345581,23.2507114],[116.7272263,23.2472649],[116.7191162,23.2442551],[116.7129364,23.243372],[116.7094498,23.2434921],[116.7089691,23.2431698],[116.6863937,23.2280636],[116.6723785,23.2165947],[116.6654434,23.2092533],[116.662117,23.1981201],[116.6623688,23.1914654],[116.6532669,23.1886501],[116.6473694,23.1666374],[116.6299133,23.1683788],[116.6303101,23.1775818],[116.6240005,23.1799068],[116.6079407,23.1839867],[116.606163,23.1850796],[116.6056137,23.1995354],[116.6153564,23.2049007],[116.6180878,23.2185421],[116.6161499,23.2237644],[116.6098175,23.226778],[116.6026917,23.231144],[116.5942535,23.2375355],[116.5880737,23.236187],[116.5836868,23.2335205],[116.5796967,23.2343025],[116.5567169,23.2296638],[116.5345535,23.2305527],[116.531311,23.229475],[116.5290298,23.2277985],[116.5258179,23.2254314],[116.5280914,23.2239113],[116.5397034,23.2258949],[116.5469131,23.2261295],[116.5534134,23.22542],[116.5587082,23.2223949],[116.5668869,23.2240181],[116.5730209,23.226284],[116.5826721,23.2277431],[116.5969009,23.2263641],[116.6054611,23.2236519],[116.6092682,23.2214756],[116.6098633,23.2125359],[116.6091995,23.2099876],[116.6068115,23.2073841],[116.6002884,23.1956882],[116.5754089,23.1827126],[116.5664062,23.1773663],[116.55896,23.1704636],[116.5549622,23.164362],[116.5442963,23.1373672],[116.5349121,23.1250515],[116.5337524,23.1214504],[116.533287,23.1131153],[116.5428314,23.1031475],[116.5454483,23.1004143],[116.5469131,23.0944881],[116.5502701,23.0911522],[116.5550995,23.0883217],[116.5549393,23.0860176],[116.5502167,23.0792027],[116.5455093,23.0592918],[116.5477676,23.0522423],[116.5513687,23.048912],[116.5538635,23.0487633],[116.5524597,23.0333252],[116.5571671,23.0270443],[116.5607071,23.0250912],[116.5674133,23.0188751],[116.5611267,23.0140762],[116.557457,23.012579],[116.5522079,23.0135574],[116.5495987,23.0102558],[116.5474091,23.0026035],[116.5447235,23.0013676],[116.5400772,23.0058136],[116.5347672,23.0083961],[116.5284729,23.005167],[116.5252228,22.9982071],[116.5136108,22.9835815],[116.5180435,22.984417],[116.5178833,22.9823418],[116.5156021,22.9767532],[116.5157471,22.9730816],[116.5129623,22.9679375],[116.5074615,22.9622421],[116.5063171,22.9596786],[116.5064468,22.9562359],[116.5035629,22.954073],[116.504921,22.950901],[116.5056763,22.9440327],[116.5020523,22.9413872],[116.4841537,22.9355164],[116.4768829,22.9440079],[116.4725113,22.9477692],[116.4639969,22.9495583],[116.4595337,22.9498692],[116.4564896,22.9513779],[116.4528122,22.9501076],[116.448761,22.9456081],[116.4416733,22.9428444],[116.4394226,22.9432297],[116.4212265,22.9387207],[116.4143066,22.9378014],[116.4000702,22.933651],[116.3911438,22.9333534],[116.3891296,22.9342041],[116.3861618,22.9338741],[116.3825531,22.9309959],[116.3784027,22.9292507],[116.3739395,22.9291],[116.3698196,22.9328671],[116.3630371,22.9349384],[116.3532867,22.9366779],[116.3414001,22.9422512],[116.3393784,22.9451103],[116.3306885,22.9494724],[116.3257675,22.9545918],[116.3219833,22.9625053],[116.3100128,22.9648495],[116.3089676,22.9650517],[116.3032227,22.9666862],[116.2956772,22.9663792],[116.2938614,22.9640789],[116.2711563,22.9543438],[116.2628326,22.9513016],[116.2560272,22.9476223],[116.2483063,22.941843],[116.2361603,22.9354515],[116.2289124,22.930378],[116.2231827,22.9246655],[116.2097397,22.9069691],[116.1946335,22.8940372],[116.1887207,22.8867092],[116.167923,22.8671436],[116.163208,22.860775],[116.1592636,22.860178],[116.1558533,22.8586807],[116.1540833,22.8533344],[116.1474762,22.8508053],[116.133049,22.8397312],[116.1245499,22.8412724],[116.1205292,22.8365345],[116.1133118,22.8309956],[116.1090164,22.8326836],[116.1074066,22.8296394],[116.1016693,22.8243809],[116.0992508,22.8229179],[116.09729,22.8223896],[116.0899963,22.8248901],[116.0867462,22.8254642],[116.0836334,22.8409805],[116.0802307,22.8452263],[116.0800323,22.8500462],[116.0805664,22.8551197],[116.0782318,22.8637695],[116.0809631,22.8696098],[116.0858536,22.8716221],[116.0947571,22.8781395],[116.098793,22.8826485],[116.1009598,22.8843327],[116.1164932,22.8929234],[116.1277313,22.8972225],[116.1339722,22.8965206],[116.1355362,22.8965969],[116.1401672,22.8967381],[116.1444473,22.9010239],[116.1345367,22.9068813],[116.1318665,22.9054108],[116.1258621,22.9006042],[116.1200333,22.8976421],[116.1126938,22.9010601],[116.109169,22.9020863],[116.1044617,22.9019203],[116.0997162,22.9024429],[116.0905991,22.9069481],[116.0882263,22.9103107],[116.0806885,22.9187775],[116.0761337,22.9209137],[116.073143,22.9202843],[116.0727463,22.9202023],[116.0759735,22.9126358],[116.0804291,22.9068184],[116.08284,22.9025383],[116.0869217,22.8999233],[116.0924835,22.8973637],[116.0925598,22.8955269],[116.0911865,22.8924923],[116.0849228,22.8852425],[116.0771027,22.8793545],[116.0726929,22.8718452],[116.0702972,22.8694649],[116.0652008,22.8667545],[116.0723877,22.8610363],[116.0747375,22.8521557],[116.057991,22.855011],[116.0542984,22.8544197],[116.0408936,22.8486576],[116.0323029,22.846283],[116.0272064,22.8435745],[116.0115967,22.8370419],[116.0031128,22.8381176],[115.9937286,22.8370914],[115.9910736,22.8353882],[115.9815292,22.826313],[115.9723892,22.8193207],[115.9691086,22.8148346],[115.9626694,22.8086281],[115.9590683,22.8057404],[115.953743,22.8027897],[115.9477921,22.8025761],[115.9498367,22.8070164],[115.9550705,22.8122616],[115.9584579,22.8144512],[115.966713,22.8246307],[115.9692535,22.8293171],[115.9687271,22.8355045],[115.9623566,22.8338966],[115.9587708,22.8345852],[115.9566269,22.8224277],[115.9550629,22.8186951],[115.9524536,22.8158436],[115.9417725,22.8099422],[115.9387817,22.8102932],[115.9318771,22.8093548],[115.9158783,22.8005009],[115.9059677,22.7943954],[115.9010773,22.7928371],[115.8965836,22.7933636],[115.8950119,22.7953739],[115.8881531,22.7992611],[115.8660278,22.7887993],[115.85923,22.7853317],[115.85392,22.7819195],[115.8510818,22.7785988],[115.8432083,22.7714138],[115.8337326,22.7609539],[115.8313904,22.7576485],[115.8322067,22.7558403],[115.8273163,22.7545128],[115.8235092,22.7449493],[115.8169937,22.7465458],[115.8163071,22.7391663],[115.8085632,22.7466946],[115.8078537,22.7517242],[115.7997437,22.7557907],[115.7968369,22.7595901],[115.7968826,22.7646465],[115.8007736,22.7663994],[115.8033066,22.7706299],[115.7992935,22.7778358],[115.7966385,22.7873898],[115.8021317,22.7981663],[115.7930069,22.8083992],[115.7950592,22.8183575],[115.7949677,22.8204231],[115.8004837,22.8192482],[115.8059616,22.8187618],[115.8114777,22.8116112],[115.8144531,22.811491],[115.8179626,22.8166771],[115.8183212,22.8196774],[115.811058,22.821249],[115.8095474,22.8276272],[115.7992172,22.8254051],[115.7944565,22.8263779],[115.7887878,22.8257103],[115.7824402,22.8291512],[115.7638702,22.8454666],[115.7560425,22.8486214],[115.7345581,22.8519554],[115.7193985,22.8525372],[115.7114868,22.8515491],[115.7023163,22.8514347],[115.6991272,22.8506241],[115.6967697,22.8535233],[115.6976929,22.8609123],[115.6973801,22.8680248],[115.696167,22.8730354],[115.6934662,22.8779888],[115.6699829,22.8816986],[115.6592865,22.8819847],[115.6742096,22.8869152],[115.6805267,22.8899117],[115.6910934,22.8981247],[115.6926422,22.9025478],[115.6813812,22.8989067],[115.6776276,22.9038048],[115.6746979,22.8984241],[115.6741562,22.8935776],[115.6705322,22.8916035],[115.6619034,22.890358],[115.6533279,22.8877354],[115.6469879,22.8851948],[115.6417923,22.8847694],[115.6393738,22.8835278],[115.6444321,22.8811913],[115.6440964,22.8775024],[115.6393967,22.8770943],[115.6342621,22.8755188],[115.6244278,22.869751],[115.6167526,22.8686295],[115.5904999,22.8492584],[115.5718231,22.8342915],[115.564827,22.8296566],[115.5605316,22.8258133],[115.5619125,22.822649],[115.5623093,22.8194466],[115.5649872,22.814724],[115.5554276,22.8029575],[115.5499496,22.796217],[115.5438232,22.7946014],[115.5403824,22.7827473],[115.5390015,22.7803955],[115.5347137,22.7820683],[115.5174408,22.7579575],[115.5192032,22.7518196],[115.5196762,22.7465515],[115.5214005,22.7415619],[115.5249329,22.7400894],[115.5308228,22.7414665],[115.5336075,22.7401962],[115.5324936,22.7321072],[115.5346527,22.728054],[115.5423965,22.7209988],[115.5475388,22.7170601],[115.5523682,22.714489],[115.5553436,22.7143745],[115.5613785,22.7180538],[115.5673065,22.7240276],[115.5704498,22.7315044],[115.5679169,22.7380714],[115.5634689,22.7434177],[115.5572586,22.7491531],[115.5553894,22.7522984],[115.5571671,22.7567348],[115.5649872,22.7538185],[115.5694275,22.7544479],[115.5741272,22.7488842],[115.5794067,22.7474766],[115.5859909,22.7500286],[115.5958862,22.7561531],[115.6017609,22.7577572],[115.6002197,22.7478161],[115.6025314,22.7460651],[115.6038589,22.7440472],[115.6010895,22.7393456],[115.5963211,22.7350254],[115.5857162,22.7339287],[115.5809784,22.72892],[115.5719223,22.7207584],[115.5627289,22.710062],[115.5580826,22.7029877],[115.5556717,22.6959991],[115.5591431,22.6903877],[115.5732727,22.6792107],[115.5740967,22.6774025],[115.5739822,22.6744099],[115.570961,22.6644115],[115.5725632,22.6617146],[115.5664291,22.6603298],[115.560463,22.6610184],[115.5578308,22.6698799],[115.5534515,22.6736202],[115.5408096,22.6735916],[115.5346527,22.6726627],[115.5301437,22.6738682],[115.5275726,22.6760654],[115.5195007,22.6789722],[115.5123367,22.6892662],[115.5059128,22.6890163],[115.4954834,22.6895313],[115.4886322,22.6929417],[115.4839096,22.6987343],[115.4762497,22.7024689],[115.4697037,22.7041759],[115.4523773,22.7053165],[115.434639,22.7027798],[115.4235001,22.6915398],[115.4009933,22.6959381],[115.3833694,22.6911049],[115.3753128,22.6990604],[115.3644104,22.7043724],[115.3613434,22.7065506],[115.3580399,22.7135429],[115.3472519,22.7216206],[115.3417206,22.7340412],[115.3396072,22.7367153],[115.3431396,22.7409916],[115.3456573,22.7452316],[115.3469467,22.749649],[115.3459091,22.7615585],[115.3430481,22.7697201],[115.3428574,22.7738495],[115.3479004,22.7666969],[115.353569,22.7620945],[115.3611526,22.7591782],[115.3721924,22.7561684],[115.3937531,22.751276],[115.4039536,22.7505302],[115.4084091,22.755991],[115.411377,22.7616253],[115.4328613,22.7636204],[115.4355927,22.7634983],[115.4292297,22.7726707],[115.4253311,22.7711372],[115.4217834,22.7728367],[115.4219131,22.7808876],[115.4211731,22.7861443],[115.4192581,22.7899761],[115.412323,22.7899323],[115.4070663,22.7961617],[115.4021835,22.7998772],[115.3994598,22.7997684],[115.3985901,22.7916908],[115.3927307,22.7896194],[115.380661,22.7769604],[115.3790436,22.7743683],[115.3730469,22.77528],[115.3712006,22.7724495],[115.3701401,22.7684994],[115.3680496,22.7654285],[115.3555984,22.7665424],[115.3533401,22.7724285],[115.3526764,22.7758503],[115.3477173,22.7813988],[115.3353271,22.7878017],[115.3242188,22.7918301],[115.2963562,22.7965412],[115.2715302,22.7928295],[115.2611465,22.7919521],[115.2549286,22.7923908],[115.2502365,22.7919712],[115.2336884,22.7850952],[115.2306976,22.7854347],[115.2300491,22.7886257],[115.2359924,22.7941551],[115.2316971,22.8061619],[115.2374573,22.8105335],[115.2418976,22.8111725],[115.2541122,22.8098259],[115.2668762,22.8126392],[115.2705002,22.8148537],[115.2709808,22.8206196],[115.2699432,22.8267841],[115.2958603,22.8563251],[115.303421,22.8591576],[115.3190994,22.8636913],[115.3251266,22.8673801],[115.3272018,22.8709106],[115.3271866,22.8766556],[115.325882,22.8832703],[115.3245392,22.8855133],[115.3196793,22.8885384],[115.3192673,22.9025898],[115.3191528,22.9064121],[115.3158035,22.9036407],[115.3132935,22.8979359],[115.3120499,22.8765106],[115.3111267,22.8748646],[115.2968216,22.8691273],[115.2913971,22.8669491],[115.2866364,22.8626213],[115.2834778,22.8558292],[115.2830887,22.8535156],[115.2810287,22.8497543],[115.2788467,22.8485184],[115.2736206,22.8489971],[115.2732391,22.8458004],[115.2729111,22.8429928],[115.2628021,22.8327045],[115.2603607,22.8300762],[115.2576599,22.8295078],[115.2475433,22.8336945],[115.2310181,22.8367062],[115.2229767,22.8389072],[115.2100601,22.8390713],[115.2041473,22.8381443],[115.1919403,22.8339691],[115.1857071,22.8291168],[115.1817474,22.8238983],[115.1805191,22.8183327],[115.1787567,22.8134346],[115.1755371,22.8135319],[115.1719666,22.8101692],[115.1760635,22.7972336],[115.1794434,22.7941532],[115.1860199,22.7964916],[115.1887131,22.7922325],[115.1915665,22.7840748],[115.1760483,22.7818317],[115.1748276,22.7866096],[115.1623383,22.793684],[115.1567612,22.7992039],[115.1559296,22.8092537],[115.1524963,22.8128185],[115.1444016,22.8161659],[115.1370316,22.8144836],[115.1271515,22.8136177],[115.1229935,22.8125267],[115.1198425,22.8107891],[115.1027603,22.8047981],[115.0950775,22.8047104],[115.0884476,22.8032875],[115.0791473,22.8006039],[115.072113,22.7973232],[115.0647812,22.7949505],[115.0556564,22.7938824],[115.050972,22.7982845],[115.0503235,22.8017063],[115.0510483,22.8070221],[115.0540466,22.8117447],[115.0438232,22.8076401],[115.0393372,22.8081436],[115.0339279,22.8122864],[115.0331192,22.8186874],[115.0285568,22.8200989],[115.0241776,22.8187752],[115.0187836,22.8199863],[115.0273514,22.8097134],[115.0285797,22.8047085],[115.0322266,22.8011818],[115.0389099,22.8014603],[115.0418625,22.802042],[115.0426865,22.8002377],[115.0404282,22.7957764],[115.0357208,22.7905235],[115.0329514,22.7862701],[115.0326538,22.7821217],[115.0333405,22.7782421],[115.0274124,22.7724781],[115.0329819,22.7701817],[115.0424271,22.7749424],[115.0420227,22.7627411],[115.0425491,22.7570171],[115.0362167,22.7546844],[115.0329819,22.7497234],[115.0296173,22.7472839],[115.0277634,22.7499638],[115.0252228,22.7512379],[115.0218735,22.7435131],[115.0175476,22.7355156],[115.0166931,22.7327213],[115.0246429,22.7273083],[115.0300827,22.722477],[115.0327377,22.7189102],[115.0304489,22.7149067],[115.0248032,22.7111778],[115.0230026,22.7099991],[115.0188828,22.7079868],[115.0142593,22.7061844],[115.0042191,22.7036953],[115.0005264,22.7030792],[114.9960632,22.7031231],[114.991539,22.699255],[114.9875336,22.6949501],[114.9824829,22.6919765],[114.9765625,22.6912689],[114.9737473,22.6929893],[114.9725113,22.6979961],[114.9695969,22.7017803],[114.9614868,22.7006607],[114.9532623,22.7050533],[114.9528732,22.7093506],[114.9565964,22.7141056],[114.9615936,22.7186832],[114.9604568,22.7213955],[114.9543533,22.7245846],[114.9534225,22.7284546],[114.9544678,22.737463],[114.9517212,22.7428646],[114.9444427,22.7496834],[114.9433212,22.757452],[114.9450073,22.7632694],[114.9446335,22.7662411],[114.9422836,22.7737293],[114.9389267,22.7761154],[114.9387131,22.7705879],[114.939209,22.7653236],[114.9377289,22.7602024],[114.9365921,22.7580853],[114.9342194,22.7559166],[114.9255829,22.7550907],[114.9167328,22.7535667],[114.9090271,22.7534695],[114.9083176,22.7479229],[114.8876419,22.7698021],[114.8706665,22.7670078],[114.868103,22.7636795],[114.873558,22.7566223],[114.8808212,22.7472115],[114.8870392,22.7419586],[114.885437,22.7391338],[114.8760071,22.7341328],[114.8736877,22.7310467],[114.8837738,22.7277966],[114.8872833,22.7247658],[114.8872604,22.7224293],[114.8890915,22.720438],[114.8913727,22.7196159],[114.8960037,22.7211933],[114.9075623,22.7230625],[114.9099808,22.7243156],[114.9156189,22.7305317],[114.9280319,22.7202549],[114.9390564,22.712904],[114.9447327,22.7083168],[114.9456024,22.7058239],[114.9438477,22.7012653],[114.951767,22.6962013],[114.9550629,22.6949596],[114.963913,22.6964836],[114.9659119,22.6910496],[114.966423,22.6857834],[114.9688797,22.6810608],[114.9645309,22.6785793],[114.955101,22.6687546],[114.9483109,22.6606541],[114.9410782,22.6564388],[114.93647,22.6544056],[114.9319229,22.6512241],[114.9270172,22.6450386],[114.9251404,22.6378326],[114.9171829,22.6384144],[114.9186172,22.6343384],[114.9190598,22.6304493],[114.9177628,22.6267147],[114.9043427,22.6022358],[114.903389,22.5913906],[114.9070206,22.5880966],[114.9090271,22.5874939],[114.9090195,22.5826645],[114.9107666,22.5774517],[114.9143219,22.5704765],[114.9144135,22.5635834],[114.9138336,22.560339],[114.9105988,22.5556049],[114.8989487,22.5557995],[114.8955231,22.5549622],[114.8930435,22.5500298],[114.8906479,22.5483189],[114.8877411,22.5470448],[114.8844681,22.5480537],[114.8813324,22.5513687],[114.8840866,22.5558548],[114.8885574,22.5606441],[114.8897934,22.5657539],[114.8888321,22.5700798],[114.8918762,22.5736599],[114.8820801,22.5914021],[114.8760529,22.5980415],[114.872963,22.600668],[114.865387,22.6031036],[114.8585205,22.6069469],[114.8533783,22.6055775],[114.841507,22.6050682],[114.8363724,22.6039276],[114.8207397,22.5993481],[114.8117905,22.5950527],[114.8034592,22.5930862],[114.8011932,22.5939064],[114.7991028,22.5961151],[114.7971802,22.5997105],[114.7811737,22.597868],[114.7711868,22.5944481],[114.7643585,22.5971413],[114.7589111,22.5971336],[114.7564621,22.5965672],[114.7555771,22.5894032],[114.7486267,22.5895615],[114.7464371,22.5890045],[114.7466202,22.5952206],[114.7480927,22.6003418],[114.7403412,22.6066723],[114.7391663,22.6103001],[114.7425613,22.6118259],[114.7447128,22.6135292],[114.7447128,22.6183567],[114.7423935,22.629982],[114.7454834,22.6374722],[114.7405396,22.642086],[114.7331619,22.6507301],[114.7304688,22.6549816],[114.7290268,22.6590557],[114.7316437,22.6660671],[114.7410889,22.6802711],[114.7464371,22.6871719],[114.7496033,22.6935158],[114.7491531,22.6974049],[114.7430267,22.7008171],[114.7408218,22.7053185],[114.7381592,22.7088814],[114.7386398,22.7141895],[114.7387238,22.7194004],[114.7387238,22.7272968],[114.7407303,22.7317524],[114.7429428,22.738863],[114.7488937,22.7470493],[114.7526398,22.7489395],[114.75177,22.7538414],[114.7694397,22.7624245],[114.7754517,22.7613049],[114.7798233,22.7640057],[114.7835236,22.7685509],[114.7854004,22.7707024],[114.7923584,22.7753696],[114.7940063,22.77705],[114.7960129,22.7766781],[114.8016129,22.7739296],[114.8050613,22.7743092],[114.818718,22.7840919],[114.8217773,22.7872124],[114.8235931,22.7909679],[114.8234406,22.7937202],[114.8184433,22.7994823],[114.8080292,22.8043213],[114.8054581,22.8060493],[114.8086929,22.8110161],[114.8098907,22.8147869],[114.8034973,22.8153915],[114.7987213,22.8167934],[114.7970886,22.8197117],[114.7978897,22.8284817],[114.7886581,22.8294621],[114.7838669,22.8359222],[114.7794495,22.8398685],[114.774353,22.8424072],[114.7698517,22.843132],[114.7785034,22.8340816],[114.7817078,22.8293915],[114.7762833,22.8286972],[114.7734604,22.8306446],[114.7695084,22.8302441],[114.7700424,22.8277779],[114.7704773,22.8256893],[114.7765503,22.8135357],[114.7780838,22.8027992],[114.7754669,22.8003883],[114.7712708,22.7951488],[114.7704773,22.7909775],[114.7600403,22.7866154],[114.7523499,22.7816849],[114.7472687,22.7791634],[114.743103,22.7782936],[114.7388,22.7797165],[114.7339478,22.7824936],[114.7241364,22.7850552],[114.7254028,22.7897072],[114.7247086,22.7935848],[114.7189865,22.7937946],[114.7155838,22.7932949],[114.7145462,22.7931423],[114.7104874,22.790205],[114.7081833,22.7917137],[114.7026062,22.7937698],[114.6890793,22.7950478],[114.6848679,22.7913857],[114.6891708,22.7849064],[114.6885529,22.7825794],[114.6708374,22.7746773],[114.6675873,22.7749939],[114.6640015,22.7773647],[114.6546173,22.7716637],[114.6470032,22.7701797],[114.6430969,22.768858],[114.6414185,22.7678642],[114.6392365,22.7620201],[114.6355591,22.7611694],[114.6327133,22.7587452],[114.6233673,22.7569523],[114.6230011,22.7592354],[114.618927,22.7613544],[114.6171036,22.7582836],[114.6098785,22.7540569],[114.5986176,22.7510281],[114.5894089,22.7469406],[114.5850677,22.7444496],[114.5787277,22.7443771],[114.5772705,22.7418041],[114.5659866,22.7440605],[114.5617828,22.7438717],[114.5649567,22.7398758],[114.5645905,22.7375603],[114.5596313,22.7327404],[114.5411072,22.7358227],[114.5320282,22.7417831],[114.5224075,22.7379742],[114.5257492,22.7355957],[114.5220108,22.7312889],[114.536377,22.731472],[114.541748,22.7284946],[114.5531921,22.7181988],[114.5572128,22.7172298],[114.5650711,22.718729],[114.5652008,22.7162056],[114.5624695,22.7114868],[114.5695267,22.7092724],[114.5681534,22.7071419],[114.5673065,22.7041149],[114.5652237,22.7012634],[114.5586472,22.7037296],[114.5487137,22.7090321],[114.5408478,22.7123604],[114.5410919,22.7171993],[114.5194321,22.7093315],[114.5188065,22.7070045],[114.5207367,22.7031841],[114.5265732,22.7006855],[114.5365524,22.699522],[114.5420914,22.6979313],[114.5441284,22.6968746],[114.5430374,22.6940651],[114.5337219,22.687212],[114.5243912,22.6854134],[114.5202484,22.6840782],[114.5127792,22.6846619],[114.5089188,22.6826496],[114.5096512,22.6780834],[114.5090485,22.6752987],[114.5066833,22.6711006],[114.5020065,22.6627979],[114.4942169,22.6507206],[114.4961166,22.6475868],[114.5018997,22.6460075],[114.5061264,22.6457386],[114.5109482,22.6530819],[114.5137787,22.6511402],[114.5174179,22.6526833],[114.52388,22.6571102],[114.5285263,22.6582394],[114.5346222,22.6555233],[114.5438538,22.6543274],[114.5542679,22.6543331],[114.5617371,22.656311],[114.5691299,22.658392],[114.5735626,22.6597919],[114.5789871,22.6604939],[114.5869827,22.6592388],[114.5911865,22.6591969],[114.5902634,22.6534081],[114.5868301,22.6477375],[114.5864868,22.6447334],[114.5849228,22.6414452],[114.5812378,22.6359921],[114.5804291,22.6276798],[114.5763931,22.6194534],[114.5640564,22.6136169],[114.5569992,22.611002],[114.5442581,22.6035347],[114.5403671,22.6019802],[114.53582,22.5990181],[114.5262527,22.5972099],[114.5192337,22.5987339],[114.514183,22.6005764],[114.5096893,22.6010647],[114.5060196,22.5953808],[114.5035629,22.5904427],[114.5022888,22.5862465],[114.5011063,22.5707893],[114.4921265,22.5719948],[114.4895401,22.5693493],[114.4935226,22.5644684],[114.4989471,22.559885],[114.5056763,22.549612],[114.5074463,22.5487728],[114.5153809,22.5488987],[114.5201263,22.5622177],[114.520752,22.5693741],[114.5223236,22.5726624],[114.5252991,22.5725651],[114.5285568,22.5715637],[114.5327606,22.5719814],[114.5370636,22.574934],[114.5398178,22.5743675],[114.5454712,22.5704803],[114.5579376,22.5593128],[114.5629807,22.5528698],[114.5686188,22.5492134],[114.5726395,22.5480118],[114.5811234,22.5470104],[114.5899506,22.543726],[114.5934219,22.5436497],[114.6029205,22.5468311],[114.6045074,22.5448322],[114.6051178,22.5425606],[114.6041031,22.5383759],[114.6058502,22.533165],[114.6181335,22.5208359],[114.6220779,22.5161819],[114.6242371,22.5125999],[114.6134872,22.5049934],[114.6090469,22.4997406],[114.5974274,22.4994526],[114.5884933,22.4951477],[114.5817871,22.4953098],[114.5771332,22.4946404],[114.5776978,22.4937668],[114.5803528,22.489727],[114.5771866,22.4886665],[114.5712814,22.4879417],[114.5610809,22.4840393],[114.5543823,22.4796009],[114.5511322,22.4801464],[114.5469589,22.4843273],[114.5419464,22.4852524],[114.5385666,22.4837208],[114.5248566,22.4711494],[114.5282135,22.4685421],[114.5305786,22.465889],[114.526947,22.4643459],[114.5217972,22.4585972],[114.5179672,22.4512978],[114.5107269,22.4523525],[114.4983521,22.4524841],[114.4948273,22.4537048],[114.4923325,22.4646358],[114.4890137,22.4675999],[114.4857788,22.4705391],[114.4816437,22.4743176],[114.4812164,22.4820614],[114.4822235,22.4913025],[114.4822617,22.500042],[114.4793472,22.5035896],[114.4776688,22.512022],[114.478653,22.5198212],[114.4817963,22.5299358],[114.4821472,22.5357094],[114.4774628,22.5444317],[114.476532,22.548069],[114.4668274,22.5536079],[114.4609833,22.5613899],[114.4582214,22.5665531],[114.4542236,22.5721207],[114.4504623,22.5728703],[114.4422836,22.572958],[114.4345322,22.5742168],[114.4330597,22.5787487],[114.4347,22.5852604],[114.4264526,22.5961514],[114.4172211,22.6065407],[114.4102478,22.6127777],[114.3993301,22.6121616],[114.3948669,22.6170158],[114.3910828,22.6182232],[114.3869934,22.6159668],[114.3757095,22.6136131],[114.371521,22.6131897],[114.3692093,22.6146946],[114.3586884,22.6075439],[114.3551483,22.6041622],[114.3456573,22.6009674],[114.3387833,22.5976391],[114.3367233,22.5966473],[114.334198,22.5974522],[114.3311768,22.6028309],[114.3233109,22.608448],[114.3218765,22.6053905],[114.3206863,22.5998192],[114.3162613,22.5991554],[114.3120117,22.5998783],[114.3080597,22.5996952],[114.3058929,22.5986767],[114.3056107,22.5945244],[114.3036423,22.5896034],[114.3009872,22.5881023],[114.2901535,22.5869122],[114.2806473,22.588541],[114.2655563,22.5894604],[114.2639465,22.5859261],[114.2599869,22.5811424],[114.256012,22.5722198],[114.2471237,22.5626087],[114.2346802,22.5542126],[114.2258987,22.5449562],[114.2258911,22.5449924],[114.2256927,22.54599],[114.2268982,22.5478001],[114.2268982,22.5480003],[114.227623,22.5484829],[114.2269592,22.5489712],[114.2264633,22.5490608],[114.22612,22.5491066],[114.225769,22.5492516],[114.2254028,22.5495491],[114.2250824,22.5500832],[114.2245407,22.5505619],[114.2244415,22.5507965],[114.2239838,22.551157],[114.223381,22.5513744],[114.2225418,22.5517368],[114.2218018,22.552269],[114.2211914,22.5527306],[114.220253,22.5534248],[114.2195129,22.5542297],[114.2186737,22.5555668],[114.2184067,22.5562077],[114.2181931,22.5564156],[114.2178192,22.5565052],[114.2175903,22.5564423],[114.217453,22.5559368],[114.2171936,22.5558014],[114.2167511,22.5555668],[114.2161636,22.5554142],[114.2154617,22.5552959],[114.21492,22.5552788],[114.2144012,22.5553246],[114.2138596,22.5554237],[114.2131882,22.5555592],[114.2124023,22.555748],[114.211731,22.5560207],[114.2110367,22.5563278],[114.21035,22.5564899],[114.2094879,22.5566521],[114.2083511,22.5566978],[114.2075577,22.5566807],[114.2067032,22.5564995],[114.2060165,22.556591],[114.2054062,22.5565987],[114.2047195,22.5566006],[114.2036285,22.556673],[114.2030106,22.5566273],[114.2022171,22.5566998],[114.2016525,22.5569706],[114.2011108,22.5574131],[114.2007904,22.5577564],[114.20047,22.5577564],[114.2001724,22.5576668],[114.1997528,22.5574398],[114.1992264,22.5572777],[114.1983032,22.5570984],[114.1976471,22.5571518],[114.1973495,22.5571518],[114.1969299,22.5571079],[114.1964569,22.5570164],[114.1962128,22.5567818],[114.1959534,22.5565567],[114.1955185,22.5561676],[114.1952209,22.5558701],[114.1949005,22.5558071],[114.1943588,22.5558529],[114.1939621,22.5559883],[114.1935196,22.5561771],[114.1928329,22.5561333],[114.1924133,22.5559521],[114.1920929,22.5557442],[114.1916428,22.5555191],[114.1911926,22.5552654],[114.1903763,22.5549946],[114.1900635,22.5549679],[114.1894836,22.5552216],[114.1890717,22.5555458],[114.1885834,22.5555],[114.188179,22.5554829],[114.187561,22.5554371],[114.1866226,22.5554657],[114.1858826,22.5554657],[114.1851883,22.5555553],[114.1845932,22.5557003],[114.1838531,22.5557728],[114.1831131,22.5557003],[114.1824036,22.555357],[114.1818237,22.5550404],[114.181282,22.5547695],[114.1809311,22.5547695],[114.1803131,22.5548878],[114.1798706,22.5550499],[114.1793137,22.5553932],[114.1787872,22.5557632],[114.1784363,22.5561066],[114.1781235,22.5566845],[114.1778564,22.5576248],[114.1777115,22.5586529],[114.1771698,22.5599003],[114.1767731,22.560379],[114.1763535,22.5604782],[114.1758728,22.560524],[114.1752167,22.5604153],[114.1742783,22.5601807],[114.1737366,22.5601177],[114.1728668,22.5600719],[114.1720505,22.5600548],[114.1717072,22.5602169],[114.1713104,22.5603523],[114.1707687,22.5607224],[114.1700821,22.5612736],[114.1691895,22.5615978],[114.1685333,22.5615082],[114.1680527,22.5613995],[114.1675873,22.5611019],[114.1670227,22.5604782],[114.166687,22.5601807],[114.1660995,22.559639],[114.1654663,22.5592957],[114.1650314,22.5592232],[114.1642914,22.5593224],[114.1638489,22.5594578],[114.163208,22.5601711],[114.1626434,22.5613461],[114.1623001,22.5619411],[114.1619797,22.5623302],[114.1615829,22.5624466],[114.1612625,22.5623379],[114.1608429,22.5620136],[114.1602402,22.561327],[114.1596985,22.5605507],[114.1589813,22.5597019],[114.1580811,22.5587177],[114.157341,22.5572987],[114.1566162,22.5561981],[114.1562195,22.5555115],[114.155899,22.5552311],[114.1554031,22.5551224],[114.1548386,22.5550785],[114.1544876,22.5551682],[114.153923,22.5551682],[114.1533813,22.5552845],[114.1530075,22.5552406],[114.1527328,22.5551052],[114.1525116,22.5548782],[114.1524429,22.5543728],[114.1523438,22.5536423],[114.1523132,22.5529289],[114.1522522,22.5522137],[114.1519928,22.551754],[114.1515427,22.5513649],[114.1506729,22.5506153],[114.1502686,22.550066],[114.149971,22.5491447],[114.1500473,22.5483227],[114.1503067,22.5477448],[114.1506271,22.5476723],[114.1508636,22.5480881],[114.1511765,22.5485668],[114.1516724,22.5486565],[114.151947,22.5483856],[114.1521912,22.5480614],[114.1523438,22.5475731],[114.1522064,22.5469131],[114.1519165,22.5465889],[114.1513977,22.5462723],[114.1509018,22.5459919],[114.1499634,22.5453339],[114.1493912,22.5448723],[114.1489182,22.5442753],[114.1488037,22.5439777],[114.1488419,22.5435257],[114.1490402,22.5429668],[114.1491318,22.5424423],[114.1489334,22.5421906],[114.1482697,22.5420551],[114.1472778,22.5417557],[114.1450272,22.5413494],[114.1440735,22.5412407],[114.1438217,22.5414486],[114.1437225,22.5417194],[114.1434784,22.5421619],[114.1433029,22.5423241],[114.1422882,22.5424881],[114.1414337,22.5427666],[114.1406937,22.5431824],[114.1402206,22.5434799],[114.1396027,22.5438061],[114.1388931,22.5439224],[114.1382065,22.5439396],[114.1377487,22.5438766],[114.1370468,22.5437145],[114.1364594,22.5432816],[114.1360168,22.5429382],[114.1350327,22.5423679],[114.1346283,22.5422058],[114.1342087,22.5420246],[114.1336365,22.5419807],[114.1329193,22.5420971],[114.1319122,22.5424042],[114.131218,22.5424213],[114.1306992,22.5424042],[114.129837,22.5420876],[114.1293106,22.5418072],[114.1287537,22.5412388],[114.1281509,22.5405521],[114.1275024,22.5399837],[114.1267395,22.539793],[114.1262436,22.5401001],[114.1259995,22.5405788],[114.1255569,22.5410843],[114.1252823,22.5410652],[114.1251373,22.5408573],[114.1248398,22.5404701],[114.1243668,22.5400085],[114.1238174,22.5396214],[114.1230469,22.5393219],[114.1217728,22.5388889],[114.1214676,22.5385723],[114.1215363,22.5381565],[114.121788,22.5376339],[114.1220322,22.5369644],[114.1221771,22.5365047],[114.1220779,22.5363865],[114.121788,22.5363426],[114.12146,22.5363693],[114.1212692,22.5364418],[114.1207962,22.5366936],[114.120079,22.5366669],[114.1198578,22.5365753],[114.1197815,22.5364399],[114.1198807,22.5361156],[114.120163,22.5356827],[114.1202774,22.5353565],[114.1200027,22.5351582],[114.1194305,22.5351582],[114.1189117,22.5352039],[114.118248,22.5353661],[114.1175537,22.5355091],[114.1169891,22.5354652],[114.1164169,22.5352287],[114.1159668,22.5346432],[114.1155777,22.5338573],[114.1155472,22.5332432],[114.1152725,22.5320683],[114.1149216,22.5314445],[114.1142273,22.5309029],[114.1133423,22.5303059],[114.1124725,22.530035],[114.111763,22.5301971],[114.1108932,22.530405],[114.1100464,22.5310917],[114.1096268,22.5314884],[114.1093903,22.532156],[114.1092987,22.5329151],[114.1092987,22.5339451],[114.1093292,22.5350914],[114.109108,22.5357151],[114.1088333,22.535923],[114.1083908,22.5357876],[114.1078873,22.5354614],[114.1074371,22.5351181],[114.1069031,22.5348473],[114.1063766,22.5348282],[114.1057663,22.5350094],[114.1052475,22.5350533],[114.1048737,22.534811],[114.1047134,22.5345745],[114.1044312,22.5340252],[114.1040268,22.5330391],[114.1036835,22.5325165],[114.1032562,22.5321732],[114.1027679,22.5321274],[114.1024475,22.5323353],[114.1023331,22.5326328],[114.1023788,22.5328865],[114.1024475,22.5333633],[114.1025009,22.5337791],[114.1026535,22.5343933],[114.1027832,22.5349274],[114.102829,22.5351982],[114.1026077,22.5354061],[114.1023865,22.535387],[114.1021576,22.5353413],[114.1016388,22.535162],[114.1009216,22.5350246],[114.1002274,22.5348892],[114.0995865,22.5347271],[114.0988235,22.5345459],[114.097908,22.5345268],[114.0969467,22.5345993],[114.0958786,22.5348511],[114.0953674,22.5352936],[114.0943069,22.5360966],[114.0934372,22.5369911],[114.0929871,22.5373878],[114.0925293,22.5376129],[114.0918884,22.537775],[114.0912933,22.5377579],[114.090683,22.5376663],[114.0899963,22.5373955],[114.0895615,22.5370979],[114.0888672,22.5367088],[114.08815,22.536068],[114.08741,22.5352898],[114.0868073,22.5343685],[114.0864563,22.5337715],[114.0858917,22.5329952],[114.0852966,22.5326061],[114.0843582,22.5323544],[114.0830765,22.5322437],[114.0821075,22.5321808],[114.0812683,22.5319729],[114.0806732,22.531765],[114.0799866,22.5312672],[114.0794067,22.5306263],[114.0790405,22.5300026],[114.0790634,22.5292892],[114.0794067,22.5282154],[114.0800171,22.5277538],[114.0808563,22.5272217],[114.0821533,22.526762],[114.08358,22.5261402],[114.0845871,22.5255814],[114.0849075,22.5249577],[114.0850067,22.5240192],[114.084877,22.5230789],[114.0847168,22.5220051],[114.0843811,22.5208759],[114.0837936,22.5200081],[114.0827179,22.5189056],[114.0819168,22.5180836],[114.0805893,22.516964],[114.0794525,22.5163212],[114.0784607,22.5159512],[114.0776901,22.5158691],[114.0769272,22.5158691],[114.0763931,22.5160027],[114.0758438,22.5162563],[114.0751266,22.5166264],[114.0744934,22.5171127],[114.0738678,22.517601],[114.0733337,22.5178089],[114.0722427,22.5178528],[114.0714035,22.5178337],[114.0703812,22.5177422],[114.069519,22.517725],[114.0684433,22.5176334],[114.067421,22.5174694],[114.0665131,22.5172253],[114.0649719,22.5166569],[114.0639572,22.5162392],[114.0629425,22.5156517],[114.0620499,22.5150108],[114.0611572,22.5142784],[114.060257,22.5134468],[114.0595474,22.5128498],[114.0588074,22.5120106],[114.0584564,22.5112686],[114.0580368,22.5100327],[114.0576935,22.509119],[114.0573425,22.5080624],[114.0573273,22.5074844],[114.0574112,22.5063839],[114.0571365,22.5055161],[114.056839,22.504776],[114.0564117,22.5042782],[114.0556717,22.5037994],[114.0549469,22.5033112],[114.054039,22.5027676],[114.0531006,22.5025597],[114.0521622,22.5023327],[114.0511475,22.5021248],[114.0500336,22.5021782],[114.0490494,22.5022945],[114.0483322,22.5023842],[114.0475235,22.5026646],[114.0465469,22.5030785],[114.0456619,22.5032406],[114.0442429,22.5037098],[114.0430222,22.5041428],[114.0419388,22.5044212],[114.0410233,22.5044746],[114.0401077,22.5044289],[114.0394897,22.5044327],[114.0453033,22.5079346],[114.0398026,22.512352],[114.04216,22.5189037],[114.0373917,22.5200558],[114.0282135,22.5203075],[114.0174026,22.5278358],[114.0141068,22.5290585],[114.0085907,22.5301743],[114,22.5302525],[113.9943085,22.5276718],[113.9806595,22.5329952],[113.9687805,22.5334263],[113.955513,22.5302238],[113.938797,22.5333557],[113.934021,22.5319176],[113.9310837,22.5267353],[113.9279785,22.511898],[113.9284286,22.5049839],[113.9313431,22.4977493],[113.9378662,22.4880867],[113.9369278,22.4832916],[113.9267273,22.4882584],[113.9175568,22.487896],[113.9128036,22.480938],[113.9094696,22.4782982],[113.8919067,22.4669685],[113.8883972,22.4661732],[113.8867874,22.4689903],[113.8862076,22.4729195],[113.8871231,22.4767971],[113.8856964,22.4786873],[113.8721771,22.4752579],[113.8705063,22.4766979],[113.8699417,22.4808559],[113.8718033,22.4837799],[113.8703232,22.4957905],[113.8721466,22.4982548],[113.8780136,22.4999352],[113.8871002,22.5002518],[113.8919525,22.5037575],[113.8951111,22.5080147],[113.8948364,22.5133133],[113.9046173,22.5164127],[113.9115067,22.5269756],[113.9127274,22.5324497],[113.9118195,22.5343227],[113.9042435,22.5366631],[113.9001923,22.5407181],[113.8939819,22.552206],[113.8935471,22.5526619],[113.8880463,22.5583973],[113.8771362,22.5585537],[113.8724899,22.5598698],[113.8694229,22.563427],[113.8671417,22.5621357],[113.862709,22.5569973],[113.8577728,22.5636101],[113.8574829,22.568449],[113.8534927,22.5736504],[113.8407516,22.5832996],[113.8345566,22.5894966],[113.832901,22.5973721],[113.820343,22.6171303],[113.8164902,22.6262341],[113.8115463,22.632616],[113.8065338,22.6433678],[113.7928085,22.659256],[113.7861786,22.6730537],[113.7814331,22.6780491],[113.7791824,22.6838741],[113.778038,22.6921921],[113.7752991,22.6980362],[113.7763977,22.7005272],[113.7756119,22.7056141],[113.7708435,22.7163563],[113.7725525,22.7218151],[113.7726212,22.7294006],[113.767807,22.7392254],[113.7677536,22.7395439],[113.7671967,22.7426949],[113.7726822,22.7491722],[113.7704468,22.7535915],[113.7482224,22.7578411],[113.737793,22.7637215],[113.7307663,22.762125],[113.7273712,22.7638531],[113.7204819,22.7714481],[113.7173462,22.7676468],[113.7126694,22.7563114],[113.7095566,22.7532005],[113.7045593,22.7522221],[113.698143,22.7531338],[113.6911163,22.7513065],[113.6734314,22.7434063],[113.6699905,22.744215],[113.6656189,22.7466621],[113.6636734,22.7536278],[113.6601181,22.7578869],[113.6587906,22.7620716],[113.6660538,22.7758465],[113.666153,22.7845802],[113.6621399,22.7901192],[113.6602402,22.7893524],[113.6514511,22.7858086],[113.6433029,22.792984],[113.6354828,22.794239],[113.6268082,22.7886047],[113.6141129,22.7803535],[113.60215,22.7724495],[113.6101913,22.7694721],[113.6158829,22.7688198],[113.6185303,22.7668915],[113.6195831,22.7622566],[113.6158295,22.7552567],[113.6166229,22.7501717],[113.6152802,22.7476883],[113.6119308,22.7445831],[113.6068802,22.7424545],[113.5781403,22.7372169],[113.5713196,22.7404366],[113.5667419,22.7440376],[113.5545502,22.7557144],[113.5417633,22.76511],[113.5286865,22.7795715],[113.5252533,22.781208],[113.5147781,22.768177],[113.5124664,22.7667427],[113.5085907,22.7663364],[113.4950867,22.764595],[113.480423,22.7641621],[113.4771576,22.7631207],[113.4705734,22.7594299],[113.4599991,22.7494316],[113.4473267,22.7427216],[113.4387436,22.7411499],[113.4376831,22.7378979],[113.4360199,22.7328663],[113.4418869,22.7302551],[113.45504,22.718708],[113.4691696,22.7109623],[113.4852524,22.6970978],[113.4936981,22.6910686],[113.4954071,22.6841145],[113.5269928,22.6545525],[113.5319138,22.6470318],[113.534111,22.6400585],[113.5335236,22.6375504],[113.536293,22.6321697],[113.5472565,22.6214542],[113.5473633,22.6204205],[113.5481033,22.6117554],[113.5511322,22.6063805],[113.5551834,22.6021042],[113.5643997,22.5969677],[113.5625305,22.5935802],[113.5487671,22.584404],[113.5463867,22.5810966],[113.554657,22.577486],[113.5653076,22.5698051],[113.5696106,22.5657501],[113.5720367,22.5583115],[113.566597,22.5460777],[113.5676498,22.5350056],[113.5658035,22.5320454],[113.5636902,22.5289307],[113.5635986,22.5266342],[113.5723419,22.5222015],[113.5754395,22.5191078],[113.5770111,22.508707],[113.5723038,22.4959908],[113.5595703,22.4810143],[113.5581512,22.4764633],[113.5608368,22.4694748],[113.5591278,22.4635525],[113.556572,22.4615707],[113.5546875,22.4577236],[113.5529633,22.4515743],[113.5492172,22.4445724],[113.5415573,22.4388504],[113.5419006,22.4262714],[113.5419617,22.4238911],[113.5399323,22.4163704],[113.5327301,22.4030457],[113.5389481,22.3960323],[113.5399933,22.3926849],[113.5428772,22.3905201],[113.5441437,22.3849583],[113.5479736,22.3813801],[113.5577927,22.3794403],[113.5645676,22.3817406],[113.5668793,22.3839626],[113.5780411,22.3720894],[113.583168,22.370306],[113.5967026,22.3682384],[113.605423,22.3695526],[113.6147614,22.3742924],[113.6171722,22.3788109],[113.6194611,22.3803425],[113.6225891,22.3781662],[113.6249008,22.3739491],[113.6237717,22.3705387],[113.6157074,22.3606949],[113.6103363,22.3562794],[113.6037903,22.3535118],[113.6007309,22.3575249],[113.590683,22.3410797],[113.5983276,22.3281727],[113.5988617,22.3228664],[113.6009674,22.3198051],[113.6053772,22.318737],[113.6030273,22.3155975],[113.5997772,22.3147869],[113.5861969,22.3154774],[113.577858,22.3049526],[113.571167,22.2920704],[113.5697937,22.2884388],[113.5823135,22.2608814],[113.5884628,22.2602139],[113.5901413,22.2590065],[113.5871964,22.2535858],[113.5895767,22.2509766],[113.5904007,22.246809],[113.5886993,22.2413502],[113.5866165,22.2388897],[113.5793228,22.2354565],[113.5643387,22.2318249],[113.5589981,22.228096],[113.5513992,22.2170849],[113.5507736,22.2136555],[113.5541,22.2103252],[113.5561523,22.2061157],[113.5598526,22.205761],[113.5644302,22.2028484],[113.5648193,22.2000751],[113.5624237,22.1957874],[113.5582962,22.1915569],[113.5390778,22.1804771],[113.5311966,22.1747627],[113.5285034,22.1755428],[113.5318527,22.185318],[113.5396423,22.1947155],[113.539093,22.1995621],[113.5413437,22.2066154],[113.5344696,22.2142029],[113.5212402,22.2362614],[113.516922,22.2396259],[113.5134735,22.2397404],[113.5074692,22.238102],[113.5016327,22.2343884],[113.4941025,22.2314205],[113.48069,22.2300262],[113.4817963,22.2267704],[113.4849777,22.2257442],[113.4954529,22.2279243],[113.5050278,22.2326641],[113.5147018,22.2334919],[113.5206299,22.2206459],[113.5323563,22.2046165],[113.5323486,22.1979485],[113.5303726,22.191576],[113.5255966,22.1832275],[113.5259171,22.1790791],[113.5237732,22.174551],[113.5109634,22.1756687],[113.5062408,22.1686993],[113.4957962,22.173645],[113.4799881,22.1737137],[113.4716873,22.1700802],[113.4640732,22.1645832],[113.4596176,22.1645012],[113.456459,22.1659851],[113.4598923,22.1716194],[113.4588928,22.1749554],[113.4494324,22.1761055],[113.439743,22.1748161],[113.4340973,22.1756916],[113.4256668,22.181488],[113.4227982,22.1905499],[113.423233,22.1951332],[113.4233932,22.1954994],[113.4275818,22.2055683],[113.4243469,22.2158012],[113.4233398,22.2174358],[113.4184799,22.2132263],[113.4151306,22.2128468],[113.4102631,22.2114258],[113.407547,22.2119751],[113.4009933,22.2243652],[113.3917084,22.2237339],[113.3812027,22.2229958],[113.3809204,22.2202034],[113.3843765,22.2069836],[113.3899918,22.2003384],[113.3915024,22.1865158],[113.3894196,22.1838245],[113.3826294,22.1808281],[113.3786774,22.1809559],[113.3735809,22.1831932],[113.3713303,22.1825752],[113.3704376,22.1720276],[113.3680801,22.1698742],[113.3697281,22.1665325],[113.3676834,22.1645298],[113.3620682,22.1534462],[113.3552933,22.1440086],[113.3541794,22.1410542],[113.3544388,22.1348381],[113.3510132,22.1356392],[113.3482437,22.1343479],[113.3456726,22.130022],[113.3332138,22.1090813],[113.3215408,22.0814075],[113.3137207,22.0703907],[113.309761,22.0636215],[113.3032684,22.0617599],[113.29599,22.0454388],[113.2913818,22.0412178],[113.2843399,22.0377636],[113.2798996,22.0379066],[113.2747498,22.0449982],[113.2652893,22.0503254],[113.2600327,22.0477409],[113.2481537,22.0471992],[113.2450867,22.0445366],[113.2434082,22.0393028],[113.2440796,22.0374413],[113.2591324,22.0371914],[113.2608185,22.0359879],[113.2587433,22.0330658],[113.2531586,22.0291042],[113.2520523,22.0259209],[113.248558,22.0248814],[113.2431335,22.0250549],[113.2418365,22.0234871],[113.244751,22.0155754],[113.2471771,22.014349],[113.2521362,22.01511],[113.2543335,22.0141201],[113.2511902,22.0027237],[113.2474289,22.0012341],[113.2353363,22.0013885],[113.2294617,22.0027256],[113.2245026,22.0019627],[113.2229538,22.0001717],[113.2232971,21.9962521],[113.2221527,21.9919205],[113.2092972,21.9916382],[113.2076569,21.9870911],[113.201683,21.9854412],[113.1998825,21.9836578],[113.2038116,21.9764042],[113.2053223,21.9706078],[113.2045364,21.9625854],[113.201889,21.95784],[113.1985931,21.9551849],[113.1850967,21.9574509],[113.1819992,21.960537],[113.1809387,21.9651699],[113.1893234,21.9849091],[113.1897812,21.9908733],[113.1859131,21.999733],[113.185997,22.0020294],[113.1895828,22.0055962],[113.1904221,22.0083275],[113.1886902,22.0283871],[113.1901093,22.0334015],[113.1934433,22.036747],[113.2056732,22.0402679],[113.2069931,22.0427551],[113.2074814,22.0558472],[113.2076035,22.0563927],[113.2089462,22.0622387],[113.2085114,22.0705299],[113.2076187,22.0730877],[113.2059326,22.0742912],[113.2020035,22.074646],[113.1981812,22.0648785],[113.1925278,22.0588493],[113.187027,22.0571823],[113.1694107,22.0547466],[113.1644821,22.05513],[113.1567612,22.0599709],[113.139267,22.0681057],[113.1189728,22.0733356],[113.1129532,22.0776615],[113.1110382,22.0793304],[113.116333,22.089283],[113.1205673,22.1040955],[113.1256332,22.1140556],[113.1324463,22.1317787],[113.1335831,22.1492176],[113.1221924,22.169117],[113.1218414,22.1797047],[113.1238632,22.1876888],[113.1136475,22.1876068],[113.1127014,22.1935539],[113.1119766,22.1983356],[113.1045685,22.1972809],[113.0900726,22.1952152],[113.0780869,22.1934719],[113.0548935,22.1734924],[113.0437164,22.1584282],[113.0257492,22.1394329],[113.0182037,22.1355247],[113.0141373,22.1310406],[113.0086823,22.1250076],[113.0061111,22.1083012],[113.0014572,22.0957947],[113.0011063,22.0925884],[112.9987717,22.0894394],[112.9964523,22.08675],[112.9942627,22.0806084],[112.9943008,22.0677319],[112.9942169,22.0656643],[112.9984436,22.0591011],[112.9999237,22.0381317],[113.0018234,22.0360031],[113.0089493,22.035099],[113.0138168,22.0331116],[113.0146637,22.0289478],[113.0147171,22.0238857],[113.0126266,22.020731],[113.0022278,22.0196667],[113.0004272,22.0178833],[112.999527,22.0133114],[113.0009537,22.0116577],[113.0019302,22.0042725],[113.0008163,21.9939575],[113.0047989,21.9878597],[113.0113373,21.984211],[113.0148392,21.9785862],[113.0162964,21.9711838],[113.0161438,21.964365],[113.0269394,21.9637451],[113.0347137,21.954298],[113.0345764,21.9508533],[113.0308838,21.9438381],[113.0202332,21.9356556],[113.0188599,21.9320183],[113.0131531,21.9310417],[113.0085373,21.9330215],[113.0055466,21.9324226],[113.0026474,21.9269924],[112.9936676,21.9171486],[112.9822235,21.907608],[112.9806366,21.904438],[112.983223,21.9009094],[112.9910965,21.9004402],[112.9833298,21.8829727],[112.9753189,21.8795357],[112.9689178,21.8799591],[112.9615326,21.8732834],[112.9599075,21.869194],[112.9568329,21.8656082],[112.9459,21.8634071],[112.9412231,21.8635483],[112.9373474,21.8657322],[112.93293,21.8663254],[112.9281387,21.8632507],[112.9196396,21.860054],[112.9263763,21.8483562],[112.9238968,21.8477421],[112.9202499,21.8492298],[112.9055634,21.8450699],[112.9019089,21.8463287],[112.8930664,21.8546391],[112.888443,21.8635139],[112.8880997,21.8676624],[112.89077,21.87356],[112.8898773,21.8765755],[112.8879776,21.8784733],[112.8740768,21.8830242],[112.8709335,21.8849545],[112.8681335,21.8894062],[112.8697281,21.8928089],[112.8732834,21.895462],[112.872673,21.8996201],[112.8756027,21.9057407],[112.8737411,21.9090157],[112.8737488,21.9163723],[112.8691177,21.9252453],[112.8588409,21.9276199],[112.8547211,21.9298096],[112.8548203,21.9325657],[112.8590317,21.9402599],[112.8552933,21.9461174],[112.856163,21.9502296],[112.8552704,21.9530163],[112.8494034,21.954567],[112.8485336,21.9580421],[112.840271,21.9617348],[112.8373871,21.964119],[112.8337097,21.9718132],[112.8264923,21.9628277],[112.8222504,21.9615726],[112.8200836,21.955658],[112.824852,21.9509201],[112.8242264,21.9472599],[112.8199463,21.9446259],[112.8169708,21.9440231],[112.815033,21.9449997],[112.814003,21.9510078],[112.8105392,21.9508801],[112.7915115,21.9426956],[112.7906036,21.9447918],[112.7918701,21.9532623],[112.7768173,21.9461117],[112.7676315,21.9443092],[112.7619095,21.9355068],[112.756073,21.9306183],[112.7483597,21.9287701],[112.744072,21.926136],[112.7422638,21.9236584],[112.7436371,21.9206295],[112.7489166,21.9161091],[112.7500076,21.9117088],[112.7445984,21.9049683],[112.7472687,21.9037399],[112.7493668,21.9002323],[112.7491074,21.8924217],[112.7474594,21.8874111],[112.7438965,21.8842945],[112.7394028,21.8825855],[112.7323837,21.8862362],[112.7282867,21.8966999],[112.7248383,21.8967991],[112.7205734,21.8946209],[112.7121964,21.8875046],[112.6917114,21.8648682],[112.6889877,21.8568993],[112.693367,21.8478069],[112.6930084,21.844368],[112.6855774,21.8434296],[112.6764832,21.8441486],[112.6680298,21.8420887],[112.6588211,21.8469486],[112.6545563,21.8449993],[112.6501312,21.8451252],[112.650177,21.8389034],[112.65345,21.834198],[112.6592331,21.8292332],[112.6585464,21.8239651],[112.6557465,21.8212852],[112.6516113,21.8225498],[112.6468582,21.8056717],[112.6469727,21.7937126],[112.6502228,21.7878723],[112.6450195,21.7795124],[112.6403427,21.779644],[112.628891,21.7838764],[112.6259537,21.7841892],[112.62146,21.7827053],[112.6276169,21.7749443],[112.6282806,21.7726269],[112.6268921,21.7678375],[112.6236572,21.7670097],[112.6151123,21.7693176],[112.6137009,21.7638397],[112.6103668,21.760025],[112.6047134,21.7601814],[112.5921936,21.7538643],[112.5810699,21.753027],[112.5640869,21.753727],[112.560051,21.7506199],[112.5561371,21.7514191],[112.5537567,21.7540131],[112.55233,21.7632484],[112.54702,21.7668457],[112.5425873,21.7747841],[112.5223236,21.7803993],[112.5165329,21.7842388],[112.5125427,21.790554],[112.4968796,21.793972],[112.4965134,21.7981205],[112.5026093,21.8191051],[112.4970627,21.8153496],[112.4893036,21.8036041],[112.4850006,21.8002739],[112.4833298,21.8019276],[112.4846802,21.8055706],[112.4916306,21.8148079],[112.4896774,21.8155499],[112.4795227,21.8139877],[112.4754028,21.8161678],[112.4686737,21.8138218],[112.4660263,21.8161926],[112.4632568,21.8222446],[112.4633408,21.824543],[112.4658813,21.8270035],[112.4508667,21.8278675],[112.4503784,21.8200665],[112.4465866,21.8171787],[112.437561,21.819952],[112.4286194,21.8257103],[112.4236221,21.8313618],[112.4229431,21.8332195],[112.4246368,21.8400707],[112.422287,21.8518581],[112.4233627,21.8545895],[112.4291763,21.8592606],[112.4307938,21.8633556],[112.4340363,21.8648777],[112.444313,21.8618431],[112.4462509,21.8611012],[112.4497528,21.8545685],[112.4553375,21.8521175],[112.4590836,21.8536263],[112.4459534,21.8673153],[112.4397964,21.8674812],[112.4269028,21.8731155],[112.4255371,21.8770618],[112.42939,21.8815556],[112.4297028,21.8836174],[112.4228134,21.8918495],[112.4256287,21.8954525],[112.4312363,21.893692],[112.4334793,21.8940907],[112.4297333,21.9003983],[112.4258804,21.903492],[112.4219131,21.9107246],[112.4290466,21.9178905],[112.4350967,21.9220943],[112.4393387,21.9235916],[112.4504395,21.9199696],[112.4583969,21.9232635],[112.4629135,21.9199657],[112.4676437,21.9214458],[112.486557,21.9344978],[112.4895172,21.9348755],[112.4974365,21.927763],[112.4996414,21.9348297],[112.5122681,21.9441414],[112.5147934,21.9532681],[112.512619,21.954937],[112.5054703,21.947546],[112.5007401,21.9616985],[112.4985733,21.9633675],[112.4951172,21.9634609],[112.4934998,21.9667244],[112.4945526,21.9687653],[112.4972763,21.9691505],[112.5008926,21.9741096],[112.4897614,21.9732628],[112.4830475,21.9637909],[112.4779816,21.9676075],[112.4743195,21.9688549],[112.4718323,21.9682331],[112.4727478,21.96591],[112.4855423,21.9601498],[112.4906921,21.9542236],[112.4914093,21.9474697],[112.4898376,21.9447536],[112.4868469,21.9436855],[112.4655685,21.9495506],[112.4598618,21.948555],[112.4542923,21.944109],[112.4530792,21.9367847],[112.4450989,21.9342403],[112.4420319,21.9308758],[112.4400635,21.9306984],[112.4317703,21.9339104],[112.4250488,21.9320221],[112.418663,21.9328823],[112.4132004,21.9316483],[112.409668,21.9292145],[112.40625,21.9304562],[112.4004135,21.9407291],[112.395752,21.9417725],[112.3974228,21.9479332],[112.3953934,21.9537354],[112.3833923,21.9648609],[112.3864365,21.9753551],[112.3855286,21.9779091],[112.3805237,21.9837894],[112.3724976,21.9874496],[112.372551,21.9892883],[112.3788071,22.0001564],[112.3844681,21.9993172],[112.4040527,22.0020142],[112.4103622,22.0066738],[112.4115906,22.010128],[112.4079666,22.0092659],[112.3973999,22.0104694],[112.3926697,22.0092144],[112.3890381,22.0113811],[112.3918915,22.0159016],[112.3922424,22.0193424],[112.3869095,22.0224724],[112.3992996,22.0239811],[112.4033432,22.0266323],[112.404892,22.0291195],[112.4039764,22.0314426],[112.4005966,22.0338326],[112.4054337,22.0461178],[112.4079971,22.0494995],[112.4165421,22.054327],[112.415863,22.0640011],[112.4029465,22.0540009],[112.4002228,22.0533848],[112.3998566,22.0577621],[112.4030228,22.071701],[112.4041367,22.0760403],[112.4037628,22.079958],[112.4016571,22.0756454],[112.4008102,22.0721569],[112.3943329,22.0625076],[112.3966827,22.0507202],[112.3948669,22.0401936],[112.3910675,22.037075],[112.3827972,22.0409737],[112.3773727,22.0408878],[112.3763123,22.038847],[112.3743134,22.0299339],[112.3725281,22.0283718],[112.3738632,22.0152321],[112.3699493,22.0088978],[112.367157,21.9983959],[112.3674469,21.9839058],[112.3720016,21.9794178],[112.3736115,21.9756966],[112.373497,21.9720211],[112.3712234,21.9700127],[112.3711472,21.968174],[112.3743286,21.9588947],[112.3813629,21.9550285],[112.3837433,21.9524384],[112.3856201,21.9333057],[112.3771667,21.9312305],[112.3800125,21.9294682],[112.3810425,21.9288292],[112.3927078,21.9154129],[112.3948898,21.9061604],[112.3937836,21.9020519],[112.3972092,21.8934536],[112.3960724,21.8886547],[112.4027634,21.873764],[112.4026718,21.871006],[112.3985214,21.8644505],[112.4024963,21.8576775],[112.4040527,21.8518887],[112.4018173,21.8439007],[112.4029312,21.8397331],[112.4055634,21.8369045],[112.4080887,21.8313179],[112.4082031,21.8269463],[112.4136581,21.8201332],[112.4066467,21.8010082],[112.4072266,21.7959347],[112.4148636,21.7879143],[112.4162292,21.7841988],[112.4092865,21.7827759],[112.4130936,21.7785358],[112.4170609,21.7713032],[112.4135284,21.7686386],[112.4111633,21.7638741],[112.411438,21.7569695],[112.4053268,21.7509251],[112.4037323,21.74683],[112.4066467,21.7377853],[112.4060516,21.7343521],[112.4035263,21.7325802],[112.3955765,21.7304935],[112.3822937,21.723032],[112.3795776,21.7226448],[112.3720703,21.7269821],[112.357933,21.7236786],[112.3551636,21.7214527],[112.3486328,21.7094421],[112.346611,21.7081146],[112.344429,21.7090912],[112.3429031,21.7155704],[112.3410187,21.7183781],[112.3360367,21.7166691],[112.3264771,21.718071],[112.3256912,21.7086658],[112.3236694,21.7068787],[112.316452,21.7045403],[112.3101196,21.6987286],[112.3029633,21.6982269],[112.2956467,21.700716],[112.2954407,21.7007351],[112.2845993,21.7016945],[112.2791672,21.7011452],[112.2649765,21.696455],[112.2591934,21.7000542],[112.2545319,21.7010937],[112.2397766,21.7017059],[112.2378769,21.704052],[112.2368164,21.7100582],[112.2391434,21.7132168],[112.240097,21.7205486],[112.2382965,21.7263432],[112.2340088,21.7312794],[112.2226715,21.7308807],[112.2134781,21.7283592],[112.2105637,21.7295837],[112.2094727,21.7344379],[112.2075272,21.7356377],[112.1917038,21.7332821],[112.1944733,21.743557],[112.19207,21.7539635],[112.1929016,21.7571621],[112.1977921,21.764164],[112.1980133,21.7669125],[112.1989822,21.7793064],[112.2082672,21.7935524],[112.2159195,21.8018627],[112.2170181,21.8057442],[112.2117767,21.8281765],[112.2070694,21.8356552],[112.2064285,21.8388901],[112.2085037,21.8420563],[112.2154465,21.8437176],[112.2204895,21.847496],[112.2108994,21.8484306],[112.2051468,21.8455887],[112.2042236,21.847681],[112.2014999,21.8496628],[112.2008438,21.8415604],[112.1957626,21.8451385],[112.1935501,21.8451958],[112.1984024,21.8342667],[112.2055435,21.8258076],[112.2078629,21.8206902],[112.2084885,21.8089504],[112.2051773,21.8055859],[112.2027435,21.8061085],[112.1976166,21.816124],[112.1951828,21.8171062],[112.1687469,21.8154774],[112.1763077,21.8125286],[112.1920471,21.8114376],[112.196907,21.8090153],[112.1993103,21.8068867],[112.2010727,21.799715],[112.2004471,21.7953625],[112.1976395,21.7922153],[112.1882324,21.7991219],[112.1770172,21.8030834],[112.1318283,21.8000851],[112.1134491,21.7952576],[112.1076965,21.7924137],[112.0929031,21.7835846],[112.0862732,21.7844391],[112.073143,21.7820072],[112.0684433,21.789938],[112.0595932,21.7903881],[112.0506363,21.7878475],[112.0557175,21.7842751],[112.0583267,21.7809925],[112.0479965,21.7817059],[112.0377274,21.7842579],[112.0331802,21.7889671],[112.0304871,21.7897224],[112.0233307,21.7892075],[112.0229874,21.794733],[112.0245667,21.806879],[112.0199203,21.8166466],[112.0093994,21.8279381],[112.0190277,21.8286228],[112.0232468,21.8298988],[112.0508728,21.8558903],[112.0544662,21.8608589],[112.0505829,21.8798065],[112.0487976,21.8780098],[112.0476608,21.8729801],[112.0469971,21.8585148],[112.04496,21.8560352],[112.0279999,21.8493252],[112.0227966,21.8395653],[112.016983,21.8344212],[111.9989319,21.8326817],[112.0014725,21.8267517],[112.0043793,21.8248425],[112.0057602,21.8213596],[112.0070572,21.8151207],[112.0057526,21.8123856],[112.0128632,21.8108406],[112.0149918,21.8080311],[112.0165329,21.8015575],[112.01474,21.7990723],[112.0088806,21.801054],[112.0064163,21.8011131],[112.0048904,21.7995415],[112.0137329,21.7894421],[112.0081329,21.783371],[112.0054016,21.7819023],[112.0003662,21.7801418],[111.9972382,21.7808933],[111.9848785,21.7802563],[111.9795837,21.7847519],[111.9789581,21.7886753],[111.9872665,21.7864056],[111.9890518,21.7882004],[111.9864807,21.7933197],[111.9724579,21.7941189],[111.9658737,21.7963467],[111.9603119,21.8003883],[111.9561615,21.8016396],[111.9567337,21.7954178],[111.9525986,21.7888508],[111.9527435,21.7851677],[111.9543991,21.7828312],[111.9686584,21.7815666],[111.9777069,21.7792797],[111.9884033,21.7654572],[111.9940186,21.763483],[111.997963,21.7633877],[112.002243,21.7665024],[112.0117111,21.7791462],[112.0159531,21.7808819],[112.0186462,21.7808151],[112.0154724,21.7641106],[112.0183334,21.7608223],[112.0227737,21.7607136],[112.0229492,21.7586422],[112.0119629,21.7533913],[112.0090179,21.7539234],[112.0083466,21.7562389],[112.0096512,21.7587357],[112.0066833,21.7581177],[111.9926987,21.751791],[112.0022278,21.7490311],[111.9987106,21.7465878],[111.9867706,21.7425098],[111.9707489,21.7332401],[111.9623032,21.7306862],[111.962883,21.7338886],[111.9656677,21.7365818],[111.9799271,21.7445126],[111.98452,21.7499199],[111.9818115,21.7499847],[111.961647,21.7426548],[111.9576263,21.7397633],[111.9412384,21.7173977],[111.9384689,21.7153931],[111.9383698,21.7206841],[111.9369507,21.7225571],[111.93293,21.7198944],[111.9224167,21.7052021],[111.9136429,21.6992054],[111.9135666,21.6964474],[111.9223404,21.6668129],[111.9239731,21.6635571],[111.9302673,21.6599579],[111.931427,21.6569424],[111.9295197,21.6503201],[111.9303818,21.6459332],[111.9369125,21.6401615],[111.9380798,21.6395416],[111.9431305,21.6455555],[111.948967,21.6467762],[111.9545822,21.648571],[111.9564514,21.6538124],[111.9582138,21.6553802],[111.9601364,21.6539536],[111.9643173,21.644659],[111.9679489,21.6425018],[111.9737778,21.6483383],[111.9835663,21.6549988],[111.9895477,21.6582909],[112.0028229,21.6477127],[112.0088425,21.6475754],[112.01577,21.6479111],[112.0178604,21.6318665],[112.0105209,21.6246891],[112.0071182,21.6174145],[112.0043411,21.614954],[112.0008698,21.6141186],[111.9940796,21.6177311],[111.9898911,21.6176033],[111.9738083,21.6058083],[111.9581528,21.6004372],[111.949501,21.5990372],[111.9472885,21.5990906],[111.9441528,21.6014633],[111.9406509,21.6082153],[111.9339828,21.6074543],[111.9235229,21.6028767],[111.9221802,21.6077366],[111.9202423,21.6087017],[111.9150467,21.6079063],[111.9078293,21.6048603],[111.9040375,21.6012707],[111.9059677,21.6000767],[111.9104004,21.5999699],[111.9142838,21.5978107],[111.8861237,21.5849133],[111.8760529,21.5768757],[111.8620529,21.5599632],[111.8578033,21.5575333],[111.8555832,21.557127],[111.8521729,21.5583553],[111.846817,21.5697441],[111.8431091,21.5689125],[111.8277664,21.5566254],[111.8251038,21.5582962],[111.8214264,21.5588417],[111.8119736,21.5546932],[111.8088226,21.5561466],[111.8064804,21.5610275],[111.8065796,21.5644741],[111.809967,21.5726223],[111.8214264,21.5759773],[111.8279877,21.5738621],[111.8284378,21.5812073],[111.826767,21.5835457],[111.8184662,21.5858078],[111.8187866,21.5885582],[111.8237534,21.5898228],[111.8266373,21.5955601],[111.8336182,21.600647],[111.8395309,21.600462],[111.8433304,21.598362],[111.8468399,21.5983334],[111.8466797,21.6007824],[111.8485336,21.605566],[111.854187,21.6144009],[111.8531189,21.6201725],[111.8479233,21.628109],[111.8471527,21.6361732],[111.8405914,21.6393147],[111.8363037,21.6444721],[111.8368607,21.646759],[111.8463364,21.6598701],[111.8587036,21.6532345],[111.8677368,21.6481266],[111.8730927,21.6392441],[111.877739,21.6384449],[111.8823776,21.6419563],[111.8901672,21.6429787],[111.9014282,21.6493797],[111.9076309,21.6513023],[111.911171,21.6544361],[111.9129868,21.6580715],[111.9102478,21.6744576],[111.9033432,21.6916332],[111.901413,21.6935177],[111.8977432,21.6940651],[111.8955002,21.693428],[111.8914566,21.689846],[111.8874512,21.6871815],[111.8662796,21.6782551],[111.8585129,21.6736088],[111.8523788,21.6742115],[111.8470993,21.6793938],[111.8351593,21.6838093],[111.8313293,21.688036],[111.82798,21.7005291],[111.8308868,21.7082767],[111.8179703,21.7037487],[111.8160019,21.7040253],[111.8132172,21.7102966],[111.8135834,21.7144241],[111.8225937,21.7109966],[111.8260498,21.7111473],[111.8322678,21.7135315],[111.8345566,21.7164669],[111.8333206,21.7250023],[111.8395615,21.728075],[111.8406219,21.7308083],[111.8399734,21.734272],[111.8420334,21.7372131],[111.8501663,21.7374821],[111.8500137,21.7409344],[111.846199,21.7456207],[111.8455887,21.7502327],[111.8481827,21.7547703],[111.8501282,21.771246],[111.8434067,21.7698231],[111.838913,21.7763653],[111.8364563,21.7771111],[111.8362732,21.7699909],[111.8378067,21.7632885],[111.8323898,21.7542171],[111.8283768,21.7515526],[111.814888,21.7539349],[111.8023376,21.7509289],[111.7947693,21.765892],[111.7968063,21.7777996],[111.7945938,21.7778511],[111.7868118,21.7725124],[111.784111,21.7728043],[111.7816772,21.7742405],[111.7812729,21.7770081],[111.7828369,21.7809029],[111.7826538,21.7809143],[111.7715378,21.781599],[111.7733994,21.7592564],[111.771553,21.7544727],[111.7688522,21.7549934],[111.7592163,21.7634888],[111.7543564,21.7661285],[111.7504272,21.7662182],[111.7446899,21.7635899],[111.7453232,21.7686329],[111.7444305,21.7723312],[111.7384567,21.7699394],[111.7215805,21.7560673],[111.7183533,21.7552223],[111.7097702,21.7659893],[111.7088013,21.7758961],[111.7061768,21.7794037],[111.6982727,21.7687759],[111.6932678,21.7661304],[111.6895828,21.7664413],[111.684227,21.7787457],[111.6800766,21.7799873],[111.6775665,21.7784328],[111.6647034,21.7761917],[111.6576614,21.7706013],[111.6508865,21.769556],[111.6536179,21.7667828],[111.6585236,21.7657547],[111.6685333,21.7715092],[111.672493,21.7725716],[111.676178,21.772028],[111.6766205,21.7701797],[111.6750717,21.7674561],[111.6672974,21.7625713],[111.6502533,21.7606506],[111.6470184,21.7593441],[111.643013,21.7566738],[111.643158,21.7529926],[111.6526031,21.7560024],[111.6589966,21.7556305],[111.6656876,21.7573204],[111.6694565,21.7602253],[111.6836472,21.7661152],[111.6861267,21.7662888],[111.6920929,21.7585697],[111.6983871,21.7547512],[111.6995621,21.7524261],[111.6987305,21.7489967],[111.6956635,21.7446976],[111.6956024,21.7423992],[111.7130737,21.7413177],[111.7149734,21.7392063],[111.7151337,21.735754],[111.7125168,21.7300663],[111.728241,21.7285614],[111.7301865,21.7273674],[111.732048,21.7234192],[111.7292709,21.7115269],[111.7287064,21.7090111],[111.7315826,21.7057285],[111.7333527,21.7075272],[111.7381134,21.7198315],[111.7416763,21.7245789],[111.7441635,21.7247524],[111.7727127,21.7169571],[111.784668,21.7109547],[111.7862778,21.7065487],[111.7832108,21.6840916],[111.7850494,21.6792221],[111.7847366,21.6767006],[111.7832184,21.6753559],[111.768631,21.6729317],[111.7653732,21.6704769],[111.7632904,21.6666164],[111.7629471,21.6631775],[111.7651672,21.663126],[111.7793884,21.6701565],[111.7850571,21.6704845],[111.7859268,21.6663284],[111.7848434,21.6622143],[111.7776566,21.6513462],[111.7746811,21.6415291],[111.7713928,21.6381569],[111.7678833,21.6446743],[111.7656708,21.6449528],[111.7582016,21.6419067],[111.7546005,21.6360111],[111.7462921,21.6382694],[111.7406311,21.6370316],[111.7429733,21.6337471],[111.752182,21.6284809],[111.7616501,21.6328621],[111.7643509,21.6325703],[111.766777,21.6221695],[111.7842178,21.6206207],[111.7880936,21.6182327],[111.7907028,21.6144943],[111.7896729,21.6126785],[111.775383,21.612318],[111.7523193,21.6151447],[111.7394791,21.613596],[111.726593,21.6099815],[111.6978073,21.5920105],[111.6881866,21.5906162],[111.6835632,21.5912037],[111.6800995,21.5825214],[111.6770096,21.5773029],[111.6696701,21.5694218],[111.6680832,21.5648594],[111.6690369,21.554493],[111.6648865,21.5463104],[111.6712265,21.5346756],[111.6718063,21.5289154],[111.6670532,21.5253429],[111.660347,21.5234241],[111.654213,21.5233307],[111.6489716,21.5204582],[111.6471634,21.5170498],[111.6506882,21.5107651],[111.6432724,21.5095501],[111.6389465,21.5133247],[111.6396103,21.5199757],[111.635643,21.5283394],[111.635231,21.5315666],[111.6276703,21.5340328],[111.6206512,21.5383244],[111.6169662,21.5384064],[111.6121521,21.5426502],[111.6026306,21.5453873],[111.5987473,21.5477695],[111.5921936,21.5596619],[111.5893326,21.5546417],[111.5891037,21.5452213],[111.6119766,21.5359859],[111.6244278,21.5322647],[111.6277695,21.5282822],[111.6218872,21.5288734],[111.6184921,21.5310154],[111.6126099,21.5316048],[111.5953064,21.5283051],[111.576683,21.5211258],[111.542572,21.5046234],[111.5361328,21.5026913],[111.5429535,21.519556],[111.5413437,21.524189],[111.5384903,21.5281582],[111.5350571,21.5289211],[111.5330505,21.5271263],[111.536972,21.5166969],[111.5325317,21.5163326],[111.5272293,21.5205841],[111.5233231,21.5215874],[111.5109711,21.5195522],[111.5072403,21.5177937],[111.4978333,21.505579],[111.4878616,21.499815],[111.4741211,21.501255],[111.4695969,21.5070972],[111.4548264,21.5170612],[111.4559402,21.5242634],[111.4738998,21.5232239],[111.4835892,21.5224476],[111.4904327,21.5248871],[111.489212,21.5280018],[111.4806519,21.5293846],[111.4691162,21.5296001],[111.467308,21.531908],[111.4820023,21.541544],[111.4761963,21.5453453],[111.4734573,21.5444832],[111.4713821,21.5396996],[111.4676208,21.5367908],[111.4604492,21.5353336],[111.4598236,21.5397148],[111.4583817,21.5413532],[111.4515228,21.5419579],[111.450592,21.544735],[111.4522476,21.5518265],[111.449379,21.5654488],[111.4521103,21.5665417],[111.4539108,21.5694904],[111.4463501,21.5724087],[111.4408264,21.5778103],[111.4464264,21.5855103],[111.4407501,21.5950527],[111.4362411,21.5916977],[111.4322815,21.5906315],[111.4282608,21.5872669],[111.4285889,21.5805931],[111.4274826,21.5753288],[111.425209,21.5757313],[111.4245377,21.5758514],[111.4161301,21.5739574],[111.4216614,21.5687847],[111.4220428,21.5639496],[111.4113617,21.5701485],[111.4069366,21.5706997],[111.4061584,21.5686474],[111.4068069,21.5651855],[111.4151764,21.5551281],[111.4334412,21.5473919],[111.4358215,21.5441246],[111.4296265,21.5424156],[111.42836,21.5408325],[111.428299,21.5380745],[111.4302063,21.5359669],[111.4470062,21.5287189],[111.4457016,21.5257568],[111.4209366,21.518919],[111.4170609,21.5210686],[111.41185,21.5294514],[111.4014893,21.5280571],[111.3985138,21.5267391],[111.3980026,21.5233765],[111.4032516,21.5195141],[111.4083862,21.518259],[111.4083405,21.5164223],[111.3774185,21.4984398],[111.3722076,21.4964771],[111.3491135,21.47649],[111.3243637,21.4484901],[111.3168488,21.442894],[111.305397,21.4371471],[111.2945709,21.4362164],[111.2898331,21.4328613],[111.2834091,21.4212666],[111.2770996,21.4142666],[111.2648163,21.4145126],[111.2588806,21.4125595],[111.2543716,21.4089718],[111.2509537,21.4094982],[111.2497787,21.412281],[111.2567291,21.4259357],[111.2470932,21.4449749],[111.2469788,21.4507236],[111.2493973,21.4490662],[111.2565308,21.4388103],[111.2676315,21.4333897],[111.2731628,21.433548],[111.2802277,21.4323635],[111.285347,21.4414558],[111.2833099,21.4488525],[111.2804337,21.4516697],[111.2798004,21.4565086],[111.2857132,21.4566193],[111.2896881,21.4588394],[111.2888412,21.4646034],[111.2943192,21.4674816],[111.298172,21.4747601],[111.3006516,21.475399],[111.3067398,21.4729786],[111.3102036,21.4735985],[111.3085632,21.477541],[111.3025208,21.4817982],[111.298851,21.4825611],[111.2931519,21.480608],[111.2937775,21.4865723],[111.298439,21.4965916],[111.295723,21.4961872],[111.2876663,21.4883022],[111.2812119,21.4854431],[111.275322,21.4857903],[111.2702408,21.4893379],[111.2638931,21.4910736],[111.2497864,21.4874458],[111.2478409,21.4881725],[111.2447662,21.4939804],[111.2450638,21.4958134],[111.2480698,21.4982815],[111.2572479,21.5015488],[111.2585678,21.5068207],[111.2546234,21.5050488],[111.2494507,21.5046921],[111.2357635,21.4978352],[111.2325516,21.4969788],[111.2296066,21.4974957],[111.2300034,21.5039234],[111.2335281,21.507534],[111.2356873,21.5157661],[111.2350616,21.5208359],[111.233139,21.5227127],[111.2254333,21.508152],[111.2206802,21.504797],[111.2160034,21.515461],[111.2135086,21.524704],[111.2068024,21.5216179],[111.2110672,21.51441],[111.2109604,21.5098133],[111.2055435,21.5092297],[111.1915512,21.5106506],[111.1856995,21.5128326],[111.1679611,21.5113354],[111.1588821,21.5121994],[111.1556473,21.5111122],[111.1573334,21.5090122],[111.1686096,21.5074158],[111.1766434,21.5038128],[111.1884079,21.5022068],[111.1923065,21.5005226],[111.1912689,21.4980145],[111.184082,21.4956245],[111.176178,21.4939384],[111.1655884,21.493454],[111.1674805,21.4901981],[111.1814804,21.4894695],[111.2000275,21.4939365],[111.2094498,21.4974308],[111.2136536,21.4982681],[111.2192917,21.4976997],[111.2248535,21.4936829],[111.2269974,21.4906521],[111.2303085,21.4848404],[111.2309036,21.4788532],[111.229393,21.4770432],[111.2204819,21.4746895],[111.2072067,21.4747181],[111.1897125,21.4727592],[111.1666489,21.4640102],[111.1547928,21.4614792],[111.1428986,21.4573383],[111.1360397,21.4583893],[111.1290207,21.4633503],[111.1139297,21.4588089],[111.0998611,21.456316],[111.0904007,21.4620113],[111.0844116,21.4692478],[111.0835114,21.4729424],[111.0862427,21.4738121],[111.0980072,21.4726715],[111.1050034,21.4773655],[111.1109238,21.4781742],[111.1173782,21.4814987],[111.1220627,21.4821014],[111.1249771,21.480896],[111.132637,21.4825897],[111.1391373,21.4868336],[111.1406937,21.4907112],[111.1390076,21.4923515],[111.1355515,21.4917297],[111.1261215,21.4877701],[111.1253662,21.4983578],[111.1234131,21.4986248],[111.1197281,21.4876614],[111.1162186,21.4847393],[111.108551,21.4825859],[111.0957336,21.4809895],[111.0881271,21.4815922],[111.0841827,21.4920082],[111.0799103,21.4881802],[111.0790863,21.4845181],[111.076828,21.4820328],[111.0744171,21.4958687],[111.0759583,21.4985981],[111.0841522,21.5023537],[111.084198,21.5044212],[111.0746231,21.5045986],[111.0721664,21.5051041],[111.0651321,21.5096035],[111.0531387,21.5121231],[111.0413284,21.5118828],[111.0359573,21.5140495],[111.0330963,21.51824],[111.0332489,21.5249043],[111.0320969,21.5288334],[111.0299301,21.5307121],[111.0248871,21.524828],[111.0240097,21.5184078],[111.0211868,21.5134029],[111.0149994,21.5109882],[111.0063629,21.5097656],[111.0065384,21.5063152],[111.0086594,21.5021381],[111.0061111,21.497818],[110.9960709,21.4883461],[110.9952927,21.4865227],[110.9959564,21.482832],[111.007988,21.4821529],[111.0120926,21.478632],[111.0124969,21.4749451],[111.0052338,21.456461],[111.0058975,21.4534607],[111.007637,21.4545784],[111.0112381,21.4616375],[111.024353,21.4772568],[111.028801,21.4783249],[111.035347,21.4738369],[111.0387726,21.4733143],[111.0422363,21.4746284],[111.0490036,21.4797916],[111.0524597,21.4808769],[111.0556488,21.480587],[111.0607529,21.4777336],[111.0750427,21.4680443],[111.0768967,21.4629536],[111.0766068,21.4611187],[111.0746231,21.4597778],[111.043457,21.4511623],[111.0360107,21.4478512],[111.0257797,21.4404545],[111.0059204,21.4313946],[110.9914322,21.420393],[110.9874802,21.4193172],[110.9848709,21.4239616],[110.9794769,21.4242897],[110.9692078,21.4189262],[110.9543762,21.4111786],[110.949707,21.4112625],[110.9412231,21.4164715],[110.9364777,21.412878],[110.9273911,21.413271],[110.9241714,21.412178],[110.9054565,21.398489],[110.899147,21.3900948],[110.8869095,21.3806553],[110.8696671,21.3786583],[110.86129,21.3769646],[110.8585968,21.3779316],[110.8506165,21.3842754],[110.845993,21.3859653],[110.8279266,21.3796101],[110.816391,21.3924503],[110.8009033,21.3917942],[110.7968216,21.4007225],[110.7941284,21.3986263],[110.7904892,21.3925247],[110.7780991,21.3891964],[110.7618027,21.3866673],[110.74263,21.3787003],[110.7310562,21.3705215],[110.6765976,21.3033218],[110.6719131,21.2949505],[110.6627808,21.2703838],[110.6591721,21.2571564],[110.6560898,21.2528744],[110.6483536,21.2489491],[110.6449509,21.2499619],[110.6454086,21.2539368],[110.6360397,21.251482],[110.6315002,21.2282696],[110.6287537,21.2189236],[110.6259689,21.2162418],[110.612381,21.2209778],[110.6066208,21.2250404],[110.5953217,21.2168446],[110.5846481,21.2129955],[110.5819778,21.2139874],[110.5770569,21.2212429],[110.569931,21.2209759],[110.5632172,21.2183971],[110.5508881,21.2081585],[110.531868,21.204071],[110.5248032,21.205637],[110.5054703,21.2153416],[110.4991379,21.2168884],[110.4917679,21.2163944],[110.482811,21.2124939],[110.478508,21.2080116],[110.4625931,21.2010765],[110.4592209,21.1951923],[110.4533768,21.1884518],[110.44767,21.1863022],[110.4279175,21.1902637],[110.4265137,21.1923676],[110.4371109,21.2022018],[110.4420166,21.2103462],[110.4455109,21.2203655],[110.4515686,21.2257214],[110.4520035,21.2321434],[110.4450378,21.2371521],[110.4311523,21.2402706],[110.4294815,21.2419224],[110.4275665,21.2596645],[110.4280167,21.2667751],[110.430397,21.2722282],[110.4331818,21.2749138],[110.4333572,21.2808838],[110.4371033,21.2826233],[110.4550705,21.2764091],[110.45961,21.2804279],[110.4633026,21.2807903],[110.4701233,21.2787724],[110.4733887,21.2734032],[110.4726868,21.2665272],[110.4742279,21.2607422],[110.47686,21.258606],[110.4868698,21.2567329],[110.4895782,21.257122],[110.4899216,21.2603302],[110.486702,21.2673073],[110.4849701,21.2749367],[110.4807129,21.2801037],[110.4837036,21.2814026],[110.5007935,21.2945099],[110.5093384,21.2931328],[110.5098877,21.2949581],[110.5041199,21.299017],[110.5020218,21.3027477],[110.4993362,21.303278],[110.4871368,21.2978554],[110.4871368,21.289814],[110.4836273,21.2871494],[110.4809265,21.2874508],[110.4803009,21.2909145],[110.4779434,21.2939625],[110.4740372,21.294754],[110.4676437,21.2942333],[110.4584732,21.291256],[110.4528427,21.2918644],[110.4485092,21.294735],[110.4470901,21.296608],[110.4516373,21.3008556],[110.458847,21.3041134],[110.478157,21.3093529],[110.4878464,21.3210449],[110.4889297,21.3240032],[110.4868164,21.3272762],[110.4822693,21.3310719],[110.4777908,21.3210793],[110.4684067,21.3192596],[110.4627914,21.3205547],[110.4614792,21.3336868],[110.4634399,21.3416767],[110.4573288,21.3344841],[110.4543304,21.324913],[110.4540405,21.3152676],[110.4506836,21.3098412],[110.4454117,21.3060741],[110.4375534,21.3055897],[110.4334717,21.3008709],[110.4278488,21.3017063],[110.4245071,21.3132801],[110.4250336,21.3219986],[110.4275513,21.3325024],[110.423172,21.3500805],[110.424118,21.3569489],[110.4298935,21.3611641],[110.4324493,21.3645439],[110.4308777,21.3691807],[110.4306717,21.3788376],[110.4378662,21.3892193],[110.4446335,21.3936386],[110.4579773,21.3962784],[110.4588013,21.3990135],[110.4575272,21.4057102],[110.4576187,21.4167366],[110.4558334,21.414257],[110.4509811,21.4003658],[110.4465027,21.3986454],[110.434967,21.3991756],[110.4308624,21.3930779],[110.4260712,21.3890667],[110.4246979,21.3762341],[110.418129,21.3702011],[110.4134369,21.3776741],[110.4098129,21.3791485],[110.397789,21.3796883],[110.3973007,21.3879738],[110.3921738,21.3970661],[110.3843994,21.4002533],[110.382637,21.4046116],[110.3812027,21.4081478],[110.3743286,21.4168262],[110.3733063,21.4235153],[110.3739319,21.4280949],[110.378952,21.4316425],[110.3767166,21.4390526],[110.3785477,21.4426823],[110.3911133,21.4439678],[110.4000168,21.4480934],[110.3947372,21.450079],[110.3841705,21.4501209],[110.381897,21.4563828],[110.3842773,21.4706955],[110.3780594,21.4592381],[110.3743973,21.4439373],[110.3715591,21.4391842],[110.3515015,21.4339523],[110.3476486,21.4365788],[110.3444366,21.4359703],[110.3408127,21.4296303],[110.3321686,21.4282417],[110.3285065,21.4290237],[110.3284607,21.4289207],[110.3229675,21.4162979],[110.3201599,21.412693],[110.3250732,21.4127979],[110.3295517,21.4147511],[110.3320236,21.4231911],[110.3442917,21.4228783],[110.3508224,21.4277668],[110.3580322,21.4305687],[110.3624496,21.4304562],[110.364357,21.4283409],[110.3640823,21.419157],[110.367218,21.4172382],[110.3681107,21.4142284],[110.3631668,21.413435],[110.3601837,21.4116745],[110.3610764,21.4088936],[110.3654022,21.4057961],[110.3797531,21.4006023],[110.3803635,21.396452],[110.3787003,21.3902893],[110.3797913,21.3858967],[110.3896866,21.3798981],[110.390007,21.3663311],[110.3913269,21.3610134],[110.3980103,21.3626804],[110.4010468,21.3410015],[110.4092636,21.3281517],[110.4074402,21.3249836],[110.4044571,21.3239117],[110.3948669,21.323698],[110.392189,21.3239975],[110.3857269,21.3299084],[110.384613,21.3253422],[110.3856812,21.3200302],[110.3899765,21.3160133],[110.3915634,21.3113766],[110.3901596,21.3091278],[110.390007,21.3088894],[110.392662,21.3072109],[110.3982697,21.3059177],[110.4050064,21.3011494],[110.4083099,21.2969284],[110.4098892,21.2922916],[110.4070969,21.2808743],[110.4037018,21.2740688],[110.4019165,21.272049],[110.3996201,21.2771626],[110.395462,21.2694569],[110.3850327,21.265131],[110.3851929,21.262598],[110.3871002,21.2607117],[110.3914566,21.2589912],[110.3942184,21.2527161],[110.4012222,21.2488594],[110.4047775,21.2363586],[110.4083786,21.2337399],[110.4213562,21.2331734],[110.422142,21.2264881],[110.4219666,21.2205181],[110.4191132,21.215538],[110.4094391,21.2038403],[110.4096832,21.1872902],[110.4084473,21.1792812],[110.3990173,21.1590767],[110.4010696,21.153738],[110.3987732,21.1508102],[110.3942871,21.1486282],[110.3803864,21.1512833],[110.3721237,21.137022],[110.3683624,21.1343594],[110.3597488,21.1166592],[110.3536377,21.1092339],[110.347908,21.106163],[110.3390427,21.1045513],[110.334549,21.1019096],[110.318512,21.0984097],[110.3194199,21.0875893],[110.323967,21.0755253],[110.3265381,21.0713234],[110.3296432,21.068718],[110.3382187,21.0685005],[110.3443909,21.070179],[110.3605576,21.069767],[110.3712311,21.0823593],[110.3785934,21.0826302],[110.3867264,21.0844879],[110.3927078,21.0875511],[110.4045105,21.0805817],[110.4079132,21.0795746],[110.4073868,21.0703983],[110.4093628,21.0623055],[110.4120865,21.0553417],[110.4151535,21.0513554],[110.4209137,21.0523491],[110.4348602,21.0467072],[110.4436874,21.0467072],[110.4552536,21.0484715],[110.4719009,21.0478058],[110.4816132,21.0526047],[110.4866409,21.0570679],[110.4906082,21.0585709],[110.4917374,21.0555534],[110.4943619,21.0529575],[110.4961319,21.0547485],[110.4994812,21.0549736],[110.4934235,21.0624027],[110.4939728,21.064455],[110.4964905,21.0664558],[110.5194016,21.070446],[110.5240402,21.0696316],[110.5369415,21.0589485],[110.5518188,21.0567112],[110.5524063,21.0521011],[110.5499115,21.0425186],[110.53936,21.0182152],[110.5276871,20.9815331],[110.5261765,20.9723835],[110.5274811,20.9429379],[110.5266571,20.9245777],[110.5253067,20.920248],[110.52034,20.9178543],[110.5131989,20.9166641],[110.5068436,20.9168339],[110.5027237,20.9183216],[110.5008926,20.9222755],[110.4974976,20.9395981],[110.5026932,20.9493408],[110.5013428,20.9528236],[110.4936371,20.9573936],[110.488533,20.9584465],[110.4839706,20.9615536],[110.4691772,20.9826221],[110.4630127,20.9892178],[110.4596405,20.9911442],[110.4508438,20.9918365],[110.4449234,20.990612],[110.4332733,20.9858608],[110.4281235,20.9855366],[110.4234772,20.9863453],[110.4097366,20.9938259],[110.4038391,20.9928303],[110.3919525,20.9885426],[110.3764267,20.9854946],[110.3736877,20.9880486],[110.3683929,20.9870796],[110.3520737,20.9900265],[110.3439484,20.9888554],[110.3191605,20.9706459],[110.2880783,20.9629307],[110.2729416,20.9561882],[110.2485962,20.9526634],[110.2487335,20.9659863],[110.2505417,20.9691563],[110.2589874,20.9733124],[110.27034,20.984745],[110.2751312,20.9979496],[110.2787628,21.0045223],[110.2848282,21.0110321],[110.2963028,21.0178661],[110.3004608,21.0179901],[110.3081436,21.0207844],[110.3213577,21.0202179],[110.3209763,21.0239048],[110.315239,21.0288754],[110.3146362,21.0332565],[110.318512,21.0402794],[110.3210297,21.0425148],[110.332077,21.0433826],[110.3363113,21.0455704],[110.3406982,21.0530415],[110.349617,21.0564899],[110.3491974,21.058569],[110.34729,21.0604553],[110.342392,21.0605812],[110.3295135,21.055624],[110.3154373,21.0523052],[110.3100433,21.0519829],[110.303688,21.0528316],[110.3000793,21.0549927],[110.2972488,21.0589695],[110.2996674,21.0662613],[110.3032227,21.0703068],[110.3076935,21.0722618],[110.3093491,21.0703812],[110.3093872,21.0634861],[110.3157272,21.0706787],[110.3158264,21.0738926],[110.3066483,21.0952644],[110.3035583,21.0985584],[110.2963333,21.0946064],[110.2928925,21.0942326],[110.2895889,21.098259],[110.2887115,21.10215],[110.2847137,21.1077652],[110.2811279,21.1110725],[110.2762833,21.1130314],[110.2636414,21.1082935],[110.2603073,21.1033211],[110.2613831,21.0982399],[110.2706833,21.0892773],[110.2705688,21.085144],[110.268013,21.0817623],[110.2652664,21.0802212],[110.2493973,21.0819969],[110.2507706,21.0872459],[110.2420883,21.0920582],[110.2483597,21.0969582],[110.2414932,21.1051693],[110.238121,21.1071072],[110.2368774,21.0983906],[110.2338333,21.0947914],[110.2330093,21.0918255],[110.2417603,21.0808086],[110.2433167,21.0752544],[110.2422409,21.0720654],[110.2337036,21.0646973],[110.2322769,21.0582981],[110.2316666,21.0452175],[110.2289886,21.0372429],[110.2234268,21.0316353],[110.215271,21.0460815],[110.2148972,21.0584984],[110.210907,21.0648022],[110.2146072,21.0656281],[110.2194672,21.0641308],[110.2212372,21.0659237],[110.2158966,21.0848961],[110.215683,21.0945511],[110.2128372,21.0980682],[110.2063599,21.1028233],[110.2074966,21.1085396],[110.2050629,21.1088295],[110.1978683,21.1057892],[110.1922302,21.1059284],[110.1863708,21.1067619],[110.1791229,21.1101551],[110.1773529,21.115118],[110.1772995,21.1152554],[110.1770172,21.1230736],[110.1750183,21.1300163],[110.1722183,21.1351395],[110.1698227,21.1368065],[110.1694031,21.1306133],[110.1672134,21.1228542],[110.1607437,21.1278381],[110.1408997,21.1372814],[110.1382599,21.1394119],[110.1350327,21.1466122],[110.1313629,21.1496277],[110.1306076,21.1462593],[110.1261063,21.143383],[110.1244583,21.1457195],[110.1171875,21.148653],[110.1252136,21.1374302],[110.1380234,21.1311455],[110.1421738,21.1216259],[110.1475525,21.1212654],[110.1517563,21.1223125],[110.1586533,21.1179619],[110.1623535,21.1156216],[110.1691895,21.1147652],[110.1759872,21.1037998],[110.1694412,21.0975266],[110.1721268,21.0972309],[110.1852036,21.0998974],[110.1923065,21.0999527],[110.1959534,21.0987148],[110.2057419,21.0897427],[110.2003784,21.0737915],[110.2033386,21.0656776],[110.2032394,21.062233],[110.2021866,21.0597305],[110.1979065,21.0557022],[110.1963272,21.0437927],[110.1876068,21.0297623],[110.1807632,21.0216599],[110.1799393,21.0186939],[110.1803589,21.0161552],[110.1827316,21.01334],[110.1954727,21.004755],[110.1938934,21.0008888],[110.1906662,20.9995899],[110.1833115,20.9993114],[110.1779938,20.9930077],[110.1658936,20.9896278],[110.1598434,20.9842453],[110.1570969,20.981802],[110.1542206,20.984169],[110.1463013,20.9986076],[110.143219,21.0021267],[110.1364136,21.0039005],[110.1250763,21.0108376],[110.1165771,21.01334],[110.1061325,21.0338116],[110.1035919,21.021925],[110.1053772,21.0156803],[110.1113205,21.0091038],[110.1122208,21.0063248],[110.115097,21.0039577],[110.1231232,21.0019264],[110.1291275,20.9976444],[110.1393585,20.9957886],[110.143219,20.9936275],[110.1475372,20.9820347],[110.1508636,20.9780464],[110.1640778,20.9689941],[110.1652222,20.9574795],[110.1648712,20.9538116],[110.1633301,20.9510918],[110.1639099,20.9457932],[110.1623764,20.9350319],[110.1593933,20.9328079],[110.1567612,20.9266701],[110.1561279,20.9216309],[110.1659927,20.900938],[110.1656494,20.8947468],[110.1678238,20.8848152],[110.1746368,20.8752289],[110.1846466,20.8568306],[110.1863327,20.8556423],[110.1871185,20.8491898],[110.1862564,20.8448448],[110.1765594,20.8393402],[110.1743774,20.8400822],[110.1736984,20.841938],[110.1769791,20.8540325],[110.1771011,20.8583946],[110.1756897,20.8602676],[110.168457,20.8643513],[110.164299,20.8642235],[110.1620102,20.8612919],[110.1593628,20.8540058],[110.1546631,20.8525124],[110.1319427,20.8537521],[110.1267929,20.8534184],[110.1247864,20.8518581],[110.127182,20.8497334],[110.1320267,20.8484669],[110.1378708,20.8471775],[110.140831,20.8477936],[110.1449585,20.8467751],[110.1537704,20.8467903],[110.1606522,20.8480015],[110.1634369,20.8513794],[110.1645432,20.8557167],[110.1688309,20.8602066],[110.1706772,20.8564854],[110.1714096,20.8475075],[110.1693497,20.8438816],[110.1507568,20.8271046],[110.1466064,20.8269768],[110.1499786,20.816555],[110.1420364,20.8128433],[110.1319199,20.809412],[110.1347733,20.7978573],[110.1301498,20.7899284],[110.1343918,20.7840824],[110.1342926,20.7806377],[110.1284866,20.7743454],[110.1316605,20.7740402],[110.1381302,20.7777882],[110.1392212,20.7818966],[110.1390533,20.7933865],[110.1406021,20.7963371],[110.1440887,20.7983189],[110.1458817,20.8012638],[110.1420364,20.8036537],[110.1500473,20.8105812],[110.1525269,20.8114395],[110.1554413,20.8106785],[110.1622086,20.8164864],[110.1661835,20.8182278],[110.169487,20.8229713],[110.1686478,20.827816],[110.1638107,20.8297729],[110.1796722,20.8369656],[110.189537,20.8394814],[110.1948624,20.8375111],[110.2050705,20.8266907],[110.2079926,20.8261585],[110.2074127,20.8314571],[110.2025833,20.8423748],[110.2061386,20.8468819],[110.2113266,20.8485928],[110.2181778,20.848423],[110.2248688,20.8514729],[110.2275085,20.8495693],[110.2381363,20.8366699],[110.2434769,20.8349266],[110.2546921,20.833498],[110.2687073,20.8359051],[110.2733231,20.8346405],[110.2849426,20.8387127],[110.295372,20.8354626],[110.3005371,20.8364811],[110.3126907,20.841917],[110.3161163,20.8420601],[110.3201523,20.837822],[110.3240585,20.8289928],[110.3274307,20.8272972],[110.3283234,20.8325596],[110.3307571,20.8322678],[110.3398132,20.8239956],[110.3565063,20.8178253],[110.363327,20.8167305],[110.3682709,20.8101711],[110.3694229,20.7993431],[110.3715286,20.7963009],[110.3768463,20.7943268],[110.3802032,20.7917137],[110.3803482,20.7884922],[110.3777084,20.7818985],[110.3780823,20.7779827],[110.3885269,20.7756443],[110.388092,20.7692223],[110.383522,20.7553272],[110.3879471,20.7561321],[110.3883133,20.7439461],[110.3874893,20.7407494],[110.3855896,20.7426357],[110.3844681,20.7461109],[110.3813477,20.7480316],[110.3832169,20.7369537],[110.3870392,20.7258282],[110.3765182,20.7171402],[110.3693237,20.7053776],[110.3645477,20.7011356],[110.3609238,20.7026062],[110.354393,20.712883],[110.3450699,20.7204742],[110.342247,20.7242222],[110.3407288,20.7306938],[110.3404083,20.7447166],[110.3390732,20.7488861],[110.3313065,20.7594242],[110.3297195,20.7638283],[110.3306808,20.7713871],[110.3324738,20.7743263],[110.3347168,20.7756481],[110.3355331,20.7781544],[110.3240814,20.7715549],[110.3222198,20.7665462],[110.3215332,20.7596722],[110.3259964,20.7453136],[110.3260803,20.7397976],[110.3230591,20.7368889],[110.3171463,20.7354298],[110.312027,20.7360191],[110.2986069,20.7453194],[110.300148,20.7393074],[110.3046417,20.7341404],[110.3071671,20.7287903],[110.3061295,20.7265186],[110.2989731,20.7324448],[110.2967529,20.7318115],[110.2996674,20.7230091],[110.3027878,20.7208614],[110.3146973,20.7187214],[110.3169632,20.7205029],[110.3173676,20.7262344],[110.3186264,20.7278118],[110.3219604,20.7242794],[110.3258972,20.7253284],[110.327301,20.7229958],[110.3256073,20.7069569],[110.328598,20.6924057],[110.3226166,20.6884232],[110.3117599,20.6850243],[110.3002701,20.6765842],[110.2939682,20.6783524],[110.2972412,20.6649437],[110.2968369,20.659441],[110.2936783,20.6517086],[110.2902222,20.6506481],[110.2812729,20.6619015],[110.2785568,20.6610508],[110.2774811,20.6591969],[110.278183,20.6564655],[110.2765427,20.6505337],[110.2770996,20.6445465],[110.2782669,20.6426792],[110.2807007,20.6423893],[110.2816696,20.6506348],[110.2850723,20.6498585],[110.2917786,20.6453247],[110.2964172,20.6449776],[110.3049393,20.6608429],[110.3224716,20.6751022],[110.3266983,20.6692505],[110.3275223,20.664175],[110.3242798,20.6534595],[110.3290863,20.64254],[110.3283691,20.6347466],[110.3275833,20.6329288],[110.3248367,20.6311607],[110.3252029,20.6265392],[110.3253708,20.6242542],[110.32798,20.6214314],[110.3377228,20.6287651],[110.3478165,20.6314926],[110.3538132,20.635704],[110.3603592,20.6421986],[110.3663406,20.6379089],[110.368309,20.6465893],[110.3706131,20.6502056],[110.3839874,20.6560631],[110.3874207,20.656435],[110.3897476,20.6526985],[110.3904495,20.643261],[110.3878937,20.6396503],[110.384407,20.6374435],[110.3817673,20.6393509],[110.3802567,20.6458206],[110.3776398,20.6481857],[110.3722076,20.637989],[110.3697815,20.6304703],[110.3817673,20.6308498],[110.3865204,20.6180916],[110.3969116,20.6141453],[110.3965378,20.6100197],[110.392807,20.5997791],[110.3908081,20.5979919],[110.3837585,20.5975151],[110.3889236,20.5922966],[110.3988037,20.5954876],[110.4003983,20.592001],[110.4007263,20.5864773],[110.4026108,20.584362],[110.4098663,20.5821056],[110.411438,20.57724],[110.4083786,20.5729542],[110.4215775,20.5733013],[110.4286499,20.5648441],[110.4368896,20.562561],[110.4409637,20.5596981],[110.4480209,20.551012],[110.4526901,20.5520382],[110.454483,20.5625591],[110.4641495,20.5675888],[110.4687881,20.5674667],[110.4819107,20.5572414],[110.4906616,20.547821],[110.5020905,20.5302868],[110.5019073,20.5243187],[110.5030518,20.5217609],[110.5102234,20.5165157],[110.5105591,20.5119114],[110.515358,20.501215],[110.5139389,20.4945908],[110.5146103,20.4927349],[110.5203171,20.4877567],[110.5254517,20.4800396],[110.5303116,20.4714088],[110.5308838,20.4661102],[110.5242462,20.4485989],[110.5203018,20.4314747],[110.5236664,20.4139233],[110.521492,20.4146709],[110.5112305,20.414257],[110.5011673,20.4041862],[110.496933,20.4013119],[110.4788208,20.3914547],[110.4742966,20.3874397],[110.4707184,20.3817902],[110.4688263,20.3758678],[110.4659729,20.3619289],[110.4657211,20.3536663],[110.4635773,20.3553314],[110.4604034,20.3551846],[110.4576111,20.3515835],[110.4565125,20.347477],[110.4524994,20.3439064],[110.4419937,20.3352242],[110.4413528,20.3297272],[110.4376678,20.3210945],[110.4339066,20.3177471],[110.4173203,20.3092213],[110.4028473,20.2981148],[110.3976669,20.2964115],[110.3916931,20.3000107],[110.385643,20.3013172],[110.3716888,20.2996101],[110.3594818,20.2907352],[110.3584213,20.2877769],[110.3539276,20.2844467],[110.333847,20.272789],[110.3332825,20.2620049],[110.330513,20.2588615],[110.3277817,20.2573223],[110.3216782,20.2567883],[110.3022385,20.2503929],[110.2986069,20.2516327],[110.2946701,20.2583942],[110.2912216,20.2571049],[110.2829971,20.2511101],[110.285347,20.2397957],[110.2826233,20.2377968],[110.2771072,20.2413826],[110.2723694,20.2541351],[110.2698135,20.2581043],[110.2676468,20.2593079],[110.2630234,20.2594242],[110.2478409,20.2572784],[110.2492218,20.2627583],[110.2487411,20.2660217],[110.2468491,20.2651138],[110.2376404,20.2669525],[110.234787,20.2695503],[110.2276993,20.2685776],[110.2253036,20.2702446],[110.2206268,20.2772541],[110.2160034,20.2773685],[110.2201004,20.2671585],[110.2278671,20.2575493],[110.2258987,20.2569084],[110.2191162,20.2584553],[110.2087936,20.2635365],[110.1957016,20.266386],[110.1932297,20.26507],[110.1897125,20.2527523],[110.1903534,20.2492905],[110.1895523,20.2470131],[110.1860886,20.2452621],[110.1837616,20.2404957],[110.1802368,20.2366772],[110.1597366,20.2358036],[110.1480026,20.2340221],[110.1408081,20.2381039],[110.1283569,20.2374897],[110.1261368,20.236393],[110.1248398,20.2336693],[110.1216965,20.2346649],[110.1179733,20.2404976],[110.1141129,20.2421989],[110.1131821,20.2438278],[110.1149826,20.2472305],[110.1205063,20.25284],[110.1195984,20.2553883],[110.1164627,20.2561531],[110.1126328,20.2587738],[110.1077423,20.2584324],[110.098877,20.2549706],[110.0868835,20.261692],[110.0824966,20.2622566],[110.0758438,20.2679291],[110.0730362,20.2723598],[110.0711823,20.2671223],[110.0692596,20.2680874],[110.0643768,20.2769318],[110.0628433,20.2827129],[110.0636826,20.2868271],[110.0595703,20.2880726],[110.0529404,20.2861633],[110.04953,20.2862453],[110.0461731,20.2879333],[110.0412521,20.2866726],[110.0360031,20.281744],[110.0287476,20.2839832],[110.0245895,20.2836227],[110.0230103,20.2790661],[110.019577,20.2784576],[110.0167084,20.280592],[110.013298,20.2806721],[110.0016327,20.2729092],[109.9982605,20.2743664],[109.9942169,20.2783661],[109.9889297,20.2807884],[109.9816437,20.2814178],[109.9780807,20.2851772],[109.9750977,20.2829494],[109.9739609,20.2770042],[109.9713821,20.27178],[109.96315,20.2646236],[109.9601212,20.260788],[109.9585419,20.2564621],[109.9453506,20.2462006],[109.9363632,20.2376804],[109.9347534,20.2324352],[109.9315567,20.2313614],[109.9282532,20.2355709],[109.9260483,20.2349339],[109.9205322,20.2290897],[109.9174118,20.2309971],[109.9168472,20.2464008],[109.9190598,20.2564564],[109.9218597,20.2607555],[109.9225311,20.2641335],[109.9253998,20.265728],[109.931427,20.2722492],[109.934227,20.2767792],[109.9345627,20.2802162],[109.9342728,20.2875729],[109.9292908,20.3021603],[109.9243393,20.3268509],[109.924881,20.3289051],[109.9276199,20.3309097],[109.9245834,20.3449936],[109.9228287,20.3434238],[109.9189224,20.333868],[109.913208,20.339283],[109.908989,20.3455811],[109.903717,20.3493767],[109.8996429,20.3515377],[109.8879471,20.3524952],[109.8833923,20.3551235],[109.8784866,20.3635063],[109.8786087,20.3680973],[109.8755493,20.3723011],[109.8704834,20.3740234],[109.8725128,20.3774242],[109.8862915,20.3819332],[109.8812332,20.3841152],[109.8748932,20.3840313],[109.8707733,20.3855038],[109.862793,20.3971691],[109.8645172,20.3982792],[109.8831635,20.3930302],[109.8905182,20.3942413],[109.8935471,20.3983078],[109.8956909,20.4056072],[109.8964233,20.4145508],[109.9002075,20.4195175],[109.9012985,20.4238567],[109.9005127,20.4309959],[109.9044037,20.4304485],[109.9072418,20.427166],[109.90905,20.4218426],[109.9070969,20.412468],[109.913063,20.4070492],[109.9225388,20.4059105],[109.9288864,20.4064541],[109.9346695,20.4035645],[109.9437027,20.3941669],[109.9621124,20.3898335],[109.9675064,20.3908577],[109.9711075,20.3887062],[109.9608078,20.3774605],[109.9609833,20.3747005],[109.9754333,20.3587418],[109.9794006,20.3524475],[109.9805298,20.3489761],[109.9777908,20.3377857],[109.9803467,20.3335896],[109.9835129,20.3328285],[109.9878387,20.3396168],[109.9979401,20.3435135],[110.0002136,20.346447],[110.0020599,20.3516865],[110.0024719,20.3578796],[110.0045395,20.3621941],[110.0087433,20.3639336],[110.0219574,20.3659191],[110.0284271,20.3618603],[110.0320663,20.3610859],[110.0445328,20.3617077],[110.0448685,20.3653755],[110.0407867,20.3677692],[110.0369034,20.3683205],[110.0350037,20.3704338],[110.0344315,20.3761902],[110.0332565,20.3778248],[110.0307999,20.3771935],[110.0204773,20.3744526],[110.0104904,20.3746891],[110.0077667,20.3736038],[110.0044785,20.3688583],[110.0012436,20.3666382],[109.9986115,20.3503895],[109.9916763,20.3466473],[109.9875412,20.3467445],[109.9814682,20.3567638],[109.9813004,20.3595238],[109.9847717,20.3617401],[109.9860764,20.3646965],[109.9846878,20.3677158],[109.9784622,20.3717651],[109.9807129,20.3740101],[109.9876175,20.3766041],[109.9996872,20.3901043],[110.0088577,20.3956318],[110.0109024,20.398798],[110.0141296,20.409977],[110.0133972,20.4279137],[110.0147171,20.4315567],[110.0201416,20.4337254],[110.0202026,20.4360218],[110.0158463,20.4375019],[110.0149536,20.4391136],[110.0146866,20.4395981],[110.0235519,20.4423752],[110.0238724,20.4451237],[110.0162888,20.4443836],[110.0034866,20.4405499],[109.9971771,20.4418468],[109.9940033,20.4414635],[109.9846191,20.4373169],[109.9785767,20.4305687],[109.9756317,20.4299488],[109.9747009,20.4315777],[109.9742966,20.4439907],[109.9709015,20.4537182],[109.9705429,20.4583206],[109.9713287,20.460371],[109.9745331,20.4616737],[109.97435,20.4637451],[109.9553528,20.4559174],[109.9537811,20.4522781],[109.9602737,20.4484539],[109.9553223,20.4460411],[109.9493637,20.4330864],[109.9459381,20.432476],[109.9428177,20.4346161],[109.9414062,20.4367161],[109.9410629,20.4417763],[109.9424667,20.4488659],[109.9374924,20.4636822],[109.9401627,20.4815388],[109.938797,20.4850159],[109.9309692,20.4936962],[109.9251022,20.5025597],[109.9251785,20.5053158],[109.9274368,20.5077896],[109.9331284,20.5106449],[109.9344711,20.513937],[109.9219131,20.5111332],[109.9189529,20.5004044],[109.9299164,20.4820042],[109.9308014,20.4780788],[109.9292374,20.4744415],[109.9257431,20.4715347],[109.9237289,20.4600945],[109.9241562,20.4577885],[109.9289627,20.4549198],[109.9303894,20.4443207],[109.9295502,20.4402046],[109.9260025,20.435463],[109.9213028,20.4330444],[109.9181366,20.4333477],[109.9175262,20.4379559],[109.91922,20.4464149],[109.9186707,20.4533195],[109.9090271,20.4670944],[109.9079666,20.4730911],[109.9070435,20.4751797],[109.8986664,20.4815731],[109.893692,20.4869709],[109.8767014,20.4813862],[109.8740463,20.4828243],[109.8717804,20.4890785],[109.8725967,20.4927349],[109.8526306,20.4943352],[109.8439713,20.4897079],[109.8354263,20.4896698],[109.8329468,20.4977665],[109.8306427,20.4932232],[109.826622,20.4891777],[109.8248825,20.497488],[109.8192596,20.5063419],[109.8182297,20.5137157],[109.8149338,20.5186138],[109.814827,20.5238991],[109.8119202,20.5343018],[109.8236618,20.5351868],[109.8282471,20.533247],[109.8337631,20.5386372],[109.8389816,20.5419636],[109.8446426,20.5439053],[109.8495407,20.5444832],[109.8655624,20.5406761],[109.8636932,20.5437031],[109.8550262,20.5487232],[109.8455582,20.5507755],[109.8408966,20.5504208],[109.8377991,20.5530167],[109.8374405,20.5578499],[109.8385468,20.5633373],[109.8408508,20.5669613],[109.8453369,20.5707645],[109.8455963,20.5804081],[109.8474731,20.5865688],[109.8447495,20.5854816],[109.8399734,20.5800743],[109.8365784,20.5718822],[109.8335495,20.5680447],[109.8317871,20.566246],[109.8290863,20.5658474],[109.8267136,20.5679684],[109.8177109,20.5881557],[109.8111191,20.59795],[109.8013916,20.6091938],[109.7935104,20.6160297],[109.7962418,20.6178074],[109.8008881,20.6179352],[109.8016815,20.6202145],[109.7714767,20.6335182],[109.7673111,20.6329193],[109.7635574,20.6293278],[109.7604294,20.6218166],[109.7443237,20.6224003],[109.742691,20.6256504],[109.7445679,20.6322708],[109.7442932,20.6499653],[109.7378693,20.6569977],[109.7434464,20.6651459],[109.7530975,20.6697578],[109.7602081,20.6801701],[109.7689209,20.686409],[109.7728577,20.6874714],[109.7828064,20.6859207],[109.7946167,20.6721973],[109.8019867,20.6799355],[109.8115768,20.6822472],[109.8129578,20.6879597],[109.8156815,20.6892776],[109.8206024,20.690546],[109.8305969,20.6896324],[109.8322372,20.6868401],[109.8429413,20.6944103],[109.8513412,20.6978951],[109.8561707,20.7049084],[109.8598404,20.7142448],[109.8558502,20.7130508],[109.8526917,20.7121086],[109.8469925,20.7090206],[109.8418274,20.7079887],[109.8303528,20.7082462],[109.8243027,20.71068],[109.818367,20.7085133],[109.8146973,20.7083664],[109.8022995,20.7109394],[109.7961273,20.7085514],[109.7943268,20.7051449],[109.7930298,20.6831207],[109.7903824,20.684557],[109.7880173,20.688055],[109.7837296,20.7014751],[109.7814865,20.7001457],[109.77668,20.6935902],[109.7705994,20.694643],[109.7645874,20.6986809],[109.761528,20.7033424],[109.7579727,20.7172031],[109.7554321,20.7230034],[109.7478867,20.7341957],[109.7499237,20.747015],[109.7545166,20.7547245],[109.7555389,20.7657299],[109.7609787,20.7584877],[109.7636185,20.7565937],[109.7659073,20.7599888],[109.7633972,20.7768135],[109.7591476,20.78265],[109.7554626,20.8011093],[109.7495422,20.8088207],[109.7498627,20.8118],[109.7580109,20.8148365],[109.7606506,20.8127117],[109.7641373,20.8059731],[109.7661972,20.8100624],[109.7649002,20.8162937],[109.754097,20.8248005],[109.7546997,20.8289242],[109.7604294,20.8329334],[109.7561264,20.8369331],[109.7556763,20.8387794],[109.7572632,20.8428802],[109.7561264,20.8465805],[109.7630768,20.8507938],[109.7604065,20.8611908],[109.7570267,20.863102],[109.752861,20.8625031],[109.7497025,20.8632622],[109.7303772,20.8540363],[109.7305222,20.8501263],[109.728363,20.8421345],[109.7333603,20.8268623],[109.7357864,20.8065948],[109.7351227,20.7997169],[109.7333603,20.7979183],[109.7294769,20.7993793],[109.7251968,20.8040676],[109.710701,20.8305702],[109.6995163,20.842989],[109.6977692,20.8416481],[109.7148438,20.8104954],[109.7155914,20.8012905],[109.7100296,20.8039379],[109.7026978,20.8139744],[109.6855621,20.8428307],[109.6694336,20.8629341],[109.6664581,20.871727],[109.666153,20.888504],[109.6624527,20.8973122],[109.6614532,20.9065228],[109.661377,20.933403],[109.6625137,20.9391232],[109.6650772,20.9441223],[109.6685333,20.9454269],[109.6719513,20.9448929],[109.6718369,20.9403019],[109.6735229,20.9393463],[109.6826935,20.9435139],[109.6790619,20.9454288],[109.6734924,20.9577255],[109.6722031,20.9549961],[109.6699829,20.9538956],[109.6690292,20.9555225],[109.6745834,20.9815941],[109.6811218,20.998455],[109.6829529,21.0030098],[109.6892395,21.0095367],[109.6891708,21.0067825],[109.6838989,20.9919624],[109.687233,20.9882164],[109.6956863,20.9935455],[109.7030716,20.9945354],[109.6987228,20.9971561],[109.6973267,21.0001736],[109.6959305,21.0029602],[109.6959229,21.0031528],[109.6953888,21.0105534],[109.7028427,21.0244064],[109.7040634,21.034029],[109.7086563,21.0513897],[109.7080536,21.0562286],[109.6941605,21.0788116],[109.6858673,21.0902481],[109.6772766,21.0996227],[109.6733093,21.1075191],[109.6749268,21.1233349],[109.6784286,21.1260166],[109.6810532,21.1232052],[109.6834869,21.1226921],[109.6830978,21.1266079],[109.6829529,21.1302853],[109.6845398,21.1353054],[109.6884918,21.1462479],[109.6913071,21.1507835],[109.6948166,21.1541538],[109.7024918,21.1569748],[109.7082291,21.1607571],[109.7152634,21.167038],[109.723587,21.1767349],[109.7279816,21.1856003],[109.7317429,21.188736],[109.7400665,21.1880951],[109.7402573,21.1862526],[109.737999,21.1837749],[109.7376633,21.180336],[109.7332001,21.1783657],[109.7364273,21.1702538],[109.7360764,21.1665859],[109.7303085,21.1611977],[109.7307129,21.1575127],[109.7346497,21.1486969],[109.7597122,21.1506767],[109.7481689,21.1594296],[109.7447205,21.1684647],[109.7438965,21.1746864],[109.7471237,21.185873],[109.7618408,21.20508],[109.7718277,21.2214031],[109.7745132,21.2305336],[109.7698822,21.2605019],[109.7699585,21.2634869],[109.7732086,21.2657127],[109.767807,21.2660599],[109.7671432,21.2683735],[109.7719879,21.2852688],[109.7698593,21.2979507],[109.7683029,21.3234882],[109.7631836,21.3341675],[109.7625504,21.3385468],[109.7633972,21.3428955],[109.7694016,21.3471279],[109.7723312,21.3463745],[109.7829971,21.3318958],[109.7857132,21.3318348],[109.7925568,21.3408737],[109.7980728,21.344429],[109.8042526,21.3465881],[109.8153305,21.3474922],[109.8291473,21.3405209],[109.8328171,21.3404388],[109.8319778,21.3455124],[109.8327789,21.3480206],[109.8409271,21.349678],[109.8561783,21.3507137],[109.8675766,21.3550529],[109.8739929,21.3560562],[109.8865128,21.3555431],[109.9017181,21.354969],[109.9110031,21.3529186],[109.9224167,21.3487511],[109.9330673,21.3429947],[109.9433517,21.341608],[109.9522018,21.3420944],[109.9561081,21.3413143],[109.9650269,21.3353653],[109.9672928,21.3369217],[109.9613266,21.3439503],[109.9543304,21.3482494],[109.9405823,21.3483353],[109.9243622,21.3569794],[109.9112396,21.3621025],[109.9071732,21.3661022],[109.9043808,21.372139],[109.902298,21.3862019],[109.9061508,21.4017372],[109.908699,21.4051266],[109.9224014,21.4121666],[109.929863,21.4248619],[109.9374084,21.4283543],[109.9393234,21.4292393],[109.9426498,21.4344463],[109.9524994,21.4443302],[109.9555893,21.4587326],[109.9595566,21.4604797],[109.96521,21.4601192],[109.9670029,21.4623756],[109.9604416,21.4655132],[109.9518509,21.4659424],[109.9491196,21.4648552],[109.9439926,21.4477425],[109.9355698,21.4362183],[109.9320831,21.4344597],[109.9290009,21.4386654],[109.9196472,21.4381905],[109.9152069,21.4465637],[109.906929,21.4495087],[109.9063034,21.4536591],[109.925293,21.4651737],[109.9205933,21.4733219],[109.9204102,21.4756241],[109.9224167,21.4774151],[109.935791,21.4810162],[109.9416809,21.4806499],[109.9474869,21.4773006],[109.9502106,21.4781551],[109.9492798,21.4800167],[109.9427338,21.4831524],[109.9383087,21.4874516],[109.9368973,21.485815],[109.9305115,21.4859619],[109.923317,21.4835987],[109.919838,21.4818401],[109.9110336,21.473999],[109.9023666,21.4721298],[109.8832321,21.4640617],[109.8815613,21.4659386],[109.8791504,21.4770203],[109.8769989,21.4805603],[109.8764267,21.4761639],[109.8730392,21.4686584],[109.8700638,21.4678059],[109.8658981,21.468359],[109.8611069,21.4730625],[109.8520279,21.4734955],[109.841568,21.4776363],[109.8407516,21.484087],[109.8433914,21.4911499],[109.8427734,21.4955292],[109.8389664,21.5004387],[109.8395081,21.5022659],[109.8484573,21.5064297],[109.8512497,21.5093555],[109.8505783,21.511898],[109.8416672,21.5100288],[109.8379364,21.5080452],[109.8361511,21.505558],[109.8343277,21.5014629],[109.8283768,21.4712677],[109.8218231,21.4553318],[109.8192978,21.4528599],[109.8153534,21.4522591],[109.8063431,21.4556751],[109.7966919,21.4625511],[109.7951126,21.4678707],[109.7994537,21.4838562],[109.7973022,21.4956226],[109.7978592,21.4981365],[109.8018188,21.499197],[109.8049622,21.4972897],[109.8050308,21.4998169],[109.802681,21.5040054],[109.7949829,21.510149],[109.7943115,21.5131493],[109.7949295,21.5276108],[109.7976913,21.5392666],[109.7966537,21.5438232],[109.7935562,21.5414257],[109.7862015,21.5321674],[109.7814636,21.5295162],[109.7694168,21.5394287],[109.7684631,21.5500183],[109.7637787,21.5590801],[109.7777328,21.5661278],[109.7835236,21.5809345],[109.7831116,21.5864754],[109.7748718,21.5792866],[109.7670212,21.5704994],[109.7562637,21.5631523],[109.752327,21.563467],[109.7514038,21.5657845],[109.7493362,21.5715733],[109.7473831,21.5859928],[109.7445679,21.5832481],[109.7436066,21.5869999],[109.7405319,21.6209564],[109.7631836,21.6673203],[109.7725296,21.6735153],[109.7835922,21.6459694],[109.7971191,21.6397667],[109.8517532,21.647541],[109.872673,21.6622143],[109.8889008,21.6518707],[109.8990021,21.6576004],[109.9027405,21.6975346],[109.9306335,21.7500668],[109.9354172,21.8274117],[109.9793625,21.8799152],[110.056221,21.8641739],[110.1003723,21.8794613],[110.11866,21.8991585],[110.1363678,21.8867207],[110.1667099,21.8958244],[110.2167435,21.8922424],[110.2425613,21.8777046],[110.2959366,21.9142551],[110.3254013,21.8863792],[110.344902,21.8927345],[110.3677902,21.8850727],[110.3818665,21.8935108],[110.3864288,21.9182835],[110.372467,21.9406013],[110.3797073,21.9589348],[110.3509903,21.9879665],[110.3602524,22.0184593],[110.3487473,22.0416851],[110.348999,22.0967693],[110.3637009,22.1286182],[110.3265305,22.1535454],[110.3226471,22.17169],[110.3467178,22.1968498],[110.3698196,22.1701393],[110.3814163,22.1698627],[110.4149475,22.2087479],[110.4373932,22.1999302],[110.4936676,22.1484966],[110.5208588,22.1534176],[110.552948,22.1948051],[110.5921707,22.1858845],[110.6001663,22.1622009],[110.6279907,22.14851],[110.6736832,22.1870461],[110.6445312,22.2250805],[110.6599731,22.2422085],[110.689682,22.2525959],[110.6938019,22.2766724],[110.7243271,22.2964592],[110.7600327,22.2760429],[110.7825928,22.2853107],[110.7816467,22.2926617],[110.7693024,22.294117],[110.7628326,22.3221588],[110.7441711,22.3390293],[110.7369308,22.3643208],[110.7080231,22.3667889],[110.7075729,22.4450569],[110.69104,22.4529552],[110.6815414,22.4757328],[110.6909637,22.4784317],[110.7195511,22.4608212],[110.7398987,22.4687309],[110.7381592,22.5020199],[110.7540207,22.538414],[110.7457733,22.5623341],[110.7576599,22.5629482],[110.7649918,22.5837879],[110.7781296,22.5843945],[110.7994995,22.5610771],[110.8160324,22.5857563],[110.8853989,22.5880394],[110.895752,22.6122952],[110.9428329,22.6133327],[110.953743,22.6433182],[110.962677,22.6460056],[110.9958267,22.6390991],[111.0514679,22.6540413],[111.0858307,22.696909],[111.0539169,22.7311325],[111.1133118,22.744648],[111.1710434,22.7400246],[111.2217865,22.7563267],[111.2372131,22.783268],[111.2843628,22.8076172],[111.2885818,22.8309841],[111.3518066,22.8925686],[111.3719406,22.9373493],[111.3540802,22.960474],[111.3576584,22.9689293],[111.3918762,22.985342],[111.3896637,23.0085411],[111.4247971,23.0382481],[111.4259796,23.0538387],[111.4130173,23.0720997],[111.3847733,23.0781193],[111.3727798,23.0947609],[111.3732376,23.1551056],[111.3894424,23.1590729],[111.3922806,23.1675358],[111.3511429,23.2877159],[111.3755112,23.3074379],[111.3731613,23.319622],[111.3552094,23.3386135],[111.3850708,23.3793869],[111.3845978,23.4025631],[111.3858871,23.4493542],[111.4009933,23.4615917],[111.3961182,23.4708195],[111.4241562,23.4813175],[111.4461136,23.5031166],[111.4810333,23.5649242],[111.4828568,23.6321201],[111.4991608,23.6383724],[111.562767,23.6360779],[111.5826492,23.6489353],[111.6110535,23.6454048],[111.6187134,23.6765156],[111.6601562,23.7143497],[111.6493225,23.725256],[111.6112137,23.7321148],[111.6362686,23.8121128],[111.6585236,23.831583],[111.6798477,23.8196373],[111.6959076,23.8419266],[111.7425537,23.8188915],[111.7999725,23.8152065],[111.820488,23.8509617],[111.8068008,23.8887501],[111.8572769,23.9202251],[111.8479767,23.9499321],[111.8859024,23.9439411],[111.908783,23.9521313],[111.9253922,23.97439],[111.9196625,24.0025787],[111.9106064,24.0058155],[111.906189,24.0437012],[111.8707123,24.0903454],[111.8776016,24.1493454],[111.8656235,24.1769085],[111.8656921,24.2115784],[111.8719864,24.2287922],[111.8995819,24.222105],[111.9161835,24.2360916],[111.9302216,24.2360725],[111.9488831,24.2677326],[111.9739532,24.2596569],[111.988327,24.2814465],[112.0167465,24.2983837],[112.0569,24.3651199],[112.0146866,24.439373],[111.9966125,24.4469852],[111.9805908,24.4685974],[111.9998322,24.5110455],[111.9961777,24.5491695],[111.9409332,24.5873795],[111.9209137,24.6312656],[111.94664,24.6523571],[111.9371567,24.6886539],[111.952858,24.7164173],[112.0159073,24.7399616]]]]},
  5387 +"properties":{
  5388 +"gid":898,
  5389 +"name":"广东省"}
  5390 +},
  5391 +{"type":"Feature",
  5392 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.2258987,22.5449562],[114.2259979,22.5444374],[114.2263031,22.5436993],[114.2335968,22.5436993],[114.2370987,22.5506992],[114.248703,22.5557003],[114.276001,22.5655003],[114.3090973,22.5667],[114.3330002,22.5683002],[114.4339981,22.5620003],[114.455101,22.5450001],[114.4549026,22.4687004],[114.5024033,22.3651009],[114.5024033,22.1485004],[114.2839966,22.1485004],[114.2552032,22.1385994],[114.2360001,22.1485004],[114,22.1485004],[113.9395981,22.1485004],[113.9224014,22.1366997],[113.8965988,22.1424999],[113.8323975,22.1839008],[113.8171005,22.2171001],[113.8248062,22.2355175],[113.8264008,22.2392998],[113.8389969,22.2677002],[113.8473969,22.2730999],[113.8691025,22.3332996],[113.8691025,22.4288006],[113.9477997,22.4724007],[113.9951019,22.5100994],[113.9968109,22.5097523],[113.9976273,22.5097275],[113.9984436,22.5094757],[113.9998474,22.5089264],[114.0007172,22.5084743],[114.0016479,22.5079975],[114.0030518,22.5070057],[114.0046082,22.505724],[114.0062866,22.5046329],[114.007103,22.5041561],[114.010231,22.5020542],[114.0110016,22.501667],[114.011673,22.5011806],[114.0120773,22.5009727],[114.0126266,22.5008564],[114.013237,22.5007668],[114.0140381,22.5007401],[114.015419,22.5013542],[114.0165329,22.5017891],[114.0176468,22.5023861],[114.0187073,22.503046],[114.0198975,22.5037804],[114.020668,22.50424],[114.0219498,22.5049458],[114.0230179,22.505724],[114.0239334,22.5062122],[114.0247498,22.5066471],[114.0254898,22.506937],[114.0261078,22.5069828],[114.0269165,22.506937],[114.0275421,22.5069103],[114.0290222,22.5066319],[114.0304794,22.5060558],[114.0313187,22.5055962],[114.0324783,22.5051537],[114.0333633,22.5048294],[114.0341034,22.5044155],[114.0348663,22.5042076],[114.0357437,22.5038376],[114.0363464,22.5037479],[114.0370865,22.5038395],[114.0379105,22.503994],[114.0388489,22.5042496],[114.0394897,22.5044327],[114.0375671,22.5032768],[114.0310287,22.4962959],[114.0320206,22.4917431],[114.0358505,22.4852581],[114.0371628,22.4795723],[114.0329132,22.4756889],[114.0285568,22.4733105],[114.0294266,22.4759827],[114.0238724,22.4780159],[114.0192032,22.4773312],[114.0110626,22.4723415],[114.0077362,22.4696522],[114.0061188,22.4721031],[114.0099335,22.4837856],[114.0108871,22.4888897],[114.0046692,22.4892826],[114,22.4914093],[113.9980011,22.4863758],[113.9970627,22.4815807],[113.991127,22.4784946],[113.9834595,22.4705753],[113.978653,22.462471],[113.9757614,22.4549084],[113.9708405,22.4537487],[113.9564133,22.4520073],[113.9533234,22.4491272],[113.9520264,22.4420471],[113.9524536,22.4342117],[113.9409866,22.4210567],[113.9296112,22.422451],[113.9175034,22.4206123],[113.9068604,22.4100952],[113.9072571,22.4077797],[113.9157867,22.398737],[113.916008,22.3920593],[113.9217682,22.3877144],[113.9253006,22.3834476],[113.9207382,22.375103],[113.927887,22.3686371],[113.9337997,22.3677349],[113.9429703,22.3680954],[113.9507828,22.3655128],[113.959877,22.3697834],[113.9644775,22.3732986],[113.9663315,22.3819695],[113.9718018,22.3941898],[113.9757614,22.3942757],[113.980751,22.389267],[113.9836502,22.3818016],[113.9822464,22.3777142],[113.9849319,22.3711777],[113.9909668,22.3675098],[113.9908295,22.364296],[113.9930191,22.3632946],[114,22.3690586],[114.0067062,22.3677273],[114.0162964,22.3599091],[114.0201111,22.3582516],[114.0324707,22.3583851],[114.0389709,22.3616867],[114.044693,22.361269],[114.0779419,22.3683777],[114.0821075,22.3690357],[114.085701,22.3666763],[114.1003036,22.3712807],[114.1104279,22.3715324],[114.1128464,22.3723373],[114.1150665,22.3724422],[114.1167297,22.3693027],[114.1149216,22.3662262],[114.1148911,22.3623161],[114.1172485,22.3598976],[114.1286163,22.3599758],[114.12854,22.3569832],[114.1236572,22.3512325],[114.1300583,22.3427982],[114.1360931,22.3366432],[114.1522064,22.3357964],[114.156517,22.3337002],[114.1603317,22.3274403],[114.1592865,22.3237133],[114.1607285,22.3201008],[114.1643372,22.3172817],[114.1683197,22.3124104],[114.1635818,22.3085079],[114.1682816,22.2949314],[114.1827621,22.3059616],[114.1850967,22.3083706],[114.1912918,22.303833],[114.1937408,22.3041782],[114.1911774,22.314867],[114.1927872,22.3172398],[114.1961823,22.3185501],[114.2049866,22.3166904],[114.2023087,22.3195286],[114.1977463,22.325983],[114.2013779,22.3300476],[114.206543,22.3269768],[114.2193832,22.3148079],[114.2229538,22.3083076],[114.2244797,22.3028584],[114.2327423,22.298357],[114.2348785,22.293457],[114.2362366,22.2909927],[114.2393799,22.28792],[114.2427597,22.2894573],[114.2536011,22.2993889],[114.2545395,22.3049526],[114.2544785,22.3106995],[114.2575226,22.3138294],[114.2583008,22.3177757],[114.2553635,22.32691],[114.2655563,22.3179512],[114.2664871,22.3147106],[114.2665405,22.3089848],[114.2678375,22.3009758],[114.2710495,22.2921543],[114.2735291,22.2874393],[114.2758865,22.2844715],[114.2762222,22.2795105],[114.2763138,22.2723923],[114.2793274,22.2667828],[114.2825394,22.2715321],[114.2868881,22.2698746],[114.2973175,22.2632504],[114.3027191,22.2685604],[114.3062897,22.2712536],[114.3063736,22.2742481],[114.300827,22.2762909],[114.3019028,22.2839279],[114.2941132,22.2771282],[114.2943573,22.2817383],[114.2937012,22.2892971],[114.3068237,22.2935829],[114.3105774,22.2974377],[114.3074265,22.3055687],[114.3047867,22.3086662],[114.3027191,22.3150101],[114.2981033,22.3134155],[114.2934265,22.3085537],[114.2898483,22.3105049],[114.289299,22.316227],[114.2869797,22.3225574],[114.2826767,22.3244286],[114.2742767,22.3242683],[114.2702026,22.3358059],[114.2699966,22.3440742],[114.2686462,22.3460808],[114.2631912,22.3511162],[114.2594604,22.3560009],[114.2531433,22.3584671],[114.2597504,22.3691216],[114.2655334,22.3721504],[114.2673569,22.3701668],[114.2677536,22.3676548],[114.2653732,22.3611069],[114.2674332,22.3595924],[114.2704468,22.3588123],[114.2750092,22.3567257],[114.2729568,22.3672085],[114.2709732,22.3721733],[114.2705612,22.3797436],[114.2711792,22.3866711],[114.2745819,22.3877487],[114.2857132,22.3972321],[114.2888412,22.3941574],[114.2905426,22.3900986],[114.2958069,22.3887329],[114.3012772,22.3882961],[114.3045273,22.3875275],[114.3069229,22.3892479],[114.3090134,22.3918724],[114.3105011,22.3963108],[114.3139572,22.3962421],[114.3167572,22.394762],[114.3192978,22.3965855],[114.3179016,22.387455],[114.3197632,22.3850117],[114.3243179,22.383152],[114.3305588,22.382061],[114.3393936,22.3787899],[114.3450699,22.3836498],[114.3503113,22.3781414],[114.3778534,22.3674488],[114.3787537,22.3690987],[114.3790665,22.3723335],[114.3813324,22.3763466],[114.3876419,22.369278],[114.3906174,22.3691845],[114.3895874,22.3886814],[114.3809586,22.3974838],[114.3767166,22.3982086],[114.3700409,22.398859],[114.3691025,22.4017696],[114.3752899,22.4064217],[114.3847198,22.41996],[114.3878784,22.4210243],[114.4013519,22.4142818],[114.4021835,22.4175396],[114.4007874,22.4248333],[114.3985367,22.4300194],[114.3990784,22.4339542],[114.3988266,22.4385414],[114.3975067,22.4403191],[114.3936691,22.4426727],[114.3773117,22.4430752],[114.3697968,22.4445705],[114.3672409,22.4462929],[114.3672791,22.4502029],[114.3635864,22.4590015],[114.3610916,22.4595757],[114.3594666,22.4574337],[114.3569183,22.4554272],[114.353157,22.4504738],[114.3542862,22.4431686],[114.3527985,22.4385014],[114.3522186,22.4308872],[114.3525772,22.4240055],[114.3486862,22.4272747],[114.3470764,22.4297314],[114.3455429,22.4354076],[114.3429031,22.4385071],[114.3376236,22.4306755],[114.3352585,22.4333248],[114.3347931,22.4374428],[114.3382187,22.4520874],[114.3363495,22.4593582],[114.3409882,22.4604912],[114.3439865,22.4645405],[114.3453674,22.4712715],[114.3452682,22.4731064],[114.3422089,22.4794044],[114.3369675,22.4708843],[114.3310928,22.4650955],[114.3279419,22.4638004],[114.3244629,22.464098],[114.3241882,22.4691448],[114.3255768,22.4710503],[114.3277893,22.4759789],[114.3218079,22.4766235],[114.3197632,22.4779091],[114.3165283,22.47822],[114.3121567,22.4766388],[114.3057709,22.4719296],[114.3015366,22.4654579],[114.2994232,22.4580765],[114.2931519,22.4569035],[114.2775116,22.4485893],[114.2759933,22.4446106],[114.2788467,22.4419842],[114.2806015,22.4370079],[114.2852173,22.4294033],[114.2805328,22.4261456],[114.2756729,22.4220734],[114.2737885,22.4164543],[114.2694016,22.4197006],[114.267952,22.4237728],[114.2684326,22.4286232],[114.2678604,22.434576],[114.2658234,22.4358597],[114.2577133,22.4345627],[114.2482834,22.4352741],[114.2458191,22.4349289],[114.244133,22.43853],[114.2395096,22.4371643],[114.235527,22.4328403],[114.2287369,22.4240398],[114.2247696,22.4185333],[114.2229996,22.411068],[114.2166977,22.4052124],[114.2124634,22.4018669],[114.2094803,22.3973598],[114.2072601,22.3926544],[114.2051163,22.3863468],[114.2003479,22.3877335],[114.1972275,22.3859768],[114.1910477,22.3813171],[114.1897278,22.3828659],[114.1898499,22.38517],[114.1923676,22.3889675],[114.1991425,22.3964138],[114.2040863,22.4010143],[114.2077789,22.4060173],[114.2098083,22.4095612],[114.2126236,22.4170513],[114.2124481,22.4202633],[114.2039795,22.4304428],[114.199913,22.4369221],[114.1962204,22.4411182],[114.1912994,22.4406567],[114.1833725,22.4407444],[114.1782837,22.4432659],[114.1751328,22.4465656],[114.1704788,22.4502563],[114.1674423,22.4514923],[114.1644897,22.4511242],[114.1617966,22.4549065],[114.1703568,22.4569206],[114.1787109,22.4582329],[114.192131,22.4618511],[114.1980896,22.461441],[114.2008972,22.4599628],[114.2089081,22.4582691],[114.2102432,22.461092],[114.2097931,22.4649792],[114.2100067,22.4700489],[114.2135468,22.468605],[114.2288513,22.4741478],[114.2450714,22.4578896],[114.2459335,22.4512596],[114.2549286,22.4542103],[114.2609634,22.4570198],[114.2621231,22.458683],[114.2631607,22.4621811],[114.2655487,22.4639015],[114.2704163,22.4652767],[114.2701035,22.4714699],[114.278923,22.4730301],[114.2827377,22.4757366],[114.2919006,22.480299],[114.3038635,22.4882107],[114.3099136,22.4907894],[114.3129272,22.4897804],[114.3176193,22.4948254],[114.3223801,22.4984951],[114.3302612,22.5039158],[114.3355865,22.5062313],[114.3344269,22.5091667],[114.3303909,22.5108204],[114.3215179,22.5053539],[114.3079834,22.5040684],[114.3000336,22.4997616],[114.2918091,22.5097275],[114.2902679,22.5062084],[114.2858582,22.5099125],[114.2746582,22.5110016],[114.2738419,22.5169449],[114.2799835,22.5179176],[114.2823029,22.5207863],[114.2829514,22.5226555],[114.280899,22.5285378],[114.2770691,22.5306606],[114.271019,22.52808],[114.2651215,22.5271149],[114.2645264,22.5289288],[114.26548,22.5342617],[114.2632828,22.5385265],[114.2574692,22.5451546],[114.2592926,22.552599],[114.2497635,22.5503139],[114.2453918,22.5485039],[114.2370224,22.5384541],[114.2280273,22.5350456],[114.2158966,22.5259705],[114.214119,22.5268078],[114.2112732,22.5292034],[114.2204971,22.5461903],[114.2232971,22.5447121],[114.2257767,22.5448284],[114.2258987,22.5449562]],[[114.3031769,22.5349255],[114.2945404,22.5480919],[114.2983475,22.5464268],[114.3027802,22.5468616],[114.3061905,22.5479393],[114.3100433,22.5499573],[114.3056717,22.5529747],[114.2997208,22.5531578],[114.2936935,22.554718],[114.2895889,22.5572872],[114.2916336,22.5424385],[114.2899933,22.5407524],[114.2863007,22.5401211],[114.2873917,22.538332],[114.2972183,22.5351086],[114.3031769,22.5349255]],[[114.3149338,22.5327091],[114.3131027,22.5344658],[114.3085709,22.5358639],[114.3089523,22.5333538],[114.3113937,22.5295563],[114.3177032,22.527319],[114.3176727,22.5323753],[114.315979,22.5362072],[114.3149338,22.5327091]],[[114.3029938,22.5151443],[114.2974396,22.5125885],[114.300972,22.506773],[114.3058624,22.5079193],[114.3160934,22.5157509],[114.3158493,22.5201073],[114.3138275,22.5209332],[114.3102036,22.523983],[114.3074799,22.523859],[114.3029938,22.5151443]],[[114.3568802,22.4983158],[114.3618698,22.502224],[114.3607101,22.5053902],[114.3559036,22.5072384],[114.353241,22.5061951],[114.3568802,22.4983158]],[[114.356842,22.4663582],[114.3606873,22.4686031],[114.3640671,22.4793339],[114.3628693,22.4834175],[114.3590088,22.4862289],[114.3565826,22.4854279],[114.3563614,22.4801292],[114.3587494,22.4724216],[114.3576279,22.4703007],[114.356842,22.4663582]],[[114.2243576,22.4494076],[114.230072,22.4535847],[114.2332611,22.4585609],[114.2287827,22.4590416],[114.2233734,22.4539604],[114.2243576,22.4494076]],[[114.2163162,22.4469624],[114.2179489,22.453476],[114.2157516,22.4580441],[114.2127533,22.4534626],[114.2122269,22.4493008],[114.2126083,22.4470177],[114.2163162,22.4469624]],[[114.4073334,22.411581],[114.4074097,22.4110489],[114.4079285,22.4106064],[114.4087524,22.4104004],[114.4095688,22.4113789],[114.4095612,22.412693],[114.4083633,22.4133301],[114.4073029,22.4126358],[114.4073334,22.411581]],[[114.3843765,22.4018211],[114.3843994,22.4006367],[114.3849335,22.4003258],[114.3858032,22.4005108],[114.3861465,22.4011364],[114.3862305,22.4019165],[114.3854294,22.4023857],[114.3843765,22.4018211]],[[114.3252869,22.3692474],[114.3272171,22.3723354],[114.3265762,22.3750648],[114.3244705,22.3774967],[114.3222427,22.3776245],[114.3216095,22.3755245],[114.3252869,22.3692474]],[[113.8869095,22.3680706],[113.8881073,22.3755817],[113.8876877,22.3808804],[113.8846436,22.3837929],[113.8779831,22.3841381],[113.8787537,22.3804264],[113.8869095,22.3680706]],[[113.8742371,22.3581944],[113.8750534,22.3570919],[113.8768692,22.3567657],[113.8779373,22.3582211],[113.8773727,22.3599892],[113.8756104,22.3608265],[113.8742371,22.3600845],[113.8742371,22.3581944]],[[114.2962112,22.3554974],[114.2975464,22.3629169],[114.2967072,22.3693161],[114.2904663,22.3750038],[114.2884293,22.37146],[114.2929916,22.3601761],[114.2962112,22.3554974]],[[113.8887405,22.3535156],[113.8888397,22.3526478],[113.890007,22.3513451],[113.8918762,22.3515282],[113.8924026,22.3530312],[113.8916168,22.3546448],[113.8894119,22.3546619],[113.8887405,22.3535156]],[[114.0599976,22.3469028],[114.0620804,22.3495331],[114.0623627,22.3534546],[114.063797,22.3585815],[114.0613327,22.3586941],[114.05867,22.3574181],[114.0562515,22.3520126],[114.0599976,22.3469028]],[[113.8885727,22.3480301],[113.8886871,22.347332],[113.8887863,22.3464661],[113.8899994,22.3456745],[113.8917007,22.3460445],[113.8918991,22.3480892],[113.8895721,22.3488045],[113.8885727,22.3480301]],[[114.3146133,22.3492203],[114.3172073,22.3465824],[114.3215027,22.345171],[114.324852,22.3517647],[114.3238602,22.3565464],[114.3187866,22.3680382],[114.3173065,22.3725681],[114.312973,22.3797245],[114.3105392,22.3789215],[114.3059464,22.3722725],[114.30616,22.3683739],[114.3080215,22.3659306],[114.3065567,22.3608055],[114.3043137,22.3567924],[114.3029327,22.3500614],[114.3062897,22.3474579],[114.3090286,22.3471241],[114.3146133,22.3492203]],[[114.356163,22.3398705],[114.3595963,22.3402596],[114.3628464,22.3486862],[114.3639221,22.3565521],[114.367897,22.3562756],[114.3711929,22.3548183],[114.3740387,22.3570175],[114.374527,22.361639],[114.369133,22.3655281],[114.3476334,22.3746567],[114.3399124,22.3754501],[114.3360672,22.3732052],[114.332283,22.3654423],[114.3329163,22.3627129],[114.3359604,22.3568745],[114.3382568,22.3507729],[114.3396301,22.3483086],[114.3430481,22.3491554],[114.3456116,22.3520317],[114.3484573,22.3542328],[114.3510437,22.3522816],[114.3505096,22.3483486],[114.3514099,22.3453999],[114.356163,22.3398705]],[[113.9812775,22.3323917],[113.9848938,22.3347263],[113.9873428,22.3384991],[113.9860611,22.3417778],[113.9831467,22.3428497],[113.9809036,22.3422794],[113.9797668,22.340044],[113.9786224,22.3334484],[113.9812775,22.3323917]],[[114.3654633,22.3414497],[114.3602905,22.3317852],[114.3630295,22.3314514],[114.3672867,22.339695],[114.3654633,22.3414497]],[[114.3248367,22.3290005],[114.327713,22.3307438],[114.3279419,22.3355827],[114.3275299,22.3387833],[114.3260727,22.3428535],[114.3171692,22.3429012],[114.3147964,22.3409538],[114.3155365,22.3363895],[114.3217773,22.3306999],[114.3248367,22.3290005]],[[114.1032181,22.3570118],[114.100769,22.3610344],[114.0977936,22.3613529],[114.0913925,22.3605881],[114.0839691,22.3606949],[114.0783768,22.35882],[114.0780411,22.3560429],[114.0792694,22.3517323],[114.0829773,22.347311],[114.0875931,22.3443108],[114.0884628,22.3420544],[114.0913162,22.3258648],[114.0961227,22.3286228],[114.1008682,22.3322964],[114.1039963,22.3338261],[114.1102829,22.3456211],[114.1101379,22.3525124],[114.1032181,22.3570118]],[[114.3002319,22.3267136],[114.2963028,22.3308983],[114.2943878,22.334259],[114.2912369,22.3329639],[114.2965775,22.3256245],[114.2993469,22.3246021],[114.3002319,22.3267136]],[[114.1416473,22.3190556],[114.1443024,22.3203316],[114.1451492,22.3229008],[114.1457138,22.3261471],[114.1439133,22.3274403],[114.1262283,22.3252239],[114.1264038,22.3220119],[114.1356812,22.3196926],[114.1416473,22.3190556]],[[114.3485413,22.315609],[114.3513412,22.3187275],[114.3542862,22.3236904],[114.3533325,22.3277855],[114.3501282,22.3276386],[114.3490677,22.3243713],[114.3485413,22.315609]],[[114.3647079,22.3092251],[114.3671494,22.3097973],[114.3677292,22.3128128],[114.3648376,22.3207283],[114.3620987,22.3210621],[114.361763,22.318058],[114.3622894,22.3127937],[114.3647079,22.3092251]],[[113.9105301,22.3005028],[113.9106064,22.2998219],[113.9111481,22.2993698],[113.9125366,22.2987099],[113.9136429,22.2995605],[113.9136124,22.3007793],[113.9123764,22.3015614],[113.9114838,22.3012333],[113.9105301,22.3005028]],[[113.9300766,22.3113289],[113.9312286,22.3036957],[113.9310303,22.2938499],[113.9345779,22.293932],[113.9346313,22.2928486],[113.9378433,22.2956123],[113.9404907,22.3001175],[113.9417267,22.3061657],[113.9479523,22.3193951],[113.9471817,22.3217201],[113.9436569,22.3172436],[113.9347534,22.3174324],[113.9300766,22.3113289]],[[114.0397873,22.2829304],[114.0461731,22.2885265],[114.0421295,22.2899418],[114.043663,22.2934647],[114.0384369,22.2941341],[114.0363464,22.2917347],[114.0397873,22.2829304]],[[114.26577,22.2766418],[114.2716904,22.2780228],[114.2702866,22.2804375],[114.2665329,22.2804222],[114.26577,22.2766418]],[[114.3577728,22.273674],[114.3587112,22.2735901],[114.3619614,22.2752781],[114.3607101,22.2769337],[114.3583679,22.2771454],[114.3573227,22.2761383],[114.3577728,22.273674]],[[114.3116226,22.2736435],[114.3123093,22.2727566],[114.3143234,22.2728195],[114.3153763,22.2745914],[114.314743,22.276226],[114.3130875,22.2763729],[114.3117981,22.2753582],[114.3116226,22.2736435]],[[114.4357529,22.542614],[114.4319,22.5497952],[114.4266434,22.5509357],[114.4300232,22.5430431],[114.4357529,22.542614]],[[114.3691635,22.2640038],[114.3692169,22.2631721],[114.3705292,22.2631569],[114.371788,22.2640381],[114.3713684,22.2656193],[114.3696671,22.266037],[114.3685226,22.2652378],[114.3691635,22.2640038]],[[114.3465805,22.2638912],[114.3483887,22.2630692],[114.3508682,22.2641659],[114.3513718,22.2667637],[114.3501663,22.2688541],[114.3480072,22.2686081],[114.3463821,22.266552],[114.3465805,22.2638912]],[[114.3499374,22.2556839],[114.3502197,22.2534332],[114.3510895,22.2526951],[114.3537369,22.2531166],[114.3555374,22.2544956],[114.3552704,22.2565002],[114.3530197,22.2575855],[114.3512878,22.2568607],[114.3499374,22.2556839]],[[114.3431473,22.2514267],[114.3437729,22.2504902],[114.3447037,22.2504063],[114.3464584,22.2513504],[114.3459473,22.253376],[114.3436813,22.2542419],[114.3426971,22.253891],[114.3431473,22.2514267]],[[114.0398407,22.2420044],[114.0420303,22.242569],[114.0434418,22.2483845],[114.0439529,22.2525482],[114.0424728,22.2570763],[114.028923,22.2607937],[114.0276108,22.257513],[114.0380325,22.2478943],[114.0398407,22.2420044]],[[114.2867813,22.2410145],[114.288147,22.2431488],[114.298317,22.251667],[114.2981262,22.2551098],[114.2960587,22.2568512],[114.2927933,22.2578506],[114.2826538,22.2534695],[114.2773895,22.2502365],[114.275589,22.246933],[114.2867813,22.2410145]],[[114.1562424,22.2389126],[114.1577606,22.2414093],[114.1547928,22.2460957],[114.1496964,22.2474041],[114.1486969,22.244421],[114.1562424,22.2389126]],[[114.0224533,22.1990871],[114.0273132,22.2007008],[114.0352631,22.2043018],[114.0395126,22.2079544],[114.0358505,22.2114582],[114.0305862,22.2128162],[114.0301819,22.2155552],[114.033287,22.2219143],[114.0304413,22.2243061],[114.0279999,22.2237301],[114.0245667,22.2187347],[114.0230865,22.2142944],[114.0237427,22.211565],[114.0268936,22.2080402],[114.0248032,22.2056389],[114.0204697,22.2035904],[114.0196762,22.2001038],[114.0224533,22.1990871]],[[114.2378769,22.2679367],[114.2388992,22.2718945],[114.2378464,22.2775936],[114.2357635,22.2843933],[114.2302399,22.2857456],[114.2268982,22.2835197],[114.2232666,22.2867985],[114.2097931,22.2935238],[114.20298,22.2961941],[114.1940613,22.2964649],[114.1887665,22.2936878],[114.1850281,22.2898312],[114.1755066,22.2829456],[114.1690826,22.283102],[114.1612625,22.2859516],[114.1526413,22.2899132],[114.1448593,22.2920742],[114.1321106,22.2900925],[114.1260681,22.2875061],[114.118927,22.282568],[114.1162872,22.2764645],[114.1188736,22.2701492],[114.1249084,22.2635365],[114.1295624,22.2598476],[114.1322632,22.2558365],[114.1335297,22.2506084],[114.1392136,22.2506485],[114.1590729,22.2490578],[114.1659927,22.249155],[114.1625214,22.2446232],[114.1671524,22.2321949],[114.1715164,22.2337799],[114.1737823,22.2421646],[114.1770706,22.2453079],[114.1798172,22.2447491],[114.1953964,22.2353344],[114.1977234,22.2290363],[114.19944,22.2201481],[114.1990738,22.2132339],[114.200943,22.2107925],[114.2056274,22.2153816],[114.2085266,22.2164383],[114.2098999,22.2050056],[114.2115173,22.1979523],[114.2152863,22.1965199],[114.2192688,22.1962471],[114.2198563,22.2171993],[114.2178574,22.2221642],[114.2186737,22.22542],[114.2274475,22.2322693],[114.2277527,22.2357349],[114.2258224,22.2395515],[114.2261734,22.2423267],[114.2310715,22.2384167],[114.2335129,22.2251968],[114.235199,22.221365],[114.2384262,22.2164593],[114.2383499,22.2134647],[114.242157,22.2115746],[114.25634,22.2097073],[114.2579727,22.2162209],[114.2566223,22.222826],[114.251297,22.2343044],[114.2492828,22.2399578],[114.249939,22.2459679],[114.2542267,22.2489262],[114.2558136,22.2517605],[114.2546692,22.2636623],[114.2515335,22.2669659],[114.2459564,22.2692356],[114.2402725,22.2694283],[114.2378769,22.2679367]],[[114,22.2761192],[114.0171204,22.2693386],[114.0184937,22.2714748],[114.0192871,22.2747326],[114.0194702,22.2804909],[114.02108,22.2826385],[114.0195007,22.2887707],[114.0198135,22.2922363],[114.0230026,22.2969875],[114.0219193,22.2987766],[114.0179672,22.2985859],[114.0134811,22.2992916],[114.0168381,22.3056602],[114.0351562,22.3141308],[114.040657,22.3231926],[114.0434265,22.3211956],[114.0457001,22.320385],[114.0570221,22.3213863],[114.0559235,22.3323708],[114.0560608,22.3434162],[114.0534515,22.3458214],[114.0453873,22.3484249],[114.0409088,22.3489017],[114.0355377,22.3431244],[114.0343933,22.3370895],[114.0310364,22.3350887],[114.0266266,22.3341885],[114.0216217,22.3309593],[114.0200272,22.3327217],[114.0204163,22.3348103],[114.0185623,22.3370209],[114.0129623,22.3353729],[114.0096664,22.3324528],[114.0065765,22.3256359],[114,22.3255444],[113.9974289,22.3215103],[113.9929581,22.3212128],[113.9883728,22.3062019],[113.9835663,22.3040771],[113.9804764,22.301199],[113.9786682,22.2934456],[113.9750214,22.2949581],[113.9610138,22.2960262],[113.9385986,22.2877636],[113.9320602,22.2735119],[113.9292831,22.2777519],[113.9262619,22.2944164],[113.9124298,22.2949123],[113.9027481,22.2941113],[113.8969421,22.2913284],[113.8942337,22.2796974],[113.890419,22.2773037],[113.8860474,22.2681179],[113.8828964,22.2695484],[113.8781815,22.269455],[113.8751984,22.2681866],[113.8620605,22.2615261],[113.8557663,22.2532406],[113.8582077,22.2522335],[113.8600464,22.2489491],[113.8601608,22.2457256],[113.8543472,22.242712],[113.8493729,22.2419701],[113.850647,22.2345409],[113.8473282,22.2332554],[113.8443069,22.233181],[113.8400269,22.2312622],[113.838768,22.224638],[113.8430786,22.2152863],[113.8432083,22.206543],[113.8448486,22.2044163],[113.8446808,22.1943035],[113.8478928,22.1941891],[113.8559036,22.2024136],[113.8616104,22.2031307],[113.8672485,22.2020111],[113.8722916,22.204361],[113.8766403,22.2078857],[113.8811569,22.2095642],[113.8831863,22.2166195],[113.8863068,22.2204189],[113.891037,22.2211685],[113.8947372,22.2210369],[113.8954773,22.2148018],[113.9038162,22.2073746],[113.9129333,22.2065887],[113.9214325,22.2088127],[113.9330063,22.2079353],[113.9353638,22.2108421],[113.9342422,22.2136421],[113.927597,22.2163067],[113.9245071,22.2190857],[113.9369736,22.2197514],[113.9424973,22.2218513],[113.9471512,22.2265148],[113.9490433,22.2303562],[113.9564285,22.2296295],[113.9606705,22.2303963],[113.9697418,22.234436],[113.9777832,22.2344952],[113.9778595,22.2318993],[113.9748535,22.2266617],[113.9754486,22.2231903],[113.9810104,22.2144794],[113.9869919,22.2096634],[113.9909286,22.2092915],[114,22.2160835],[114.00634,22.2184563],[114.0091629,22.2211208],[114.0092468,22.2282543],[114.0175476,22.225893],[114.019928,22.231987],[114.0167313,22.2362041],[114.0124588,22.2373772],[114,22.2395267],[113.995163,22.2390347],[113.9942398,22.2406769],[113.9951172,22.2440948],[114,22.2484818],[114.0091705,22.2521687],[114.0089035,22.2569847],[114,22.2652149],[113.9950714,22.2651005],[113.992897,22.2674026],[113.9970169,22.271162],[114,22.2761192]],[[113.9951782,22.1870461],[113.9961014,22.1899796],[113.9945526,22.1969452],[113.9904938,22.2033558],[113.9872894,22.2035255],[113.9833679,22.2000599],[113.9841919,22.1933613],[113.9902267,22.1868477],[113.9951782,22.1870461]],[[114.2862015,22.1847763],[114.2879105,22.1863689],[114.2903137,22.1892376],[114.2875824,22.1907158],[114.2849274,22.1878166],[114.2843475,22.18503],[114.2862015,22.1847763]],[[114.2452698,22.1833687],[114.2494736,22.1835651],[114.2528763,22.1844139],[114.2574921,22.1903782],[114.2487717,22.1918087],[114.2434769,22.1890335],[114.2434769,22.1846638],[114.2452698,22.1833687]],[[114.3034973,22.1849155],[114.3041687,22.183527],[114.3055191,22.1828384],[114.3078232,22.1833897],[114.3082962,22.1850548],[114.3082962,22.1860828],[114.3059464,22.1868076],[114.3041306,22.1863537],[114.3034973,22.1849155]],[[114.1275711,22.1788158],[114.137413,22.1797409],[114.137558,22.1905556],[114.1450272,22.1849308],[114.1456375,22.1918583],[114.1439209,22.196146],[114.1432266,22.199791],[114.1465912,22.201561],[114.1553268,22.2042732],[114.1596222,22.2072353],[114.1537018,22.2115555],[114.1489334,22.2129383],[114.1433029,22.2119827],[114.1376419,22.209959],[114.1315079,22.2079182],[114.129631,22.2107353],[114.1314774,22.2168083],[114.1342468,22.2193718],[114.1341095,22.2218933],[114.1320572,22.223177],[114.127121,22.2231731],[114.1241226,22.2283192],[114.1183777,22.234024],[114.1205368,22.239645],[114.1169586,22.2417755],[114.1106796,22.2391777],[114.1047592,22.2388954],[114.1058502,22.2371082],[114.107048,22.2332554],[114.1097031,22.2299328],[114.107132,22.2272816],[114.1056137,22.2233009],[114.1074829,22.2208595],[114.1102829,22.2193832],[114.1157684,22.2184944],[114.1199265,22.2145538],[114.1203918,22.2106667],[114.1192322,22.200264],[114.1173706,22.193737],[114.1147385,22.1876335],[114.1151962,22.1837463],[114.1185684,22.1809158],[114.1275711,22.1788158]],[[113.9171371,22.1764507],[113.9194565,22.1779346],[113.9179535,22.1816845],[113.9105911,22.1866589],[113.9075623,22.1856689],[113.9061813,22.1832161],[113.9110031,22.1811314],[113.9171371,22.1764507]],[[114.2989273,22.1781216],[114.2990494,22.177351],[114.2995377,22.1761703],[114.3009033,22.1754799],[114.3019867,22.1763287],[114.3023834,22.1780014],[114.3020706,22.1789761],[114.3006363,22.178915],[114.2989273,22.1781216]],[[114.256279,22.1602688],[114.2668533,22.1612225],[114.2753525,22.1639175],[114.2749863,22.1659698],[114.271431,22.172472],[114.2686234,22.1833782],[114.2639313,22.1833897],[114.2501221,22.1737785],[114.2478409,22.1702213],[114.2510223,22.1662312],[114.2543564,22.1638584],[114.256279,22.1602688]],[[113.9175262,22.1585293],[113.9162064,22.1652527],[113.9209976,22.1707401],[113.916893,22.1723328],[113.9116898,22.1721439],[113.9074936,22.1682339],[113.8983002,22.1634331],[113.8976669,22.161171],[113.8990402,22.1592655],[113.9029007,22.1576862],[113.9175262,22.1585293]]]]},
  5393 +"properties":{
  5394 +"gid":899,
  5395 +"name":""}
  5396 +},
  5397 +{"type":"Feature",
  5398 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.0394897,22.5044327],[114.0401077,22.5044289],[114.0410233,22.5044746],[114.0419388,22.5044212],[114.0430222,22.5041428],[114.0442429,22.5037098],[114.0456619,22.5032406],[114.0465469,22.5030785],[114.0475235,22.5026646],[114.0483322,22.5023842],[114.0490494,22.5022945],[114.0500336,22.5021782],[114.0511475,22.5021248],[114.0521622,22.5023327],[114.0531006,22.5025597],[114.054039,22.5027676],[114.0549469,22.5033112],[114.0556717,22.5037994],[114.0564117,22.5042782],[114.056839,22.504776],[114.0571365,22.5055161],[114.0574112,22.5063839],[114.0573273,22.5074844],[114.0573425,22.5080624],[114.0576935,22.509119],[114.0580368,22.5100327],[114.0584564,22.5112686],[114.0588074,22.5120106],[114.0595474,22.5128498],[114.060257,22.5134468],[114.0611572,22.5142784],[114.0620499,22.5150108],[114.0629425,22.5156517],[114.0639572,22.5162392],[114.0649719,22.5166569],[114.0665131,22.5172253],[114.067421,22.5174694],[114.0684433,22.5176334],[114.069519,22.517725],[114.0703812,22.5177422],[114.0714035,22.5178337],[114.0722427,22.5178528],[114.0733337,22.5178089],[114.0738678,22.517601],[114.0744934,22.5171127],[114.0751266,22.5166264],[114.0758438,22.5162563],[114.0763931,22.5160027],[114.0769272,22.5158691],[114.0776901,22.5158691],[114.0784607,22.5159512],[114.0794525,22.5163212],[114.0805893,22.516964],[114.0819168,22.5180836],[114.0827179,22.5189056],[114.0837936,22.5200081],[114.0843811,22.5208759],[114.0847168,22.5220051],[114.084877,22.5230789],[114.0850067,22.5240192],[114.0849075,22.5249577],[114.0845871,22.5255814],[114.08358,22.5261402],[114.0821533,22.526762],[114.0808563,22.5272217],[114.0800171,22.5277538],[114.0794067,22.5282154],[114.0790634,22.5292892],[114.0790405,22.5300026],[114.0794067,22.5306263],[114.0799866,22.5312672],[114.0806732,22.531765],[114.0812683,22.5319729],[114.0821075,22.5321808],[114.0830765,22.5322437],[114.0843582,22.5323544],[114.0852966,22.5326061],[114.0858917,22.5329952],[114.0864563,22.5337715],[114.0868073,22.5343685],[114.08741,22.5352898],[114.08815,22.536068],[114.0888672,22.5367088],[114.0895615,22.5370979],[114.0899963,22.5373955],[114.090683,22.5376663],[114.0912933,22.5377579],[114.0918884,22.537775],[114.0925293,22.5376129],[114.0929871,22.5373878],[114.0934372,22.5369911],[114.0943069,22.5360966],[114.0953674,22.5352936],[114.0958786,22.5348511],[114.0969467,22.5345993],[114.097908,22.5345268],[114.0988235,22.5345459],[114.0995865,22.5347271],[114.1002274,22.5348892],[114.1009216,22.5350246],[114.1016388,22.535162],[114.1021576,22.5353413],[114.1023865,22.535387],[114.1026077,22.5354061],[114.102829,22.5351982],[114.1027832,22.5349274],[114.1026535,22.5343933],[114.1025009,22.5337791],[114.1024475,22.5333633],[114.1023788,22.5328865],[114.1023331,22.5326328],[114.1024475,22.5323353],[114.1027679,22.5321274],[114.1032562,22.5321732],[114.1036835,22.5325165],[114.1040268,22.5330391],[114.1044312,22.5340252],[114.1047134,22.5345745],[114.1048737,22.534811],[114.1052475,22.5350533],[114.1057663,22.5350094],[114.1063766,22.5348282],[114.1069031,22.5348473],[114.1074371,22.5351181],[114.1078873,22.5354614],[114.1083908,22.5357876],[114.1088333,22.535923],[114.109108,22.5357151],[114.1093292,22.5350914],[114.1092987,22.5339451],[114.1092987,22.5329151],[114.1093903,22.532156],[114.1096268,22.5314884],[114.1100464,22.5310917],[114.1108932,22.530405],[114.111763,22.5301971],[114.1124725,22.530035],[114.1133423,22.5303059],[114.1142273,22.5309029],[114.1149216,22.5314445],[114.1152725,22.5320683],[114.1155472,22.5332432],[114.1155777,22.5338573],[114.1159668,22.5346432],[114.1164169,22.5352287],[114.1169891,22.5354652],[114.1175537,22.5355091],[114.118248,22.5353661],[114.1189117,22.5352039],[114.1194305,22.5351582],[114.1200027,22.5351582],[114.1202774,22.5353565],[114.120163,22.5356827],[114.1198807,22.5361156],[114.1197815,22.5364399],[114.1198578,22.5365753],[114.120079,22.5366669],[114.1207962,22.5366936],[114.1212692,22.5364418],[114.12146,22.5363693],[114.121788,22.5363426],[114.1220779,22.5363865],[114.1221771,22.5365047],[114.1220322,22.5369644],[114.121788,22.5376339],[114.1215363,22.5381565],[114.1214676,22.5385723],[114.1217728,22.5388889],[114.1230469,22.5393219],[114.1238174,22.5396214],[114.1243668,22.5400085],[114.1248398,22.5404701],[114.1251373,22.5408573],[114.1252823,22.5410652],[114.1255569,22.5410843],[114.1259995,22.5405788],[114.1262436,22.5401001],[114.1267395,22.539793],[114.1275024,22.5399837],[114.1281509,22.5405521],[114.1287537,22.5412388],[114.1293106,22.5418072],[114.129837,22.5420876],[114.1306992,22.5424042],[114.131218,22.5424213],[114.1319122,22.5424042],[114.1329193,22.5420971],[114.1336365,22.5419807],[114.1342087,22.5420246],[114.1346283,22.5422058],[114.1350327,22.5423679],[114.1360168,22.5429382],[114.1364594,22.5432816],[114.1370468,22.5437145],[114.1377487,22.5438766],[114.1382065,22.5439396],[114.1388931,22.5439224],[114.1396027,22.5438061],[114.1402206,22.5434799],[114.1406937,22.5431824],[114.1414337,22.5427666],[114.1422882,22.5424881],[114.1433029,22.5423241],[114.1434784,22.5421619],[114.1437225,22.5417194],[114.1438217,22.5414486],[114.1440735,22.5412407],[114.1450272,22.5413494],[114.1472778,22.5417557],[114.1482697,22.5420551],[114.1489334,22.5421906],[114.1491318,22.5424423],[114.1490402,22.5429668],[114.1488419,22.5435257],[114.1488037,22.5439777],[114.1489182,22.5442753],[114.1493912,22.5448723],[114.1499634,22.5453339],[114.1509018,22.5459919],[114.1513977,22.5462723],[114.1519165,22.5465889],[114.1522064,22.5469131],[114.1523438,22.5475731],[114.1521912,22.5480614],[114.151947,22.5483856],[114.1516724,22.5486565],[114.1511765,22.5485668],[114.1508636,22.5480881],[114.1506271,22.5476723],[114.1503067,22.5477448],[114.1500473,22.5483227],[114.149971,22.5491447],[114.1502686,22.550066],[114.1506729,22.5506153],[114.1515427,22.5513649],[114.1519928,22.551754],[114.1522522,22.5522137],[114.1523132,22.5529289],[114.1523438,22.5536423],[114.1524429,22.5543728],[114.1525116,22.5548782],[114.1527328,22.5551052],[114.1530075,22.5552406],[114.1533813,22.5552845],[114.153923,22.5551682],[114.1544876,22.5551682],[114.1548386,22.5550785],[114.1554031,22.5551224],[114.155899,22.5552311],[114.1562195,22.5555115],[114.1566162,22.5561981],[114.157341,22.5572987],[114.1580811,22.5587177],[114.1589813,22.5597019],[114.1596985,22.5605507],[114.1602402,22.561327],[114.1608429,22.5620136],[114.1612625,22.5623379],[114.1615829,22.5624466],[114.1619797,22.5623302],[114.1623001,22.5619411],[114.1626434,22.5613461],[114.163208,22.5601711],[114.1638489,22.5594578],[114.1642914,22.5593224],[114.1650314,22.5592232],[114.1654663,22.5592957],[114.1660995,22.559639],[114.166687,22.5601807],[114.1670227,22.5604782],[114.1675873,22.5611019],[114.1680527,22.5613995],[114.1685333,22.5615082],[114.1691895,22.5615978],[114.1700821,22.5612736],[114.1707687,22.5607224],[114.1713104,22.5603523],[114.1717072,22.5602169],[114.1720505,22.5600548],[114.1728668,22.5600719],[114.1737366,22.5601177],[114.1742783,22.5601807],[114.1752167,22.5604153],[114.1758728,22.560524],[114.1763535,22.5604782],[114.1767731,22.560379],[114.1771698,22.5599003],[114.1777115,22.5586529],[114.1778564,22.5576248],[114.1781235,22.5566845],[114.1784363,22.5561066],[114.1787872,22.5557632],[114.1793137,22.5553932],[114.1798706,22.5550499],[114.1803131,22.5548878],[114.1809311,22.5547695],[114.181282,22.5547695],[114.1818237,22.5550404],[114.1824036,22.555357],[114.1831131,22.5557003],[114.1838531,22.5557728],[114.1845932,22.5557003],[114.1851883,22.5555553],[114.1858826,22.5554657],[114.1866226,22.5554657],[114.187561,22.5554371],[114.188179,22.5554829],[114.1885834,22.5555],[114.1890717,22.5555458],[114.1894836,22.5552216],[114.1900635,22.5549679],[114.1903763,22.5549946],[114.1911926,22.5552654],[114.1916428,22.5555191],[114.1920929,22.5557442],[114.1924133,22.5559521],[114.1928329,22.5561333],[114.1935196,22.5561771],[114.1939621,22.5559883],[114.1943588,22.5558529],[114.1949005,22.5558071],[114.1952209,22.5558701],[114.1955185,22.5561676],[114.1959534,22.5565567],[114.1962128,22.5567818],[114.1964569,22.5570164],[114.1969299,22.5571079],[114.1973495,22.5571518],[114.1976471,22.5571518],[114.1983032,22.5570984],[114.1992264,22.5572777],[114.1997528,22.5574398],[114.2001724,22.5576668],[114.20047,22.5577564],[114.2007904,22.5577564],[114.2011108,22.5574131],[114.2016525,22.5569706],[114.2022171,22.5566998],[114.2030106,22.5566273],[114.2036285,22.556673],[114.2047195,22.5566006],[114.2054062,22.5565987],[114.2060165,22.556591],[114.2067032,22.5564995],[114.2075577,22.5566807],[114.2083511,22.5566978],[114.2094879,22.5566521],[114.21035,22.5564899],[114.2110367,22.5563278],[114.211731,22.5560207],[114.2124023,22.555748],[114.2131882,22.5555592],[114.2138596,22.5554237],[114.2144012,22.5553246],[114.21492,22.5552788],[114.2154617,22.5552959],[114.2161636,22.5554142],[114.2167511,22.5555668],[114.2171936,22.5558014],[114.217453,22.5559368],[114.2175903,22.5564423],[114.2178192,22.5565052],[114.2181931,22.5564156],[114.2184067,22.5562077],[114.2186737,22.5555668],[114.2195129,22.5542297],[114.220253,22.5534248],[114.2211914,22.5527306],[114.2218018,22.552269],[114.2225418,22.5517368],[114.223381,22.5513744],[114.2239838,22.551157],[114.2244415,22.5507965],[114.2245407,22.5505619],[114.2250824,22.5500832],[114.2254028,22.5495491],[114.225769,22.5492516],[114.22612,22.5491066],[114.2264633,22.5490608],[114.2269592,22.5489712],[114.227623,22.5484829],[114.2268982,22.5480003],[114.2268982,22.5478001],[114.2256927,22.54599],[114.2258911,22.5449924],[114.2258987,22.5449562],[114.2257767,22.5448284],[114.2232971,22.5447121],[114.2204971,22.5461903],[114.2112732,22.5292034],[114.214119,22.5268078],[114.2158966,22.5259705],[114.2280273,22.5350456],[114.2370224,22.5384541],[114.2453918,22.5485039],[114.2497635,22.5503139],[114.2592926,22.552599],[114.2574692,22.5451546],[114.2632828,22.5385265],[114.26548,22.5342617],[114.2645264,22.5289288],[114.2651215,22.5271149],[114.271019,22.52808],[114.2770691,22.5306606],[114.280899,22.5285378],[114.2829514,22.5226555],[114.2823029,22.5207863],[114.2799835,22.5179176],[114.2738419,22.5169449],[114.2746582,22.5110016],[114.2858582,22.5099125],[114.2902679,22.5062084],[114.2918091,22.5097275],[114.3000336,22.4997616],[114.3079834,22.5040684],[114.3215179,22.5053539],[114.3303909,22.5108204],[114.3344269,22.5091667],[114.3355865,22.5062313],[114.3302612,22.5039158],[114.3223801,22.4984951],[114.3176193,22.4948254],[114.3129272,22.4897804],[114.3099136,22.4907894],[114.3038635,22.4882107],[114.2919006,22.480299],[114.2827377,22.4757366],[114.278923,22.4730301],[114.2701035,22.4714699],[114.2704163,22.4652767],[114.2655487,22.4639015],[114.2631607,22.4621811],[114.2621231,22.458683],[114.2609634,22.4570198],[114.2549286,22.4542103],[114.2459335,22.4512596],[114.2450714,22.4578896],[114.2288513,22.4741478],[114.2135468,22.468605],[114.2100067,22.4700489],[114.2097931,22.4649792],[114.2102432,22.461092],[114.2089081,22.4582691],[114.2008972,22.4599628],[114.1980896,22.461441],[114.192131,22.4618511],[114.1787109,22.4582329],[114.1703568,22.4569206],[114.1617966,22.4549065],[114.1644897,22.4511242],[114.1674423,22.4514923],[114.1704788,22.4502563],[114.1751328,22.4465656],[114.1782837,22.4432659],[114.1833725,22.4407444],[114.1912994,22.4406567],[114.1962204,22.4411182],[114.199913,22.4369221],[114.2039795,22.4304428],[114.2124481,22.4202633],[114.2126236,22.4170513],[114.2098083,22.4095612],[114.2077789,22.4060173],[114.2040863,22.4010143],[114.1991425,22.3964138],[114.1923676,22.3889675],[114.1898499,22.38517],[114.1897278,22.3828659],[114.1910477,22.3813171],[114.1972275,22.3859768],[114.2003479,22.3877335],[114.2051163,22.3863468],[114.2072601,22.3926544],[114.2094803,22.3973598],[114.2124634,22.4018669],[114.2166977,22.4052124],[114.2229996,22.411068],[114.2247696,22.4185333],[114.2287369,22.4240398],[114.235527,22.4328403],[114.2395096,22.4371643],[114.244133,22.43853],[114.2458191,22.4349289],[114.2482834,22.4352741],[114.2577133,22.4345627],[114.2658234,22.4358597],[114.2678604,22.434576],[114.2684326,22.4286232],[114.267952,22.4237728],[114.2694016,22.4197006],[114.2737885,22.4164543],[114.2756729,22.4220734],[114.2805328,22.4261456],[114.2852173,22.4294033],[114.2806015,22.4370079],[114.2788467,22.4419842],[114.2759933,22.4446106],[114.2775116,22.4485893],[114.2931519,22.4569035],[114.2994232,22.4580765],[114.3015366,22.4654579],[114.3057709,22.4719296],[114.3121567,22.4766388],[114.3165283,22.47822],[114.3197632,22.4779091],[114.3218079,22.4766235],[114.3277893,22.4759789],[114.3255768,22.4710503],[114.3241882,22.4691448],[114.3244629,22.464098],[114.3279419,22.4638004],[114.3310928,22.4650955],[114.3369675,22.4708843],[114.3422089,22.4794044],[114.3452682,22.4731064],[114.3453674,22.4712715],[114.3439865,22.4645405],[114.3409882,22.4604912],[114.3363495,22.4593582],[114.3382187,22.4520874],[114.3347931,22.4374428],[114.3352585,22.4333248],[114.3376236,22.4306755],[114.3429031,22.4385071],[114.3455429,22.4354076],[114.3470764,22.4297314],[114.3486862,22.4272747],[114.3525772,22.4240055],[114.3522186,22.4308872],[114.3527985,22.4385014],[114.3542862,22.4431686],[114.353157,22.4504738],[114.3569183,22.4554272],[114.3594666,22.4574337],[114.3610916,22.4595757],[114.3635864,22.4590015],[114.3672791,22.4502029],[114.3672409,22.4462929],[114.3697968,22.4445705],[114.3773117,22.4430752],[114.3936691,22.4426727],[114.3975067,22.4403191],[114.3988266,22.4385414],[114.3990784,22.4339542],[114.3985367,22.4300194],[114.4007874,22.4248333],[114.4021835,22.4175396],[114.4013519,22.4142818],[114.3878784,22.4210243],[114.3847198,22.41996],[114.3752899,22.4064217],[114.3691025,22.4017696],[114.3700409,22.398859],[114.3767166,22.3982086],[114.3809586,22.3974838],[114.3895874,22.3886814],[114.3906174,22.3691845],[114.3876419,22.369278],[114.3813324,22.3763466],[114.3790665,22.3723335],[114.3787537,22.3690987],[114.3778534,22.3674488],[114.3503113,22.3781414],[114.3450699,22.3836498],[114.3393936,22.3787899],[114.3305588,22.382061],[114.3243179,22.383152],[114.3197632,22.3850117],[114.3179016,22.387455],[114.3192978,22.3965855],[114.3167572,22.394762],[114.3139572,22.3962421],[114.3105011,22.3963108],[114.3090134,22.3918724],[114.3069229,22.3892479],[114.3045273,22.3875275],[114.3012772,22.3882961],[114.2958069,22.3887329],[114.2905426,22.3900986],[114.2888412,22.3941574],[114.2857132,22.3972321],[114.2745819,22.3877487],[114.2711792,22.3866711],[114.2705612,22.3797436],[114.2709732,22.3721733],[114.2729568,22.3672085],[114.2750092,22.3567257],[114.2704468,22.3588123],[114.2674332,22.3595924],[114.2653732,22.3611069],[114.2677536,22.3676548],[114.2673569,22.3701668],[114.2655334,22.3721504],[114.2597504,22.3691216],[114.2531433,22.3584671],[114.2594604,22.3560009],[114.2631912,22.3511162],[114.2686462,22.3460808],[114.2699966,22.3440742],[114.2702026,22.3358059],[114.2742767,22.3242683],[114.2826767,22.3244286],[114.2869797,22.3225574],[114.289299,22.316227],[114.2898483,22.3105049],[114.2934265,22.3085537],[114.2981033,22.3134155],[114.3027191,22.3150101],[114.3047867,22.3086662],[114.3074265,22.3055687],[114.3105774,22.2974377],[114.3068237,22.2935829],[114.2937012,22.2892971],[114.2943573,22.2817383],[114.2941132,22.2771282],[114.3019028,22.2839279],[114.300827,22.2762909],[114.3063736,22.2742481],[114.3062897,22.2712536],[114.3027191,22.2685604],[114.2973175,22.2632504],[114.2868881,22.2698746],[114.2825394,22.2715321],[114.2793274,22.2667828],[114.2763138,22.2723923],[114.2762222,22.2795105],[114.2758865,22.2844715],[114.2735291,22.2874393],[114.2710495,22.2921543],[114.2678375,22.3009758],[114.2665405,22.3089848],[114.2664871,22.3147106],[114.2655563,22.3179512],[114.2553635,22.32691],[114.2583008,22.3177757],[114.2575226,22.3138294],[114.2544785,22.3106995],[114.2545395,22.3049526],[114.2536011,22.2993889],[114.2427597,22.2894573],[114.2393799,22.28792],[114.2362366,22.2909927],[114.2348785,22.293457],[114.2327423,22.298357],[114.2244797,22.3028584],[114.2229538,22.3083076],[114.2193832,22.3148079],[114.206543,22.3269768],[114.2013779,22.3300476],[114.1977463,22.325983],[114.2023087,22.3195286],[114.2049866,22.3166904],[114.1961823,22.3185501],[114.1927872,22.3172398],[114.1911774,22.314867],[114.1937408,22.3041782],[114.1912918,22.303833],[114.1850967,22.3083706],[114.1827621,22.3059616],[114.1682816,22.2949314],[114.1635818,22.3085079],[114.1683197,22.3124104],[114.1643372,22.3172817],[114.1607285,22.3201008],[114.1592865,22.3237133],[114.1603317,22.3274403],[114.156517,22.3337002],[114.1522064,22.3357964],[114.1360931,22.3366432],[114.1300583,22.3427982],[114.1236572,22.3512325],[114.12854,22.3569832],[114.1286163,22.3599758],[114.1172485,22.3598976],[114.1148911,22.3623161],[114.1149216,22.3662262],[114.1167297,22.3693027],[114.1150665,22.3724422],[114.1128464,22.3723373],[114.1104279,22.3715324],[114.1003036,22.3712807],[114.085701,22.3666763],[114.0821075,22.3690357],[114.0779419,22.3683777],[114.044693,22.361269],[114.0389709,22.3616867],[114.0324707,22.3583851],[114.0201111,22.3582516],[114.0162964,22.3599091],[114.0067062,22.3677273],[114,22.3690586],[113.9930191,22.3632946],[113.9908295,22.364296],[113.9909668,22.3675098],[113.9849319,22.3711777],[113.9822464,22.3777142],[113.9836502,22.3818016],[113.980751,22.389267],[113.9757614,22.3942757],[113.9718018,22.3941898],[113.9663315,22.3819695],[113.9644775,22.3732986],[113.959877,22.3697834],[113.9507828,22.3655128],[113.9429703,22.3680954],[113.9337997,22.3677349],[113.927887,22.3686371],[113.9207382,22.375103],[113.9253006,22.3834476],[113.9217682,22.3877144],[113.916008,22.3920593],[113.9157867,22.398737],[113.9072571,22.4077797],[113.9068604,22.4100952],[113.9175034,22.4206123],[113.9296112,22.422451],[113.9409866,22.4210567],[113.9524536,22.4342117],[113.9520264,22.4420471],[113.9533234,22.4491272],[113.9564133,22.4520073],[113.9708405,22.4537487],[113.9757614,22.4549084],[113.978653,22.462471],[113.9834595,22.4705753],[113.991127,22.4784946],[113.9970627,22.4815807],[113.9980011,22.4863758],[114,22.4914093],[114.0046692,22.4892826],[114.0108871,22.4888897],[114.0099335,22.4837856],[114.0061188,22.4721031],[114.0077362,22.4696522],[114.0110626,22.4723415],[114.0192032,22.4773312],[114.0238724,22.4780159],[114.0294266,22.4759827],[114.0285568,22.4733105],[114.0329132,22.4756889],[114.0371628,22.4795723],[114.0358505,22.4852581],[114.0320206,22.4917431],[114.0310287,22.4962959],[114.0375671,22.5032768],[114.0394897,22.5044327]]]]},
  5399 +"properties":{
  5400 +"gid":900,
  5401 +"name":"香港特别行政区"}
  5402 +},
  5403 +{"type":"Feature",
  5404 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.4073334,22.411581],[114.4073029,22.4126358],[114.4083633,22.4133301],[114.4095612,22.412693],[114.4095688,22.4113789],[114.4087524,22.4104004],[114.4079285,22.4106064],[114.4074097,22.4110489],[114.4073334,22.411581]]]]},
  5405 +"properties":{
  5406 +"gid":901,
  5407 +"name":"香港特别行政区"}
  5408 +},
  5409 +{"type":"Feature",
  5410 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.3843765,22.4018211],[114.3854294,22.4023857],[114.3862305,22.4019165],[114.3861465,22.4011364],[114.3858032,22.4005108],[114.3849335,22.4003258],[114.3843994,22.4006367],[114.3843765,22.4018211]]]]},
  5411 +"properties":{
  5412 +"gid":902,
  5413 +"name":"香港特别行政区"}
  5414 +},
  5415 +{"type":"Feature",
  5416 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.3146133,22.3492203],[114.3090286,22.3471241],[114.3062897,22.3474579],[114.3029327,22.3500614],[114.3043137,22.3567924],[114.3065567,22.3608055],[114.3080215,22.3659306],[114.30616,22.3683739],[114.3059464,22.3722725],[114.3105392,22.3789215],[114.312973,22.3797245],[114.3173065,22.3725681],[114.3187866,22.3680382],[114.3238602,22.3565464],[114.324852,22.3517647],[114.3215027,22.345171],[114.3172073,22.3465824],[114.3146133,22.3492203]]]]},
  5417 +"properties":{
  5418 +"gid":903,
  5419 +"name":"香港特别行政区"}
  5420 +},
  5421 +{"type":"Feature",
  5422 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.3252869,22.3692474],[114.3216095,22.3755245],[114.3222427,22.3776245],[114.3244705,22.3774967],[114.3265762,22.3750648],[114.3272171,22.3723354],[114.3252869,22.3692474]]]]},
  5423 +"properties":{
  5424 +"gid":904,
  5425 +"name":"香港特别行政区"}
  5426 +},
  5427 +{"type":"Feature",
  5428 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.356163,22.3398705],[114.3514099,22.3453999],[114.3505096,22.3483486],[114.3510437,22.3522816],[114.3484573,22.3542328],[114.3456116,22.3520317],[114.3430481,22.3491554],[114.3396301,22.3483086],[114.3382568,22.3507729],[114.3359604,22.3568745],[114.3329163,22.3627129],[114.332283,22.3654423],[114.3360672,22.3732052],[114.3399124,22.3754501],[114.3476334,22.3746567],[114.369133,22.3655281],[114.374527,22.361639],[114.3740387,22.3570175],[114.3711929,22.3548183],[114.367897,22.3562756],[114.3639221,22.3565521],[114.3628464,22.3486862],[114.3595963,22.3402596],[114.356163,22.3398705]]]]},
  5429 +"properties":{
  5430 +"gid":905,
  5431 +"name":"香港特别行政区"}
  5432 +},
  5433 +{"type":"Feature",
  5434 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.2962112,22.3554974],[114.2929916,22.3601761],[114.2884293,22.37146],[114.2904663,22.3750038],[114.2967072,22.3693161],[114.2975464,22.3629169],[114.2962112,22.3554974]]]]},
  5435 +"properties":{
  5436 +"gid":906,
  5437 +"name":"香港特别行政区"}
  5438 +},
  5439 +{"type":"Feature",
  5440 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.3248367,22.3290005],[114.3217773,22.3306999],[114.3155365,22.3363895],[114.3147964,22.3409538],[114.3171692,22.3429012],[114.3260727,22.3428535],[114.3275299,22.3387833],[114.3279419,22.3355827],[114.327713,22.3307438],[114.3248367,22.3290005]]]]},
  5441 +"properties":{
  5442 +"gid":907,
  5443 +"name":"香港特别行政区"}
  5444 +},
  5445 +{"type":"Feature",
  5446 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.3654633,22.3414497],[114.3672867,22.339695],[114.3630295,22.3314514],[114.3602905,22.3317852],[114.3654633,22.3414497]]]]},
  5447 +"properties":{
  5448 +"gid":908,
  5449 +"name":"香港特别行政区"}
  5450 +},
  5451 +{"type":"Feature",
  5452 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.3002319,22.3267136],[114.2993469,22.3246021],[114.2965775,22.3256245],[114.2912369,22.3329639],[114.2943878,22.334259],[114.2963028,22.3308983],[114.3002319,22.3267136]]]]},
  5453 +"properties":{
  5454 +"gid":909,
  5455 +"name":"香港特别行政区"}
  5456 +},
  5457 +{"type":"Feature",
  5458 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.3485413,22.315609],[114.3490677,22.3243713],[114.3501282,22.3276386],[114.3533325,22.3277855],[114.3542862,22.3236904],[114.3513412,22.3187275],[114.3485413,22.315609]]]]},
  5459 +"properties":{
  5460 +"gid":910,
  5461 +"name":"香港特别行政区"}
  5462 +},
  5463 +{"type":"Feature",
  5464 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.3647079,22.3092251],[114.3622894,22.3127937],[114.361763,22.318058],[114.3620987,22.3210621],[114.3648376,22.3207283],[114.3677292,22.3128128],[114.3671494,22.3097973],[114.3647079,22.3092251]]]]},
  5465 +"properties":{
  5466 +"gid":911,
  5467 +"name":"香港特别行政区"}
  5468 +},
  5469 +{"type":"Feature",
  5470 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.2378769,22.2679367],[114.2402725,22.2694283],[114.2459564,22.2692356],[114.2515335,22.2669659],[114.2546692,22.2636623],[114.2558136,22.2517605],[114.2542267,22.2489262],[114.249939,22.2459679],[114.2492828,22.2399578],[114.251297,22.2343044],[114.2566223,22.222826],[114.2579727,22.2162209],[114.25634,22.2097073],[114.242157,22.2115746],[114.2383499,22.2134647],[114.2384262,22.2164593],[114.235199,22.221365],[114.2335129,22.2251968],[114.2310715,22.2384167],[114.2261734,22.2423267],[114.2258224,22.2395515],[114.2277527,22.2357349],[114.2274475,22.2322693],[114.2186737,22.22542],[114.2178574,22.2221642],[114.2198563,22.2171993],[114.2192688,22.1962471],[114.2152863,22.1965199],[114.2115173,22.1979523],[114.2098999,22.2050056],[114.2085266,22.2164383],[114.2056274,22.2153816],[114.200943,22.2107925],[114.1990738,22.2132339],[114.19944,22.2201481],[114.1977234,22.2290363],[114.1953964,22.2353344],[114.1798172,22.2447491],[114.1770706,22.2453079],[114.1737823,22.2421646],[114.1715164,22.2337799],[114.1671524,22.2321949],[114.1625214,22.2446232],[114.1659927,22.249155],[114.1590729,22.2490578],[114.1392136,22.2506485],[114.1335297,22.2506084],[114.1322632,22.2558365],[114.1295624,22.2598476],[114.1249084,22.2635365],[114.1188736,22.2701492],[114.1162872,22.2764645],[114.118927,22.282568],[114.1260681,22.2875061],[114.1321106,22.2900925],[114.1448593,22.2920742],[114.1526413,22.2899132],[114.1612625,22.2859516],[114.1690826,22.283102],[114.1755066,22.2829456],[114.1850281,22.2898312],[114.1887665,22.2936878],[114.1940613,22.2964649],[114.20298,22.2961941],[114.2097931,22.2935238],[114.2232666,22.2867985],[114.2268982,22.2835197],[114.2302399,22.2857456],[114.2357635,22.2843933],[114.2378464,22.2775936],[114.2388992,22.2718945],[114.2378769,22.2679367]]]]},
  5471 +"properties":{
  5472 +"gid":912,
  5473 +"name":"香港特别行政区"}
  5474 +},
  5475 +{"type":"Feature",
  5476 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.26577,22.2766418],[114.2665329,22.2804222],[114.2702866,22.2804375],[114.2716904,22.2780228],[114.26577,22.2766418]]]]},
  5477 +"properties":{
  5478 +"gid":913,
  5479 +"name":"香港特别行政区"}
  5480 +},
  5481 +{"type":"Feature",
  5482 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.3577728,22.273674],[114.3573227,22.2761383],[114.3583679,22.2771454],[114.3607101,22.2769337],[114.3619614,22.2752781],[114.3587112,22.2735901],[114.3577728,22.273674]]]]},
  5483 +"properties":{
  5484 +"gid":914,
  5485 +"name":"香港特别行政区"}
  5486 +},
  5487 +{"type":"Feature",
  5488 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.3116226,22.2736435],[114.3117981,22.2753582],[114.3130875,22.2763729],[114.314743,22.276226],[114.3153763,22.2745914],[114.3143234,22.2728195],[114.3123093,22.2727566],[114.3116226,22.2736435]]]]},
  5489 +"properties":{
  5490 +"gid":915,
  5491 +"name":"香港特别行政区"}
  5492 +},
  5493 +{"type":"Feature",
  5494 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.3465805,22.2638912],[114.3463821,22.266552],[114.3480072,22.2686081],[114.3501663,22.2688541],[114.3513718,22.2667637],[114.3508682,22.2641659],[114.3483887,22.2630692],[114.3465805,22.2638912]]]]},
  5495 +"properties":{
  5496 +"gid":916,
  5497 +"name":"香港特别行政区"}
  5498 +},
  5499 +{"type":"Feature",
  5500 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.3691635,22.2640038],[114.3685226,22.2652378],[114.3696671,22.266037],[114.3713684,22.2656193],[114.371788,22.2640381],[114.3705292,22.2631569],[114.3692169,22.2631721],[114.3691635,22.2640038]]]]},
  5501 +"properties":{
  5502 +"gid":917,
  5503 +"name":"香港特别行政区"}
  5504 +},
  5505 +{"type":"Feature",
  5506 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.2867813,22.2410145],[114.275589,22.246933],[114.2773895,22.2502365],[114.2826538,22.2534695],[114.2927933,22.2578506],[114.2960587,22.2568512],[114.2981262,22.2551098],[114.298317,22.251667],[114.288147,22.2431488],[114.2867813,22.2410145]]]]},
  5507 +"properties":{
  5508 +"gid":918,
  5509 +"name":"香港特别行政区"}
  5510 +},
  5511 +{"type":"Feature",
  5512 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.3499374,22.2556839],[114.3512878,22.2568607],[114.3530197,22.2575855],[114.3552704,22.2565002],[114.3555374,22.2544956],[114.3537369,22.2531166],[114.3510895,22.2526951],[114.3502197,22.2534332],[114.3499374,22.2556839]]]]},
  5513 +"properties":{
  5514 +"gid":919,
  5515 +"name":"香港特别行政区"}
  5516 +},
  5517 +{"type":"Feature",
  5518 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.3431473,22.2514267],[114.3426971,22.253891],[114.3436813,22.2542419],[114.3459473,22.253376],[114.3464584,22.2513504],[114.3447037,22.2504063],[114.3437729,22.2504902],[114.3431473,22.2514267]]]]},
  5519 +"properties":{
  5520 +"gid":920,
  5521 +"name":"香港特别行政区"}
  5522 +},
  5523 +{"type":"Feature",
  5524 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.2452698,22.1833687],[114.2434769,22.1846638],[114.2434769,22.1890335],[114.2487717,22.1918087],[114.2574921,22.1903782],[114.2528763,22.1844139],[114.2494736,22.1835651],[114.2452698,22.1833687]]]]},
  5525 +"properties":{
  5526 +"gid":921,
  5527 +"name":"香港特别行政区"}
  5528 +},
  5529 +{"type":"Feature",
  5530 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.2862015,22.1847763],[114.2843475,22.18503],[114.2849274,22.1878166],[114.2875824,22.1907158],[114.2903137,22.1892376],[114.2879105,22.1863689],[114.2862015,22.1847763]]]]},
  5531 +"properties":{
  5532 +"gid":922,
  5533 +"name":"香港特别行政区"}
  5534 +},
  5535 +{"type":"Feature",
  5536 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.3034973,22.1849155],[114.3041306,22.1863537],[114.3059464,22.1868076],[114.3082962,22.1860828],[114.3082962,22.1850548],[114.3078232,22.1833897],[114.3055191,22.1828384],[114.3041687,22.183527],[114.3034973,22.1849155]]]]},
  5537 +"properties":{
  5538 +"gid":923,
  5539 +"name":"香港特别行政区"}
  5540 +},
  5541 +{"type":"Feature",
  5542 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.256279,22.1602688],[114.2543564,22.1638584],[114.2510223,22.1662312],[114.2478409,22.1702213],[114.2501221,22.1737785],[114.2639313,22.1833897],[114.2686234,22.1833782],[114.271431,22.172472],[114.2749863,22.1659698],[114.2753525,22.1639175],[114.2668533,22.1612225],[114.256279,22.1602688]]]]},
  5543 +"properties":{
  5544 +"gid":924,
  5545 +"name":"香港特别行政区"}
  5546 +},
  5547 +{"type":"Feature",
  5548 +"geometry":{"type":"MultiPolygon","coordinates":[[[[114.2989273,22.1781216],[114.3006363,22.178915],[114.3020706,22.1789761],[114.3023834,22.1780014],[114.3019867,22.1763287],[114.3009033,22.1754799],[114.2995377,22.1761703],[114.2990494,22.177351],[114.2989273,22.1781216]]]]},
  5549 +"properties":{
  5550 +"gid":925,
  5551 +"name":"香港特别行政区"}
  5552 +}]
  5553 +}
\ No newline at end of file
... ...
... ... @@ -13,217 +13,216 @@
13 13 #forkongithub a{background:#000;color:#fff;text-decoration:none;font-family:arial,sans-serif;text-align:center;font-weight:bold;padding:5px 40px;font-size:1rem;line-height:2rem;position:relative;transition:0.5s;}#forkongithub a:hover{background:#c11;color:#fff;}#forkongithub a::before,#forkongithub a::after{content:"";width:100%;display:block;position:absolute;top:1px;left:0;height:1px;background:#fff;}#forkongithub a::after{bottom:1px;top:auto;}@media screen and (min-width:800px){#forkongithub{position:fixed;display:block;top:0;right:0;width:200px;overflow:hidden;height:200px;z-index:9999;}#forkongithub a{width:200px;position:absolute;top:60px;right:-60px;transform:rotate(45deg);-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);-moz-transform:rotate(45deg);-o-transform:rotate(45deg);box-shadow:4px 4px 10px rgba(0,0,0,0.8);}}</style>
14 14 </head>
15 15 <body>
16   -<span id="forkongithub"><a href="http://gitlab.ctune.cn/chinadci/leaflet-echart">Fork me on Gitlab</a></span>
17   -<div id="ee"><div id="map"></div></div>
  16 + <span id="forkongithub"><a href="http://gitlab.ctune.cn/chinadci/leaflet-echart">Fork me on Gitlab</a></span>
  17 + <div id="ee"><div id="map"></div></div>
  18 + <script src="../libs/echarts/dist/echarts.min.js"></script>
  19 + <script src="../libs/leaflet/dist/leaflet.js"></script>
  20 + <script src="http://cdn.bootcss.com/jquery/1.11.0/jquery.min.js"></script>
  21 + <script src="../dist/leaflet-echarts4.min.js"></script>
  22 + <script>
18 23
19   -<script src="../libs/echarts/dist/echarts.min.js"></script>
20   -<script src="../libs/leaflet/dist/leaflet.js"></script>
21   -<script src="../libs/jquery/dist/jquery.min.js"></script>
22   -<script src="../dist/leaflet-echarts3.min.js"></script>
23   -<script>
24   -
25   - var echarts = LeafletEcharts.initEcharts(document.getElementById("map"));//('map');
26   -
27   - //var echarts = leafletEcharts1.getEcharts();
28   -
29   - var geoCoordMap = {
30   - '上海': [121.4648, 31.2891],
31   - '东莞': [113.8953, 22.901],
32   - '东营': [118.7073, 37.5513],
33   - '中山': [113.4229, 22.478],
34   - '临汾': [111.4783, 36.1615],
35   - '临沂': [118.3118, 35.2936],
36   - '丹东': [124.541, 40.4242],
37   - '丽水': [119.5642, 28.1854],
38   - '乌鲁木齐': [87.9236, 43.5883],
39   - '佛山': [112.8955, 23.1097],
40   - '保定': [115.0488, 39.0948],
41   - '兰州': [103.5901, 36.3043],
42   - '包头': [110.3467, 41.4899],
43   - '北京': [116.4551, 40.2539],
44   - '北海': [109.314, 21.6211],
45   - '南京': [118.8062, 31.9208],
46   - '南宁': [108.479, 23.1152],
47   - '南昌': [116.0046, 28.6633],
48   - '南通': [121.1023, 32.1625],
49   - '厦门': [118.1689, 24.6478],
50   - '台州': [121.1353, 28.6688],
51   - '合肥': [117.29, 32.0581],
52   - '呼和浩特': [111.4124, 40.4901],
53   - '咸阳': [108.4131, 34.8706],
54   - '哈尔滨': [127.9688, 45.368],
55   - '唐山': [118.4766, 39.6826],
56   - '嘉兴': [120.9155, 30.6354],
57   - '大同': [113.7854, 39.8035],
58   - '大连': [122.2229, 39.4409],
59   - '天津': [117.4219, 39.4189],
60   - '太原': [112.3352, 37.9413],
61   - '威海': [121.9482, 37.1393],
62   - '宁波': [121.5967, 29.6466],
63   - '宝鸡': [107.1826, 34.3433],
64   - '宿迁': [118.5535, 33.7775],
65   - '常州': [119.4543, 31.5582],
66   - '广州': [113.5107, 23.2196],
67   - '廊坊': [116.521, 39.0509],
68   - '延安': [109.1052, 36.4252],
69   - '张家口': [115.1477, 40.8527],
70   - '徐州': [117.5208, 34.3268],
71   - '德州': [116.6858, 37.2107],
72   - '惠州': [114.6204, 23.1647],
73   - '成都': [103.9526, 30.7617],
74   - '扬州': [119.4653, 32.8162],
75   - '承德': [117.5757, 41.4075],
76   - '拉萨': [91.1865, 30.1465],
77   - '无锡': [120.3442, 31.5527],
78   - '日照': [119.2786, 35.5023],
79   - '昆明': [102.9199, 25.4663],
80   - '杭州': [119.5313, 29.8773],
81   - '枣庄': [117.323, 34.8926],
82   - '柳州': [109.3799, 24.9774],
83   - '株洲': [113.5327, 27.0319],
84   - '武汉': [114.3896, 30.6628],
85   - '汕头': [117.1692, 23.3405],
86   - '江门': [112.6318, 22.1484],
87   - '沈阳': [123.1238, 42.1216],
88   - '沧州': [116.8286, 38.2104],
89   - '河源': [114.917, 23.9722],
90   - '泉州': [118.3228, 25.1147],
91   - '泰安': [117.0264, 36.0516],
92   - '泰州': [120.0586, 32.5525],
93   - '济南': [117.1582, 36.8701],
94   - '济宁': [116.8286, 35.3375],
95   - '海口': [110.3893, 19.8516],
96   - '淄博': [118.0371, 36.6064],
97   - '淮安': [118.927, 33.4039],
98   - '深圳': [114.5435, 22.5439],
99   - '清远': [112.9175, 24.3292],
100   - '温州': [120.498, 27.8119],
101   - '渭南': [109.7864, 35.0299],
102   - '湖州': [119.8608, 30.7782],
103   - '湘潭': [112.5439, 27.7075],
104   - '滨州': [117.8174, 37.4963],
105   - '潍坊': [119.0918, 36.524],
106   - '烟台': [120.7397, 37.5128],
107   - '玉溪': [101.9312, 23.8898],
108   - '珠海': [113.7305, 22.1155],
109   - '盐城': [120.2234, 33.5577],
110   - '盘锦': [121.9482, 41.0449],
111   - '石家庄': [114.4995, 38.1006],
112   - '福州': [119.4543, 25.9222],
113   - '秦皇岛': [119.2126, 40.0232],
114   - '绍兴': [120.564, 29.7565],
115   - '聊城': [115.9167, 36.4032],
116   - '肇庆': [112.1265, 23.5822],
117   - '舟山': [122.2559, 30.2234],
118   - '苏州': [120.6519, 31.3989],
119   - '莱芜': [117.6526, 36.2714],
120   - '菏泽': [115.6201, 35.2057],
121   - '营口': [122.4316, 40.4297],
122   - '葫芦岛': [120.1575, 40.578],
123   - '衡水': [115.8838, 37.7161],
124   - '衢州': [118.6853, 28.8666],
125   - '西宁': [101.4038, 36.8207],
126   - '西安': [109.1162, 34.2004],
127   - '贵阳': [106.6992, 26.7682],
128   - '连云港': [119.1248, 34.552],
129   - '邢台': [114.8071, 37.2821],
130   - '邯郸': [114.4775, 36.535],
131   - '郑州': [113.4668, 34.6234],
132   - '鄂尔多斯': [108.9734, 39.2487],
133   - '重庆': [107.7539, 30.1904],
134   - '金华': [120.0037, 29.1028],
135   - '铜川': [109.0393, 35.1947],
136   - '银川': [106.3586, 38.1775],
137   - '镇江': [119.4763, 31.9702],
138   - '长春': [125.8154, 44.2584],
139   - '长沙': [113.0823, 28.2568],
140   - '长治': [112.8625, 36.4746],
141   - '阳泉': [113.4778, 38.0951],
142   - '青岛': [120.4651, 36.3373],
143   - '韶关': [113.7964, 24.7028]
144   - };
  24 + var echarts = LeafletEcharts.initEcharts(document.getElementById("map"));//('map');
145 25
146   - var BJData = [
147   - [{name: '北京'}, {name: '上海', value: 95}],
148   - [{name: '北京'}, {name: '广州', value: 90}],
149   - [{name: '北京'}, {name: '大连', value: 80}],
150   - [{name: '北京'}, {name: '南宁', value: 70}],
151   - [{name: '北京'}, {name: '南昌', value: 60}],
152   - [{name: '北京'}, {name: '拉萨', value: 50}],
153   - [{name: '北京'}, {name: '长春', value: 40}],
154   - [{name: '北京'}, {name: '包头', value: 30}],
155   - [{name: '北京'}, {name: '重庆', value: 20}],
156   - [{name: '北京'}, {name: '常州', value: 10}]
157   - ];
  26 + //var echarts = leafletEcharts1.getEcharts();
158 27
159   - var SHData = [
160   - [{name: '上海'}, {name: '包头', value: 95}],
161   - [{name: '上海'}, {name: '昆明', value: 90}],
162   - [{name: '上海'}, {name: '广州', value: 80}],
163   - [{name: '上海'}, {name: '郑州', value: 70}],
164   - [{name: '上海'}, {name: '长春', value: 60}],
165   - [{name: '上海'}, {name: '重庆', value: 50}],
166   - [{name: '上海'}, {name: '长沙', value: 40}],
167   - [{name: '上海'}, {name: '北京', value: 30}],
168   - [{name: '上海'}, {name: '丹东', value: 20}],
169   - [{name: '上海'}, {name: '大连', value: 10}]
170   - ];
  28 + var geoCoordMap = {
  29 + '上海': [121.4648, 31.2891],
  30 + '东莞': [113.8953, 22.901],
  31 + '东营': [118.7073, 37.5513],
  32 + '中山': [113.4229, 22.478],
  33 + '临汾': [111.4783, 36.1615],
  34 + '临沂': [118.3118, 35.2936],
  35 + '丹东': [124.541, 40.4242],
  36 + '丽水': [119.5642, 28.1854],
  37 + '乌鲁木齐': [87.9236, 43.5883],
  38 + '佛山': [112.8955, 23.1097],
  39 + '保定': [115.0488, 39.0948],
  40 + '兰州': [103.5901, 36.3043],
  41 + '包头': [110.3467, 41.4899],
  42 + '北京': [116.4551, 40.2539],
  43 + '北海': [109.314, 21.6211],
  44 + '南京': [118.8062, 31.9208],
  45 + '南宁': [108.479, 23.1152],
  46 + '南昌': [116.0046, 28.6633],
  47 + '南通': [121.1023, 32.1625],
  48 + '厦门': [118.1689, 24.6478],
  49 + '台州': [121.1353, 28.6688],
  50 + '合肥': [117.29, 32.0581],
  51 + '呼和浩特': [111.4124, 40.4901],
  52 + '咸阳': [108.4131, 34.8706],
  53 + '哈尔滨': [127.9688, 45.368],
  54 + '唐山': [118.4766, 39.6826],
  55 + '嘉兴': [120.9155, 30.6354],
  56 + '大同': [113.7854, 39.8035],
  57 + '大连': [122.2229, 39.4409],
  58 + '天津': [117.4219, 39.4189],
  59 + '太原': [112.3352, 37.9413],
  60 + '威海': [121.9482, 37.1393],
  61 + '宁波': [121.5967, 29.6466],
  62 + '宝鸡': [107.1826, 34.3433],
  63 + '宿迁': [118.5535, 33.7775],
  64 + '常州': [119.4543, 31.5582],
  65 + '广州': [113.5107, 23.2196],
  66 + '廊坊': [116.521, 39.0509],
  67 + '延安': [109.1052, 36.4252],
  68 + '张家口': [115.1477, 40.8527],
  69 + '徐州': [117.5208, 34.3268],
  70 + '德州': [116.6858, 37.2107],
  71 + '惠州': [114.6204, 23.1647],
  72 + '成都': [103.9526, 30.7617],
  73 + '扬州': [119.4653, 32.8162],
  74 + '承德': [117.5757, 41.4075],
  75 + '拉萨': [91.1865, 30.1465],
  76 + '无锡': [120.3442, 31.5527],
  77 + '日照': [119.2786, 35.5023],
  78 + '昆明': [102.9199, 25.4663],
  79 + '杭州': [119.5313, 29.8773],
  80 + '枣庄': [117.323, 34.8926],
  81 + '柳州': [109.3799, 24.9774],
  82 + '株洲': [113.5327, 27.0319],
  83 + '武汉': [114.3896, 30.6628],
  84 + '汕头': [117.1692, 23.3405],
  85 + '江门': [112.6318, 22.1484],
  86 + '沈阳': [123.1238, 42.1216],
  87 + '沧州': [116.8286, 38.2104],
  88 + '河源': [114.917, 23.9722],
  89 + '泉州': [118.3228, 25.1147],
  90 + '泰安': [117.0264, 36.0516],
  91 + '泰州': [120.0586, 32.5525],
  92 + '济南': [117.1582, 36.8701],
  93 + '济宁': [116.8286, 35.3375],
  94 + '海口': [110.3893, 19.8516],
  95 + '淄博': [118.0371, 36.6064],
  96 + '淮安': [118.927, 33.4039],
  97 + '深圳': [114.5435, 22.5439],
  98 + '清远': [112.9175, 24.3292],
  99 + '温州': [120.498, 27.8119],
  100 + '渭南': [109.7864, 35.0299],
  101 + '湖州': [119.8608, 30.7782],
  102 + '湘潭': [112.5439, 27.7075],
  103 + '滨州': [117.8174, 37.4963],
  104 + '潍坊': [119.0918, 36.524],
  105 + '烟台': [120.7397, 37.5128],
  106 + '玉溪': [101.9312, 23.8898],
  107 + '珠海': [113.7305, 22.1155],
  108 + '盐城': [120.2234, 33.5577],
  109 + '盘锦': [121.9482, 41.0449],
  110 + '石家庄': [114.4995, 38.1006],
  111 + '福州': [119.4543, 25.9222],
  112 + '秦皇岛': [119.2126, 40.0232],
  113 + '绍兴': [120.564, 29.7565],
  114 + '聊城': [115.9167, 36.4032],
  115 + '肇庆': [112.1265, 23.5822],
  116 + '舟山': [122.2559, 30.2234],
  117 + '苏州': [120.6519, 31.3989],
  118 + '莱芜': [117.6526, 36.2714],
  119 + '菏泽': [115.6201, 35.2057],
  120 + '营口': [122.4316, 40.4297],
  121 + '葫芦岛': [120.1575, 40.578],
  122 + '衡水': [115.8838, 37.7161],
  123 + '衢州': [118.6853, 28.8666],
  124 + '西宁': [101.4038, 36.8207],
  125 + '西安': [109.1162, 34.2004],
  126 + '贵阳': [106.6992, 26.7682],
  127 + '连云港': [119.1248, 34.552],
  128 + '邢台': [114.8071, 37.2821],
  129 + '邯郸': [114.4775, 36.535],
  130 + '郑州': [113.4668, 34.6234],
  131 + '鄂尔多斯': [108.9734, 39.2487],
  132 + '重庆': [107.7539, 30.1904],
  133 + '金华': [120.0037, 29.1028],
  134 + '铜川': [109.0393, 35.1947],
  135 + '银川': [106.3586, 38.1775],
  136 + '镇江': [119.4763, 31.9702],
  137 + '长春': [125.8154, 44.2584],
  138 + '长沙': [113.0823, 28.2568],
  139 + '长治': [112.8625, 36.4746],
  140 + '阳泉': [113.4778, 38.0951],
  141 + '青岛': [120.4651, 36.3373],
  142 + '韶关': [113.7964, 24.7028]
  143 + };
171 144
172   - var GZData = [
173   - [{name: '广州'}, {name: '福州', value: 95}],
174   - [{name: '广州'}, {name: '太原', value: 90}],
175   - [{name: '广州'}, {name: '长春', value: 80}],
176   - [{name: '广州'}, {name: '重庆', value: 70}],
177   - [{name: '广州'}, {name: '西安', value: 60}],
178   - [{name: '广州'}, {name: '成都', value: 50}],
179   - [{name: '广州'}, {name: '常州', value: 40}],
180   - [{name: '广州'}, {name: '北京', value: 30}],
181   - [{name: '广州'}, {name: '北海', value: 20}],
182   - [{name: '广州'}, {name: '海口', value: 10}]
183   - ];
  145 + var BJData = [
  146 + [{ name: '北京' }, { name: '上海', value: 95 }],
  147 + [{ name: '北京' }, { name: '广州', value: 90 }],
  148 + [{ name: '北京' }, { name: '大连', value: 80 }],
  149 + [{ name: '北京' }, { name: '南宁', value: 70 }],
  150 + [{ name: '北京' }, { name: '南昌', value: 60 }],
  151 + [{ name: '北京' }, { name: '拉萨', value: 50 }],
  152 + [{ name: '北京' }, { name: '长春', value: 40 }],
  153 + [{ name: '北京' }, { name: '包头', value: 30 }],
  154 + [{ name: '北京' }, { name: '重庆', value: 20 }],
  155 + [{ name: '北京' }, { name: '常州', value: 10 }]
  156 + ];
184 157
185   - var planePath = 'path://M1705.06,1318.313v-89.254l-319.9-221.799l0.073-208.063c0.521-84.662-26.629-121.796-63.961-121.491c-37.332-0.305-64.482,36.829-63.961,121.491l0.073,208.063l-319.9,221.799v89.254l330.343-157.288l12.238,241.308l-134.449,92.931l0.531,42.034l175.125-42.917l175.125,42.917l0.531-42.034l-134.449-92.931l12.238-241.308L1705.06,1318.313z';
  158 + var SHData = [
  159 + [{ name: '上海' }, { name: '包头', value: 95 }],
  160 + [{ name: '上海' }, { name: '昆明', value: 90 }],
  161 + [{ name: '上海' }, { name: '广州', value: 80 }],
  162 + [{ name: '上海' }, { name: '郑州', value: 70 }],
  163 + [{ name: '上海' }, { name: '长春', value: 60 }],
  164 + [{ name: '上海' }, { name: '重庆', value: 50 }],
  165 + [{ name: '上海' }, { name: '长沙', value: 40 }],
  166 + [{ name: '上海' }, { name: '北京', value: 30 }],
  167 + [{ name: '上海' }, { name: '丹东', value: 20 }],
  168 + [{ name: '上海' }, { name: '大连', value: 10 }]
  169 + ];
186 170
187   - var convertData = function (data) {
188   - var res = [];
189   - for (var i = 0; i < data.length; i++) {
190   - var dataItem = data[i];
191   - var fromCoord = geoCoordMap[dataItem[0].name];
192   - var toCoord = geoCoordMap[dataItem[1].name];
193   - if (fromCoord && toCoord) {
194   - res.push([{
195   - coord: fromCoord
196   - }, {
197   - coord: toCoord
198   - }]);
  171 + var GZData = [
  172 + [{ name: '广州' }, { name: '福州', value: 95 }],
  173 + [{ name: '广州' }, { name: '太原', value: 90 }],
  174 + [{ name: '广州' }, { name: '长春', value: 80 }],
  175 + [{ name: '广州' }, { name: '重庆', value: 70 }],
  176 + [{ name: '广州' }, { name: '西安', value: 60 }],
  177 + [{ name: '广州' }, { name: '成都', value: 50 }],
  178 + [{ name: '广州' }, { name: '常州', value: 40 }],
  179 + [{ name: '广州' }, { name: '北京', value: 30 }],
  180 + [{ name: '广州' }, { name: '北海', value: 20 }],
  181 + [{ name: '广州' }, { name: '海口', value: 10 }]
  182 + ];
  183 +
  184 + var planePath = 'path://M1705.06,1318.313v-89.254l-319.9-221.799l0.073-208.063c0.521-84.662-26.629-121.796-63.961-121.491c-37.332-0.305-64.482,36.829-63.961,121.491l0.073,208.063l-319.9,221.799v89.254l330.343-157.288l12.238,241.308l-134.449,92.931l0.531,42.034l175.125-42.917l175.125,42.917l0.531-42.034l-134.449-92.931l12.238-241.308L1705.06,1318.313z';
  185 +
  186 + var convertData = function (data) {
  187 + var res = [];
  188 + for (var i = 0; i < data.length; i++) {
  189 + var dataItem = data[i];
  190 + var fromCoord = geoCoordMap[dataItem[0].name];
  191 + var toCoord = geoCoordMap[dataItem[1].name];
  192 + if (fromCoord && toCoord) {
  193 + res.push([{
  194 + coord: fromCoord
  195 + }, {
  196 + coord: toCoord
  197 + }]);
  198 + }
199 199 }
200   - }
201   - return res;
202   - };
  200 + return res;
  201 + };
203 202
204   - var color = ['#a6c84c', '#ffa022', '#46bee9'];
205   - var series = [];
206   - [['北京', BJData], ['上海', SHData], ['广州', GZData]].forEach(function (item, i) {
207   - series.push({
208   - name: item[0] + ' Top10',
209   - type: 'lines',
210   - zlevel: 1,
211   - effect: {
212   - show: true,
213   - period: 6,
214   - trailLength: 0.7,
215   - color: '#fff',
216   - symbolSize: 3
217   - },
218   - lineStyle: {
219   - normal: {
220   - color: color[i],
221   - width: 0,
222   - curveness: 0.2
223   - }
224   - },
225   - data: convertData(item[1])
  203 + var color = ['#a6c84c', '#ffa022', '#46bee9'];
  204 + var series = [];
  205 + [['北京', BJData], ['上海', SHData], ['广州', GZData]].forEach(function (item, i) {
  206 + series.push({
  207 + name: item[0] + ' Top10',
  208 + type: 'lines',
  209 + zlevel: 1,
  210 + effect: {
  211 + show: true,
  212 + period: 6,
  213 + trailLength: 0.7,
  214 + color: '#fff',
  215 + symbolSize: 3
226 216 },
  217 + lineStyle: {
  218 + normal: {
  219 + color: color[i],
  220 + width: 0,
  221 + curveness: 0.2
  222 + }
  223 + },
  224 + data: convertData(item[1])
  225 + },
227 226 {
228 227 name: item[0] + ' Top10',
229 228 type: 'lines',
... ... @@ -275,71 +274,80 @@
275 274 };
276 275 })
277 276 });
278   - });
  277 + });
279 278
280 279
281   - option = {
282   -// backgroundColor: '#404a59',
283   - title: {
284   - text: 'Leaflet扩展Echarts3之模拟迁徙',
285   - subtext: 'Develop By HuangTao',
286   - left: 'center',
287   - textStyle: {
288   - color: '#fff'
289   - }
290   - },
291   - tooltip: {
292   - trigger: 'item'
293   - },
294   - legend: {
295   - orient: 'vertical',
296   - top: 'bottom',
297   - left: 'right',
298   - data: ['北京 Top10', '上海 Top10', '广州 Top10'],
299   - textStyle: {
300   - color: '#fff'
  280 + option = {
  281 + // backgroundColor: '#404a59',
  282 + title: {
  283 + text: 'Leaflet扩展Echarts3之模拟迁徙',
  284 + subtext: 'Develop By HuangTao',
  285 + left: 'center',
  286 + textStyle: {
  287 + color: '#fff'
  288 + }
  289 + },
  290 + tooltip: {
  291 + trigger: 'item'
301 292 },
302   - selectedMode: 'single'
303   - },
304   - lmap: {
305   -
306   - },
307   - series: series
308   - };
309   - // 使用刚指定的配置项和数据显示图表。
310   - echarts.setOption(option);
  293 + legend: {
  294 + orient: 'vertical',
  295 + top: 'bottom',
  296 + left: 'right',
  297 + data: ['北京 Top10', '上海 Top10', '广州 Top10'],
  298 + textStyle: {
  299 + color: '#fff'
  300 + },
  301 + selectedMode: 'single'
  302 + },
  303 + lmap: {
311 304
312   - var map = echarts.getMap();
313   - var baseLayers = {
314   - "高德地图": L.tileLayer('http://webrd0{s}.is.autonavi.com/appmaptile?lang=zh_cn&size=1&scale=1&style=8&x={x}&y={y}&z={z}', {
315   - subdomains: "1234"
316   - }),
317   - '高德影像': L.layerGroup([L.tileLayer('http://webst0{s}.is.autonavi.com/appmaptile?style=6&x={x}&y={y}&z={z}', {
318   - subdomains: "1234"
319   - }), L.tileLayer('http://t{s}.tianditu.cn/DataServer?T=cta_w&X={x}&Y={y}&L={z}', {
320   - subdomains: "1234"
321   - })]),
322   - "立体地图": L.tileLayer('https://a.tiles.mapbox.com/v3/examples.c7d2024a/{z}/{x}/{y}.png', {
323   - attribution: 'Map &copy; Pacific Rim Coordination Center (PRCC). Certain data &copy; <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>',
324   - key: 'BC9A493B41014CAABB98F0471D759707',
325   - styleId: 22677
326   - }),
327   - "Foursquare": L.tileLayer('https://a.tiles.mapbox.com/v3/foursquare.map-0y1jh28j/{z}/{x}/{y}.png', {
  305 + },
  306 + series: series
  307 + };
  308 +
  309 + // 使用刚指定的配置项和数据显示图表。
  310 + echarts.setOption(option);
  311 +
  312 + var map = echarts.getMap();
  313 + var baseLayers = {
  314 + "高德地图": L.tileLayer('http://webrd0{s}.is.autonavi.com/appmaptile?lang=zh_cn&size=1&scale=1&style=8&x={x}&y={y}&z={z}', {
  315 + subdomains: "1234"
  316 + }),
  317 + '高德影像': L.layerGroup([L.tileLayer('http://webst0{s}.is.autonavi.com/appmaptile?style=6&x={x}&y={y}&z={z}', {
  318 + subdomains: "1234"
  319 + }), L.tileLayer('http://t{s}.tianditu.cn/DataServer?T=cta_w&X={x}&Y={y}&L={z}', {
  320 + subdomains: "1234"
  321 + })]),
  322 + "立体地图": L.tileLayer('https://a.tiles.mapbox.com/v3/examples.c7d2024a/{z}/{x}/{y}.png', {
  323 + attribution: 'Map &copy; Pacific Rim Coordination Center (PRCC). Certain data &copy; <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>',
  324 + key: 'BC9A493B41014CAABB98F0471D759707',
  325 + styleId: 22677
  326 + }),
  327 + "Foursquare": L.tileLayer('https://a.tiles.mapbox.com/v3/foursquare.map-0y1jh28j/{z}/{x}/{y}.png', {
  328 + attribution: 'Map &copy; Pacific Rim Coordination Center (PRCC). Certain data &copy; <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>',
  329 + key: 'BC9A493B41014CAABB98F0471D759707',
  330 + styleId: 22677
  331 + }),
  332 + 'GeoQ灰色底图': L.tileLayer('http://map.geoq.cn/ArcGIS/rest/services/ChinaOnlineStreetPurplishBlue/MapServer/tile/{z}/{y}/{x}').addTo(map)
  333 + };
  334 + L.tileLayer('https://a.tiles.mapbox.com/v3/foursquare.map-0y1jh28j/{z}/{x}/{y}.png', {
328 335 attribution: 'Map &copy; Pacific Rim Coordination Center (PRCC). Certain data &copy; <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>',
329 336 key: 'BC9A493B41014CAABB98F0471D759707',
330 337 styleId: 22677
331   - }),
332   - 'GeoQ灰色底图': L.tileLayer('http://map.geoq.cn/ArcGIS/rest/services/ChinaOnlineStreetPurplishBlue/MapServer/tile/{z}/{y}/{x}').addTo(map)
333   - };
334   - L.tileLayer('https://a.tiles.mapbox.com/v3/foursquare.map-0y1jh28j/{z}/{x}/{y}.png', {
335   - attribution: 'Map &copy; Pacific Rim Coordination Center (PRCC). Certain data &copy; <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>',
336   - key: 'BC9A493B41014CAABB98F0471D759707',
337   - styleId: 22677
338   - });
339   - var layercontrol = L.control.layers(baseLayers,{}, {
340   - position: "topleft"
341   - }).addTo(map);
342   - map.setView(L.latLng(37.550339, 104.114129), 4);
343   -</script>
  338 + });
  339 + var layercontrol = L.control.layers(baseLayers,{}, {
  340 + position: "topleft"
  341 + }).addTo(map);
  342 +
  343 + var tD = L.tileLayer('http://webrd0{s}.is.autonavi.com/appmaptile?lang=zh_cn&size=1&scale=1&style=8&x={x}&y={y}&z={z}', {
  344 + subdomains: "1234"
  345 + });
  346 + tD.addTo(map);
  347 + map.setView(L.latLng(37.550339, 104.114129), 4);
  348 +
  349 +
  350 +
  351 + </script>
344 352 </body>
345 353 </html>
\ No newline at end of file
... ...
  1 +<html>
  2 +<head>
  3 + <title>Basic</title>
  4 + <meta charset="utf-8">
  5 + <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6 + <link rel="stylesheet" href="../libs/leaflet/dist/leaflet.css"/>
  7 + <style>
  8 + #map {
  9 + position: absolute;
  10 + top: 0;
  11 + bottom: 0;
  12 + width: 100%;
  13 + }
  14 + </style>
  15 +</head>
  16 +<body>
  17 +<div id="map"></div>
  18 +<script src="../libs/jquery/dist/jquery.min.js"></script>
  19 +<script src="../libs/leaflet/dist/leaflet.js"></script>
  20 +
  21 +<script src="../node_modules/pbf/dist/pbf.js"></script>
  22 +<script src="../src/point-geometry.js"></script>
  23 +
  24 +<script src="../src/geojson-vt.js"></script>
  25 +<script src="../src/encode.js"></script>
  26 +<script src="../src/decode.js"></script>
  27 +
  28 +<script src="../src/vectorTileFeature.js"></script>
  29 +<script src="../src/vectorTileLayer.js"></script>
  30 +<script src="../src/vector-tile.js"></script>
  31 +
  32 +<script src="../src/geojson_wrapper.js"></script>
  33 +<script src="../src/vector-tile-pb.js"></script>
  34 +<script src="../src/vt-pbf.js"></script>
  35 +
  36 +
  37 +
  38 +<script src="../src/MVTUtil.js"></script>
  39 +<script src="../src/StaticLabel.js"></script>
  40 +<script src="../src/MVTFeature.js"></script>
  41 +<script src="../src/MVTLayer.js"></script>
  42 +<script src="../src/MVTSlice.js"></script>
  43 +<script>
  44 +
  45 +var map = L.map('map').setView([0, 0], 1); // africa
  46 +
  47 +L.tileLayer('http://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}', {
  48 + maxZoom: 18,
  49 + id: 'examples.map-i86knfo3'
  50 +}).addTo(map);
  51 +
  52 + $.getJSON("bou2_4p.json", function (data){
  53 +
  54 + // build an initial index of tiles
  55 +var tileIndex = geojsonvt(data, {
  56 + maxZoom: 14, // max zoom to preserve detail on
  57 + tolerance: 3, // simplification tolerance (higher means simpler)
  58 + extent: 4096, // tile extent (both width and height)
  59 + buffer: 64, // tile buffer on each side
  60 + debug: 2, // logging level (0 to disable, 1 or 2)
  61 +
  62 + indexMaxZoom: 5, // max zoom in the initial tile index
  63 + indexMaxPoints: 10000, // max number of points per tile in the index
  64 + solidChildren: false // whether to include solid tile children in the index
  65 +});
  66 +
  67 +var z= 14 - 6 ;
  68 +// request a particular tile
  69 +var features = tileIndex.getTile(6 + z, 48 * (1<<z), 24 * (1<<z)).features;
  70 +
  71 + var mvtSource = new L.TileLayer.MVTSlice(data, {
  72 + debug: false,
  73 +
  74 + getIDForLayerFeature: function(feature) {
  75 + return feature.properties.gid;
  76 + }
  77 + });
  78 + //Add layer
  79 + map.addLayer(mvtSource);
  80 +
  81 + });
  82 + //$.ajax({
  83 + // url:"http://spatialserver.spatialdev.com/services/vector-tiles/GAUL_FSP/5/18/16.pbf",
  84 +
  85 + // type:"GET",
  86 + // success: function(data) {
  87 +
  88 +
  89 + //var aa = new Pbf(new Uint8Array(data));
  90 + //var geojson = decode(aa);
  91 + //var ss = JSON.stringify(geojson);
  92 + // }
  93 +
  94 + //});
  95 +</script>
  96 +</body>
  97 +</html>
\ No newline at end of file
... ...
... ... @@ -5,6 +5,7 @@
5 5 <title>Leaflet 加载 Echarts3</title>
6 6 <link rel="stylesheet" href="../libs/leaflet/dist/leaflet.css">
7 7 <style>
  8 +
8 9 html, body, #map {
9 10 height: 100%;
10 11 padding: 0;
... ... @@ -13,536 +14,535 @@
13 14 </style>
14 15 </head>
15 16 <body>
16   -<div id="map"></div>
  17 + <div id="map"></div>
  18 + <script src="../libs/echarts/dist/echarts.min.js"></script>
  19 + <script src="../libs/leaflet/dist/leaflet.js"></script>
  20 + <script src="http://cdn.bootcss.com/jquery/1.11.0/jquery.min.js"></script>
  21 + <script src="../dist/leaflet-echarts4.min.js"></script>
  22 + <script>
17 23
18   -<script src="../libs/echarts/dist/echarts.min.js"></script>
19   -<script src="../libs/leaflet/dist/leaflet.js"></script>
20   -<script src="../libs/jquery/dist/jquery.min.js"></script>
21   -<script src="../dist/leaflet-echarts3.min.js"></script>
22   -<script>
23   -
24   - var le = LeafletEcharts.initMap('map');
25   - var map = le.getMap();
26   - var baseLayers = {
27   - "高德地图": L.tileLayer('http://webrd0{s}.is.autonavi.com/appmaptile?lang=zh_cn&size=1&scale=1&style=8&x={x}&y={y}&z={z}', {
28   - subdomains: "1234"
29   - }),
30   - '高德影像': L.layerGroup([L.tileLayer('http://webst0{s}.is.autonavi.com/appmaptile?style=6&x={x}&y={y}&z={z}', {
31   - subdomains: "1234"
32   - }), L.tileLayer('http://t{s}.tianditu.cn/DataServer?T=cta_w&X={x}&Y={y}&L={z}', {
33   - subdomains: "1234"
34   - })]),
35   - "立体地图": L.tileLayer('https://a.tiles.mapbox.com/v3/examples.c7d2024a/{z}/{x}/{y}.png', {
  24 + var le = LeafletEcharts.initMap('map');
  25 + var map = le.getMap();
  26 + var baseLayers = {
  27 + "高德地图": L.tileLayer('http://webrd0{s}.is.autonavi.com/appmaptile?lang=zh_cn&size=1&scale=1&style=8&x={x}&y={y}&z={z}', {
  28 + subdomains: "1234"
  29 + }),
  30 + '高德影像': L.layerGroup([L.tileLayer('http://webst0{s}.is.autonavi.com/appmaptile?style=6&x={x}&y={y}&z={z}', {
  31 + subdomains: "1234"
  32 + }), L.tileLayer('http://t{s}.tianditu.cn/DataServer?T=cta_w&X={x}&Y={y}&L={z}', {
  33 + subdomains: "1234"
  34 + })]),
  35 + "立体地图": L.tileLayer('https://a.tiles.mapbox.com/v3/examples.c7d2024a/{z}/{x}/{y}.png', {
  36 + attribution: 'Map &copy; Pacific Rim Coordination Center (PRCC). Certain data &copy; <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>',
  37 + key: 'BC9A493B41014CAABB98F0471D759707',
  38 + styleId: 22677
  39 + }),
  40 + "Foursquare": L.tileLayer('https://a.tiles.mapbox.com/v3/foursquare.map-0y1jh28j/{z}/{x}/{y}.png', {
  41 + attribution: 'Map &copy; Pacific Rim Coordination Center (PRCC). Certain data &copy; <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>',
  42 + key: 'BC9A493B41014CAABB98F0471D759707',
  43 + styleId: 22677
  44 + }),
  45 + 'GeoQ灰色底图': L.tileLayer('http://map.geoq.cn/ArcGIS/rest/services/ChinaOnlineStreetPurplishBlue/MapServer/tile/{z}/{y}/{x}').addTo(map)
  46 + };
  47 + L.tileLayer('https://a.tiles.mapbox.com/v3/foursquare.map-0y1jh28j/{z}/{x}/{y}.png', {
36 48 attribution: 'Map &copy; Pacific Rim Coordination Center (PRCC). Certain data &copy; <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>',
37 49 key: 'BC9A493B41014CAABB98F0471D759707',
38 50 styleId: 22677
39   - }),
40   - "Foursquare": L.tileLayer('https://a.tiles.mapbox.com/v3/foursquare.map-0y1jh28j/{z}/{x}/{y}.png', {
41   - attribution: 'Map &copy; Pacific Rim Coordination Center (PRCC). Certain data &copy; <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>',
42   - key: 'BC9A493B41014CAABB98F0471D759707',
43   - styleId: 22677
44   - }),
45   - 'GeoQ灰色底图': L.tileLayer('http://map.geoq.cn/ArcGIS/rest/services/ChinaOnlineStreetPurplishBlue/MapServer/tile/{z}/{y}/{x}').addTo(map)
46   - };
47   - L.tileLayer('https://a.tiles.mapbox.com/v3/foursquare.map-0y1jh28j/{z}/{x}/{y}.png', {
48   - attribution: 'Map &copy; Pacific Rim Coordination Center (PRCC). Certain data &copy; <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>',
49   - key: 'BC9A493B41014CAABB98F0471D759707',
50   - styleId: 22677
51   - });
52   - var layercontrol = L.control.layers(baseLayers,{}, {
53   - position: "topleft"
54   - }).addTo(map);
55   - map.setView(L.latLng(37.550339, 104.114129), 4);
56   -
57   - var myChart = le.getEcharts();
  51 + });
  52 + var layercontrol = L.control.layers(baseLayers, {}, {
  53 + position: "topleft"
  54 + }).addTo(map);
  55 + map.setView(L.latLng(37.550339, 104.114129), 4);
58 56
59   - var data = [
60   - {name: '海门', value: 9},
61   - {name: '鄂尔多斯', value: 12},
62   - {name: '招远', value: 12},
63   - {name: '舟山', value: 12},
64   - {name: '齐齐哈尔', value: 14},
65   - {name: '盐城', value: 15},
66   - {name: '赤峰', value: 16},
67   - {name: '青岛', value: 18},
68   - {name: '乳山', value: 18},
69   - {name: '金昌', value: 19},
70   - {name: '泉州', value: 21},
71   - {name: '莱西', value: 21},
72   - {name: '日照', value: 21},
73   - {name: '胶南', value: 22},
74   - {name: '南通', value: 23},
75   - {name: '拉萨', value: 24},
76   - {name: '云浮', value: 24},
77   - {name: '梅州', value: 25},
78   - {name: '文登', value: 25},
79   - {name: '上海', value: 25},
80   - {name: '攀枝花', value: 25},
81   - {name: '威海', value: 25},
82   - {name: '承德', value: 25},
83   - {name: '厦门', value: 26},
84   - {name: '汕尾', value: 26},
85   - {name: '潮州', value: 26},
86   - {name: '丹东', value: 27},
87   - {name: '太仓', value: 27},
88   - {name: '曲靖', value: 27},
89   - {name: '烟台', value: 28},
90   - {name: '福州', value: 29},
91   - {name: '瓦房店', value: 30},
92   - {name: '即墨', value: 30},
93   - {name: '抚顺', value: 31},
94   - {name: '玉溪', value: 31},
95   - {name: '张家口', value: 31},
96   - {name: '阳泉', value: 31},
97   - {name: '莱州', value: 32},
98   - {name: '湖州', value: 32},
99   - {name: '汕头', value: 32},
100   - {name: '昆山', value: 33},
101   - {name: '宁波', value: 33},
102   - {name: '湛江', value: 33},
103   - {name: '揭阳', value: 34},
104   - {name: '荣成', value: 34},
105   - {name: '连云港', value: 35},
106   - {name: '葫芦岛', value: 35},
107   - {name: '常熟', value: 36},
108   - {name: '东莞', value: 36},
109   - {name: '河源', value: 36},
110   - {name: '淮安', value: 36},
111   - {name: '泰州', value: 36},
112   - {name: '南宁', value: 37},
113   - {name: '营口', value: 37},
114   - {name: '惠州', value: 37},
115   - {name: '江阴', value: 37},
116   - {name: '蓬莱', value: 37},
117   - {name: '韶关', value: 38},
118   - {name: '嘉峪关', value: 38},
119   - {name: '广州', value: 38},
120   - {name: '延安', value: 38},
121   - {name: '太原', value: 39},
122   - {name: '清远', value: 39},
123   - {name: '中山', value: 39},
124   - {name: '昆明', value: 39},
125   - {name: '寿光', value: 40},
126   - {name: '盘锦', value: 40},
127   - {name: '长治', value: 41},
128   - {name: '深圳', value: 41},
129   - {name: '珠海', value: 42},
130   - {name: '宿迁', value: 43},
131   - {name: '咸阳', value: 43},
132   - {name: '铜川', value: 44},
133   - {name: '平度', value: 44},
134   - {name: '佛山', value: 44},
135   - {name: '海口', value: 44},
136   - {name: '江门', value: 45},
137   - {name: '章丘', value: 45},
138   - {name: '肇庆', value: 46},
139   - {name: '大连', value: 47},
140   - {name: '临汾', value: 47},
141   - {name: '吴江', value: 47},
142   - {name: '石嘴山', value: 49},
143   - {name: '沈阳', value: 50},
144   - {name: '苏州', value: 50},
145   - {name: '茂名', value: 50},
146   - {name: '嘉兴', value: 51},
147   - {name: '长春', value: 51},
148   - {name: '胶州', value: 52},
149   - {name: '银川', value: 52},
150   - {name: '张家港', value: 52},
151   - {name: '三门峡', value: 53},
152   - {name: '锦州', value: 54},
153   - {name: '南昌', value: 54},
154   - {name: '柳州', value: 54},
155   - {name: '三亚', value: 54},
156   - {name: '自贡', value: 56},
157   - {name: '吉林', value: 56},
158   - {name: '阳江', value: 57},
159   - {name: '泸州', value: 57},
160   - {name: '西宁', value: 57},
161   - {name: '宜宾', value: 58},
162   - {name: '呼和浩特', value: 58},
163   - {name: '成都', value: 58},
164   - {name: '大同', value: 58},
165   - {name: '镇江', value: 59},
166   - {name: '桂林', value: 59},
167   - {name: '张家界', value: 59},
168   - {name: '宜兴', value: 59},
169   - {name: '北海', value: 60},
170   - {name: '西安', value: 61},
171   - {name: '金坛', value: 62},
172   - {name: '东营', value: 62},
173   - {name: '牡丹江', value: 63},
174   - {name: '遵义', value: 63},
175   - {name: '绍兴', value: 63},
176   - {name: '扬州', value: 64},
177   - {name: '常州', value: 64},
178   - {name: '潍坊', value: 65},
179   - {name: '重庆', value: 66},
180   - {name: '台州', value: 67},
181   - {name: '南京', value: 67},
182   - {name: '滨州', value: 70},
183   - {name: '贵阳', value: 71},
184   - {name: '无锡', value: 71},
185   - {name: '本溪', value: 71},
186   - {name: '克拉玛依', value: 72},
187   - {name: '渭南', value: 72},
188   - {name: '马鞍山', value: 72},
189   - {name: '宝鸡', value: 72},
190   - {name: '焦作', value: 75},
191   - {name: '句容', value: 75},
192   - {name: '北京', value: 79},
193   - {name: '徐州', value: 79},
194   - {name: '衡水', value: 80},
195   - {name: '包头', value: 80},
196   - {name: '绵阳', value: 80},
197   - {name: '乌鲁木齐', value: 84},
198   - {name: '枣庄', value: 84},
199   - {name: '杭州', value: 84},
200   - {name: '淄博', value: 85},
201   - {name: '鞍山', value: 86},
202   - {name: '溧阳', value: 86},
203   - {name: '库尔勒', value: 86},
204   - {name: '安阳', value: 90},
205   - {name: '开封', value: 90},
206   - {name: '济南', value: 92},
207   - {name: '德阳', value: 93},
208   - {name: '温州', value: 95},
209   - {name: '九江', value: 96},
210   - {name: '邯郸', value: 98},
211   - {name: '临安', value: 99},
212   - {name: '兰州', value: 99},
213   - {name: '沧州', value: 100},
214   - {name: '临沂', value: 103},
215   - {name: '南充', value: 104},
216   - {name: '天津', value: 105},
217   - {name: '富阳', value: 106},
218   - {name: '泰安', value: 112},
219   - {name: '诸暨', value: 112},
220   - {name: '郑州', value: 113},
221   - {name: '哈尔滨', value: 114},
222   - {name: '聊城', value: 116},
223   - {name: '芜湖', value: 117},
224   - {name: '唐山', value: 119},
225   - {name: '平顶山', value: 119},
226   - {name: '邢台', value: 119},
227   - {name: '德州', value: 120},
228   - {name: '济宁', value: 120},
229   - {name: '荆州', value: 127},
230   - {name: '宜昌', value: 130},
231   - {name: '义乌', value: 132},
232   - {name: '丽水', value: 133},
233   - {name: '洛阳', value: 134},
234   - {name: '秦皇岛', value: 136},
235   - {name: '株洲', value: 143},
236   - {name: '石家庄', value: 147},
237   - {name: '莱芜', value: 148},
238   - {name: '常德', value: 152},
239   - {name: '保定', value: 153},
240   - {name: '湘潭', value: 154},
241   - {name: '金华', value: 157},
242   - {name: '岳阳', value: 169},
243   - {name: '长沙', value: 175},
244   - {name: '衢州', value: 177},
245   - {name: '廊坊', value: 193},
246   - {name: '菏泽', value: 194},
247   - {name: '合肥', value: 229},
248   - {name: '武汉', value: 273},
249   - {name: '大庆', value: 279}
250   -];
251   -var geoCoordMap = {
252   - '海门':[121.15,31.89],
253   - '鄂尔多斯':[109.781327,39.608266],
254   - '招远':[120.38,37.35],
255   - '舟山':[122.207216,29.985295],
256   - '齐齐哈尔':[123.97,47.33],
257   - '盐城':[120.13,33.38],
258   - '赤峰':[118.87,42.28],
259   - '青岛':[120.33,36.07],
260   - '乳山':[121.52,36.89],
261   - '金昌':[102.188043,38.520089],
262   - '泉州':[118.58,24.93],
263   - '莱西':[120.53,36.86],
264   - '日照':[119.46,35.42],
265   - '胶南':[119.97,35.88],
266   - '南通':[121.05,32.08],
267   - '拉萨':[91.11,29.97],
268   - '云浮':[112.02,22.93],
269   - '梅州':[116.1,24.55],
270   - '文登':[122.05,37.2],
271   - '上海':[121.48,31.22],
272   - '攀枝花':[101.718637,26.582347],
273   - '威海':[122.1,37.5],
274   - '承德':[117.93,40.97],
275   - '厦门':[118.1,24.46],
276   - '汕尾':[115.375279,22.786211],
277   - '潮州':[116.63,23.68],
278   - '丹东':[124.37,40.13],
279   - '太仓':[121.1,31.45],
280   - '曲靖':[103.79,25.51],
281   - '烟台':[121.39,37.52],
282   - '福州':[119.3,26.08],
283   - '瓦房店':[121.979603,39.627114],
284   - '即墨':[120.45,36.38],
285   - '抚顺':[123.97,41.97],
286   - '玉溪':[102.52,24.35],
287   - '张家口':[114.87,40.82],
288   - '阳泉':[113.57,37.85],
289   - '莱州':[119.942327,37.177017],
290   - '湖州':[120.1,30.86],
291   - '汕头':[116.69,23.39],
292   - '昆山':[120.95,31.39],
293   - '宁波':[121.56,29.86],
294   - '湛江':[110.359377,21.270708],
295   - '揭阳':[116.35,23.55],
296   - '荣成':[122.41,37.16],
297   - '连云港':[119.16,34.59],
298   - '葫芦岛':[120.836932,40.711052],
299   - '常熟':[120.74,31.64],
300   - '东莞':[113.75,23.04],
301   - '河源':[114.68,23.73],
302   - '淮安':[119.15,33.5],
303   - '泰州':[119.9,32.49],
304   - '南宁':[108.33,22.84],
305   - '营口':[122.18,40.65],
306   - '惠州':[114.4,23.09],
307   - '江阴':[120.26,31.91],
308   - '蓬莱':[120.75,37.8],
309   - '韶关':[113.62,24.84],
310   - '嘉峪关':[98.289152,39.77313],
311   - '广州':[113.23,23.16],
312   - '延安':[109.47,36.6],
313   - '太原':[112.53,37.87],
314   - '清远':[113.01,23.7],
315   - '中山':[113.38,22.52],
316   - '昆明':[102.73,25.04],
317   - '寿光':[118.73,36.86],
318   - '盘锦':[122.070714,41.119997],
319   - '长治':[113.08,36.18],
320   - '深圳':[114.07,22.62],
321   - '珠海':[113.52,22.3],
322   - '宿迁':[118.3,33.96],
323   - '咸阳':[108.72,34.36],
324   - '铜川':[109.11,35.09],
325   - '平度':[119.97,36.77],
326   - '佛山':[113.11,23.05],
327   - '海口':[110.35,20.02],
328   - '江门':[113.06,22.61],
329   - '章丘':[117.53,36.72],
330   - '肇庆':[112.44,23.05],
331   - '大连':[121.62,38.92],
332   - '临汾':[111.5,36.08],
333   - '吴江':[120.63,31.16],
334   - '石嘴山':[106.39,39.04],
335   - '沈阳':[123.38,41.8],
336   - '苏州':[120.62,31.32],
337   - '茂名':[110.88,21.68],
338   - '嘉兴':[120.76,30.77],
339   - '长春':[125.35,43.88],
340   - '胶州':[120.03336,36.264622],
341   - '银川':[106.27,38.47],
342   - '张家港':[120.555821,31.875428],
343   - '三门峡':[111.19,34.76],
344   - '锦州':[121.15,41.13],
345   - '南昌':[115.89,28.68],
346   - '柳州':[109.4,24.33],
347   - '三亚':[109.511909,18.252847],
348   - '自贡':[104.778442,29.33903],
349   - '吉林':[126.57,43.87],
350   - '阳江':[111.95,21.85],
351   - '泸州':[105.39,28.91],
352   - '西宁':[101.74,36.56],
353   - '宜宾':[104.56,29.77],
354   - '呼和浩特':[111.65,40.82],
355   - '成都':[104.06,30.67],
356   - '大同':[113.3,40.12],
357   - '镇江':[119.44,32.2],
358   - '桂林':[110.28,25.29],
359   - '张家界':[110.479191,29.117096],
360   - '宜兴':[119.82,31.36],
361   - '北海':[109.12,21.49],
362   - '西安':[108.95,34.27],
363   - '金坛':[119.56,31.74],
364   - '东营':[118.49,37.46],
365   - '牡丹江':[129.58,44.6],
366   - '遵义':[106.9,27.7],
367   - '绍兴':[120.58,30.01],
368   - '扬州':[119.42,32.39],
369   - '常州':[119.95,31.79],
370   - '潍坊':[119.1,36.62],
371   - '重庆':[106.54,29.59],
372   - '台州':[121.420757,28.656386],
373   - '南京':[118.78,32.04],
374   - '滨州':[118.03,37.36],
375   - '贵阳':[106.71,26.57],
376   - '无锡':[120.29,31.59],
377   - '本溪':[123.73,41.3],
378   - '克拉玛依':[84.77,45.59],
379   - '渭南':[109.5,34.52],
380   - '马鞍山':[118.48,31.56],
381   - '宝鸡':[107.15,34.38],
382   - '焦作':[113.21,35.24],
383   - '句容':[119.16,31.95],
384   - '北京':[116.46,39.92],
385   - '徐州':[117.2,34.26],
386   - '衡水':[115.72,37.72],
387   - '包头':[110,40.58],
388   - '绵阳':[104.73,31.48],
389   - '乌鲁木齐':[87.68,43.77],
390   - '枣庄':[117.57,34.86],
391   - '杭州':[120.19,30.26],
392   - '淄博':[118.05,36.78],
393   - '鞍山':[122.85,41.12],
394   - '溧阳':[119.48,31.43],
395   - '库尔勒':[86.06,41.68],
396   - '安阳':[114.35,36.1],
397   - '开封':[114.35,34.79],
398   - '济南':[117,36.65],
399   - '德阳':[104.37,31.13],
400   - '温州':[120.65,28.01],
401   - '九江':[115.97,29.71],
402   - '邯郸':[114.47,36.6],
403   - '临安':[119.72,30.23],
404   - '兰州':[103.73,36.03],
405   - '沧州':[116.83,38.33],
406   - '临沂':[118.35,35.05],
407   - '南充':[106.110698,30.837793],
408   - '天津':[117.2,39.13],
409   - '富阳':[119.95,30.07],
410   - '泰安':[117.13,36.18],
411   - '诸暨':[120.23,29.71],
412   - '郑州':[113.65,34.76],
413   - '哈尔滨':[126.63,45.75],
414   - '聊城':[115.97,36.45],
415   - '芜湖':[118.38,31.33],
416   - '唐山':[118.02,39.63],
417   - '平顶山':[113.29,33.75],
418   - '邢台':[114.48,37.05],
419   - '德州':[116.29,37.45],
420   - '济宁':[116.59,35.38],
421   - '荆州':[112.239741,30.335165],
422   - '宜昌':[111.3,30.7],
423   - '义乌':[120.06,29.32],
424   - '丽水':[119.92,28.45],
425   - '洛阳':[112.44,34.7],
426   - '秦皇岛':[119.57,39.95],
427   - '株洲':[113.16,27.83],
428   - '石家庄':[114.48,38.03],
429   - '莱芜':[117.67,36.19],
430   - '常德':[111.69,29.05],
431   - '保定':[115.48,38.85],
432   - '湘潭':[112.91,27.87],
433   - '金华':[119.64,29.12],
434   - '岳阳':[113.09,29.37],
435   - '长沙':[113,28.21],
436   - '衢州':[118.88,28.97],
437   - '廊坊':[116.7,39.53],
438   - '菏泽':[115.480656,35.23375],
439   - '合肥':[117.27,31.86],
440   - '武汉':[114.31,30.52],
441   - '大庆':[125.03,46.58]
442   -};
  57 + var myChart = le.getEcharts();
443 58
444   -var convertData = function (data) {
445   - var res = [];
446   - for (var i = 0; i < data.length; i++) {
447   - var geoCoord = geoCoordMap[data[i].name];
448   - if (geoCoord) {
449   - res.push({
450   - name: data[i].name,
451   - value: geoCoord.concat(data[i].value)
452   - });
453   - }
454   - }
455   - return res;
456   -};
  59 + var data = [
  60 + { name: '海门', value: 9 },
  61 + { name: '鄂尔多斯', value: 12 },
  62 + { name: '招远', value: 12 },
  63 + { name: '舟山', value: 12 },
  64 + { name: '齐齐哈尔', value: 14 },
  65 + { name: '盐城', value: 15 },
  66 + { name: '赤峰', value: 16 },
  67 + { name: '青岛', value: 18 },
  68 + { name: '乳山', value: 18 },
  69 + { name: '金昌', value: 19 },
  70 + { name: '泉州', value: 21 },
  71 + { name: '莱西', value: 21 },
  72 + { name: '日照', value: 21 },
  73 + { name: '胶南', value: 22 },
  74 + { name: '南通', value: 23 },
  75 + { name: '拉萨', value: 24 },
  76 + { name: '云浮', value: 24 },
  77 + { name: '梅州', value: 25 },
  78 + { name: '文登', value: 25 },
  79 + { name: '上海', value: 25 },
  80 + { name: '攀枝花', value: 25 },
  81 + { name: '威海', value: 25 },
  82 + { name: '承德', value: 25 },
  83 + { name: '厦门', value: 26 },
  84 + { name: '汕尾', value: 26 },
  85 + { name: '潮州', value: 26 },
  86 + { name: '丹东', value: 27 },
  87 + { name: '太仓', value: 27 },
  88 + { name: '曲靖', value: 27 },
  89 + { name: '烟台', value: 28 },
  90 + { name: '福州', value: 29 },
  91 + { name: '瓦房店', value: 30 },
  92 + { name: '即墨', value: 30 },
  93 + { name: '抚顺', value: 31 },
  94 + { name: '玉溪', value: 31 },
  95 + { name: '张家口', value: 31 },
  96 + { name: '阳泉', value: 31 },
  97 + { name: '莱州', value: 32 },
  98 + { name: '湖州', value: 32 },
  99 + { name: '汕头', value: 32 },
  100 + { name: '昆山', value: 33 },
  101 + { name: '宁波', value: 33 },
  102 + { name: '湛江', value: 33 },
  103 + { name: '揭阳', value: 34 },
  104 + { name: '荣成', value: 34 },
  105 + { name: '连云港', value: 35 },
  106 + { name: '葫芦岛', value: 35 },
  107 + { name: '常熟', value: 36 },
  108 + { name: '东莞', value: 36 },
  109 + { name: '河源', value: 36 },
  110 + { name: '淮安', value: 36 },
  111 + { name: '泰州', value: 36 },
  112 + { name: '南宁', value: 37 },
  113 + { name: '营口', value: 37 },
  114 + { name: '惠州', value: 37 },
  115 + { name: '江阴', value: 37 },
  116 + { name: '蓬莱', value: 37 },
  117 + { name: '韶关', value: 38 },
  118 + { name: '嘉峪关', value: 38 },
  119 + { name: '广州', value: 38 },
  120 + { name: '延安', value: 38 },
  121 + { name: '太原', value: 39 },
  122 + { name: '清远', value: 39 },
  123 + { name: '中山', value: 39 },
  124 + { name: '昆明', value: 39 },
  125 + { name: '寿光', value: 40 },
  126 + { name: '盘锦', value: 40 },
  127 + { name: '长治', value: 41 },
  128 + { name: '深圳', value: 41 },
  129 + { name: '珠海', value: 42 },
  130 + { name: '宿迁', value: 43 },
  131 + { name: '咸阳', value: 43 },
  132 + { name: '铜川', value: 44 },
  133 + { name: '平度', value: 44 },
  134 + { name: '佛山', value: 44 },
  135 + { name: '海口', value: 44 },
  136 + { name: '江门', value: 45 },
  137 + { name: '章丘', value: 45 },
  138 + { name: '肇庆', value: 46 },
  139 + { name: '大连', value: 47 },
  140 + { name: '临汾', value: 47 },
  141 + { name: '吴江', value: 47 },
  142 + { name: '石嘴山', value: 49 },
  143 + { name: '沈阳', value: 50 },
  144 + { name: '苏州', value: 50 },
  145 + { name: '茂名', value: 50 },
  146 + { name: '嘉兴', value: 51 },
  147 + { name: '长春', value: 51 },
  148 + { name: '胶州', value: 52 },
  149 + { name: '银川', value: 52 },
  150 + { name: '张家港', value: 52 },
  151 + { name: '三门峡', value: 53 },
  152 + { name: '锦州', value: 54 },
  153 + { name: '南昌', value: 54 },
  154 + { name: '柳州', value: 54 },
  155 + { name: '三亚', value: 54 },
  156 + { name: '自贡', value: 56 },
  157 + { name: '吉林', value: 56 },
  158 + { name: '阳江', value: 57 },
  159 + { name: '泸州', value: 57 },
  160 + { name: '西宁', value: 57 },
  161 + { name: '宜宾', value: 58 },
  162 + { name: '呼和浩特', value: 58 },
  163 + { name: '成都', value: 58 },
  164 + { name: '大同', value: 58 },
  165 + { name: '镇江', value: 59 },
  166 + { name: '桂林', value: 59 },
  167 + { name: '张家界', value: 59 },
  168 + { name: '宜兴', value: 59 },
  169 + { name: '北海', value: 60 },
  170 + { name: '西安', value: 61 },
  171 + { name: '金坛', value: 62 },
  172 + { name: '东营', value: 62 },
  173 + { name: '牡丹江', value: 63 },
  174 + { name: '遵义', value: 63 },
  175 + { name: '绍兴', value: 63 },
  176 + { name: '扬州', value: 64 },
  177 + { name: '常州', value: 64 },
  178 + { name: '潍坊', value: 65 },
  179 + { name: '重庆', value: 66 },
  180 + { name: '台州', value: 67 },
  181 + { name: '南京', value: 67 },
  182 + { name: '滨州', value: 70 },
  183 + { name: '贵阳', value: 71 },
  184 + { name: '无锡', value: 71 },
  185 + { name: '本溪', value: 71 },
  186 + { name: '克拉玛依', value: 72 },
  187 + { name: '渭南', value: 72 },
  188 + { name: '马鞍山', value: 72 },
  189 + { name: '宝鸡', value: 72 },
  190 + { name: '焦作', value: 75 },
  191 + { name: '句容', value: 75 },
  192 + { name: '北京', value: 79 },
  193 + { name: '徐州', value: 79 },
  194 + { name: '衡水', value: 80 },
  195 + { name: '包头', value: 80 },
  196 + { name: '绵阳', value: 80 },
  197 + { name: '乌鲁木齐', value: 84 },
  198 + { name: '枣庄', value: 84 },
  199 + { name: '杭州', value: 84 },
  200 + { name: '淄博', value: 85 },
  201 + { name: '鞍山', value: 86 },
  202 + { name: '溧阳', value: 86 },
  203 + { name: '库尔勒', value: 86 },
  204 + { name: '安阳', value: 90 },
  205 + { name: '开封', value: 90 },
  206 + { name: '济南', value: 92 },
  207 + { name: '德阳', value: 93 },
  208 + { name: '温州', value: 95 },
  209 + { name: '九江', value: 96 },
  210 + { name: '邯郸', value: 98 },
  211 + { name: '临安', value: 99 },
  212 + { name: '兰州', value: 99 },
  213 + { name: '沧州', value: 100 },
  214 + { name: '临沂', value: 103 },
  215 + { name: '南充', value: 104 },
  216 + { name: '天津', value: 105 },
  217 + { name: '富阳', value: 106 },
  218 + { name: '泰安', value: 112 },
  219 + { name: '诸暨', value: 112 },
  220 + { name: '郑州', value: 113 },
  221 + { name: '哈尔滨', value: 114 },
  222 + { name: '聊城', value: 116 },
  223 + { name: '芜湖', value: 117 },
  224 + { name: '唐山', value: 119 },
  225 + { name: '平顶山', value: 119 },
  226 + { name: '邢台', value: 119 },
  227 + { name: '德州', value: 120 },
  228 + { name: '济宁', value: 120 },
  229 + { name: '荆州', value: 127 },
  230 + { name: '宜昌', value: 130 },
  231 + { name: '义乌', value: 132 },
  232 + { name: '丽水', value: 133 },
  233 + { name: '洛阳', value: 134 },
  234 + { name: '秦皇岛', value: 136 },
  235 + { name: '株洲', value: 143 },
  236 + { name: '石家庄', value: 147 },
  237 + { name: '莱芜', value: 148 },
  238 + { name: '常德', value: 152 },
  239 + { name: '保定', value: 153 },
  240 + { name: '湘潭', value: 154 },
  241 + { name: '金华', value: 157 },
  242 + { name: '岳阳', value: 169 },
  243 + { name: '长沙', value: 175 },
  244 + { name: '衢州', value: 177 },
  245 + { name: '廊坊', value: 193 },
  246 + { name: '菏泽', value: 194 },
  247 + { name: '合肥', value: 229 },
  248 + { name: '武汉', value: 273 },
  249 + { name: '大庆', value: 279 }
  250 + ];
  251 + var geoCoordMap = {
  252 + '海门': [121.15, 31.89],
  253 + '鄂尔多斯': [109.781327, 39.608266],
  254 + '招远': [120.38, 37.35],
  255 + '舟山': [122.207216, 29.985295],
  256 + '齐齐哈尔': [123.97, 47.33],
  257 + '盐城': [120.13, 33.38],
  258 + '赤峰': [118.87, 42.28],
  259 + '青岛': [120.33, 36.07],
  260 + '乳山': [121.52, 36.89],
  261 + '金昌': [102.188043, 38.520089],
  262 + '泉州': [118.58, 24.93],
  263 + '莱西': [120.53, 36.86],
  264 + '日照': [119.46, 35.42],
  265 + '胶南': [119.97, 35.88],
  266 + '南通': [121.05, 32.08],
  267 + '拉萨': [91.11, 29.97],
  268 + '云浮': [112.02, 22.93],
  269 + '梅州': [116.1, 24.55],
  270 + '文登': [122.05, 37.2],
  271 + '上海': [121.48, 31.22],
  272 + '攀枝花': [101.718637, 26.582347],
  273 + '威海': [122.1, 37.5],
  274 + '承德': [117.93, 40.97],
  275 + '厦门': [118.1, 24.46],
  276 + '汕尾': [115.375279, 22.786211],
  277 + '潮州': [116.63, 23.68],
  278 + '丹东': [124.37, 40.13],
  279 + '太仓': [121.1, 31.45],
  280 + '曲靖': [103.79, 25.51],
  281 + '烟台': [121.39, 37.52],
  282 + '福州': [119.3, 26.08],
  283 + '瓦房店': [121.979603, 39.627114],
  284 + '即墨': [120.45, 36.38],
  285 + '抚顺': [123.97, 41.97],
  286 + '玉溪': [102.52, 24.35],
  287 + '张家口': [114.87, 40.82],
  288 + '阳泉': [113.57, 37.85],
  289 + '莱州': [119.942327, 37.177017],
  290 + '湖州': [120.1, 30.86],
  291 + '汕头': [116.69, 23.39],
  292 + '昆山': [120.95, 31.39],
  293 + '宁波': [121.56, 29.86],
  294 + '湛江': [110.359377, 21.270708],
  295 + '揭阳': [116.35, 23.55],
  296 + '荣成': [122.41, 37.16],
  297 + '连云港': [119.16, 34.59],
  298 + '葫芦岛': [120.836932, 40.711052],
  299 + '常熟': [120.74, 31.64],
  300 + '东莞': [113.75, 23.04],
  301 + '河源': [114.68, 23.73],
  302 + '淮安': [119.15, 33.5],
  303 + '泰州': [119.9, 32.49],
  304 + '南宁': [108.33, 22.84],
  305 + '营口': [122.18, 40.65],
  306 + '惠州': [114.4, 23.09],
  307 + '江阴': [120.26, 31.91],
  308 + '蓬莱': [120.75, 37.8],
  309 + '韶关': [113.62, 24.84],
  310 + '嘉峪关': [98.289152, 39.77313],
  311 + '广州': [113.23, 23.16],
  312 + '延安': [109.47, 36.6],
  313 + '太原': [112.53, 37.87],
  314 + '清远': [113.01, 23.7],
  315 + '中山': [113.38, 22.52],
  316 + '昆明': [102.73, 25.04],
  317 + '寿光': [118.73, 36.86],
  318 + '盘锦': [122.070714, 41.119997],
  319 + '长治': [113.08, 36.18],
  320 + '深圳': [114.07, 22.62],
  321 + '珠海': [113.52, 22.3],
  322 + '宿迁': [118.3, 33.96],
  323 + '咸阳': [108.72, 34.36],
  324 + '铜川': [109.11, 35.09],
  325 + '平度': [119.97, 36.77],
  326 + '佛山': [113.11, 23.05],
  327 + '海口': [110.35, 20.02],
  328 + '江门': [113.06, 22.61],
  329 + '章丘': [117.53, 36.72],
  330 + '肇庆': [112.44, 23.05],
  331 + '大连': [121.62, 38.92],
  332 + '临汾': [111.5, 36.08],
  333 + '吴江': [120.63, 31.16],
  334 + '石嘴山': [106.39, 39.04],
  335 + '沈阳': [123.38, 41.8],
  336 + '苏州': [120.62, 31.32],
  337 + '茂名': [110.88, 21.68],
  338 + '嘉兴': [120.76, 30.77],
  339 + '长春': [125.35, 43.88],
  340 + '胶州': [120.03336, 36.264622],
  341 + '银川': [106.27, 38.47],
  342 + '张家港': [120.555821, 31.875428],
  343 + '三门峡': [111.19, 34.76],
  344 + '锦州': [121.15, 41.13],
  345 + '南昌': [115.89, 28.68],
  346 + '柳州': [109.4, 24.33],
  347 + '三亚': [109.511909, 18.252847],
  348 + '自贡': [104.778442, 29.33903],
  349 + '吉林': [126.57, 43.87],
  350 + '阳江': [111.95, 21.85],
  351 + '泸州': [105.39, 28.91],
  352 + '西宁': [101.74, 36.56],
  353 + '宜宾': [104.56, 29.77],
  354 + '呼和浩特': [111.65, 40.82],
  355 + '成都': [104.06, 30.67],
  356 + '大同': [113.3, 40.12],
  357 + '镇江': [119.44, 32.2],
  358 + '桂林': [110.28, 25.29],
  359 + '张家界': [110.479191, 29.117096],
  360 + '宜兴': [119.82, 31.36],
  361 + '北海': [109.12, 21.49],
  362 + '西安': [108.95, 34.27],
  363 + '金坛': [119.56, 31.74],
  364 + '东营': [118.49, 37.46],
  365 + '牡丹江': [129.58, 44.6],
  366 + '遵义': [106.9, 27.7],
  367 + '绍兴': [120.58, 30.01],
  368 + '扬州': [119.42, 32.39],
  369 + '常州': [119.95, 31.79],
  370 + '潍坊': [119.1, 36.62],
  371 + '重庆': [106.54, 29.59],
  372 + '台州': [121.420757, 28.656386],
  373 + '南京': [118.78, 32.04],
  374 + '滨州': [118.03, 37.36],
  375 + '贵阳': [106.71, 26.57],
  376 + '无锡': [120.29, 31.59],
  377 + '本溪': [123.73, 41.3],
  378 + '克拉玛依': [84.77, 45.59],
  379 + '渭南': [109.5, 34.52],
  380 + '马鞍山': [118.48, 31.56],
  381 + '宝鸡': [107.15, 34.38],
  382 + '焦作': [113.21, 35.24],
  383 + '句容': [119.16, 31.95],
  384 + '北京': [116.46, 39.92],
  385 + '徐州': [117.2, 34.26],
  386 + '衡水': [115.72, 37.72],
  387 + '包头': [110, 40.58],
  388 + '绵阳': [104.73, 31.48],
  389 + '乌鲁木齐': [87.68, 43.77],
  390 + '枣庄': [117.57, 34.86],
  391 + '杭州': [120.19, 30.26],
  392 + '淄博': [118.05, 36.78],
  393 + '鞍山': [122.85, 41.12],
  394 + '溧阳': [119.48, 31.43],
  395 + '库尔勒': [86.06, 41.68],
  396 + '安阳': [114.35, 36.1],
  397 + '开封': [114.35, 34.79],
  398 + '济南': [117, 36.65],
  399 + '德阳': [104.37, 31.13],
  400 + '温州': [120.65, 28.01],
  401 + '九江': [115.97, 29.71],
  402 + '邯郸': [114.47, 36.6],
  403 + '临安': [119.72, 30.23],
  404 + '兰州': [103.73, 36.03],
  405 + '沧州': [116.83, 38.33],
  406 + '临沂': [118.35, 35.05],
  407 + '南充': [106.110698, 30.837793],
  408 + '天津': [117.2, 39.13],
  409 + '富阳': [119.95, 30.07],
  410 + '泰安': [117.13, 36.18],
  411 + '诸暨': [120.23, 29.71],
  412 + '郑州': [113.65, 34.76],
  413 + '哈尔滨': [126.63, 45.75],
  414 + '聊城': [115.97, 36.45],
  415 + '芜湖': [118.38, 31.33],
  416 + '唐山': [118.02, 39.63],
  417 + '平顶山': [113.29, 33.75],
  418 + '邢台': [114.48, 37.05],
  419 + '德州': [116.29, 37.45],
  420 + '济宁': [116.59, 35.38],
  421 + '荆州': [112.239741, 30.335165],
  422 + '宜昌': [111.3, 30.7],
  423 + '义乌': [120.06, 29.32],
  424 + '丽水': [119.92, 28.45],
  425 + '洛阳': [112.44, 34.7],
  426 + '秦皇岛': [119.57, 39.95],
  427 + '株洲': [113.16, 27.83],
  428 + '石家庄': [114.48, 38.03],
  429 + '莱芜': [117.67, 36.19],
  430 + '常德': [111.69, 29.05],
  431 + '保定': [115.48, 38.85],
  432 + '湘潭': [112.91, 27.87],
  433 + '金华': [119.64, 29.12],
  434 + '岳阳': [113.09, 29.37],
  435 + '长沙': [113, 28.21],
  436 + '衢州': [118.88, 28.97],
  437 + '廊坊': [116.7, 39.53],
  438 + '菏泽': [115.480656, 35.23375],
  439 + '合肥': [117.27, 31.86],
  440 + '武汉': [114.31, 30.52],
  441 + '大庆': [125.03, 46.58]
  442 + };
457 443
458   -option = {
459   - // backgroundColor: '#404a59',
460   - title: {
461   - text: 'Leaflet扩展Echarts3之全国主要城市空气质量',
462   - subtext: 'Data from PM25.in, Develop By HuangTao',
463   - sublink: 'http://www.pm25.in',
464   - left: 'center',
465   - textStyle: {
466   - color: '#fff'
467   - }
468   - },
469   - tooltip : {
470   - trigger: 'item'
471   - },
472   - legend: {
473   - orient: 'vertical',
474   - y: 'bottom',
475   - x:'right',
476   - data:['pm2.5'],
477   - textStyle: {
478   - color: '#fff'
479   - }
480   - },
481   - geo: {
482   -
483   - },
484   - series : [
485   - {
486   - name: 'pm2.5',
487   - type: 'scatter',
488   - coordinateSystem: 'geo',
489   - data: convertData(data),
490   - symbolSize: function (val) {
491   - return val[2] / 10;
492   - },
493   - label: {
494   - normal: {
495   - formatter: '{b}',
496   - position: 'right',
497   - show: false
498   - },
499   - emphasis: {
500   - show: true
501   - }
502   - },
503   - itemStyle: {
504   - normal: {
505   - color: '#ddb926'
  444 + var convertData = function (data) {
  445 + var res = [];
  446 + for (var i = 0; i < data.length; i++) {
  447 + var geoCoord = geoCoordMap[data[i].name];
  448 + if (geoCoord) {
  449 + res.push({
  450 + name: data[i].name,
  451 + value: geoCoord.concat(data[i].value)
  452 + });
506 453 }
507 454 }
508   - },
509   - {
510   - name: 'Top 5',
511   - type: 'effectScatter',
512   - coordinateSystem: 'geo',
513   - data: convertData(data.sort(function (a, b) {
514   - return b.value - a.value;
515   - }).slice(0, 6)),
516   - symbolSize: function (val) {
517   - return val[2] / 10;
  455 + return res;
  456 + };
  457 +
  458 + option = {
  459 + // backgroundColor: '#404a59',
  460 + title: {
  461 + text: 'Leaflet扩展Echarts3之全国主要城市空气质量',
  462 + subtext: 'Data from PM25.in, Develop By HuangTao',
  463 + sublink: 'http://www.pm25.in',
  464 + left: 'center',
  465 + textStyle: {
  466 + color: '#fff'
  467 + }
518 468 },
519   - showEffectOn: 'render',
520   - rippleEffect: {
521   - brushType: 'stroke'
  469 + tooltip: {
  470 + trigger: 'item'
522 471 },
523   - hoverAnimation: true,
524   - label: {
525   - normal: {
526   - formatter: '{b}',
527   - position: 'right',
528   - show: true
  472 + legend: {
  473 + orient: 'vertical',
  474 + y: 'bottom',
  475 + x: 'right',
  476 + data: ['pm2.5'],
  477 + textStyle: {
  478 + color: '#fff'
529 479 }
530 480 },
531   - itemStyle: {
532   - normal: {
533   - color: '#f4e925',
534   - shadowBlur: 10,
535   - shadowColor: '#333'
536   - }
  481 + geo: {
  482 +
537 483 },
538   - zlevel: 1
539   - }
540   - ]
541   -};
542   - // 使用刚指定的配置项和数据显示图表。
543   - myChart.setOption(option);
  484 + series: [
  485 + {
  486 + name: 'pm2.5',
  487 + type: 'scatter',
  488 + coordinateSystem: 'geo',
  489 + data: convertData(data),
  490 + symbolSize: function (val) {
  491 + return val[2] / 10;
  492 + },
  493 + label: {
  494 + normal: {
  495 + formatter: '{b}',
  496 + position: 'right',
  497 + show: false
  498 + },
  499 + emphasis: {
  500 + show: true
  501 + }
  502 + },
  503 + itemStyle: {
  504 + normal: {
  505 + color: '#ddb926'
  506 + }
  507 + }
  508 + },
  509 + {
  510 + name: 'Top 5',
  511 + type: 'effectScatter',
  512 + coordinateSystem: 'geo',
  513 + data: convertData(data.sort(function (a, b) {
  514 + return b.value - a.value;
  515 + }).slice(0, 6)),
  516 + symbolSize: function (val) {
  517 + return val[2] / 10;
  518 + },
  519 + showEffectOn: 'render',
  520 + rippleEffect: {
  521 + brushType: 'stroke'
  522 + },
  523 + hoverAnimation: true,
  524 + label: {
  525 + normal: {
  526 + formatter: '{b}',
  527 + position: 'right',
  528 + show: true
  529 + }
  530 + },
  531 + itemStyle: {
  532 + normal: {
  533 + color: '#f4e925',
  534 + shadowBlur: 10,
  535 + shadowColor: '#333'
  536 + }
  537 + },
  538 + zlevel: 1
  539 + }
  540 + ]
  541 + };
  542 + // 使用刚指定的配置项和数据显示图表。
  543 + myChart.setOption(option);
544 544
545   - var layer = le.getEchartLayer();
546   -</script>
  545 + var layer = le.getEchartLayer();
  546 + </script>
547 547 </body>
548 548 </html>
... ...
... ... @@ -10,9 +10,9 @@ var gulp = require("gulp"),
10 10 var dist = "./dist/";
11 11
12 12 var paths = {
13   - js: "src/**/*.js",
  13 + js: "src/leaflet-echarts4.js",
14 14 minJs: "src/**/*.min.js",
15   - concatJsDest: dist + "leaflet-echarts3.min.js"
  15 + concatJsDest: dist + "leaflet-echarts4.min.js"
16 16 };
17 17
18 18
... ...
... ... @@ -12,6 +12,9 @@
12 12 "gulp-concat": "2.6.0",
13 13 "gulp-cssmin": "0.1.7",
14 14 "gulp-uglify": "1.5.3",
  15 + "pbf":"3.0.0",
  16 + "point-geometry":"0.0.0",
  17 + "vector-tile":"1.3.0",
15 18 "rimraf": "2.5.2"
16 19 }
17 20 }
\ No newline at end of file
... ...
  1 +/**
  2 + * Created by Nicholas Hallahan <nhallahan@spatialdev.com>
  3 + * on 7/11/14.
  4 + */
  5 +function Feature(label, pbfFeature, options) {
  6 + this.dynamicLabel = label;
  7 + this.mvtFeature = pbfFeature;
  8 + this.mvtLayer = pbfFeature.mvtLayer;
  9 + this.mvtSource = pbfFeature.mvtLayer.mvtSource;
  10 + this.map = label.map;
  11 + this.activeTiles = label.activeTiles;
  12 + this.marker = null;
  13 +
  14 + this.tilePoints = {};
  15 + this.tileLines = {};
  16 + this.tilePolys = {};
  17 +
  18 + // default options
  19 + this.options = {};
  20 +
  21 + // apply options
  22 + for (var key in options) {
  23 + this.options[key] = options[key];
  24 + }
  25 +
  26 + // override the style function if specified
  27 + if (pbfFeature.style.dynamicLabel) {
  28 + this._styleFn = pbfFeature.style.dynamicLabel;
  29 + }
  30 +
  31 + this.style = this._styleFn();
  32 + this.icon = L.divIcon({
  33 + className: this.style.cssClass || 'dynamicLabel-icon-text',
  34 + html: this.style.html || 'No Label',
  35 + iconSize: this.style.iconSize || [50,50]
  36 + });
  37 +}
  38 +
  39 +Feature.prototype.addTilePolys = function(ctx, polys) {
  40 + this.tilePolys[ctx.id] = polys;
  41 + this.computeLabelPosition();
  42 +};
  43 +
  44 +Feature.prototype.computeLabelPosition = function() {
  45 + var activeTiles = this.activeTiles;
  46 + var tilePolys = {};
  47 + // only passing over tiles currently on the screen
  48 + for (var id in activeTiles) {
  49 + var t = this.tilePolys[id];
  50 + if (t) tilePolys[id] = t;
  51 + }
  52 + var dynamicLabel = this.dynamicLabel;
  53 + var job = {
  54 + extent: this.mvtFeature.extent,
  55 + tileSize: this.mvtFeature.tileSize,
  56 + tilePolys: tilePolys
  57 + };
  58 + var feature = this;
  59 + this.dynamicLabel.submitPositionJob(job, function(evt) {
  60 + var data = evt.data;
  61 + console.log([data.status, data]);
  62 + if (data.status !== 'WARN') {
  63 + // returns worker to the pool
  64 + dynamicLabel.freePositionWorker(this);
  65 + }
  66 +
  67 + if (data.status === 'OK' && map.getZoom() === data.z) {
  68 + var pt = L.point(data.x, data.y);
  69 + positionMarker(feature, pt);
  70 + }
  71 +
  72 + if (data.status === 'WARN' && data.tile === '5:18:16') {
  73 + var cEdgeGeoJson = unprojectGeoJson(feature.map, data.cEdgePolys);
  74 + var nEdgeGeoJson = unprojectGeoJson(feature.map, data.nEdgePolys);
  75 +
  76 + L.geoJson(cEdgeGeoJson, {
  77 + style: {
  78 + color: "#ff7800",
  79 + weight: 3,
  80 + opacity: 0.4,
  81 + fill: false
  82 + }
  83 + }).addTo(feature.map);
  84 +
  85 + L.geoJson(nEdgeGeoJson, {
  86 + style: {
  87 + color: "green",
  88 + weight: 1,
  89 + opacity: 0.7,
  90 + fill: false
  91 + }
  92 + }).addTo(feature.map);
  93 + }
  94 + });
  95 +};
  96 +
  97 +function positionMarker(feature, pt) {
  98 + var map = feature.map;
  99 + var latLng = map.unproject(pt);
  100 + if (!feature.marker) {
  101 + feature.marker = L.marker(latLng, {icon: feature.icon});
  102 + feature.marker.addTo(map);
  103 + } else {
  104 + feature.marker.setLatLng(latLng);
  105 + }
  106 +// L.marker(latLng).addTo(map);
  107 +}
  108 +
  109 +/**
  110 + * This is the default style function. This is overridden
  111 + * if there is a style.dynamicLabel function in MVTFeature.
  112 + */
  113 +Feature.prototype._styleFn = function() {
  114 +
  115 +};
  116 +
  117 +/**
  118 + * Converts projected GeoJSON back into WGS84 GeoJSON.
  119 + * @param geojson
  120 + * @returns {*}
  121 + */
  122 +function unprojectGeoJson(map, geojson) {
  123 + var wgs84Coordinates = [];
  124 + var wgs84GeoJson = {
  125 + type: 'MultiPolygon',
  126 + coordinates: wgs84Coordinates
  127 + };
  128 + var coords = geojson.coordinates;
  129 + for (var i = 0, len = coords.length; i < len; i++) {
  130 + var innerCoords = coords[i];
  131 + wgs84Coordinates[i] = [];
  132 + for (var j = 0, len2 = innerCoords.length; j < len2; j++) {
  133 + var innerCoords2 = innerCoords[j];
  134 + wgs84Coordinates[i][j] = [];
  135 + for (var k = 0, len3 = innerCoords2.length; k < len3; k++) {
  136 + var coord = innerCoords2[k];
  137 + var latlng = map.unproject(L.point(coord));
  138 + wgs84Coordinates[i][j][k] = [latlng.lng, latlng.lat];
  139 + }
  140 + }
  141 + }
  142 + return wgs84GeoJson;
  143 +}
  144 +
  145 +
  146 +var reader = new jsts.io.GeoJSONReader();
  147 +var parser = new jsts.io.GeoJSONParser();
  148 +
  149 +onmessage = function(evt) {
  150 + var msg = evt.data;
  151 + for (var key in msg) {
  152 + var fn = calcPos[key];
  153 + if (typeof fn === 'function') fn(msg);
  154 + }
  155 +};
  156 +
  157 +/**
  158 + * Computes the position for a dynamicLabel depending on
  159 + * the data type...
  160 + */
  161 +calcPos = {
  162 + tilePoints: function(msg) { /* TODO */ },
  163 + tileLines: function(msg) { /* TODO */ },
  164 +
  165 + tilePolys: function(msg) {
  166 + var tilePolys = msg.tilePolys;
  167 + var tileCls = classifyAndProjectTiles(tilePolys, msg.extent, msg.tileSize);
  168 + var largestPoly = mergeAndFindLargestPolygon(tilePolys, tileCls);
  169 + // if there are no polygons in the tiles, we dont have a center
  170 + if (!largestPoly.tid) {
  171 + postMessage({status: 'NO_POLY_IN_TILES'});
  172 + } else {
  173 + var center = centroid(tilePolys[largestPoly.tid][largestPoly.idx]);
  174 + if (!center || !center.x || !center.y) {
  175 + center = {
  176 + status: 'ERR',
  177 + description: 'No centroid calculated.'
  178 + }
  179 + } else {
  180 + center.status = 'OK';
  181 + center.z = parseInt(largestPoly.tid.split(':')[0]);
  182 + }
  183 + postMessage(center);
  184 + }
  185 + }
  186 +};
  187 +
  188 +/**
  189 + * Goes through each tile and and classifies the paths...
  190 + *
  191 + * @param tiles
  192 + * @param extent
  193 + */
  194 +function classifyAndProjectTiles(tilePaths, extent, tileSize) {
  195 + var tileCls = {};
  196 + for (var id in tilePaths) {
  197 + var t = tilePaths[id];
  198 + var cls = classifyAndProject(t, extent, tileSize, id);
  199 + tileCls[id] = cls;
  200 + }
  201 + return tileCls;
  202 +}
  203 +
  204 +/**
  205 + * Checks through the coordinate arrays and classifies if they
  206 + * leave the bounds of the extent and where.
  207 + *
  208 + * @param coordsArray
  209 + */
  210 +function classifyAndProject(coordsArray, extent, tileSize, id) {
  211 + // we need to know the tile address to project the coords
  212 + var zxy = id.split(':');
  213 + var x = parseInt(zxy[1]);
  214 + var y = parseInt(zxy[2]);
  215 +
  216 + // the classification the the coords (what tile the intersect with)
  217 + var cls = {
  218 + internal: [],
  219 + topLeft: [],
  220 + left: [],
  221 + bottomLeft: [],
  222 + bottom: [],
  223 + bottomRight: [],
  224 + right: [],
  225 + topRight: [],
  226 + top: []
  227 + };
  228 +
  229 + for (var i = 0, len = coordsArray.length; i < len; i++) {
  230 + var coords = coordsArray[i];
  231 + var overlapNeighbors = {};
  232 + var pathInExtentAtLeastOnce = false;
  233 +
  234 + for (var j = 0, len2 = coords.length; j < len2; j++) {
  235 + var coord = coords[j];
  236 + var neighbor = checkCoordExtent(coord, extent);
  237 +
  238 + // project the coord to the pixel space of the world (Spherical Mercator for Zoom Level)
  239 + coords[j] = project(coord, x, y, extent, tileSize);
  240 +
  241 + // coord is outside tile
  242 + if (neighbor) {
  243 + overlapNeighbors[neighbor] = true;
  244 + }
  245 + // coord is inside tile
  246 + else {
  247 + pathInExtentAtLeastOnce = true;
  248 + }
  249 + }
  250 +
  251 + // path is entirely inside of tile
  252 + if (Object.keys(overlapNeighbors).length === 0) {
  253 + cls.internal.push(i);
  254 + }
  255 + // path leaves the tile
  256 + else {
  257 + for (var neighbor in overlapNeighbors) {
  258 + // We don't want paths that are never in the extent at all...
  259 + if (pathInExtentAtLeastOnce) {
  260 + cls[neighbor].push(i);
  261 + }
  262 + }
  263 + }
  264 + }
  265 + return cls;
  266 +}
  267 +
  268 +/**
  269 + * Checks to see if the path has left the extent of the vector tile.
  270 + * If so, we need to continue creating the polygon with coordinates
  271 + * from a neighboring tile...
  272 + *
  273 + * @param pbfFeature
  274 + * @param ctx
  275 + * @param coords
  276 + */
  277 +function checkCoordExtent(coord, extent) {
  278 + var x = coord.x;
  279 + var y = coord.y;
  280 +
  281 + // outside left side
  282 + if (x < 0) {
  283 + // in top left tile
  284 + if (y < 0) {
  285 + return 'topLeft';
  286 + }
  287 + // in bottom left tile
  288 + if (y > extent) {
  289 + return 'bottomLeft';
  290 + }
  291 + // in left tile
  292 + return 'left';
  293 + }
  294 +
  295 + // outside right side
  296 + if (x > extent) {
  297 + // in top right tile
  298 + if (y < 0) {
  299 + return 'topRight';
  300 + }
  301 + // in bottom right tile
  302 + if (y > extent) {
  303 + return 'bottomRight';
  304 + }
  305 + // in right tile
  306 + return 'right';
  307 + }
  308 +
  309 + // outside top side
  310 + if (y < 0) {
  311 + return 'top';
  312 + }
  313 +
  314 + // outside bottom side
  315 + if (y > extent) {
  316 + return 'bottom';
  317 + }
  318 +
  319 + return null;
  320 +}
  321 +
  322 +var neighborFns = {
  323 + top: function(id) {
  324 + var zxy = id.split(':');
  325 + return zxy[0] + ':' + zxy[1] + ':' + (parseInt(zxy[2]) - 1);
  326 + },
  327 + topLeft: function(id) {
  328 + var zxy = id.split(':');
  329 + return zxy[0] + ':' + (parseInt(zxy[1]) - 1) + ':' + (parseInt(zxy[2]) - 1);
  330 + },
  331 + left: function(id) {
  332 + var zxy = id.split(':');
  333 + return zxy[0] + ':' + (parseInt(zxy[1]) - 1) + ':' + zxy[2];
  334 + },
  335 + bottomLeft: function(id) {
  336 + var zxy = id.split(':');
  337 + return zxy[0] + ':' + (parseInt(zxy[1]) - 1) + ':' + (parseInt(zxy[2]) + 1);
  338 + },
  339 + bottom: function(id) {
  340 + var zxy = id.split(':');
  341 + return zxy[0] + ':' + zxy[1] + ':' + (parseInt(zxy[2]) + 1);
  342 + },
  343 + bottomRight: function(id) {
  344 + var zxy = id.split(':');
  345 + return zxy[0] + ':' + (parseInt(zxy[1]) + 1) + ':' + (parseInt(zxy[2]) + 1);
  346 + },
  347 + right: function(id) {
  348 + var zxy = id.split(':');
  349 + return zxy[0] + ':' + (parseInt(zxy[1]) + 1) + ':' + zxy[2];
  350 + },
  351 + topRight: function(id) {
  352 + var zxy = id.split(':');
  353 + return zxy[0] + ':' + (parseInt(zxy[1]) + 1) + ':' + (parseInt(zxy[2]) - 1);
  354 + }
  355 +};
  356 +
  357 +/**
  358 + * Projects a vector tile point to the Spherical Mercator pixel space for a given zoom level.
  359 + *
  360 + * @param vecPt
  361 + * @param tileX
  362 + * @param tileY
  363 + * @param extent
  364 + * @param tileSize
  365 + */
  366 +function project(vecPt, tileX, tileY, extent, tileSize) {
  367 + var div = extent / tileSize;
  368 + var xOffset = tileX * tileSize;
  369 + var yOffset = tileY * tileSize;
  370 + return {
  371 + x: Math.floor(vecPt.x / div + xOffset),
  372 + y: Math.floor(vecPt.y / div + yOffset)
  373 + };
  374 +}
  375 +
  376 +var inverseSides = {
  377 + top: 'bottom',
  378 + topLeft: 'bottomRight',
  379 + left: 'right',
  380 + bottomLeft: 'topRight',
  381 + bottom: 'top',
  382 + bottomRight: 'topLeft',
  383 + right: 'left',
  384 + topRight: 'bottomLeft'
  385 +};
  386 +
  387 +function mergeAndFindLargestPolygon(tilePolys, tileCls) {
  388 + var largestPoly = {
  389 + tid: null, // tile id to get the tile in tilePolys
  390 + idx: null, // index of array of polys in tile
  391 + area: null // area of the poly
  392 + };
  393 + for (var id in tileCls) {
  394 + var cCls = tileCls[id]; // center tile classifications
  395 + var cPolys = tilePolys[id]; // center tile polygons
  396 +
  397 + // Polygons internal to a tile do not need to be merged, but they may be the largest...
  398 + var internalClsArr = cCls.internal;
  399 + if (typeof internalClsArr === 'array') {
  400 + for (var i = 0, len = internalClsArr.length; i < len; i++) {
  401 + findLargestPoly(largestPoly, tilePolys, id, internalClsArr[i]);
  402 + }
  403 + }
  404 +
  405 + for (var edge in neighborFns) {
  406 + var cClsEdgeArr = cCls[edge]; // poly idxs for center edge classification
  407 + // continue if there are no overlapping polys on a given edge...
  408 + if (cClsEdgeArr.length === 0) {
  409 + continue;
  410 + }
  411 + var nId = neighborFns[edge](id); // neighboring tile id
  412 + var nCls = tileCls[nId]; // neighboring tile classifications
  413 + var nPolys = tilePolys[nId]; // neighboring tile polygons
  414 +
  415 + for (var j = 0, len2 = cClsEdgeArr.length; j < len2; j++) {
  416 + var cPolyIdx = cClsEdgeArr[j]; // a given center poly idx that overlaps the edge we are examining
  417 +
  418 + // If we have a neighboring tile, we get the overlapping polygons that correspond with the center tile.
  419 + // We then try to union the polygons...
  420 + if (nCls) {
  421 + var inv = inverseSides[edge];
  422 +
  423 + // We are just going to do 1 poly from center tile at a time so we can keep track of the one we are actually doing the merge on...
  424 + var cEdgePolys = polygonSetToGeoJson(cPolys, [cPolyIdx]); // 1 poly
  425 + var nEdgePolys = polygonSetToGeoJson(nPolys, nCls[inv]); // 1 or more polys
  426 +
  427 + var ctrJsts = reader.read(cEdgePolys);
  428 + var nbrJsts = reader.read(nEdgePolys);
  429 +
  430 + if (id === '5:18:16') {
  431 + console.log('b');
  432 + }
  433 + try {
  434 + // https://www.youtube.com/watch?v=RdSmokR0Enk
  435 + var union = ctrJsts.union(nbrJsts);
  436 +
  437 + // the new merged polygon
  438 + var unionPoly = union.shell.points;
  439 +
  440 + // Neighboring tile's inverse edge should be empty,
  441 + // because the corresponding shape has been merged.
  442 + nCls[inv] = [];
  443 +
  444 + // Replace the polygon in the center tile with the new merged polygon
  445 + // so other tiles can merge this if needed.
  446 + cPolys[cPolyIdx] = unionPoly;
  447 +
  448 + } catch (e) {
  449 + //NH TODO: WHY?
  450 + postMessage({
  451 + status: 'WARN',
  452 + details: 'union failed',
  453 + ctrJsts:ctrJsts,
  454 + nbrJsts:nbrJsts,
  455 + cEdgePolys:cEdgePolys,
  456 + nEdgePolys:nEdgePolys,
  457 + e:e,
  458 + tile: id
  459 + });
  460 + }
  461 + }
  462 +
  463 + // Regardless of whether we unioned or not, we want to check to see if this polygon is the largest...
  464 + findLargestPoly(largestPoly, tilePolys, id, cPolyIdx);
  465 + }
  466 +
  467 + }
  468 + }
  469 + return largestPoly;
  470 +}
  471 +
  472 +/**
  473 + * Converts the array of arrays of {x,y} points to GeoJSON.
  474 + *
  475 + * Note that the GeoJSON we are using is in the projected pixel
  476 + * space. Normally GeoJSON is WGS84, but we don't care, because
  477 + * we are just doing a union topology check.
  478 + *
  479 + * @param polys
  480 + * @returns {{type: string, coordinates: Array}}
  481 + */
  482 +function polygonSetToGeoJson(polys, idxArr) {
  483 + var coordinates = [];
  484 + var geojson = {
  485 + type: 'MultiPolygon',
  486 + coordinates: coordinates
  487 + };
  488 + for (var i = 0, len = idxArr.length; i < len; i++) {
  489 + var idx = idxArr[i];
  490 + var poly = polys[idx];
  491 + var geoPoly = [];
  492 + for (var j = 0, len2 = poly.length; j < len2; j++) {
  493 + var pt = poly[j];
  494 + var geoPt = [pt.x, pt.y];
  495 + geoPoly.push(geoPt);
  496 + }
  497 + geoPoly = [geoPoly]; // its an array in array, other items in the array would be rings
  498 + coordinates.push(geoPoly);
  499 + }
  500 + return geojson;
  501 +}
  502 +
  503 +
  504 +// http://en.wikipedia.org/wiki/Centroid#Centroid_of_polygon
  505 +
  506 +function area(poly) {
  507 + var area = 0;
  508 + var len = poly.length;
  509 + for (var i = 0, j = len - 1; i < len; j=i, i++) {
  510 + var p1 = poly[j];
  511 + var p2 = poly[i];
  512 +
  513 + area += p1.x * p2.y - p2.x * p1.y;
  514 + }
  515 +
  516 + return Math.abs(area / 2);
  517 +}
  518 +
  519 +/*
  520 + NH TODO: We are indeed getting the centroid, but ideally we
  521 + want to check if the centroid is actually within the polygon
  522 + for the polygons that bend like a boomarang. If it is outside,
  523 + we need to nudge it over until it is inside...
  524 + */
  525 +function centroid(poly) {
  526 + var len = poly.length;
  527 + var x = 0;
  528 + var y = 0;
  529 + for (var i = 0, j = len - 1; i < len; j=i, i++) {
  530 + var p1 = poly[j];
  531 + var p2 = poly[i];
  532 + var f = p1.x * p2.y - p2.x * p1.y;
  533 + x += (p1.x + p2.x) * f;
  534 + y += (p1.y + p2.y) * f;
  535 + }
  536 + f = area(poly) * 6;
  537 +
  538 + return {
  539 + x: Math.abs(x/f),
  540 + y: Math.abs(y/f)
  541 + };
  542 +}
  543 +
  544 +function findLargestPoly(largestPoly, tilePolys, tid, idx) {
  545 + if (!largestPoly.tid) {
  546 + largestPoly.tid = tid;
  547 + largestPoly.idx = idx;
  548 + largestPoly.area = area(tilePolys[tid][idx]);
  549 + return largestPoly;
  550 + }
  551 + var largestArea = largestPoly.area;
  552 + var polyArea = area(tilePolys[tid][idx]);
  553 +
  554 + if (polyArea > largestArea) {
  555 + largestPoly.tid = tid;
  556 + largestPoly.idx = idx;
  557 + largestPoly.area = polyArea;
  558 + }
  559 +
  560 + return largestPoly;
  561 +}
  562 +
  563 +/**
  564 + * There should be one instance of Label per MVTSource.
  565 + *
  566 + * @param map
  567 + * @param options
  568 + * @constructor
  569 + */
  570 +function DynamicLabel(map, pbfSource, options) {
  571 + this.map = map;
  572 + this.mvtSource = pbfSource;
  573 +
  574 + // default options
  575 + this.options = {
  576 + numPosWorkers: 8
  577 + };
  578 +
  579 + // apply options
  580 + for (var key in options) {
  581 + this.options[key] = options[key];
  582 + }
  583 +
  584 + this.positionWorkerPool = [];
  585 + this.positionWorkerQueue = [];
  586 +
  587 + for (var wkr = 0; wkr < this.options.numPosWorkers; wkr++) {
  588 + this.positionWorkerPool.push( new Worker(POS_WKR_LOC) );
  589 + }
  590 +
  591 + /**
  592 + * A hash containing keys to all of the tiles
  593 + * currently in the view port.
  594 + */
  595 + this.activeTiles = {};
  596 +
  597 + this._determineActiveTiles();
  598 + var self = this;
  599 + this.map.on('move', function() {
  600 + self._determineActiveTiles();
  601 + });
  602 +
  603 +}
  604 +
  605 +
  606 +/**
  607 + * FACTORY METHODS
  608 + */
  609 +
  610 +DynamicLabel.prototype.createFeature = function(pbfFeature, options) {
  611 + return new Feature(this, pbfFeature, options);
  612 +};
  613 +
  614 +
  615 +
  616 +/**
  617 + * PRIVATE METHODS
  618 + * @private
  619 + */
  620 +
  621 +DynamicLabel.prototype._determineActiveTiles = function() {
  622 + var activeTiles = this.activeTiles = {};
  623 + var bounds = this.map.getPixelBounds();
  624 + var tileSize = this.mvtSource.options.tileSize;
  625 + var z = this.map.getZoom();
  626 +
  627 + var minX = Math.floor(bounds.min.x / tileSize);
  628 + var minY = Math.floor(bounds.min.y / tileSize);
  629 + var maxX = Math.floor(bounds.max.x / tileSize);
  630 + var maxY = Math.floor(bounds.max.y / tileSize);
  631 +
  632 + for (var x = minX; x <= maxX; x++) {
  633 + for (var y = minY; y <= maxY; y++) {
  634 + activeTiles[z+':'+x+':'+y] = true;
  635 + }
  636 + }
  637 +};
  638 +
  639 +DynamicLabel.prototype.submitPositionJob = function(job, onmessage) {
  640 + var worker = this.positionWorkerPool.pop();
  641 + if (!worker) {
  642 + console.log('Enqueuing job for position worker...');
  643 + this.positionWorkerQueue.push({job:job, onmessage:onmessage});
  644 + } else {
  645 + worker.onmessage = onmessage;
  646 + worker.postMessage(job);
  647 + }
  648 +};
  649 +
  650 +DynamicLabel.prototype.freePositionWorker = function(worker) {
  651 + if (this.positionWorkerQueue.length > 0) {
  652 + var job = this.positionWorkerQueue.shift();
  653 + worker.onmessage = job.onmessage;
  654 + worker.postMessage(job.job);
  655 + } else {
  656 + this.positionWorkerPool.push(worker);
  657 + }
  658 +};
\ No newline at end of file
... ...
  1 +function MVTFeature(mvtLayer, vtf, ctx, id, style) {
  2 + if (!vtf) return null;
  3 +
  4 + // Apply all of the properties of vtf to this object.
  5 + for (var key in vtf) {
  6 + this[key] = vtf[key];
  7 + }
  8 +
  9 + this.mvtLayer = mvtLayer;
  10 + this.mvtSource = mvtLayer.mvtSource;
  11 + this.map = mvtLayer.mvtSource.map;
  12 +
  13 + this.id = id;
  14 +
  15 + this.layerLink = this.mvtSource.layerLink;
  16 + this.toggleEnabled = true;
  17 + this.selected = false;
  18 +
  19 + // how much we divide the coordinate from the vector tile
  20 + this.divisor = vtf.extent / ctx.tileSize;
  21 + this.extent = vtf.extent;
  22 + this.tileSize = ctx.tileSize;
  23 +
  24 + //An object to store the paths and contexts for this feature
  25 + this.tiles = {};
  26 +
  27 + this.style = style;
  28 +
  29 + //Add to the collection
  30 + this.addTileFeature(vtf, ctx);
  31 +
  32 + var self = this;
  33 + this.map.on('zoomend', function() {
  34 + self.staticLabel = null;
  35 + });
  36 +
  37 + if (style && style.dynamicLabel && typeof style.dynamicLabel === 'function') {
  38 + this.dynamicLabel = this.mvtSource.dynamicLabel.createFeature(this);
  39 + }
  40 +
  41 + ajax(self);
  42 +}
  43 +
  44 +
  45 +function ajax(self) {
  46 + var style = self.style;
  47 + if (style && style.ajaxSource && typeof style.ajaxSource === 'function') {
  48 + var ajaxEndpoint = style.ajaxSource(self);
  49 + if (ajaxEndpoint) {
  50 + Util.getJSON(ajaxEndpoint, function(error, response, body) {
  51 + if (error) {
  52 + throw ['ajaxSource AJAX Error', error];
  53 + } else {
  54 + ajaxCallback(self, response);
  55 + return true;
  56 + }
  57 + });
  58 + }
  59 + }
  60 + return false;
  61 +}
  62 +
  63 +function ajaxCallback(self, response) {
  64 + self.ajaxData = response;
  65 +
  66 + /**
  67 + * You can attach a callback function to a feature in your app
  68 + * that will get called whenever new ajaxData comes in. This
  69 + * can be used to update UI that looks at data from within a feature.
  70 + *
  71 + * setStyle may possibly have a style with a different ajaxData source,
  72 + * and you would potentially get new contextual data for your feature.
  73 + *
  74 + * TODO: This needs to be documented.
  75 + */
  76 + if (typeof self.ajaxDataReceived === 'function') {
  77 + self.ajaxDataReceived(self, response);
  78 + }
  79 +
  80 + self._setStyle(self.mvtLayer.style);
  81 + redrawTiles(self);
  82 +}
  83 +
  84 +MVTFeature.prototype._setStyle = function(styleFn) {
  85 + this.style = styleFn(this, this.ajaxData);
  86 +
  87 + // The label gets removed, and the (re)draw,
  88 + // that is initiated by the MVTLayer creates a new label.
  89 + this.removeLabel();
  90 +};
  91 +
  92 +MVTFeature.prototype.setStyle = function(styleFn) {
  93 + this.ajaxData = null;
  94 + this.style = styleFn(this, null);
  95 + var hasAjaxSource = ajax(this);
  96 + if (!hasAjaxSource) {
  97 + // The label gets removed, and the (re)draw,
  98 + // that is initiated by the MVTLayer creates a new label.
  99 + this.removeLabel();
  100 + }
  101 +};
  102 +
  103 +MVTFeature.prototype.draw = function(canvasID) {
  104 + //Get the info from the tiles list
  105 + var tileInfo = this.tiles[canvasID];
  106 +
  107 + var vtf = tileInfo.vtf;
  108 + var ctx = tileInfo.ctx;
  109 +
  110 + //Get the actual canvas from the parent layer's _tiles object.
  111 + var xy = canvasID.split(":").slice(1, 3).join(":");
  112 + ctx.canvas = this.mvtLayer._tiles[xy];
  113 +
  114 +// This could be used to directly compute the style function from the layer on every draw.
  115 +// This is much less efficient...
  116 +// this.style = this.mvtLayer.style(this);
  117 +
  118 + if (this.selected) {
  119 + var style = this.style.selected || this.style;
  120 + } else {
  121 + var style = this.style;
  122 + }
  123 +
  124 + var coordinates = vtf.coordinates;
  125 + switch (vtf.type) {
  126 +
  127 + case 1: //Point
  128 + this._drawPoint(ctx, coordinates, style);
  129 + if (!this.staticLabel && typeof this.style.staticLabel === 'function') {
  130 + if (this.style.ajaxSource && !this.ajaxData) {
  131 + break;
  132 + }
  133 + this._drawStaticLabel(ctx, coordinates, style);
  134 + }
  135 + break;
  136 +
  137 + case 2: //LineString
  138 + this._drawLineString(ctx, coordinates, style);
  139 + break;
  140 +
  141 + case 3: //Polygon
  142 + this._drawPolygon(ctx, coordinates, style);
  143 + break;
  144 +
  145 + default:
  146 + throw new Error('Unmanaged type: ' + vtf.type);
  147 + }
  148 +
  149 +};
  150 +
  151 +MVTFeature.prototype.getPathsForTile = function(canvasID) {
  152 + //Get the info from the parts list
  153 + return this.tiles[canvasID].paths;
  154 +};
  155 +
  156 +MVTFeature.prototype.addTileFeature = function(vtf, ctx) {
  157 + //Store the important items in the tiles list
  158 +
  159 + //We only want to store info for tiles for the current map zoom. If it is tile info for another zoom level, ignore it
  160 + //Also, if there are existing tiles in the list for other zoom levels, expunge them.
  161 + var zoom = this.map.getZoom();
  162 +
  163 + if(ctx.zoom != zoom) return;
  164 +
  165 + this.clearTileFeatures(zoom); //TODO: This iterates thru all tiles every time a new tile is added. Figure out a better way to do this.
  166 +
  167 + this.tiles[ctx.id] = {
  168 + ctx: ctx,
  169 + vtf: vtf,
  170 + paths: []
  171 + };
  172 +
  173 +};
  174 +
  175 +
  176 +/**
  177 + * Clear the inner list of tile features if they don't match the given zoom.
  178 + *
  179 + * @param zoom
  180 + */
  181 +MVTFeature.prototype.clearTileFeatures = function(zoom) {
  182 + //If stored tiles exist for other zoom levels, expunge them from the list.
  183 + for (var key in this.tiles) {
  184 + if(key.split(":")[0] != zoom) delete this.tiles[key];
  185 + }
  186 +};
  187 +
  188 +/**
  189 + * Redraws all of the tiles associated with a feature. Useful for
  190 + * style change and toggling.
  191 + *
  192 + * @param self
  193 + */
  194 +function redrawTiles(self) {
  195 + //Redraw the whole tile, not just this vtf
  196 + var tiles = self.tiles;
  197 + var mvtLayer = self.mvtLayer;
  198 +
  199 + for (var id in tiles) {
  200 + var tileZoom = parseInt(id.split(':')[0]);
  201 + var mapZoom = self.map.getZoom();
  202 + if (tileZoom === mapZoom) {
  203 + //Redraw the tile
  204 + mvtLayer.redrawTile(id);
  205 + }
  206 + }
  207 +}
  208 +
  209 +MVTFeature.prototype.toggle = function() {
  210 + if (this.selected) {
  211 + this.deselect();
  212 + } else {
  213 + this.select();
  214 + }
  215 +};
  216 +
  217 +MVTFeature.prototype.select = function() {
  218 + this.selected = true;
  219 + this.mvtSource.featureSelected(this);
  220 + redrawTiles(this);
  221 + var linkedFeature = this.linkedFeature();
  222 + if (linkedFeature && linkedFeature.staticLabel && !linkedFeature.staticLabel.selected) {
  223 + linkedFeature.staticLabel.select();
  224 + }
  225 +};
  226 +
  227 +MVTFeature.prototype.deselect = function() {
  228 + this.selected = false;
  229 + this.mvtSource.featureDeselected(this);
  230 + redrawTiles(this);
  231 + var linkedFeature = this.linkedFeature();
  232 + if (linkedFeature && linkedFeature.staticLabel && linkedFeature.staticLabel.selected) {
  233 + linkedFeature.staticLabel.deselect();
  234 + }
  235 +};
  236 +
  237 +MVTFeature.prototype.on = function(eventType, callback) {
  238 + this._eventHandlers[eventType] = callback;
  239 +};
  240 +
  241 +MVTFeature.prototype._drawPoint = function(ctx, coordsArray, style) {
  242 + if (!style) return;
  243 + if (!ctx || !ctx.canvas) return;
  244 +
  245 + var tile = this.tiles[ctx.id];
  246 +
  247 + //Get radius
  248 + var radius = 1;
  249 + if (typeof style.radius === 'function') {
  250 + radius = style.radius(ctx.zoom); //Allows for scale dependent rednering
  251 + }
  252 + else{
  253 + radius = style.radius;
  254 + }
  255 +
  256 + var p = this._tilePoint(coordsArray[0][0]);
  257 + var c = ctx.canvas;
  258 + var ctx2d;
  259 + try{
  260 + ctx2d = c.getContext('2d');
  261 + }
  262 + catch(e){
  263 + console.log("_drawPoint error: " + e);
  264 + return;
  265 + }
  266 +
  267 + ctx2d.beginPath();
  268 + ctx2d.fillStyle = style.color;
  269 + ctx2d.arc(p.x, p.y, radius, 0, Math.PI * 2);
  270 + ctx2d.closePath();
  271 + ctx2d.fill();
  272 +
  273 + if(style.lineWidth && style.strokeStyle){
  274 + ctx2d.lineWidth = style.lineWidth;
  275 + ctx2d.strokeStyle = style.strokeStyle;
  276 + ctx2d.stroke();
  277 + }
  278 +
  279 + ctx2d.restore();
  280 + tile.paths.push([p]);
  281 +};
  282 +
  283 +MVTFeature.prototype._drawLineString = function(ctx, coordsArray, style) {
  284 + if (!style) return;
  285 + if (!ctx || !ctx.canvas) return;
  286 +
  287 + var ctx2d = ctx.canvas.getContext('2d');
  288 + ctx2d.strokeStyle = style.color;
  289 + ctx2d.lineWidth = style.size;
  290 + ctx2d.beginPath();
  291 +
  292 + var projCoords = [];
  293 + var tile = this.tiles[ctx.id];
  294 +
  295 + for (var gidx in coordsArray) {
  296 + var coords = coordsArray[gidx];
  297 +
  298 + for (i = 0; i < coords.length; i++) {
  299 + var method = (i === 0 ? 'move' : 'line') + 'To';
  300 + var proj = this._tilePoint(coords[i]);
  301 + projCoords.push(proj);
  302 + ctx2d[method](proj.x, proj.y);
  303 + }
  304 + }
  305 +
  306 + ctx2d.stroke();
  307 + ctx2d.restore();
  308 +
  309 + tile.paths.push(projCoords);
  310 +};
  311 +
  312 +MVTFeature.prototype._drawPolygon = function(ctx, coordsArray, style) {
  313 + if (!style) return;
  314 + if (!ctx || !ctx.canvas) return;
  315 +
  316 + var ctx2d = ctx.canvas.getContext('2d');
  317 + var outline = style.outline;
  318 +
  319 + // color may be defined via function to make choropleth work right
  320 + if (typeof style.color === 'function') {
  321 + ctx2d.fillStyle = style.color(ctx2d);
  322 + } else {
  323 + ctx2d.fillStyle = style.color;
  324 + }
  325 +
  326 + if (outline) {
  327 + ctx2d.strokeStyle = outline.color;
  328 + ctx2d.lineWidth = outline.size;
  329 + }
  330 + ctx2d.beginPath();
  331 +
  332 + var projCoords = [];
  333 + var tile = this.tiles[ctx.id];
  334 +
  335 + var featureLabel = this.dynamicLabel;
  336 + if (featureLabel) {
  337 + featureLabel.addTilePolys(ctx, coordsArray);
  338 + }
  339 +
  340 + for (var gidx = 0, len = coordsArray.length; gidx < len; gidx++) {
  341 + var coords = coordsArray[gidx];
  342 +
  343 + for (var i = 0; i < coords.length; i++) {
  344 + var coord = coords[i];
  345 + var method = (i === 0 ? 'move' : 'line') + 'To';
  346 + var proj = this._tilePoint(coords[i]);
  347 + projCoords.push(proj);
  348 + ctx2d[method](proj.x, proj.y);
  349 + }
  350 + }
  351 +
  352 + ctx2d.closePath();
  353 + ctx2d.fill();
  354 + if (outline) {
  355 + ctx2d.stroke();
  356 + }
  357 +
  358 +
  359 + tile.paths.push(projCoords);
  360 +
  361 +};
  362 +
  363 +MVTFeature.prototype._drawStaticLabel = function(ctx, coordsArray, style) {
  364 + if (!style) return;
  365 + if (!ctx) return;
  366 +
  367 + // If the corresponding layer is not on the map,
  368 + // we dont want to put on a label.
  369 + if (!this.mvtLayer._map) return;
  370 +
  371 + var vecPt = this._tilePoint(coordsArray[0][0]);
  372 +
  373 + // We're making a standard Leaflet Marker for this label.
  374 + var p = this._project(vecPt, ctx.tile.x, ctx.tile.y, this.extent, this.tileSize); //vectile pt to merc pt
  375 + var mercPt = L.point(p.x, p.y); // make into leaflet obj
  376 + var latLng = this.map.unproject(mercPt); // merc pt to latlng
  377 +
  378 + this.staticLabel = new StaticLabel(this, ctx, latLng, style);
  379 + this.mvtLayer.featureWithLabelAdded(this);
  380 +};
  381 +
  382 +MVTFeature.prototype.removeLabel = function() {
  383 + if (!this.staticLabel) return;
  384 + this.staticLabel.remove();
  385 + this.staticLabel = null;
  386 +};
  387 +
  388 +/**
  389 + * Projects a vector tile point to the Spherical Mercator pixel space for a given zoom level.
  390 + *
  391 + * @param vecPt
  392 + * @param tileX
  393 + * @param tileY
  394 + * @param extent
  395 + * @param tileSize
  396 + */
  397 +MVTFeature.prototype._project = function(vecPt, tileX, tileY, extent, tileSize) {
  398 + var xOffset = tileX * tileSize;
  399 + var yOffset = tileY * tileSize;
  400 + return {
  401 + x: Math.floor(vecPt.x + xOffset),
  402 + y: Math.floor(vecPt.y + yOffset)
  403 + };
  404 +};
  405 +
  406 +/**
  407 + * Takes a coordinate from a vector tile and turns it into a Leaflet Point.
  408 + *
  409 + * @param ctx
  410 + * @param coords
  411 + * @returns {eGeomType.Point}
  412 + * @private
  413 + */
  414 +MVTFeature.prototype._tilePoint = function(coords) {
  415 + return new L.Point(coords.x / this.divisor, coords.y / this.divisor);
  416 +};
  417 +
  418 +MVTFeature.prototype.linkedFeature = function() {
  419 + var linkedLayer = this.mvtLayer.linkedLayer();
  420 + if(linkedLayer){
  421 + var linkedFeature = linkedLayer.features[this.id];
  422 + return linkedFeature;
  423 + }else{
  424 + return null;
  425 + }
  426 +};
\ No newline at end of file
... ...
  1 +MVTLayer = L.TileLayer.Canvas.extend({
  2 +
  3 + options: {
  4 + debug: false,
  5 + isHiddenLayer: false,
  6 + getIDForLayerFeature: function() {},
  7 + tileSize: 256,
  8 + lineClickTolerance: 2
  9 + },
  10 +
  11 + _featureIsClicked: {},
  12 +
  13 + _isPointInPoly: function(pt, poly) {
  14 + if(poly && poly.length) {
  15 + for (var c = false, i = -1, l = poly.length, j = l - 1; ++i < l; j = i)
  16 + ((poly[i].y <= pt.y && pt.y < poly[j].y) || (poly[j].y <= pt.y && pt.y < poly[i].y))
  17 + && (pt.x < (poly[j].x - poly[i].x) * (pt.y - poly[i].y) / (poly[j].y - poly[i].y) + poly[i].x)
  18 + && (c = !c);
  19 + return c;
  20 + }
  21 + },
  22 +
  23 + _getDistanceFromLine: function(pt, pts) {
  24 + var min = Number.POSITIVE_INFINITY;
  25 + if (pts && pts.length > 1) {
  26 + pt = L.point(pt.x, pt.y);
  27 + for (var i = 0, l = pts.length - 1; i < l; i++) {
  28 + var test = this._projectPointOnLineSegment(pt, pts[i], pts[i + 1]);
  29 + if (test.distance <= min) {
  30 + min = test.distance;
  31 + }
  32 + }
  33 + }
  34 + return min;
  35 + },
  36 +
  37 + _projectPointOnLineSegment: function(p, r0, r1) {
  38 + var lineLength = r0.distanceTo(r1);
  39 + if (lineLength < 1) {
  40 + return {distance: p.distanceTo(r0), coordinate: r0};
  41 + }
  42 + var u = ((p.x - r0.x) * (r1.x - r0.x) + (p.y - r0.y) * (r1.y - r0.y)) / Math.pow(lineLength, 2);
  43 + if (u < 0.0000001) {
  44 + return {distance: p.distanceTo(r0), coordinate: r0};
  45 + }
  46 + if (u > 0.9999999) {
  47 + return {distance: p.distanceTo(r1), coordinate: r1};
  48 + }
  49 + var a = L.point(r0.x + u * (r1.x - r0.x), r0.y + u * (r1.y - r0.y));
  50 + return {distance: p.distanceTo(a), point: a};
  51 + },
  52 +
  53 + initialize: function(mvtSource, options) {
  54 + var self = this;
  55 + self.mvtSource = mvtSource;
  56 + L.Util.setOptions(this, options);
  57 +
  58 + this.style = options.style;
  59 + this.name = options.name;
  60 + this._canvasIDToFeatures = {};
  61 + this.features = {};
  62 + this.featuresWithLabels = [];
  63 + this._highestCount = 0;
  64 + },
  65 +
  66 + onAdd: function(map) {
  67 + var self = this;
  68 + self.map = map;
  69 + L.TileLayer.Canvas.prototype.onAdd.call(this, map);
  70 + map.on('layerremove', function(e) {
  71 + // we only want to do stuff when the layerremove event is on this layer
  72 + if (e.layer._leaflet_id === self._leaflet_id) {
  73 + removeLabels(self);
  74 + }
  75 + });
  76 + },
  77 +
  78 + drawTile: function(canvas, tilePoint, zoom) {
  79 +
  80 + var ctx = {
  81 + canvas: canvas,
  82 + tile: tilePoint,
  83 + zoom: zoom,
  84 + tileSize: this.options.tileSize
  85 + };
  86 +
  87 + ctx.id = Util.getContextID(ctx);
  88 +
  89 + if (!this._canvasIDToFeatures[ctx.id]) {
  90 + this._initializeFeaturesHash(ctx);
  91 + }
  92 + if (!this.features) {
  93 + this.features = {};
  94 + }
  95 +
  96 + },
  97 +
  98 + _initializeFeaturesHash: function(ctx){
  99 + this._canvasIDToFeatures[ctx.id] = {};
  100 + this._canvasIDToFeatures[ctx.id].features = [];
  101 + this._canvasIDToFeatures[ctx.id].canvas = ctx.canvas;
  102 + },
  103 +
  104 + _draw: function(ctx) {
  105 + //Draw is handled by the parent MVTSource object
  106 + },
  107 + getCanvas: function(parentCtx){
  108 + //This gets called if a vector tile feature has already been parsed.
  109 + //We've already got the geom, just get on with the drawing.
  110 + //Need a way to pluck a canvas element from this layer given the parent layer's id.
  111 + //Wait for it to get loaded before proceeding.
  112 + var tilePoint = parentCtx.tile;
  113 + var ctx = this._tiles[tilePoint.x + ":" + tilePoint.y];
  114 +
  115 + if(ctx){
  116 + parentCtx.canvas = ctx;
  117 + this.redrawTile(parentCtx.id);
  118 + return;
  119 + }
  120 +
  121 + var self = this;
  122 +
  123 + //This is a timer that will wait for a criterion to return true.
  124 + //If not true within the timeout duration, it will move on.
  125 + waitFor(function () {
  126 + ctx = self._tiles[tilePoint.x + ":" + tilePoint.y];
  127 + if(ctx) {
  128 + return true;
  129 + }
  130 + },
  131 + function(){
  132 + //When it finishes, do this.
  133 + ctx = self._tiles[tilePoint.x + ":" + tilePoint.y];
  134 + parentCtx.canvas = ctx;
  135 + self.redrawTile(parentCtx.id);
  136 +
  137 + }, //when done, go to next flow
  138 + 2000); //The Timeout milliseconds. After this, give up and move on
  139 +
  140 + },
  141 +
  142 + parseVectorTileLayer: function(vtl, ctx) {
  143 + var self = this;
  144 + var tilePoint = ctx.tile;
  145 + var layerCtx = { canvas: null, id: ctx.id, tile: ctx.tile, zoom: ctx.zoom, tileSize: ctx.tileSize};
  146 +
  147 + //See if we can pluck the child tile from this PBF tile layer based on the master layer's tile id.
  148 + layerCtx.canvas = self._tiles[tilePoint.x + ":" + tilePoint.y];
  149 +
  150 + //Initialize this tile's feature storage hash, if it hasn't already been created. Used for when filters are updated, and features are cleared to prepare for a fresh redraw.
  151 + if (!this._canvasIDToFeatures[layerCtx.id]) {
  152 + this._initializeFeaturesHash(layerCtx);
  153 + }else{
  154 + //Clear this tile's previously saved features.
  155 + this.clearTileFeatureHash(layerCtx.id);
  156 + }
  157 +
  158 + var features = vtl.parsedFeatures;
  159 + for (var i = 0, len = features.length; i < len; i++) {
  160 + var vtf = features[i]; //vector tile feature
  161 + vtf.layer = vtl;
  162 +
  163 + /**
  164 + * Apply filter on feature if there is one. Defined in the options object
  165 + * of TileLayer.MVTSource.js
  166 + */
  167 + var filter = self.options.filter;
  168 + if (typeof filter === 'function') {
  169 + if ( filter(vtf, layerCtx) === false ) continue;
  170 + }
  171 +
  172 + var getIDForLayerFeature;
  173 + if (typeof self.options.getIDForLayerFeature === 'function') {
  174 + getIDForLayerFeature = self.options.getIDForLayerFeature;
  175 + } else {
  176 + getIDForLayerFeature = Util.getIDForLayerFeature;
  177 + }
  178 + var uniqueID = self.options.getIDForLayerFeature(vtf) || i;
  179 + var mvtFeature = self.features[uniqueID];
  180 +
  181 + /**
  182 + * Use layerOrdering function to apply a zIndex property to each vtf. This is defined in
  183 + * TileLayer.MVTSource.js. Used below to sort features.npm
  184 + */
  185 + var layerOrdering = self.options.layerOrdering;
  186 + if (typeof layerOrdering === 'function') {
  187 + layerOrdering(vtf, layerCtx); //Applies a custom property to the feature, which is used after we're thru iterating to sort
  188 + }
  189 +
  190 + //Create a new MVTFeature if one doesn't already exist for this feature.
  191 + if (!mvtFeature) {
  192 + //Get a style for the feature - set it just once for each new MVTFeature
  193 + var style = self.style(vtf);
  194 +
  195 + //create a new feature
  196 + self.features[uniqueID] = mvtFeature = new MVTFeature(self, vtf, layerCtx, uniqueID, style);
  197 + if (style && style.dynamicLabel && typeof style.dynamicLabel === 'function') {
  198 + self.featuresWithLabels.push(mvtFeature);
  199 + }
  200 + } else {
  201 + //Add the new part to the existing feature
  202 + mvtFeature.addTileFeature(vtf, layerCtx);
  203 + }
  204 +
  205 + //Associate & Save this feature with this tile for later
  206 + if(layerCtx && layerCtx.id) self._canvasIDToFeatures[layerCtx.id]['features'].push(mvtFeature);
  207 +
  208 + }
  209 +
  210 + /**
  211 + * Apply sorting (zIndex) on feature if there is a function defined in the options object
  212 + * of TileLayer.MVTSource.js
  213 + */
  214 + var layerOrdering = self.options.layerOrdering;
  215 + if (layerOrdering) {
  216 + //We've assigned the custom zIndex property when iterating above. Now just sort.
  217 + self._canvasIDToFeatures[layerCtx.id].features = self._canvasIDToFeatures[layerCtx.id].features.sort(function(a, b) {
  218 + return -(b.properties.zIndex - a.properties.zIndex)
  219 + });
  220 + }
  221 +
  222 + self.redrawTile(layerCtx.id);
  223 + },
  224 +
  225 +
  226 + setStyle: function(styleFn) {
  227 + // refresh the number for the highest count value
  228 + // this is used only for choropleth
  229 + this._highestCount = 0;
  230 +
  231 + // lowest count should not be 0, since we want to figure out the lowest
  232 + this._lowestCount = null;
  233 +
  234 + this.style = styleFn;
  235 + for (var key in this.features) {
  236 + var feat = this.features[key];
  237 + feat.setStyle(styleFn);
  238 + }
  239 + var z = this.map.getZoom();
  240 + for (var key in this._tiles) {
  241 + var id = z + ':' + key;
  242 + this.redrawTile(id);
  243 + }
  244 + },
  245 +
  246 + /**
  247 + * As counts for choropleths come in with the ajax data,
  248 + * we want to keep track of which value is the highest
  249 + * to create the color ramp for the fills of polygons.
  250 + * @param count
  251 + */
  252 + setHighestCount: function(count) {
  253 + if (count > this._highestCount) {
  254 + this._highestCount = count;
  255 + }
  256 + },
  257 +
  258 + /**
  259 + * Returns the highest number of all of the counts that have come in
  260 + * from setHighestCount. This is assumed to be set via ajax callbacks.
  261 + * @returns {number}
  262 + */
  263 + getHighestCount: function() {
  264 + return this._highestCount;
  265 + },
  266 +
  267 + setLowestCount: function(count) {
  268 + if (!this._lowestCount || count < this._lowestCount) {
  269 + this._lowestCount = count;
  270 + }
  271 + },
  272 +
  273 + getLowestCount: function() {
  274 + return this._lowestCount;
  275 + },
  276 +
  277 + setCountRange: function(count) {
  278 + this.setHighestCount(count);
  279 + this.setLowestCount(count);
  280 + },
  281 +
  282 + //This is the old way. It works, but is slow for mouseover events. Fine for click events.
  283 + handleClickEvent: function(evt, cb) {
  284 + //Click happened on the GroupLayer (Manager) and passed it here
  285 + var tileID = evt.tileID.split(":").slice(1, 3).join(":");
  286 + var zoom = evt.tileID.split(":")[0];
  287 + var canvas = this._tiles[tileID];
  288 + if(!canvas) (cb(evt)); //break out
  289 + var x = evt.layerPoint.x - canvas._leaflet_pos.x;
  290 + var y = evt.layerPoint.y - canvas._leaflet_pos.y;
  291 +
  292 + var tilePoint = {x: x, y: y};
  293 + var features = this._canvasIDToFeatures[evt.tileID].features;
  294 +
  295 + var minDistance = Number.POSITIVE_INFINITY;
  296 + var nearest = null;
  297 + var j, paths, distance;
  298 +
  299 + for (var i = 0; i < features.length; i++) {
  300 + var feature = features[i];
  301 + switch (feature.type) {
  302 +
  303 + case 1: //Point - currently rendered as circular paths. Intersect with that.
  304 +
  305 + //Find the radius of the point.
  306 + var radius = 3;
  307 + if (typeof feature.style.radius === 'function') {
  308 + radius = feature.style.radius(zoom); //Allows for scale dependent rednering
  309 + }
  310 + else{
  311 + radius = feature.style.radius;
  312 + }
  313 +
  314 + paths = feature.getPathsForTile(evt.tileID);
  315 + for (j = 0; j < paths.length; j++) {
  316 + //Builds a circle of radius feature.style.radius (assuming circular point symbology).
  317 + if(in_circle(paths[j][0].x, paths[j][0].y, radius, x, y)){
  318 + nearest = feature;
  319 + minDistance = 0;
  320 + }
  321 + }
  322 + break;
  323 +
  324 + case 2: //LineString
  325 + paths = feature.getPathsForTile(evt.tileID);
  326 + for (j = 0; j < paths.length; j++) {
  327 + if (feature.style) {
  328 + var distance = this._getDistanceFromLine(tilePoint, paths[j]);
  329 + var thickness = (feature.selected && feature.style.selected ? feature.style.selected.size : feature.style.size);
  330 + if (distance < thickness / 2 + this.options.lineClickTolerance && distance < minDistance) {
  331 + nearest = feature;
  332 + minDistance = distance;
  333 + }
  334 + }
  335 + }
  336 + break;
  337 +
  338 + case 3: //Polygon
  339 + paths = feature.getPathsForTile(evt.tileID);
  340 + for (j = 0; j < paths.length; j++) {
  341 + if (this._isPointInPoly(tilePoint, paths[j])) {
  342 + nearest = feature;
  343 + minDistance = 0; // point is inside the polygon, so distance is zero
  344 + }
  345 + }
  346 + break;
  347 + }
  348 + if (minDistance == 0) break;
  349 + }
  350 +
  351 + if (nearest && nearest.toggleEnabled) {
  352 + nearest.toggle();
  353 + }
  354 + evt.feature = nearest;
  355 + cb(evt);
  356 + },
  357 +
  358 + clearTile: function(id) {
  359 + //id is the entire zoom:x:y. we just want x:y.
  360 + var ca = id.split(":");
  361 + var canvasId = ca[1] + ":" + ca[2];
  362 + if (typeof this._tiles[canvasId] === 'undefined') {
  363 + console.error("typeof this._tiles[canvasId] === 'undefined'");
  364 + return;
  365 + }
  366 + var canvas = this._tiles[canvasId];
  367 +
  368 + var context = canvas.getContext('2d');
  369 + context.clearRect(0, 0, canvas.width, canvas.height);
  370 + },
  371 +
  372 + clearTileFeatureHash: function(canvasID){
  373 + this._canvasIDToFeatures[canvasID] = { features: []}; //Get rid of all saved features
  374 + },
  375 +
  376 + clearLayerFeatureHash: function(){
  377 + this.features = {};
  378 + },
  379 +
  380 + redrawTile: function(canvasID) {
  381 + //First, clear the canvas
  382 + this.clearTile(canvasID);
  383 +
  384 + // If the features are not in the tile, then there is nothing to redraw.
  385 + // This may happen if you call redraw before features have loaded and initially
  386 + // drawn the tile.
  387 + var featfeats = this._canvasIDToFeatures[canvasID];
  388 + if (!featfeats) {
  389 + return;
  390 + }
  391 +
  392 + //Get the features for this tile, and redraw them.
  393 + var features = featfeats.features;
  394 +
  395 + // we want to skip drawing the selected features and draw them last
  396 + var selectedFeatures = [];
  397 +
  398 + // drawing all of the non-selected features
  399 + for (var i = 0; i < features.length; i++) {
  400 + var feature = features[i];
  401 + if (feature.selected) {
  402 + selectedFeatures.push(feature);
  403 + } else {
  404 + feature.draw(canvasID);
  405 + }
  406 + }
  407 +
  408 + // drawing the selected features last
  409 + for (var j = 0, len2 = selectedFeatures.length; j < len2; j++) {
  410 + var selFeat = selectedFeatures[j];
  411 + selFeat.draw(canvasID);
  412 + }
  413 + },
  414 +
  415 + _resetCanvasIDToFeatures: function(canvasID, canvas) {
  416 +
  417 + this._canvasIDToFeatures[canvasID] = {};
  418 + this._canvasIDToFeatures[canvasID].features = [];
  419 + this._canvasIDToFeatures[canvasID].canvas = canvas;
  420 +
  421 + },
  422 +
  423 + linkedLayer: function() {
  424 + if(this.mvtSource.layerLink) {
  425 + var linkName = this.mvtSource.layerLink(this.name);
  426 + return this.mvtSource.layers[linkName];
  427 + }
  428 + else{
  429 + return null;
  430 + }
  431 + },
  432 +
  433 + featureWithLabelAdded: function(feature) {
  434 + this.featuresWithLabels.push(feature);
  435 + }
  436 +
  437 +});
  438 +
  439 +
  440 +function removeLabels(self) {
  441 + var features = self.featuresWithLabels;
  442 + for (var i = 0, len = features.length; i < len; i++) {
  443 + var feat = features[i];
  444 + feat.removeLabel();
  445 + }
  446 + self.featuresWithLabels = [];
  447 +}
  448 +
  449 +function in_circle(center_x, center_y, radius, x, y) {
  450 + var square_dist = Math.pow((center_x - x), 2) + Math.pow((center_y - y), 2);
  451 + return square_dist <= Math.pow(radius, 2);
  452 +}
  453 +/**
  454 + * See https://github.com/ariya/phantomjs/blob/master/examples/waitfor.js
  455 + *
  456 + * Wait until the test condition is true or a timeout occurs. Useful for waiting
  457 + * on a server response or for a ui change (fadeIn, etc.) to occur.
  458 + *
  459 + * @param testFx javascript condition that evaluates to a boolean,
  460 + * it can be passed in as a string (e.g.: "1 == 1" or "$('#bar').is(':visible')" or
  461 + * as a callback function.
  462 + * @param onReady what to do when testFx condition is fulfilled,
  463 + * it can be passed in as a string (e.g.: "1 == 1" or "$('#bar').is(':visible')" or
  464 + * as a callback function.
  465 + * @param timeOutMillis the max amount of time to wait. If not specified, 3 sec is used.
  466 + */
  467 +function waitFor(testFx, onReady, timeOutMillis) {
  468 + var maxtimeOutMillis = timeOutMillis ? timeOutMillis : 3000, //< Default Max Timout is 3s
  469 + start = new Date().getTime(),
  470 + condition = (typeof (testFx) === "string" ? eval(testFx) : testFx()), //< defensive code
  471 + interval = setInterval(function () {
  472 + if ((new Date().getTime() - start < maxtimeOutMillis) && !condition) {
  473 + // If not time-out yet and condition not yet fulfilled
  474 + condition = (typeof (testFx) === "string" ? eval(testFx) : testFx()); //< defensive code
  475 + } else {
  476 + if (!condition) {
  477 + // If condition still not fulfilled (timeout but condition is 'false')
  478 + console.log("'waitFor()' timeout");
  479 + clearInterval(interval); //< Stop this interval
  480 + typeof (onReady) === "string" ? eval(onReady) : onReady('timeout'); //< Do what it's supposed to do once the condition is fulfilled
  481 + } else {
  482 + // Condition fulfilled (timeout and/or condition is 'true')
  483 + console.log("'waitFor()' finished in " + (new Date().getTime() - start) + "ms.");
  484 + clearInterval(interval); //< Stop this interval
  485 + typeof (onReady) === "string" ? eval(onReady) : onReady('success'); //< Do what it's supposed to do once the condition is fulfilled
  486 + }
  487 + }
  488 + }, 50); //< repeat check every 50ms
  489 +};
\ No newline at end of file
... ...
  1 +L.TileLayer.MVTSlice = L.TileLayer.Canvas.extend({
  2 +
  3 + options: {
  4 + debug: false,
  5 + vectorTileLayerName: 'sliced',
  6 + getIDForLayerFeature: function() {},
  7 + tileSize: 256,
  8 + visibleLayers: []
  9 +
  10 + },
  11 + layers: {}, //Keep a list of the layers contained in the PBFs
  12 + processedTiles: {}, //Keep a list of tiles that have been processed already
  13 + _eventHandlers: {},
  14 + _triggerOnTilesLoadedEvent: true, //whether or not to fire the onTilesLoaded event when all of the tiles finish loading.
  15 + _vectorTileLayerName: "", //internal LayerName property
  16 +
  17 + style: function(feature) {
  18 + var style = {};
  19 +
  20 + var type = feature.type;
  21 + switch (type) {
  22 + case 1: //'Point'
  23 + style.color = 'rgba(49,79,79,1)';
  24 + style.radius = 5;
  25 + style.selected = {
  26 + color: 'rgba(255,255,0,0.5)',
  27 + radius: 6
  28 + };
  29 + break;
  30 + case 2: //'LineString'
  31 + style.color = 'rgba(161,217,155,0.8)';
  32 + style.size = 3;
  33 + style.selected = {
  34 + color: 'rgba(255,25,0,0.5)',
  35 + size: 4
  36 + };
  37 + break;
  38 + case 3: //'Polygon'
  39 + style.color = 'rgba(49,79,79,1)';
  40 + style.outline = {
  41 + color: 'rgba(161,217,155,0.8)',
  42 + size: 1
  43 + };
  44 + style.selected = {
  45 + color: 'rgba(255,140,0,0.3)',
  46 + outline: {
  47 + color: 'rgba(255,140,0,1)',
  48 + size: 2
  49 + }
  50 + };
  51 + break;
  52 + }
  53 + return style;
  54 + },
  55 +
  56 + initialize: function(geojson, options) {
  57 + L.Util.setOptions(this, options);
  58 +
  59 + //a list of the layers contained in the PBFs
  60 + this.layers = {};
  61 +
  62 + // tiles currently in the viewport
  63 + this.activeTiles = {};
  64 +
  65 + // thats that have been loaded and drawn
  66 + this.loadedTiles = {};
  67 +
  68 + this._vectorTileLayerName = this.options.vectorTileLayerName;
  69 +
  70 + this._slicers = {};
  71 +
  72 + this._slicers[this.options.vectorTileLayerName] = geojsonvt(geojson);
  73 +
  74 +
  75 + /**
  76 + * For some reason, Leaflet has some code that resets the
  77 + * z index in the options object. I'm having trouble tracking
  78 + * down exactly what does this and why, so for now, we should
  79 + * just copy the value to this.zIndex so we can have the right
  80 + * number when we make the subsequent MVTLayers.
  81 + */
  82 + this.zIndex = options.zIndex;
  83 +
  84 + if (typeof options.style === 'function') {
  85 + this.style = options.style;
  86 + }
  87 +
  88 + if (typeof options.ajaxSource === 'function') {
  89 + this.ajaxSource = options.ajaxSource;
  90 + }
  91 +
  92 + this.layerLink = options.layerLink;
  93 +
  94 + this._eventHandlers = {};
  95 +
  96 + this._tilesToProcess = 0; //store the max number of tiles to be loaded. Later, we can use this count to count down PBF loading.
  97 + },
  98 +
  99 + redraw: function(triggerOnTilesLoadedEvent){
  100 + //Only set to false if it actually is passed in as 'false'
  101 + if (triggerOnTilesLoadedEvent === false) {
  102 + this._triggerOnTilesLoadedEvent = false;
  103 + }
  104 +
  105 + L.TileLayer.Canvas.prototype.redraw.call(this);
  106 + },
  107 +
  108 + onAdd: function(map) {
  109 + var self = this;
  110 + self.map = map;
  111 + L.TileLayer.Canvas.prototype.onAdd.call(this, map);
  112 +
  113 + var mapOnClickCallback = function(e) {
  114 + self._onClick(e);
  115 + };
  116 +
  117 + map.on('click', mapOnClickCallback);
  118 +
  119 + map.on("layerremove", function(e) {
  120 + // check to see if the layer removed is this one
  121 + // call a method to remove the child layers (the ones that actually have something drawn on them).
  122 + if (e.layer._leaflet_id === self._leaflet_id && e.layer.removeChildLayers) {
  123 + e.layer.removeChildLayers(map);
  124 + map.off('click', mapOnClickCallback);
  125 + }
  126 + });
  127 +
  128 + self.addChildLayers(map);
  129 +
  130 + if (typeof DynamicLabel === 'function' ) {
  131 + this.dynamicLabel = new DynamicLabel(map, this, {});
  132 + }
  133 +
  134 + },
  135 +
  136 + drawTile: function(canvas, tilePoint, zoom) {
  137 + var ctx = {
  138 + id: [zoom, tilePoint.x, tilePoint.y].join(":"),
  139 + canvas: canvas,
  140 + tile: tilePoint,
  141 + zoom: zoom,
  142 + tileSize: this.options.tileSize
  143 + };
  144 +
  145 + //Capture the max number of the tiles to load here. this._tilesToProcess is an internal number we use to know when we've finished requesting PBFs.
  146 + if(this._tilesToProcess < this._tilesToLoad) this._tilesToProcess = this._tilesToLoad;
  147 +
  148 + var id = ctx.id = Util.getContextID(ctx);
  149 + this.activeTiles[id] = ctx;
  150 +
  151 + if(!this.processedTiles[ctx.zoom]) this.processedTiles[ctx.zoom] = {};
  152 +
  153 + if (this.options.debug) {
  154 + this._drawDebugInfo(ctx);
  155 + }
  156 + this._draw(ctx);
  157 + },
  158 +
  159 + setOpacity:function(opacity) {
  160 + this._setVisibleLayersStyle('opacity',opacity);
  161 + },
  162 +
  163 + setZIndex:function(zIndex) {
  164 + this._setVisibleLayersStyle('zIndex',zIndex);
  165 + },
  166 +
  167 + _setVisibleLayersStyle:function(style, value) {
  168 + for(var key in this.layers) {
  169 + this.layers[key]._tileContainer.style[style] = value;
  170 + }
  171 + },
  172 +
  173 + _drawDebugInfo: function(ctx) {
  174 + var max = this.options.tileSize;
  175 + var g = ctx.canvas.getContext('2d');
  176 + g.strokeStyle = '#000000';
  177 + g.fillStyle = '#FFFF00';
  178 + g.strokeRect(0, 0, max, max);
  179 + g.font = "12px Arial";
  180 + g.fillRect(0, 0, 5, 5);
  181 + g.fillRect(0, max - 5, 5, 5);
  182 + g.fillRect(max - 5, 0, 5, 5);
  183 + g.fillRect(max - 5, max - 5, 5, 5);
  184 + g.fillRect(max / 2 - 5, max / 2 - 5, 10, 10);
  185 + g.strokeText(ctx.zoom + ' ' + ctx.tile.x + ' ' + ctx.tile.y, max / 2 - 30, max / 2 - 10);
  186 + },
  187 +
  188 + _draw: function(ctx) {
  189 + var self = this;
  190 +
  191 +// //This works to skip fetching and processing tiles if they've already been processed.
  192 +// var vectorTile = this.processedTiles[ctx.zoom][ctx.id];
  193 +// //if we've already parsed it, don't get it again.
  194 +// if(vectorTile){
  195 +// console.log("Skipping fetching " + ctx.id);
  196 +// self.checkVectorTileLayers(parseVT(vectorTile), ctx, true);
  197 +// self.reduceTilesToProcessCount();
  198 +// return;
  199 +// }
  200 +
  201 + if (!this._slicers) return;
  202 +
  203 + setTimeout(function(){
  204 + var tile = self._slicers[self._vectorTileLayerName].getTile(ctx.zoom, ctx.tile.x, ctx.tile.y);
  205 + if (tile) {
  206 + var buff = vtpbf.fromGeojsonVt({ 'geojsonLayer': tile });
  207 + var pbfbuf = new Pbf(buff);
  208 + var vt = new VectorTile(pbfbuf);
  209 + //Check the current map layer zoom. If fast zooming is occurring, then short circuit tiles that are for a different zoom level than we're currently on.
  210 + if(self.map && self.map.getZoom() != ctx.zoom) {
  211 + console.log("Fetched tile for zoom level " + ctx.zoom + ". Map is at zoom level " + self._map.getZoom());
  212 + return;
  213 + }
  214 +
  215 + self.checkVectorTileLayers(parseVT(vt), ctx);
  216 + tileLoaded(self, ctx);
  217 + }
  218 + //either way, reduce the count of tilesToProcess tiles here
  219 + self.reduceTilesToProcessCount();
  220 + });
  221 +
  222 + },
  223 +
  224 + reduceTilesToProcessCount: function(){
  225 + this._tilesToProcess--;
  226 + if(!this._tilesToProcess){
  227 + //Trigger event letting us know that all PBFs have been loaded and processed (or 404'd).
  228 + if(this._eventHandlers["PBFLoad"]) this._eventHandlers["PBFLoad"]();
  229 + this._pbfLoaded();
  230 + }
  231 + },
  232 +
  233 + checkVectorTileLayers: function(vt, ctx, parsed) {
  234 + var self = this;
  235 +
  236 + //Check if there are specified visible layers
  237 + if(self.options.visibleLayers && self.options.visibleLayers.length > 0){
  238 + //only let thru the layers listed in the visibleLayers array
  239 + for(var i=0; i < self.options.visibleLayers.length; i++){
  240 + var layerName = self.options.visibleLayers[i];
  241 + if(vt.layers[layerName]){
  242 + //Proceed with parsing
  243 + self.prepareMVTLayers(vt.layers[layerName], layerName, ctx, parsed);
  244 + }
  245 + }
  246 + }else{
  247 + //Parse all vt.layers
  248 + for (var key in vt.layers) {
  249 + self.prepareMVTLayers(vt.layers[key], key, ctx, parsed);
  250 + }
  251 + }
  252 + },
  253 +
  254 + prepareMVTLayers: function(lyr ,key, ctx, parsed) {
  255 + var self = this;
  256 +
  257 + if (!self.layers[key]) {
  258 + //Create MVTLayer or MVTPointLayer for user
  259 + self.layers[key] = self.createMVTLayer(key, lyr.parsedFeatures[0].type || null);
  260 + }
  261 +
  262 + if (parsed) {
  263 + //We've already parsed it. Go get canvas and draw.
  264 + self.layers[key].getCanvas(ctx, lyr);
  265 + } else {
  266 + self.layers[key].parseVectorTileLayer(lyr, ctx);
  267 + }
  268 +
  269 + },
  270 +
  271 + createMVTLayer: function(key, type) {
  272 + var self = this;
  273 +
  274 + var getIDForLayerFeature;
  275 + if (typeof self.options.getIDForLayerFeature === 'function') {
  276 + getIDForLayerFeature = self.options.getIDForLayerFeature;
  277 + } else {
  278 + getIDForLayerFeature = Util.getIDForLayerFeature;
  279 + }
  280 +
  281 + var options = {
  282 + getIDForLayerFeature: getIDForLayerFeature,
  283 + filter: self.options.filter,
  284 + layerOrdering: self.options.layerOrdering,
  285 + style: self.style,
  286 + name: key,
  287 + asynch: true
  288 + };
  289 +
  290 + if (self.options.zIndex) {
  291 + options.zIndex = self.zIndex;
  292 + }
  293 +
  294 + //Take the layer and create a new MVTLayer or MVTPointLayer if one doesn't exist.
  295 + var layer = new MVTLayer(self, options).addTo(self.map);
  296 +
  297 + return layer;
  298 + },
  299 +
  300 + getLayers: function() {
  301 + return this.layers;
  302 + },
  303 +
  304 + hideLayer: function(id) {
  305 + if (this.layers[id]) {
  306 + this._map.removeLayer(this.layers[id]);
  307 + if(this.options.visibleLayers.indexOf("id") > -1){
  308 + this.visibleLayers.splice(this.options.visibleLayers.indexOf("id"), 1);
  309 + }
  310 + }
  311 + },
  312 +
  313 + showLayer: function(id) {
  314 + if (this.layers[id]) {
  315 + this._map.addLayer(this.layers[id]);
  316 + if(this.options.visibleLayers.indexOf("id") == -1){
  317 + this.visibleLayers.push(id);
  318 + }
  319 + }
  320 + //Make sure manager layer is always in front
  321 + this.bringToFront();
  322 + },
  323 +
  324 + removeChildLayers: function(map){
  325 + //Remove child layers of this group layer
  326 + for (var key in this.layers) {
  327 + var layer = this.layers[key];
  328 + map.removeLayer(layer);
  329 + }
  330 + },
  331 +
  332 + addChildLayers: function(map) {
  333 + var self = this;
  334 + if(self.options.visibleLayers.length > 0){
  335 + //only let thru the layers listed in the visibleLayers array
  336 + for(var i=0; i < self.options.visibleLayers.length; i++){
  337 + var layerName = self.options.visibleLayers[i];
  338 + var layer = this.layers[layerName];
  339 + if(layer){
  340 + //Proceed with parsing
  341 + map.addLayer(layer);
  342 + }
  343 + }
  344 + }else{
  345 + //Add all layers
  346 + for (var key in this.layers) {
  347 + var layer = this.layers[key];
  348 + // layer is set to visible and is not already on map
  349 + if (!layer._map) {
  350 + map.addLayer(layer);
  351 + }
  352 + }
  353 + }
  354 + },
  355 +
  356 + bind: function(eventType, callback) {
  357 + this._eventHandlers[eventType] = callback;
  358 + },
  359 +
  360 + _onClick: function(evt) {
  361 + //Here, pass the event on to the child MVTLayer and have it do the hit test and handle the result.
  362 + var self = this;
  363 + var onClick = self.options.onClick;
  364 + var clickableLayers = self.options.clickableLayers;
  365 + var layers = self.layers;
  366 +
  367 + evt.tileID = getTileURL(evt.latlng.lat, evt.latlng.lng, this.map.getZoom());
  368 +
  369 + // We must have an array of clickable layers, otherwise, we just pass
  370 + // the event to the public onClick callback in options.
  371 +
  372 + if(!clickableLayers){
  373 + clickableLayers = Object.keys(self.layers);
  374 + }
  375 +
  376 + if (clickableLayers && clickableLayers.length > 0) {
  377 + for (var i = 0, len = clickableLayers.length; i < len; i++) {
  378 + var key = clickableLayers[i];
  379 + var layer = layers[key];
  380 + if (layer) {
  381 + layer.handleClickEvent(evt, function(evt) {
  382 + if (typeof onClick === 'function') {
  383 + onClick(evt);
  384 + }
  385 + });
  386 + }
  387 + }
  388 + } else {
  389 + if (typeof onClick === 'function') {
  390 + onClick(evt);
  391 + }
  392 + }
  393 +
  394 + },
  395 +
  396 + setFilter: function(filterFunction, layerName) {
  397 + //take in a new filter function.
  398 + //Propagate to child layers.
  399 +
  400 + //Add filter to all child layers if no layer is specified.
  401 + for (var key in this.layers) {
  402 + var layer = this.layers[key];
  403 +
  404 + if (layerName){
  405 + if(key.toLowerCase() == layerName.toLowerCase()){
  406 + layer.options.filter = filterFunction; //Assign filter to child layer, only if name matches
  407 + //After filter is set, the old feature hashes are invalid. Clear them for next draw.
  408 + layer.clearLayerFeatureHash();
  409 + //layer.clearTileFeatureHash();
  410 + }
  411 + }
  412 + else{
  413 + layer.options.filter = filterFunction; //Assign filter to child layer
  414 + //After filter is set, the old feature hashes are invalid. Clear them for next draw.
  415 + layer.clearLayerFeatureHash();
  416 + //layer.clearTileFeatureHash();
  417 + }
  418 + }
  419 + },
  420 +
  421 + /**
  422 + * Take in a new style function and propogate to child layers.
  423 + * If you do not set a layer name, it resets the style for all of the layers.
  424 + * @param styleFunction
  425 + * @param layerName
  426 + */
  427 + setStyle: function(styleFn, layerName) {
  428 + for (var key in this.layers) {
  429 + var layer = this.layers[key];
  430 + if (layerName) {
  431 + if(key.toLowerCase() == layerName.toLowerCase()) {
  432 + layer.setStyle(styleFn);
  433 + }
  434 + } else {
  435 + layer.setStyle(styleFn);
  436 + }
  437 + }
  438 + },
  439 +
  440 + featureSelected: function(mvtFeature) {
  441 + if (this.options.mutexToggle) {
  442 + if (this._selectedFeature) {
  443 + this._selectedFeature.deselect();
  444 + }
  445 + this._selectedFeature = mvtFeature;
  446 + }
  447 + if (this.options.onSelect) {
  448 + this.options.onSelect(mvtFeature);
  449 + }
  450 + },
  451 +
  452 + featureDeselected: function(mvtFeature) {
  453 + if (this.options.mutexToggle && this._selectedFeature) {
  454 + this._selectedFeature = null;
  455 + }
  456 + if (this.options.onDeselect) {
  457 + this.options.onDeselect(mvtFeature);
  458 + }
  459 + },
  460 +
  461 + _pbfLoaded: function() {
  462 + //Fires when all tiles from this layer have been loaded and drawn (or 404'd).
  463 +
  464 + //Make sure manager layer is always in front
  465 + this.bringToFront();
  466 +
  467 + //See if there is an event to execute
  468 + var self = this;
  469 + var onTilesLoaded = self.options.onTilesLoaded;
  470 +
  471 + if (onTilesLoaded && typeof onTilesLoaded === 'function' && this._triggerOnTilesLoadedEvent === true) {
  472 + onTilesLoaded(this);
  473 + }
  474 + self._triggerOnTilesLoadedEvent = true; //reset - if redraw() is called with the optinal 'false' parameter to temporarily disable the onTilesLoaded event from firing. This resets it back to true after a single time of firing as 'false'.
  475 + }
  476 +
  477 +});
  478 +
  479 +
  480 +if (typeof(Number.prototype.toRad) === "undefined") {
  481 + Number.prototype.toRad = function() {
  482 + return this * Math.PI / 180;
  483 + }
  484 +}
  485 +
  486 +function getTileURL(lat, lon, zoom) {
  487 + var xtile = parseInt(Math.floor( (lon + 180) / 360 * (1<<zoom) ));
  488 + var ytile = parseInt(Math.floor( (1 - Math.log(Math.tan(lat.toRad()) + 1 / Math.cos(lat.toRad())) / Math.PI) / 2 * (1<<zoom) ));
  489 + return "" + zoom + ":" + xtile + ":" + ytile;
  490 +}
  491 +
  492 +function tileLoaded(pbfSource, ctx) {
  493 + pbfSource.loadedTiles[ctx.id] = ctx;
  494 +}
  495 +
  496 +function parseVT(vt){
  497 + for (var key in vt.layers) {
  498 + var lyr = vt.layers[key];
  499 + parseVTFeatures(lyr);
  500 + }
  501 + return vt;
  502 +}
  503 +
  504 +function parseVTFeatures(vtl){
  505 + vtl.parsedFeatures = [];
  506 + var features = vtl._features;
  507 + for (var i = 0, len = features.length; i < len; i++) {
  508 + var vtf = vtl.feature(i);
  509 + vtf.coordinates = vtf.loadGeometry();
  510 + vtl.parsedFeatures.push(vtf);
  511 + }
  512 + return vtl;
  513 +}
... ...
  1 +
  2 +var Protobuf = Pbf;
  3 +
  4 +L.TileLayer.MVTSource = L.TileLayer.Canvas.extend({
  5 +
  6 + options: {
  7 + debug: false,
  8 + url: "", //URL TO Vector Tile Source,
  9 + getIDForLayerFeature: function() {},
  10 + tileSize: 256,
  11 + visibleLayers: [],
  12 + xhrHeaders: {}
  13 + },
  14 + layers: {}, //Keep a list of the layers contained in the PBFs
  15 + processedTiles: {}, //Keep a list of tiles that have been processed already
  16 + _eventHandlers: {},
  17 + _triggerOnTilesLoadedEvent: true, //whether or not to fire the onTilesLoaded event when all of the tiles finish loading.
  18 + _url: "", //internal URL property
  19 +
  20 + style: function(feature) {
  21 + var style = {};
  22 +
  23 + var type = feature.type;
  24 + switch (type) {
  25 + case 1: //'Point'
  26 + style.color = 'rgba(49,79,79,1)';
  27 + style.radius = 5;
  28 + style.selected = {
  29 + color: 'rgba(255,255,0,0.5)',
  30 + radius: 6
  31 + };
  32 + break;
  33 + case 2: //'LineString'
  34 + style.color = 'rgba(161,217,155,0.8)';
  35 + style.size = 3;
  36 + style.selected = {
  37 + color: 'rgba(255,25,0,0.5)',
  38 + size: 4
  39 + };
  40 + break;
  41 + case 3: //'Polygon'
  42 + style.color = 'rgba(49,79,79,1)';
  43 + style.outline = {
  44 + color: 'rgba(161,217,155,0.8)',
  45 + size: 1
  46 + };
  47 + style.selected = {
  48 + color: 'rgba(255,140,0,0.3)',
  49 + outline: {
  50 + color: 'rgba(255,140,0,1)',
  51 + size: 2
  52 + }
  53 + };
  54 + break;
  55 + }
  56 + return style;
  57 + },
  58 +
  59 +
  60 + initialize: function(options) {
  61 + L.Util.setOptions(this, options);
  62 +
  63 + //a list of the layers contained in the PBFs
  64 + this.layers = {};
  65 +
  66 + // tiles currently in the viewport
  67 + this.activeTiles = {};
  68 +
  69 + // thats that have been loaded and drawn
  70 + this.loadedTiles = {};
  71 +
  72 + this._url = this.options.url;
  73 +
  74 + /**
  75 + * For some reason, Leaflet has some code that resets the
  76 + * z index in the options object. I'm having trouble tracking
  77 + * down exactly what does this and why, so for now, we should
  78 + * just copy the value to this.zIndex so we can have the right
  79 + * number when we make the subsequent MVTLayers.
  80 + */
  81 + this.zIndex = options.zIndex;
  82 +
  83 + if (typeof options.style === 'function') {
  84 + this.style = options.style;
  85 + }
  86 +
  87 + if (typeof options.ajaxSource === 'function') {
  88 + this.ajaxSource = options.ajaxSource;
  89 + }
  90 +
  91 + this.layerLink = options.layerLink;
  92 +
  93 + this._eventHandlers = {};
  94 +
  95 + this._tilesToProcess = 0; //store the max number of tiles to be loaded. Later, we can use this count to count down PBF loading.
  96 + },
  97 +
  98 + redraw: function(triggerOnTilesLoadedEvent){
  99 + //Only set to false if it actually is passed in as 'false'
  100 + if (triggerOnTilesLoadedEvent === false) {
  101 + this._triggerOnTilesLoadedEvent = false;
  102 + }
  103 +
  104 + L.TileLayer.Canvas.prototype.redraw.call(this);
  105 + },
  106 +
  107 + onAdd: function(map) {
  108 + var self = this;
  109 + self.map = map;
  110 + L.TileLayer.Canvas.prototype.onAdd.call(this, map);
  111 +
  112 + var mapOnClickCallback = function(e) {
  113 + self._onClick(e);
  114 + };
  115 +
  116 + map.on('click', mapOnClickCallback);
  117 +
  118 + map.on("layerremove", function(e) {
  119 + // check to see if the layer removed is this one
  120 + // call a method to remove the child layers (the ones that actually have something drawn on them).
  121 + if (e.layer._leaflet_id === self._leaflet_id && e.layer.removeChildLayers) {
  122 + e.layer.removeChildLayers(map);
  123 + map.off('click', mapOnClickCallback);
  124 + }
  125 + });
  126 +
  127 + self.addChildLayers(map);
  128 +
  129 + if (typeof DynamicLabel === 'function' ) {
  130 + this.dynamicLabel = new DynamicLabel(map, this, {});
  131 + }
  132 +
  133 + },
  134 +
  135 + drawTile: function(canvas, tilePoint, zoom) {
  136 + var ctx = {
  137 + id: [zoom, tilePoint.x, tilePoint.y].join(":"),
  138 + canvas: canvas,
  139 + tile: tilePoint,
  140 + zoom: zoom,
  141 + tileSize: this.options.tileSize
  142 + };
  143 +
  144 + //Capture the max number of the tiles to load here. this._tilesToProcess is an internal number we use to know when we've finished requesting PBFs.
  145 + if(this._tilesToProcess < this._tilesToLoad) this._tilesToProcess = this._tilesToLoad;
  146 +
  147 + var id = ctx.id = Util.getContextID(ctx);
  148 + this.activeTiles[id] = ctx;
  149 +
  150 + if(!this.processedTiles[ctx.zoom]) this.processedTiles[ctx.zoom] = {};
  151 +
  152 + if (this.options.debug) {
  153 + this._drawDebugInfo(ctx);
  154 + }
  155 + this._draw(ctx);
  156 + },
  157 +
  158 + setOpacity:function(opacity) {
  159 + this._setVisibleLayersStyle('opacity',opacity);
  160 + },
  161 +
  162 + setZIndex:function(zIndex) {
  163 + this._setVisibleLayersStyle('zIndex',zIndex);
  164 + },
  165 +
  166 + _setVisibleLayersStyle:function(style, value) {
  167 + for(var key in this.layers) {
  168 + this.layers[key]._tileContainer.style[style] = value;
  169 + }
  170 + },
  171 +
  172 + _drawDebugInfo: function(ctx) {
  173 + var max = this.options.tileSize;
  174 + var g = ctx.canvas.getContext('2d');
  175 + g.strokeStyle = '#000000';
  176 + g.fillStyle = '#FFFF00';
  177 + g.strokeRect(0, 0, max, max);
  178 + g.font = "12px Arial";
  179 + g.fillRect(0, 0, 5, 5);
  180 + g.fillRect(0, max - 5, 5, 5);
  181 + g.fillRect(max - 5, 0, 5, 5);
  182 + g.fillRect(max - 5, max - 5, 5, 5);
  183 + g.fillRect(max / 2 - 5, max / 2 - 5, 10, 10);
  184 + g.strokeText(ctx.zoom + ' ' + ctx.tile.x + ' ' + ctx.tile.y, max / 2 - 30, max / 2 - 10);
  185 + },
  186 +
  187 + _draw: function(ctx) {
  188 + var self = this;
  189 +
  190 +// //This works to skip fetching and processing tiles if they've already been processed.
  191 +// var vectorTile = this.processedTiles[ctx.zoom][ctx.id];
  192 +// //if we've already parsed it, don't get it again.
  193 +// if(vectorTile){
  194 +// console.log("Skipping fetching " + ctx.id);
  195 +// self.checkVectorTileLayers(parseVT(vectorTile), ctx, true);
  196 +// self.reduceTilesToProcessCount();
  197 +// return;
  198 +// }
  199 +
  200 + if (!this._url) return;
  201 + var src = this.getTileUrl({ x: ctx.tile.x, y: ctx.tile.y, z: ctx.zoom });
  202 +
  203 + var xhr = new XMLHttpRequest();
  204 + xhr.onload = function() {
  205 + if (xhr.status == "200") {
  206 +
  207 + if(!xhr.response) return;
  208 +
  209 + var arrayBuffer = new Uint8Array(xhr.response);
  210 + var buf = new Protobuf(arrayBuffer);
  211 + var vt = new VectorTile(buf);
  212 + //Check the current map layer zoom. If fast zooming is occurring, then short circuit tiles that are for a different zoom level than we're currently on.
  213 + if(self.map && self.map.getZoom() != ctx.zoom) {
  214 + console.log("Fetched tile for zoom level " + ctx.zoom + ". Map is at zoom level " + self._map.getZoom());
  215 + return;
  216 + }
  217 + self.checkVectorTileLayers(parseVT(vt), ctx);
  218 + tileLoaded(self, ctx);
  219 + }
  220 +
  221 + //either way, reduce the count of tilesToProcess tiles here
  222 + self.reduceTilesToProcessCount();
  223 + };
  224 +
  225 + xhr.onerror = function() {
  226 + console.log("xhr error: " + xhr.status)
  227 + };
  228 +
  229 + xhr.open('GET', src, true); //async is true
  230 + var headers = self.options.xhrHeaders;
  231 + for (var header in headers) {
  232 + xhr.setRequestHeader(header, headers[header])
  233 + }
  234 + xhr.responseType = 'arraybuffer';
  235 + xhr.send();
  236 + },
  237 +
  238 + reduceTilesToProcessCount: function(){
  239 + this._tilesToProcess--;
  240 + if(!this._tilesToProcess){
  241 + //Trigger event letting us know that all PBFs have been loaded and processed (or 404'd).
  242 + if(this._eventHandlers["PBFLoad"]) this._eventHandlers["PBFLoad"]();
  243 + this._pbfLoaded();
  244 + }
  245 + },
  246 +
  247 + checkVectorTileLayers: function(vt, ctx, parsed) {
  248 + var self = this;
  249 +
  250 + //Check if there are specified visible layers
  251 + if(self.options.visibleLayers && self.options.visibleLayers.length > 0){
  252 + //only let thru the layers listed in the visibleLayers array
  253 + for(var i=0; i < self.options.visibleLayers.length; i++){
  254 + var layerName = self.options.visibleLayers[i];
  255 + if(vt.layers[layerName]){
  256 + //Proceed with parsing
  257 + self.prepareMVTLayers(vt.layers[layerName], layerName, ctx, parsed);
  258 + }
  259 + }
  260 + }else{
  261 + //Parse all vt.layers
  262 + for (var key in vt.layers) {
  263 + self.prepareMVTLayers(vt.layers[key], key, ctx, parsed);
  264 + }
  265 + }
  266 + },
  267 +
  268 + prepareMVTLayers: function(lyr ,key, ctx, parsed) {
  269 + var self = this;
  270 +
  271 + if (!self.layers[key]) {
  272 + //Create MVTLayer or MVTPointLayer for user
  273 + self.layers[key] = self.createMVTLayer(key, lyr.parsedFeatures[0].type || null);
  274 + }
  275 +
  276 + if (parsed) {
  277 + //We've already parsed it. Go get canvas and draw.
  278 + self.layers[key].getCanvas(ctx, lyr);
  279 + } else {
  280 + self.layers[key].parseVectorTileLayer(lyr, ctx);
  281 + }
  282 +
  283 + },
  284 +
  285 + createMVTLayer: function(key, type) {
  286 + var self = this;
  287 +
  288 + var getIDForLayerFeature;
  289 + if (typeof self.options.getIDForLayerFeature === 'function') {
  290 + getIDForLayerFeature = self.options.getIDForLayerFeature;
  291 + } else {
  292 + getIDForLayerFeature = Util.getIDForLayerFeature;
  293 + }
  294 +
  295 + var options = {
  296 + getIDForLayerFeature: getIDForLayerFeature,
  297 + filter: self.options.filter,
  298 + layerOrdering: self.options.layerOrdering,
  299 + style: self.style,
  300 + name: key,
  301 + asynch: true
  302 + };
  303 +
  304 + if (self.options.zIndex) {
  305 + options.zIndex = self.zIndex;
  306 + }
  307 +
  308 + //Take the layer and create a new MVTLayer or MVTPointLayer if one doesn't exist.
  309 + var layer = new MVTLayer(self, options).addTo(self.map);
  310 +
  311 + return layer;
  312 + },
  313 +
  314 + getLayers: function() {
  315 + return this.layers;
  316 + },
  317 +
  318 + hideLayer: function(id) {
  319 + if (this.layers[id]) {
  320 + this._map.removeLayer(this.layers[id]);
  321 + if(this.options.visibleLayers.indexOf("id") > -1){
  322 + this.visibleLayers.splice(this.options.visibleLayers.indexOf("id"), 1);
  323 + }
  324 + }
  325 + },
  326 +
  327 + showLayer: function(id) {
  328 + if (this.layers[id]) {
  329 + this._map.addLayer(this.layers[id]);
  330 + if(this.options.visibleLayers.indexOf("id") == -1){
  331 + this.visibleLayers.push(id);
  332 + }
  333 + }
  334 + //Make sure manager layer is always in front
  335 + this.bringToFront();
  336 + },
  337 +
  338 + removeChildLayers: function(map){
  339 + //Remove child layers of this group layer
  340 + for (var key in this.layers) {
  341 + var layer = this.layers[key];
  342 + map.removeLayer(layer);
  343 + }
  344 + },
  345 +
  346 + addChildLayers: function(map) {
  347 + var self = this;
  348 + if(self.options.visibleLayers.length > 0){
  349 + //only let thru the layers listed in the visibleLayers array
  350 + for(var i=0; i < self.options.visibleLayers.length; i++){
  351 + var layerName = self.options.visibleLayers[i];
  352 + var layer = this.layers[layerName];
  353 + if(layer){
  354 + //Proceed with parsing
  355 + map.addLayer(layer);
  356 + }
  357 + }
  358 + }else{
  359 + //Add all layers
  360 + for (var key in this.layers) {
  361 + var layer = this.layers[key];
  362 + // layer is set to visible and is not already on map
  363 + if (!layer._map) {
  364 + map.addLayer(layer);
  365 + }
  366 + }
  367 + }
  368 + },
  369 +
  370 + bind: function(eventType, callback) {
  371 + this._eventHandlers[eventType] = callback;
  372 + },
  373 +
  374 + _onClick: function(evt) {
  375 + //Here, pass the event on to the child MVTLayer and have it do the hit test and handle the result.
  376 + var self = this;
  377 + var onClick = self.options.onClick;
  378 + var clickableLayers = self.options.clickableLayers;
  379 + var layers = self.layers;
  380 +
  381 + evt.tileID = getTileURL(evt.latlng.lat, evt.latlng.lng, this.map.getZoom());
  382 +
  383 + // We must have an array of clickable layers, otherwise, we just pass
  384 + // the event to the public onClick callback in options.
  385 +
  386 + if(!clickableLayers){
  387 + clickableLayers = Object.keys(self.layers);
  388 + }
  389 +
  390 + if (clickableLayers && clickableLayers.length > 0) {
  391 + for (var i = 0, len = clickableLayers.length; i < len; i++) {
  392 + var key = clickableLayers[i];
  393 + var layer = layers[key];
  394 + if (layer) {
  395 + layer.handleClickEvent(evt, function(evt) {
  396 + if (typeof onClick === 'function') {
  397 + onClick(evt);
  398 + }
  399 + });
  400 + }
  401 + }
  402 + } else {
  403 + if (typeof onClick === 'function') {
  404 + onClick(evt);
  405 + }
  406 + }
  407 +
  408 + },
  409 +
  410 + setFilter: function(filterFunction, layerName) {
  411 + //take in a new filter function.
  412 + //Propagate to child layers.
  413 +
  414 + //Add filter to all child layers if no layer is specified.
  415 + for (var key in this.layers) {
  416 + var layer = this.layers[key];
  417 +
  418 + if (layerName){
  419 + if(key.toLowerCase() == layerName.toLowerCase()){
  420 + layer.options.filter = filterFunction; //Assign filter to child layer, only if name matches
  421 + //After filter is set, the old feature hashes are invalid. Clear them for next draw.
  422 + layer.clearLayerFeatureHash();
  423 + //layer.clearTileFeatureHash();
  424 + }
  425 + }
  426 + else{
  427 + layer.options.filter = filterFunction; //Assign filter to child layer
  428 + //After filter is set, the old feature hashes are invalid. Clear them for next draw.
  429 + layer.clearLayerFeatureHash();
  430 + //layer.clearTileFeatureHash();
  431 + }
  432 + }
  433 + },
  434 +
  435 + /**
  436 + * Take in a new style function and propogate to child layers.
  437 + * If you do not set a layer name, it resets the style for all of the layers.
  438 + * @param styleFunction
  439 + * @param layerName
  440 + */
  441 + setStyle: function(styleFn, layerName) {
  442 + for (var key in this.layers) {
  443 + var layer = this.layers[key];
  444 + if (layerName) {
  445 + if(key.toLowerCase() == layerName.toLowerCase()) {
  446 + layer.setStyle(styleFn);
  447 + }
  448 + } else {
  449 + layer.setStyle(styleFn);
  450 + }
  451 + }
  452 + },
  453 +
  454 + featureSelected: function(mvtFeature) {
  455 + if (this.options.mutexToggle) {
  456 + if (this._selectedFeature) {
  457 + this._selectedFeature.deselect();
  458 + }
  459 + this._selectedFeature = mvtFeature;
  460 + }
  461 + if (this.options.onSelect) {
  462 + this.options.onSelect(mvtFeature);
  463 + }
  464 + },
  465 +
  466 + featureDeselected: function(mvtFeature) {
  467 + if (this.options.mutexToggle && this._selectedFeature) {
  468 + this._selectedFeature = null;
  469 + }
  470 + if (this.options.onDeselect) {
  471 + this.options.onDeselect(mvtFeature);
  472 + }
  473 + },
  474 +
  475 + _pbfLoaded: function() {
  476 + //Fires when all tiles from this layer have been loaded and drawn (or 404'd).
  477 +
  478 + //Make sure manager layer is always in front
  479 + this.bringToFront();
  480 +
  481 + //See if there is an event to execute
  482 + var self = this;
  483 + var onTilesLoaded = self.options.onTilesLoaded;
  484 +
  485 + if (onTilesLoaded && typeof onTilesLoaded === 'function' && this._triggerOnTilesLoadedEvent === true) {
  486 + onTilesLoaded(this);
  487 + }
  488 + self._triggerOnTilesLoadedEvent = true; //reset - if redraw() is called with the optinal 'false' parameter to temporarily disable the onTilesLoaded event from firing. This resets it back to true after a single time of firing as 'false'.
  489 + }
  490 +
  491 +});
  492 +
  493 +
  494 +if (typeof(Number.prototype.toRad) === "undefined") {
  495 + Number.prototype.toRad = function() {
  496 + return this * Math.PI / 180;
  497 + }
  498 +}
  499 +
  500 +function getTileURL(lat, lon, zoom) {
  501 + var xtile = parseInt(Math.floor( (lon + 180) / 360 * (1<<zoom) ));
  502 + var ytile = parseInt(Math.floor( (1 - Math.log(Math.tan(lat.toRad()) + 1 / Math.cos(lat.toRad())) / Math.PI) / 2 * (1<<zoom) ));
  503 + return "" + zoom + ":" + xtile + ":" + ytile;
  504 +}
  505 +
  506 +function tileLoaded(pbfSource, ctx) {
  507 + pbfSource.loadedTiles[ctx.id] = ctx;
  508 +}
  509 +
  510 +function parseVT(vt){
  511 + for (var key in vt.layers) {
  512 + var lyr = vt.layers[key];
  513 + parseVTFeatures(lyr);
  514 + }
  515 + return vt;
  516 +}
  517 +
  518 +function parseVTFeatures(vtl){
  519 + vtl.parsedFeatures = [];
  520 + var features = vtl._features;
  521 + for (var i = 0, len = features.length; i < len; i++) {
  522 + var vtf = vtl.feature(i);
  523 + vtf.coordinates = vtf.loadGeometry();
  524 + vtl.parsedFeatures.push(vtf);
  525 + }
  526 + return vtl;
  527 +}
\ No newline at end of file
... ...
  1 +var Util = {};
  2 +
  3 +Util.getContextID = function(ctx) {
  4 + return [ctx.zoom, ctx.tile.x, ctx.tile.y].join(":");
  5 +};
  6 +
  7 +/**
  8 + * Default function that gets the id for a layer feature.
  9 + * Sometimes this needs to be done in a different way and
  10 + * can be specified by the user in the options for L.TileLayer.MVTSource.
  11 + *
  12 + * @param feature
  13 + * @returns {ctx.id|*|id|string|jsts.index.chain.MonotoneChain.id|number}
  14 + */
  15 +Util.getIDForLayerFeature = function(feature) {
  16 + return feature.properties.id;
  17 +};
  18 +
  19 +Util.getJSON = function(url, callback) {
  20 + var xmlhttp = typeof XMLHttpRequest !== 'undefined' ? new XMLHttpRequest() : new ActiveXObject('Microsoft.XMLHTTP');
  21 + xmlhttp.onreadystatechange = function() {
  22 + var status = xmlhttp.status;
  23 + if (xmlhttp.readyState === 4 && status >= 200 && status < 300) {
  24 + var json = JSON.parse(xmlhttp.responseText);
  25 + callback(null, json);
  26 + } else {
  27 + callback( { error: true, status: status } );
  28 + }
  29 + };
  30 + xmlhttp.open("GET", url, true);
  31 + xmlhttp.send();
  32 +};
\ No newline at end of file
... ...
  1 +
  2 +function StaticLabel(mvtFeature, ctx, latLng, style) {
  3 + var self = this;
  4 + this.mvtFeature = mvtFeature;
  5 + this.map = mvtFeature.map;
  6 + this.zoom = ctx.zoom;
  7 + this.latLng = latLng;
  8 + this.selected = false;
  9 +
  10 + if (mvtFeature.linkedFeature) {
  11 + var linkedFeature = mvtFeature.linkedFeature();
  12 + if (linkedFeature && linkedFeature.selected) {
  13 + self.selected = true;
  14 + }
  15 + }
  16 +
  17 + init(self, mvtFeature, ctx, latLng, style)
  18 +}
  19 +
  20 +function init(self, mvtFeature, ctx, latLng, style) {
  21 + var ajaxData = mvtFeature.ajaxData;
  22 + var sty = self.style = style.staticLabel(mvtFeature, ajaxData);
  23 + var icon = self.icon = L.divIcon({
  24 + className: sty.cssClass || 'label-icon-text',
  25 + html: sty.html,
  26 + iconSize: sty.iconSize || [50,50]
  27 + });
  28 +
  29 + self.marker = L.marker(latLng, {icon: icon}).addTo(self.map);
  30 +
  31 + if (self.selected) {
  32 + self.marker._icon.classList.add(self.style.cssSelectedClass || 'label-icon-text-selected');
  33 + }
  34 +
  35 + self.marker.on('click', function(e) {
  36 + self.toggle();
  37 + });
  38 +
  39 + self.map.on('zoomend', function(e) {
  40 + var newZoom = e.target.getZoom();
  41 + if (self.zoom !== newZoom) {
  42 + self.map.removeLayer(self.marker);
  43 + }
  44 + });
  45 +}
  46 +
  47 +
  48 +StaticLabel.prototype.toggle = function() {
  49 + if (this.selected) {
  50 + this.deselect();
  51 + } else {
  52 + this.select();
  53 + }
  54 +};
  55 +
  56 +StaticLabel.prototype.select = function() {
  57 + this.selected = true;
  58 + this.marker._icon.classList.add(this.style.cssSelectedClass || 'label-icon-text-selected');
  59 + var linkedFeature = this.mvtFeature.linkedFeature();
  60 + if (!linkedFeature.selected) linkedFeature.select();
  61 +};
  62 +
  63 +StaticLabel.prototype.deselect = function() {
  64 + this.selected = false;
  65 + this.marker._icon.classList.remove(this.style.cssSelectedClass || 'label-icon-text-selected');
  66 + var linkedFeature = this.mvtFeature.linkedFeature();
  67 + if (linkedFeature.selected) linkedFeature.deselect();
  68 +};
  69 +
  70 +StaticLabel.prototype.remove = function() {
  71 + if (!this.map || !this.marker) return;
  72 + this.map.removeLayer(this.marker);
  73 +};
\ No newline at end of file
... ...
  1 +(function (root, factory){
  2 + if (typeof define === 'function' && define.amd){ // AMD
  3 + define(factory);
  4 + } else if (typeof module !== 'undefined' && module.exports) { // Node.js
  5 + module.exports = factory();
  6 + } else { // Browser
  7 + root.VectorTileFeature = factory();
  8 + }
  9 +})(this, function () {
  10 +
  11 + function VectorTileFeature(pbf, end, extent, keys, values) {
  12 + // Public
  13 + this.properties = {};
  14 + this.extent = extent;
  15 + this.type = 0;
  16 +
  17 + // Private
  18 + this._pbf = pbf;
  19 + this._geometry = -1;
  20 + this._keys = keys;
  21 + this._values = values;
  22 +
  23 + pbf.readFields(readFeature, this, end);
  24 + }
  25 +
  26 + function readFeature(tag, feature, pbf) {
  27 + if (tag == 1) feature.id = pbf.readVarint();
  28 + else if (tag == 2) readTag(pbf, feature);
  29 + else if (tag == 3) feature.type = pbf.readVarint();
  30 + else if (tag == 4) feature._geometry = pbf.pos;
  31 + }
  32 +
  33 + function readTag(pbf, feature) {
  34 + var end = pbf.readVarint() + pbf.pos;
  35 +
  36 + while (pbf.pos < end) {
  37 + var key = feature._keys[pbf.readVarint()],
  38 + value = feature._values[pbf.readVarint()];
  39 + feature.properties[key] = value;
  40 + }
  41 + }
  42 +
  43 + VectorTileFeature.types = ['Unknown', 'Point', 'LineString', 'Polygon'];
  44 +
  45 + VectorTileFeature.prototype.loadGeometry = function() {
  46 + var pbf = this._pbf;
  47 + pbf.pos = this._geometry;
  48 +
  49 + var end = pbf.readVarint() + pbf.pos,
  50 + cmd = 1,
  51 + length = 0,
  52 + x = 0,
  53 + y = 0,
  54 + lines = [],
  55 + line;
  56 +
  57 + while (pbf.pos < end) {
  58 + if (!length) {
  59 + var cmdLen = pbf.readVarint();
  60 + cmd = cmdLen & 0x7;
  61 + length = cmdLen >> 3;
  62 + }
  63 +
  64 + length--;
  65 +
  66 + if (cmd === 1 || cmd === 2) {
  67 + x += pbf.readSVarint();
  68 + y += pbf.readSVarint();
  69 +
  70 + if (cmd === 1) { // moveTo
  71 + if (line) lines.push(line);
  72 + line = [];
  73 + }
  74 +
  75 + line.push(new Point(x, y));
  76 +
  77 + } else if (cmd === 7) {
  78 +
  79 + // Workaround for https://github.com/mapbox/mapnik-vector-tile/issues/90
  80 + if (line) {
  81 + line.push(line[0].clone()); // closePolygon
  82 + }
  83 +
  84 + } else {
  85 + throw new Error('unknown command ' + cmd);
  86 + }
  87 + }
  88 +
  89 + if (line) lines.push(line);
  90 +
  91 + return lines;
  92 + };
  93 +
  94 + VectorTileFeature.prototype.bbox = function() {
  95 + var pbf = this._pbf;
  96 + pbf.pos = this._geometry;
  97 +
  98 + var end = pbf.readVarint() + pbf.pos,
  99 + cmd = 1,
  100 + length = 0,
  101 + x = 0,
  102 + y = 0,
  103 + x1 = Infinity,
  104 + x2 = -Infinity,
  105 + y1 = Infinity,
  106 + y2 = -Infinity;
  107 +
  108 + while (pbf.pos < end) {
  109 + if (!length) {
  110 + var cmdLen = pbf.readVarint();
  111 + cmd = cmdLen & 0x7;
  112 + length = cmdLen >> 3;
  113 + }
  114 +
  115 + length--;
  116 +
  117 + if (cmd === 1 || cmd === 2) {
  118 + x += pbf.readSVarint();
  119 + y += pbf.readSVarint();
  120 + if (x < x1) x1 = x;
  121 + if (x > x2) x2 = x;
  122 + if (y < y1) y1 = y;
  123 + if (y > y2) y2 = y;
  124 +
  125 + } else if (cmd !== 7) {
  126 + throw new Error('unknown command ' + cmd);
  127 + }
  128 + }
  129 +
  130 + return [x1, y1, x2, y2];
  131 + };
  132 +
  133 + VectorTileFeature.prototype.toGeoJSON = function(x, y, z) {
  134 + var size = this.extent * Math.pow(2, z),
  135 + x0 = this.extent * x,
  136 + y0 = this.extent * y,
  137 + coords = this.loadGeometry(),
  138 + type = VectorTileFeature.types[this.type],
  139 + i, j;
  140 +
  141 + function project(line) {
  142 + for (var j = 0; j < line.length; j++) {
  143 + var p = line[j], y2 = 180 - (p.y + y0) * 360 / size;
  144 + line[j] = [
  145 + (p.x + x0) * 360 / size - 180,
  146 + 360 / Math.PI * Math.atan(Math.exp(y2 * Math.PI / 180)) - 90
  147 + ];
  148 + }
  149 + }
  150 +
  151 + switch (this.type) {
  152 + case 1:
  153 + var points = [];
  154 + for (i = 0; i < coords.length; i++) {
  155 + points[i] = coords[i][0];
  156 + }
  157 + coords = points;
  158 + project(coords);
  159 + break;
  160 +
  161 + case 2:
  162 + for (i = 0; i < coords.length; i++) {
  163 + project(coords[i]);
  164 + }
  165 + break;
  166 +
  167 + case 3:
  168 + coords = classifyRings(coords);
  169 + for (i = 0; i < coords.length; i++) {
  170 + for (j = 0; j < coords[i].length; j++) {
  171 + project(coords[i][j]);
  172 + }
  173 + }
  174 + break;
  175 + }
  176 +
  177 + if (coords.length === 1) {
  178 + coords = coords[0];
  179 + } else {
  180 + type = 'Multi' + type;
  181 + }
  182 +
  183 + var result = {
  184 + type: "Feature",
  185 + geometry: {
  186 + type: type,
  187 + coordinates: coords
  188 + },
  189 + properties: this.properties
  190 + };
  191 +
  192 + if ('id' in this) {
  193 + result.id = this.id;
  194 + }
  195 +
  196 + return result;
  197 + };
  198 +
  199 + // classifies an array of rings into polygons with outer rings and holes
  200 +
  201 + function classifyRings(rings) {
  202 + var len = rings.length;
  203 +
  204 + if (len <= 1) return [rings];
  205 +
  206 + var polygons = [],
  207 + polygon,
  208 + ccw;
  209 +
  210 + for (var i = 0; i < len; i++) {
  211 + var area = signedArea(rings[i]);
  212 + if (area === 0) continue;
  213 +
  214 + if (ccw === undefined) ccw = area < 0;
  215 +
  216 + if (ccw === area < 0) {
  217 + if (polygon) polygons.push(polygon);
  218 + polygon = [rings[i]];
  219 +
  220 + } else {
  221 + polygon.push(rings[i]);
  222 + }
  223 + }
  224 + if (polygon) polygons.push(polygon);
  225 +
  226 + return polygons;
  227 + }
  228 +
  229 + function signedArea(ring) {
  230 + var sum = 0;
  231 + for (var i = 0, len = ring.length, j = len - 1, p1, p2; i < len; j = i++) {
  232 + p1 = ring[i];
  233 + p2 = ring[j];
  234 + sum += (p2.x - p1.x) * (p1.y + p2.y);
  235 + }
  236 + return sum;
  237 + }
  238 +
  239 + return VectorTileFeature;
  240 +
  241 +});
\ No newline at end of file
... ...
  1 +(function (root, factory){
  2 + if (typeof define === 'function' && define.amd){ // AMD
  3 + define(factory);
  4 + } else if (typeof module !== 'undefined' && module.exports) { // Node.js
  5 + module.exports = factory();
  6 + } else { // Browser
  7 + root.VectorTileLayer = factory();
  8 + }
  9 +})(this, function () {
  10 + function VectorTileLayer(pbf, end) {
  11 + // Public
  12 + this.version = 1;
  13 + this.name = null;
  14 + this.extent = 4096;
  15 + this.length = 0;
  16 +
  17 + // Private
  18 + this._pbf = pbf;
  19 + this._keys = [];
  20 + this._values = [];
  21 + this._features = [];
  22 +
  23 + pbf.readFields(readLayer, this, end);
  24 +
  25 + this.length = this._features.length;
  26 + }
  27 +
  28 + function readLayer(tag, layer, pbf) {
  29 + if (tag === 15) layer.version = pbf.readVarint();
  30 + else if (tag === 1) layer.name = pbf.readString();
  31 + else if (tag === 5) layer.extent = pbf.readVarint();
  32 + else if (tag === 2) layer._features.push(pbf.pos);
  33 + else if (tag === 3) layer._keys.push(pbf.readString());
  34 + else if (tag === 4) layer._values.push(readValueMessage(pbf));
  35 + }
  36 +
  37 + function readValueMessage(pbf) {
  38 + var value = null,
  39 + end = pbf.readVarint() + pbf.pos;
  40 +
  41 + while (pbf.pos < end) {
  42 + var tag = pbf.readVarint() >> 3;
  43 +
  44 + value = tag === 1 ? pbf.readString() :
  45 + tag === 2 ? pbf.readFloat() :
  46 + tag === 3 ? pbf.readDouble() :
  47 + tag === 4 ? pbf.readVarint64() :
  48 + tag === 5 ? pbf.readVarint() :
  49 + tag === 6 ? pbf.readSVarint() :
  50 + tag === 7 ? pbf.readBoolean() : null;
  51 + }
  52 +
  53 + return value;
  54 + }
  55 +
  56 + // return feature `i` from this layer as a `VectorTileFeature`
  57 + VectorTileLayer.prototype.feature = function(i) {
  58 + if (i < 0 || i >= this._features.length) throw new Error('feature index out of bounds');
  59 +
  60 + this._pbf.pos = this._features[i];
  61 +
  62 + var end = this._pbf.readVarint() + this._pbf.pos;
  63 + return new VectorTileFeature(this._pbf, end, this.extent, this._keys, this._values);
  64 + };
  65 +
  66 + return VectorTileLayer;
  67 +
  68 +});
\ No newline at end of file
... ...
  1 + (function (root, factory){
  2 + if (typeof define === 'function' && define.amd){ // AMD
  3 + define(factory);
  4 + } else if (typeof module !== 'undefined' && module.exports) { // Node.js
  5 + module.exports = factory();
  6 + } else { // Browser
  7 + root.decode = factory();
  8 + }
  9 +})(this, function () {
  10 +
  11 + var keys, values, lengths, dim, e;
  12 +
  13 + var geometryTypes = ['Point', 'MultiPoint', 'LineString', 'MultiLineString',
  14 + 'Polygon', 'MultiPolygon', 'GeometryCollection'];
  15 +
  16 + function decode(pbf) {
  17 + dim = 2;
  18 + e = Math.pow(10, 6);
  19 + lengths = null;
  20 +
  21 + keys = [];
  22 + values = [];
  23 + var obj = pbf.readFields(readDataField, {});
  24 + keys = null;
  25 +
  26 + return obj;
  27 + }
  28 +
  29 + function readDataField(tag, obj, pbf) {
  30 + if (tag === 1) keys.push(pbf.readString());
  31 + else if (tag === 2) dim = pbf.readVarint();
  32 + else if (tag === 3) e = Math.pow(10, pbf.readVarint());
  33 +
  34 + else if (tag === 4) readFeatureCollection(pbf, obj);
  35 + else if (tag === 5) readFeature(pbf, obj);
  36 + else if (tag === 6) readGeometry(pbf, obj);
  37 + }
  38 +
  39 + function readFeatureCollection(pbf, obj) {
  40 + obj.type = 'FeatureCollection';
  41 + obj.features = [];
  42 + return pbf.readMessage(readFeatureCollectionField, obj);
  43 + }
  44 +
  45 + function readFeature(pbf, feature) {
  46 + feature.type = 'Feature';
  47 + return pbf.readMessage(readFeatureField, feature);
  48 + }
  49 +
  50 + function readGeometry(pbf, geom) {
  51 + return pbf.readMessage(readGeometryField, geom);
  52 + }
  53 +
  54 + function readFeatureCollectionField(tag, obj, pbf) {
  55 + if (tag === 1) obj.features.push(readFeature(pbf, {}));
  56 +
  57 + else if (tag === 13) values.push(readValue(pbf));
  58 + else if (tag === 15) readProps(pbf, obj);
  59 + }
  60 +
  61 + function readFeatureField(tag, feature, pbf) {
  62 + if (tag === 1) feature.geometry = readGeometry(pbf, {});
  63 +
  64 + else if (tag === 11) feature.id = pbf.readString();
  65 + else if (tag === 12) feature.id = pbf.readSVarint();
  66 +
  67 + else if (tag === 13) values.push(readValue(pbf));
  68 + else if (tag === 14) feature.properties = readProps(pbf, {});
  69 + else if (tag === 15) readProps(pbf, feature);
  70 + }
  71 +
  72 + function readGeometryField(tag, geom, pbf) {
  73 + if (tag === 1) geom.type = geometryTypes[pbf.readVarint()];
  74 +
  75 + else if (tag === 2) lengths = pbf.readPackedVarint();
  76 + else if (tag === 3) readCoords(geom, pbf, geom.type);
  77 + else if (tag === 4) {
  78 + geom.geometries = geom.geometries || [];
  79 + geom.geometries.push(readGeometry(pbf, {}));
  80 + }
  81 + else if (tag === 13) values.push(readValue(pbf));
  82 + else if (tag === 15) readProps(pbf, geom);
  83 + }
  84 +
  85 + function readCoords(geom, pbf, type) {
  86 + if (type === 'Point') geom.coordinates = readPoint(pbf);
  87 + else if (type === 'MultiPoint') geom.coordinates = readLine(pbf, true);
  88 + else if (type === 'LineString') geom.coordinates = readLine(pbf);
  89 + else if (type === 'MultiLineString') geom.coordinates = readMultiLine(pbf);
  90 + else if (type === 'Polygon') geom.coordinates = readMultiLine(pbf, true);
  91 + else if (type === 'MultiPolygon') geom.coordinates = readMultiPolygon(pbf);
  92 + }
  93 +
  94 + function readValue(pbf) {
  95 + var end = pbf.readVarint() + pbf.pos,
  96 + value = null;
  97 +
  98 + while (pbf.pos < end) {
  99 + var val = pbf.readVarint(),
  100 + tag = val >> 3;
  101 +
  102 + if (tag === 1) value = pbf.readString();
  103 + else if (tag === 2) value = pbf.readDouble();
  104 + else if (tag === 3) value = pbf.readVarint();
  105 + else if (tag === 4) value = -pbf.readVarint();
  106 + else if (tag === 5) value = pbf.readBoolean();
  107 + else if (tag === 6) value = JSON.parse(pbf.readString());
  108 + }
  109 + return value;
  110 + }
  111 +
  112 + function readProps(pbf, props) {
  113 + var end = pbf.readVarint() + pbf.pos;
  114 + while (pbf.pos < end) props[keys[pbf.readVarint()]] = values[pbf.readVarint()];
  115 + values = [];
  116 + return props;
  117 + }
  118 +
  119 + function readPoint(pbf) {
  120 + var end = pbf.readVarint() + pbf.pos,
  121 + coords = [];
  122 + while (pbf.pos < end) coords.push(pbf.readSVarint() / e);
  123 + return coords;
  124 + }
  125 +
  126 + function readLinePart(pbf, end, len, closed) {
  127 + var i = 0,
  128 + coords = [],
  129 + p, d;
  130 +
  131 + var prevP = [];
  132 + for (d = 0; d < dim; d++) prevP[d] = 0;
  133 +
  134 + while (len ? i < len : pbf.pos < end) {
  135 + p = [];
  136 + for (d = 0; d < dim; d++) {
  137 + prevP[d] += pbf.readSVarint();
  138 + p[d] = prevP[d] / e;
  139 + }
  140 + coords.push(p);
  141 + i++;
  142 + }
  143 + if (closed) coords.push(coords[0]);
  144 +
  145 + return coords;
  146 + }
  147 +
  148 + function readLine(pbf) {
  149 + return readLinePart(pbf, pbf.readVarint() + pbf.pos);
  150 + }
  151 +
  152 + function readMultiLine(pbf, closed) {
  153 + var end = pbf.readVarint() + pbf.pos;
  154 + if (!lengths) return [readLinePart(pbf, end, null, closed)];
  155 +
  156 + var coords = [];
  157 + for (var i = 0; i < lengths.length; i++) coords.push(readLinePart(pbf, end, lengths[i], closed));
  158 + lengths = null;
  159 + return coords;
  160 + }
  161 +
  162 + function readMultiPolygon(pbf) {
  163 + var end = pbf.readVarint() + pbf.pos;
  164 + if (!lengths) return [[readLinePart(pbf, end, null, true)]];
  165 +
  166 + var coords = [];
  167 + var j = 1;
  168 + for (var i = 0; i < lengths[0]; i++) {
  169 + var rings = [];
  170 + for (var k = 0; k < lengths[j]; k++) rings.push(readLinePart(pbf, end, lengths[j + 1 + k], true));
  171 + j += lengths[j] + 1;
  172 + coords.push(rings);
  173 + }
  174 + lengths = null;
  175 + return coords;
  176 + }
  177 +
  178 + return decode;
  179 +});
\ No newline at end of file
... ...
  1 +(function (root, factory){
  2 + if (typeof define === 'function' && define.amd){ // AMD
  3 + define(factory);
  4 + } else if (typeof module !== 'undefined' && module.exports) { // Node.js
  5 + module.exports = factory();
  6 + } else { // Browser
  7 + root.encode = factory();
  8 + }
  9 +})(this, function () {
  10 +
  11 + var keys, keysNum, dim, e,
  12 + maxPrecision = 1e6;
  13 +
  14 + var geometryTypes = {
  15 + 'Point': 0,
  16 + 'MultiPoint': 1,
  17 + 'LineString': 2,
  18 + 'MultiLineString': 3,
  19 + 'Polygon': 4,
  20 + 'MultiPolygon': 5,
  21 + 'GeometryCollection': 6
  22 + };
  23 +
  24 + function encode(obj, pbf) {
  25 + keys = {};
  26 + keysNum = 0;
  27 + dim = 0;
  28 + e = 1;
  29 +
  30 + analyze(obj);
  31 +
  32 + e = Math.min(e, maxPrecision);
  33 + var precision = Math.ceil(Math.log(e) / Math.LN10);
  34 +
  35 + var keysArr = Object.keys(keys);
  36 +
  37 + for (var i = 0; i < keysArr.length; i++) pbf.writeStringField(1, keysArr[i]);
  38 + if (dim !== 2) pbf.writeVarintField(2, dim);
  39 + if (precision !== 6) pbf.writeVarintField(3, precision);
  40 +
  41 + if (obj.type === 'FeatureCollection') pbf.writeMessage(4, writeFeatureCollection, obj);
  42 + else if (obj.type === 'Feature') pbf.writeMessage(5, writeFeature, obj);
  43 + else pbf.writeMessage(6, writeGeometry, obj);
  44 +
  45 + keys = null;
  46 +
  47 + return pbf.finish();
  48 + }
  49 +
  50 + function analyze(obj) {
  51 + var i, key;
  52 +
  53 + if (obj.type === 'FeatureCollection') {
  54 + for (i = 0; i < obj.features.length; i++) analyze(obj.features[i]);
  55 +
  56 + } else if (obj.type === 'Feature') {
  57 + analyze(obj.geometry);
  58 + for (key in obj.properties) saveKey(key);
  59 +
  60 + } else if (obj.type === 'Point') analyzePoint(obj.coordinates);
  61 + else if (obj.type === 'MultiPoint') analyzePoints(obj.coordinates);
  62 + else if (obj.type === 'GeometryCollection') {
  63 + for (i = 0; i < obj.geometries.length; i++) analyze(obj.geometries[i]);
  64 + }
  65 + else if (obj.type === 'LineString') analyzePoints(obj.coordinates);
  66 + else if (obj.type === 'Polygon' || obj.type === 'MultiLineString') analyzeMultiLine(obj.coordinates);
  67 + else if (obj.type === 'MultiPolygon') {
  68 + for (i = 0; i < obj.coordinates.length; i++) analyzeMultiLine(obj.coordinates[i]);
  69 + }
  70 +
  71 + for (key in obj) {
  72 + if (!isSpecialKey(key, obj.type)) saveKey(key);
  73 + }
  74 + }
  75 +
  76 + function analyzeMultiLine(coords) {
  77 + for (var i = 0; i < coords.length; i++) analyzePoints(coords[i]);
  78 + }
  79 +
  80 + function analyzePoints(coords) {
  81 + for (var i = 0; i < coords.length; i++) analyzePoint(coords[i]);
  82 + }
  83 +
  84 + function analyzePoint(point) {
  85 + dim = Math.max(dim, point.length);
  86 +
  87 + // find max precision
  88 + for (var i = 0; i < point.length; i++) {
  89 + while (Math.round(point[i] * e) / e !== point[i] && e < maxPrecision) e *= 10;
  90 + }
  91 + }
  92 +
  93 + function saveKey(key) {
  94 + if (keys[key] === undefined) keys[key] = keysNum++;
  95 + }
  96 +
  97 + function writeFeatureCollection(obj, pbf) {
  98 + for (var i = 0; i < obj.features.length; i++) {
  99 + pbf.writeMessage(1, writeFeature, obj.features[i]);
  100 + }
  101 + writeProps(obj, pbf, true);
  102 + }
  103 +
  104 + function writeFeature(feature, pbf) {
  105 + pbf.writeMessage(1, writeGeometry, feature.geometry);
  106 +
  107 + if (feature.id !== undefined) {
  108 + if (typeof feature.id === 'number' && feature.id % 1 === 0) pbf.writeSVarintField(12, feature.id);
  109 + else pbf.writeStringField(11, feature.id);
  110 + }
  111 +
  112 + if (feature.properties) writeProps(feature.properties, pbf);
  113 + writeProps(feature, pbf, true);
  114 + }
  115 +
  116 + function writeGeometry(geom, pbf) {
  117 + pbf.writeVarintField(1, geometryTypes[geom.type]);
  118 +
  119 + var coords = geom.coordinates;
  120 +
  121 + if (geom.type === 'Point') writePoint(coords, pbf);
  122 + else if (geom.type === 'MultiPoint') writeLine(coords, pbf, true);
  123 + else if (geom.type === 'LineString') writeLine(coords, pbf);
  124 + else if (geom.type === 'MultiLineString') writeMultiLine(coords, pbf);
  125 + else if (geom.type === 'Polygon') writeMultiLine(coords, pbf, true);
  126 + else if (geom.type === 'MultiPolygon') writeMultiPolygon(coords, pbf);
  127 + else if (geom.type === 'GeometryCollection') {
  128 + for (var i = 0; i < geom.geometries.length; i++) pbf.writeMessage(4, writeGeometry, geom.geometries[i]);
  129 + }
  130 +
  131 + writeProps(geom, pbf, true);
  132 + }
  133 +
  134 + function writeProps(props, pbf, isCustom) {
  135 + var indexes = [],
  136 + valueIndex = 0;
  137 +
  138 + for (var key in props) {
  139 + if (isCustom && isSpecialKey(key, props.type)) {
  140 + continue;
  141 + }
  142 + pbf.writeMessage(13, writeValue, props[key]);
  143 + indexes.push(keys[key]);
  144 + indexes.push(valueIndex++);
  145 + }
  146 + pbf.writePackedVarint(isCustom ? 15 : 14, indexes);
  147 + }
  148 +
  149 + function writeValue(value, pbf) {
  150 + var type = typeof value;
  151 +
  152 + if (type === 'string') pbf.writeStringField(1, value);
  153 + else if (type === 'boolean') pbf.writeBooleanField(5, value);
  154 + else if (type === 'object') pbf.writeStringField(6, JSON.stringify(value));
  155 + else if (type === 'number') {
  156 + if (value % 1 !== 0) pbf.writeDoubleField(2, value);
  157 + else if (value >= 0) pbf.writeVarintField(3, value);
  158 + else pbf.writeVarintField(4, -value);
  159 + }
  160 + }
  161 +
  162 + function writePoint(point, pbf) {
  163 + var coords = [];
  164 + for (var i = 0; i < dim; i++) coords.push(Math.round(point[i] * e));
  165 + pbf.writePackedSVarint(3, coords);
  166 + }
  167 +
  168 + function writeLine(line, pbf) {
  169 + var coords = [];
  170 + populateLine(coords, line);
  171 + pbf.writePackedSVarint(3, coords);
  172 + }
  173 +
  174 + function writeMultiLine(lines, pbf, closed) {
  175 + var len = lines.length,
  176 + i;
  177 + if (len !== 1) {
  178 + var lengths = [];
  179 + for (i = 0; i < len; i++) lengths.push(lines[i].length - (closed ? 1 : 0));
  180 + pbf.writePackedVarint(2, lengths);
  181 + // TODO faster with custom writeMessage?
  182 + }
  183 + var coords = [];
  184 + for (i = 0; i < len; i++) populateLine(coords, lines[i], closed);
  185 + pbf.writePackedSVarint(3, coords);
  186 + }
  187 +
  188 + function writeMultiPolygon(polygons, pbf) {
  189 + var len = polygons.length,
  190 + i, j;
  191 + if (len !== 1 || polygons[0].length !== 1) {
  192 + var lengths = [len];
  193 + for (i = 0; i < len; i++) {
  194 + lengths.push(polygons[i].length);
  195 + for (j = 0; j < polygons[i].length; j++) lengths.push(polygons[i][j].length - 1);
  196 + }
  197 + pbf.writePackedVarint(2, lengths);
  198 + }
  199 +
  200 + var coords = [];
  201 + for (i = 0; i < len; i++) {
  202 + for (j = 0; j < polygons[i].length; j++) populateLine(coords, polygons[i][j], true);
  203 + }
  204 + pbf.writePackedSVarint(3, coords);
  205 + }
  206 +
  207 + function populateLine(coords, line, closed) {
  208 + var i, j,
  209 + len = line.length - (closed ? 1 : 0),
  210 + sum = new Array(dim);
  211 + for (j = 0; j < dim; j++) sum[j] = 0;
  212 + for (i = 0; i < len; i++) {
  213 + for (j = 0; j < dim; j++) {
  214 + var n = Math.round(line[i][j] * e) - sum[j];
  215 + coords.push(n);
  216 + sum[j] += n;
  217 + }
  218 + }
  219 + }
  220 +
  221 + function isSpecialKey(key, type) {
  222 + if (key === 'type') return true;
  223 + else if (type === 'FeatureCollection') {
  224 + if (key === 'features') return true;
  225 + } else if (type === 'Feature') {
  226 + if (key === 'id' || key === 'properties' || key === 'geometry') return true;
  227 + } else if (type === 'GeometryCollection') {
  228 + if (key === 'geometries') return true;
  229 + } else if (key === 'coordinates') return true;
  230 + return false;
  231 + }
  232 +
  233 + return encode;
  234 +
  235 +});
\ No newline at end of file
... ...
  1 +(function (root, factory){
  2 + if (typeof define === 'function' && define.amd){ // AMD
  3 + define(factory);
  4 + } else if (typeof module !== 'undefined' && module.exports) { // Node.js
  5 + module.exports = factory();
  6 + } else { // Browser
  7 + root.geojsonvt = factory();
  8 + }
  9 +})(this, function () {
  10 +
  11 + ////////
  12 + ///simplify.js
  13 + ////////
  14 +
  15 + // calculate simplification data using optimized Douglas-Peucker algorithm
  16 + function simplify(points, tolerance) {
  17 +
  18 + var sqTolerance = tolerance * tolerance,
  19 + len = points.length,
  20 + first = 0,
  21 + last = len - 1,
  22 + stack = [],
  23 + i, maxSqDist, sqDist, index;
  24 +
  25 + // always retain the endpoints (1 is the max value)
  26 + points[first][2] = 1;
  27 + points[last][2] = 1;
  28 +
  29 + // avoid recursion by using a stack
  30 + while (last) {
  31 +
  32 + maxSqDist = 0;
  33 +
  34 + for (i = first + 1; i < last; i++) {
  35 + sqDist = getSqSegDist(points[i], points[first], points[last]);
  36 +
  37 + if (sqDist > maxSqDist) {
  38 + index = i;
  39 + maxSqDist = sqDist;
  40 + }
  41 + }
  42 +
  43 + if (maxSqDist > sqTolerance) {
  44 + points[index][2] = maxSqDist; // save the point importance in squared pixels as a z coordinate
  45 + stack.push(first);
  46 + stack.push(index);
  47 + first = index;
  48 +
  49 + } else {
  50 + last = stack.pop();
  51 + first = stack.pop();
  52 + }
  53 + }
  54 + }
  55 +
  56 + // square distance from a point to a segment
  57 + function getSqSegDist(p, a, b) {
  58 +
  59 + var x = a[0], y = a[1],
  60 + bx = b[0], by = b[1],
  61 + px = p[0], py = p[1],
  62 + dx = bx - x,
  63 + dy = by - y;
  64 +
  65 + if (dx !== 0 || dy !== 0) {
  66 +
  67 + var t = ((px - x) * dx + (py - y) * dy) / (dx * dx + dy * dy);
  68 +
  69 + if (t > 1) {
  70 + x = bx;
  71 + y = by;
  72 +
  73 + } else if (t > 0) {
  74 + x += dx * t;
  75 + y += dy * t;
  76 + }
  77 + }
  78 +
  79 + dx = px - x;
  80 + dy = py - y;
  81 +
  82 + return dx * dx + dy * dy;
  83 + }
  84 +
  85 + ////////
  86 + ///Feature.js
  87 + ////////
  88 +
  89 + //创建Feature
  90 + function createFeature(tags, type, geom, id) {
  91 + var feature = {
  92 + id: id || null,
  93 + type: type,
  94 + geometry: geom,
  95 + tags: tags || null,
  96 + min: [Infinity, Infinity], // initial bbox values
  97 + max: [-Infinity, -Infinity]
  98 + };
  99 + calcBBox(feature);
  100 + return feature;
  101 + }
  102 +
  103 + // calculate the feature bounding box for faster clipping later
  104 + function calcBBox(feature) {
  105 + var geometry = feature.geometry,
  106 + min = feature.min,
  107 + max = feature.max;
  108 +
  109 + if (feature.type === 1) {
  110 + calcRingBBox(min, max, geometry);
  111 + } else {
  112 + for (var i = 0; i < geometry.length; i++) {
  113 + calcRingBBox(min, max, geometry[i]);
  114 + }
  115 + }
  116 +
  117 + return feature;
  118 + }
  119 +
  120 + function calcRingBBox(min, max, points) {
  121 + for (var i = 0, p; i < points.length; i++) {
  122 + p = points[i];
  123 + min[0] = Math.min(p[0], min[0]);
  124 + max[0] = Math.max(p[0], max[0]);
  125 + min[1] = Math.min(p[1], min[1]);
  126 + max[1] = Math.max(p[1], max[1]);
  127 + }
  128 + }
  129 +
  130 + ////////
  131 + ///convert.js
  132 + ////////
  133 +
  134 + // converts GeoJSON feature into an intermediate projected JSON vector format with simplification data
  135 + function convert(data, tolerance) {
  136 + var features = [];
  137 +
  138 + if (data.type === 'FeatureCollection') {
  139 + for (var i = 0; i < data.features.length; i++) {
  140 + convertFeature(features, data.features[i], tolerance);
  141 + }
  142 + } else if (data.type === 'Feature') {
  143 + convertFeature(features, data, tolerance);
  144 +
  145 + } else {
  146 + // single geometry or a geometry collection
  147 + convertFeature(features, {geometry: data}, tolerance);
  148 + }
  149 + return features;
  150 + }
  151 +
  152 + function convertFeature(features, feature, tolerance) {
  153 + if (feature.geometry === null) {
  154 + // ignore features with null geometry
  155 + return;
  156 + }
  157 +
  158 + var geom = feature.geometry,
  159 + type = geom.type,
  160 + coords = geom.coordinates,
  161 + tags = feature.properties,
  162 + id = feature.id,
  163 + i, j, rings, projectedRing;
  164 +
  165 + if (type === 'Point') {
  166 + features.push(createFeature(tags, 1, [projectPoint(coords)], id));
  167 +
  168 + } else if (type === 'MultiPoint') {
  169 + features.push(createFeature(tags, 1, project(coords), id));
  170 +
  171 + } else if (type === 'LineString') {
  172 + features.push(createFeature(tags, 2, [project(coords, tolerance)], id));
  173 +
  174 + } else if (type === 'MultiLineString' || type === 'Polygon') {
  175 + rings = [];
  176 + for (i = 0; i < coords.length; i++) {
  177 + projectedRing = project(coords[i], tolerance);
  178 + if (type === 'Polygon') projectedRing.outer = (i === 0);
  179 + rings.push(projectedRing);
  180 + }
  181 + features.push(createFeature(tags, type === 'Polygon' ? 3 : 2, rings, id));
  182 +
  183 + } else if (type === 'MultiPolygon') {
  184 + rings = [];
  185 + for (i = 0; i < coords.length; i++) {
  186 + for (j = 0; j < coords[i].length; j++) {
  187 + projectedRing = project(coords[i][j], tolerance);
  188 + projectedRing.outer = (j === 0);
  189 + rings.push(projectedRing);
  190 + }
  191 + }
  192 + features.push(createFeature(tags, 3, rings, id));
  193 +
  194 + } else if (type === 'GeometryCollection') {
  195 + for (i = 0; i < geom.geometries.length; i++) {
  196 + convertFeature(features, {
  197 + geometry: geom.geometries[i],
  198 + properties: tags
  199 + }, tolerance);
  200 + }
  201 +
  202 + } else {
  203 + throw new Error('Input data is not a valid GeoJSON object.');
  204 + }
  205 + }
  206 +
  207 + function project(lonlats, tolerance) {
  208 + var projected = [];
  209 + for (var i = 0; i < lonlats.length; i++) {
  210 + projected.push(projectPoint(lonlats[i]));
  211 + }
  212 + if (tolerance) {
  213 + simplify(projected, tolerance);
  214 + calcSize(projected);
  215 + }
  216 + return projected;
  217 + }
  218 +
  219 + function projectPoint(p) {
  220 + var sin = Math.sin(p[1] * Math.PI / 180),
  221 + x = (p[0] / 360 + 0.5),
  222 + y = (0.5 - 0.25 * Math.log((1 + sin) / (1 - sin)) / Math.PI);
  223 +
  224 + y = y < 0 ? 0 :
  225 + y > 1 ? 1 : y;
  226 +
  227 + return [x, y, 0];
  228 + }
  229 +
  230 + // calculate area and length of the poly
  231 + function calcSize(points) {
  232 + var area = 0,
  233 + dist = 0;
  234 +
  235 + for (var i = 0, a, b; i < points.length - 1; i++) {
  236 + a = b || points[i];
  237 + b = points[i + 1];
  238 +
  239 + area += a[0] * b[1] - b[0] * a[1];
  240 +
  241 + // use Manhattan distance instead of Euclidian one to avoid expensive square root computation
  242 + dist += Math.abs(b[0] - a[0]) + Math.abs(b[1] - a[1]);
  243 + }
  244 + points.area = Math.abs(area / 2);
  245 + points.dist = dist;
  246 + }
  247 +
  248 + ////////
  249 + ///tile.js
  250 + ////////
  251 +
  252 + function createTile(features, z2, tx, ty, tolerance, noSimplify) {
  253 + var tile = {
  254 + features: [],
  255 + numPoints: 0,
  256 + numSimplified: 0,
  257 + numFeatures: 0,
  258 + source: null,
  259 + x: tx,
  260 + y: ty,
  261 + z2: z2,
  262 + transformed: false,
  263 + min: [2, 1],
  264 + max: [-1, 0]
  265 + };
  266 + for (var i = 0; i < features.length; i++) {
  267 + tile.numFeatures++;
  268 + addFeature(tile, features[i], tolerance, noSimplify);
  269 + consol.log('features: %d, points: %d, simplified: %d',
  270 + tile.numFeatures, tile.numPoints, tile.numSimplified)
  271 + var min = features[i].min,
  272 + max = features[i].max;
  273 +
  274 + if (min[0] < tile.min[0]) tile.min[0] = min[0];
  275 + if (min[1] < tile.min[1]) tile.min[1] = min[1];
  276 + if (max[0] > tile.max[0]) tile.max[0] = max[0];
  277 + if (max[1] > tile.max[1]) tile.max[1] = max[1];
  278 + }
  279 + return tile;
  280 + }
  281 +
  282 + function addFeature(tile, feature, tolerance, noSimplify) {
  283 +
  284 + var geom = feature.geometry,
  285 + type = feature.type,
  286 + simplified = [],
  287 + sqTolerance = tolerance * tolerance,
  288 + i, j, ring, p;
  289 +
  290 + if (type === 1) {
  291 + for (i = 0; i < geom.length; i++) {
  292 + simplified.push(geom[i]);
  293 + tile.numPoints++;
  294 + tile.numSimplified++;
  295 + }
  296 +
  297 + } else {
  298 +
  299 + // simplify and transform projected coordinates for tile geometry
  300 + for (i = 0; i < geom.length; i++) {
  301 + ring = geom[i];
  302 +
  303 + // filter out tiny polylines & polygons
  304 + if (!noSimplify && ((type === 2 && ring.dist < tolerance) ||
  305 + (type === 3 && ring.area < sqTolerance))) {
  306 + tile.numPoints += ring.length;
  307 + continue;
  308 + }
  309 +
  310 + var simplifiedRing = [];
  311 +
  312 + for (j = 0; j < ring.length; j++) {
  313 + p = ring[j];
  314 + // keep points with importance > tolerance
  315 + if (noSimplify || p[2] > sqTolerance) {
  316 + simplifiedRing.push(p);
  317 + tile.numSimplified++;
  318 + }
  319 + tile.numPoints++;
  320 + }
  321 +
  322 + if (type === 3) rewind(simplifiedRing, ring.outer);
  323 +
  324 + simplified.push(simplifiedRing);
  325 + }
  326 + }
  327 +
  328 + if (simplified.length) {
  329 + var tileFeature = {
  330 + geometry: simplified,
  331 + type: type,
  332 + tags: feature.tags || null
  333 + };
  334 + if (feature.id !== null) {
  335 + tileFeature.id = feature.id;
  336 + }
  337 + tile.features.push(tileFeature);
  338 + }
  339 + }
  340 +
  341 + function rewind(ring, clockwise) {
  342 + var area = signedArea(ring);
  343 + if (area < 0 === clockwise) ring.reverse();
  344 + }
  345 +
  346 + function signedArea(ring) {
  347 + var sum = 0;
  348 + for (var i = 0, len = ring.length, j = len - 1, p1, p2; i < len; j = i++) {
  349 + p1 = ring[i];
  350 + p2 = ring[j];
  351 + sum += (p2[0] - p1[0]) * (p1[1] + p2[1]);
  352 + }
  353 + return sum;
  354 + }
  355 +
  356 + ////////
  357 + ///transform.js
  358 + ////////
  359 +
  360 + // Transforms the coordinates of each feature in the given tile from
  361 + // mercator-projected space into (extent x extent) tile space.
  362 + function transformTile(tile, extent) {
  363 + if (tile.transformed) return tile;
  364 +
  365 + var z2 = tile.z2,
  366 + tx = tile.x,
  367 + ty = tile.y,
  368 + i, j, k;
  369 +
  370 + for (i = 0; i < tile.features.length; i++) {
  371 + var feature = tile.features[i],
  372 + geom = feature.geometry,
  373 + type = feature.type;
  374 +
  375 + if (type === 1) {
  376 + for (j = 0; j < geom.length; j++) geom[j] = transformPoint(geom[j], extent, z2, tx, ty);
  377 +
  378 + } else {
  379 + for (j = 0; j < geom.length; j++) {
  380 + var ring = geom[j];
  381 + for (k = 0; k < ring.length; k++) ring[k] = transformPoint(ring[k], extent, z2, tx, ty);
  382 + }
  383 + }
  384 + }
  385 +
  386 + tile.transformed = true;
  387 +
  388 + return tile;
  389 + }
  390 +
  391 + function transformPoint(p, extent, z2, tx, ty) {
  392 + var x = Math.round(extent * (p[0] * z2 - tx)),
  393 + y = Math.round(extent * (p[1] * z2 - ty));
  394 + return [x, y];
  395 + }
  396 +
  397 + //tile = transformTile;
  398 + //point = transformPoint;
  399 + transform = {
  400 + tile: transformTile,
  401 + point:transformPoint
  402 + };
  403 +
  404 + ////////
  405 + ///clip.js
  406 + ////////
  407 +
  408 + //clip features between two axis-parallel lines:
  409 + function clip(features, scale, k1, k2, axis, intersect, minAll, maxAll) {
  410 +
  411 + k1 /= scale;
  412 + k2 /= scale;
  413 +
  414 + if (minAll >= k1 && maxAll <= k2) return features; // trivial accept
  415 + else if (minAll > k2 || maxAll < k1) return null; // trivial reject
  416 +
  417 + var clipped = [];
  418 +
  419 + for (var i = 0; i < features.length; i++) {
  420 +
  421 + var feature = features[i],
  422 + geometry = feature.geometry,
  423 + type = feature.type,
  424 + min, max;
  425 +
  426 + min = feature.min[axis];
  427 + max = feature.max[axis];
  428 +
  429 + if (min >= k1 && max <= k2) { // trivial accept
  430 + clipped.push(feature);
  431 + continue;
  432 + } else if (min > k2 || max < k1) continue; // trivial reject
  433 +
  434 + var slices = type === 1 ?
  435 + clipPoints(geometry, k1, k2, axis) :
  436 + clipGeometry(geometry, k1, k2, axis, intersect, type === 3);
  437 +
  438 + if (slices.length) {
  439 + // if a feature got clipped, it will likely get clipped on the next zoom level as well,
  440 + // so there's no need to recalculate bboxes
  441 + clipped.push(createFeature(feature.tags, type, slices, feature.id));
  442 + }
  443 + }
  444 +
  445 + return clipped.length ? clipped : null;
  446 + }
  447 +
  448 + function clipPoints(geometry, k1, k2, axis) {
  449 + var slice = [];
  450 +
  451 + for (var i = 0; i < geometry.length; i++) {
  452 + var a = geometry[i],
  453 + ak = a[axis];
  454 +
  455 + if (ak >= k1 && ak <= k2) slice.push(a);
  456 + }
  457 + return slice;
  458 + }
  459 +
  460 + function clipGeometry(geometry, k1, k2, axis, intersect, closed) {
  461 +
  462 + var slices = [];
  463 +
  464 + for (var i = 0; i < geometry.length; i++) {
  465 +
  466 + var ak = 0,
  467 + bk = 0,
  468 + b = null,
  469 + points = geometry[i],
  470 + area = points.area,
  471 + dist = points.dist,
  472 + outer = points.outer,
  473 + len = points.length,
  474 + a, j, last;
  475 +
  476 + var slice = [];
  477 +
  478 + for (j = 0; j < len - 1; j++) {
  479 + a = b || points[j];
  480 + b = points[j + 1];
  481 + ak = bk || a[axis];
  482 + bk = b[axis];
  483 +
  484 + if (ak < k1) {
  485 +
  486 + if ((bk > k2)) { // ---|-----|-->
  487 + slice.push(intersect(a, b, k1), intersect(a, b, k2));
  488 + if (!closed) slice = newSlice(slices, slice, area, dist, outer);
  489 +
  490 + } else if (bk >= k1) slice.push(intersect(a, b, k1)); // ---|--> |
  491 +
  492 + } else if (ak > k2) {
  493 +
  494 + if ((bk < k1)) { // <--|-----|---
  495 + slice.push(intersect(a, b, k2), intersect(a, b, k1));
  496 + if (!closed) slice = newSlice(slices, slice, area, dist, outer);
  497 +
  498 + } else if (bk <= k2) slice.push(intersect(a, b, k2)); // | <--|---
  499 +
  500 + } else {
  501 +
  502 + slice.push(a);
  503 +
  504 + if (bk < k1) { // <--|--- |
  505 + slice.push(intersect(a, b, k1));
  506 + if (!closed) slice = newSlice(slices, slice, area, dist, outer);
  507 +
  508 + } else if (bk > k2) { // | ---|-->
  509 + slice.push(intersect(a, b, k2));
  510 + if (!closed) slice = newSlice(slices, slice, area, dist, outer);
  511 + }
  512 + // | --> |
  513 + }
  514 + }
  515 +
  516 + // add the last point
  517 + a = points[len - 1];
  518 + ak = a[axis];
  519 + if (ak >= k1 && ak <= k2) slice.push(a);
  520 +
  521 + // close the polygon if its endpoints are not the same after clipping
  522 +
  523 + last = slice[slice.length - 1];
  524 + if (closed && last && (slice[0][0] !== last[0] || slice[0][1] !== last[1])) slice.push(slice[0]);
  525 +
  526 + // add the final slice
  527 + newSlice(slices, slice, area, dist, outer);
  528 + }
  529 +
  530 + return slices;
  531 + }
  532 +
  533 + function newSlice(slices, slice, area, dist, outer) {
  534 + if (slice.length) {
  535 + // we don't recalculate the area/length of the unclipped geometry because the case where it goes
  536 + // below the visibility threshold as a result of clipping is rare, so we avoid doing unnecessary work
  537 + slice.area = area;
  538 + slice.dist = dist;
  539 + if (outer !== undefined) slice.outer = outer;
  540 +
  541 + slices.push(slice);
  542 + }
  543 + return [];
  544 + }
  545 +
  546 + ////////
  547 + ///wrap.js
  548 + ////////
  549 +
  550 + function wrap(features, buffer, intersectX) {
  551 + var merged = features,
  552 + left = clip(features, 1, -1 - buffer, buffer, 0, intersectX, -1, 2), // left world copy
  553 + right = clip(features, 1, 1 - buffer, 2 + buffer, 0, intersectX, -1, 2); // right world copy
  554 +
  555 + if (left || right) {
  556 + merged = clip(features, 1, -buffer, 1 + buffer, 0, intersectX, -1, 2) || []; // center world copy
  557 +
  558 + if (left) merged = shiftFeatureCoords(left, 1).concat(merged); // merge left into center
  559 + if (right) merged = merged.concat(shiftFeatureCoords(right, -1)); // merge right into center
  560 + }
  561 +
  562 + return merged;
  563 + }
  564 +
  565 + function shiftFeatureCoords(features, offset) {
  566 + var newFeatures = [];
  567 +
  568 + for (var i = 0; i < features.length; i++) {
  569 + var feature = features[i],
  570 + type = feature.type;
  571 +
  572 + var newGeometry;
  573 +
  574 + if (type === 1) {
  575 + newGeometry = shiftCoords(feature.geometry, offset);
  576 + } else {
  577 + newGeometry = [];
  578 + for (var j = 0; j < feature.geometry.length; j++) {
  579 + newGeometry.push(shiftCoords(feature.geometry[j], offset));
  580 + }
  581 + }
  582 +
  583 + newFeatures.push(createFeature(feature.tags, type, newGeometry, feature.id));
  584 + }
  585 +
  586 + return newFeatures;
  587 + }
  588 +
  589 + function shiftCoords(points, offset) {
  590 + var newPoints = [];
  591 + newPoints.area = points.area;
  592 + newPoints.dist = points.dist;
  593 +
  594 + for (var i = 0; i < points.length; i++) {
  595 + newPoints.push([points[i][0] + offset, points[i][1], points[i][2]]);
  596 + }
  597 + return newPoints;
  598 + }
  599 +
  600 + ////////
  601 + ///geojson-vt.js
  602 + ////////
  603 +
  604 + function GeoJSONVT(data, options) {
  605 + options = this.options = extend(Object.create(this.options), options);
  606 +
  607 + var debug = options.debug;
  608 +
  609 + if (debug) console.time('preprocess data');
  610 +
  611 + var z2 = 1 << options.maxZoom, // 2^z
  612 + features = convert(data, options.tolerance / (z2 * options.extent));
  613 +
  614 + this.tiles = {};
  615 + this.tileCoords = [];
  616 +
  617 + if (debug) {
  618 + console.timeEnd('preprocess data');
  619 + console.log('index: maxZoom: %d, maxPoints: %d', options.indexMaxZoom, options.indexMaxPoints);
  620 + console.time('generate tiles');
  621 + this.stats = {};
  622 + this.total = 0;
  623 + }
  624 +
  625 + features = wrap(features, options.buffer / options.extent, intersectX);
  626 +
  627 + // start slicing from the top tile down
  628 + if (features.length) this.splitTile(features, 0, 0, 0);
  629 +
  630 + if (debug) {
  631 + if (features.length) console.log('features: %d, points: %d', this.tiles[0].numFeatures, this.tiles[0].numPoints);
  632 + console.timeEnd('generate tiles');
  633 + console.log('tiles generated:', this.total, JSON.stringify(this.stats));
  634 + }
  635 + }
  636 +
  637 + GeoJSONVT.prototype.options = {
  638 + maxZoom: 14, // max zoom to preserve detail on
  639 + indexMaxZoom: 5, // max zoom in the tile index
  640 + indexMaxPoints: 100000, // max number of points per tile in the tile index
  641 + solidChildren: false, // whether to tile solid square tiles further
  642 + tolerance: 3, // simplification tolerance (higher means simpler)
  643 + extent: 4096, // tile extent
  644 + buffer: 64, // tile buffer on each side
  645 + debug: 0 // logging level (0, 1 or 2)
  646 + };
  647 +
  648 + GeoJSONVT.prototype.splitTile = function (features, z, x, y, cz, cx, cy) {
  649 +
  650 + var stack = [features, z, x, y],
  651 + options = this.options,
  652 + debug = options.debug,
  653 + solid = null;
  654 +
  655 + // avoid recursion by using a processing queue
  656 + while (stack.length) {
  657 + y = stack.pop();
  658 + x = stack.pop();
  659 + z = stack.pop();
  660 + features = stack.pop();
  661 +
  662 + var z2 = 1 << z,
  663 + id = toID(z, x, y),
  664 + tile = this.tiles[id],
  665 + tileTolerance = z === options.maxZoom ? 0 : options.tolerance / (z2 * options.extent);
  666 +
  667 + if (!tile) {
  668 + if (debug > 1) console.time('creation');
  669 +
  670 + tile = this.tiles[id] = createTile(features, z2, x, y, tileTolerance, z === options.maxZoom);
  671 + this.tileCoords.push({z: z, x: x, y: y});
  672 +
  673 + if (debug) {
  674 + if (debug > 1) {
  675 + console.log('tile z%d-%d-%d (features: %d, points: %d, simplified: %d)',
  676 + z, x, y, tile.numFeatures, tile.numPoints, tile.numSimplified);
  677 + console.timeEnd('creation');
  678 + }
  679 + var key = 'z' + z;
  680 + this.stats[key] = (this.stats[key] || 0) + 1;
  681 + this.total++;
  682 + }
  683 + }
  684 +
  685 + // save reference to original geometry in tile so that we can drill down later if we stop now
  686 + tile.source = features;
  687 +
  688 + // if it's the first-pass tiling
  689 + if (!cz) {
  690 + // stop tiling if we reached max zoom, or if the tile is too simple
  691 + if (z === options.indexMaxZoom || tile.numPoints <= options.indexMaxPoints) continue;
  692 +
  693 + // if a drilldown to a specific tile
  694 + } else {
  695 + // stop tiling if we reached base zoom or our target tile zoom
  696 + if (z === options.maxZoom || z === cz) continue;
  697 +
  698 + // stop tiling if it's not an ancestor of the target tile
  699 + var m = 1 << (cz - z);
  700 + if (x !== Math.floor(cx / m) || y !== Math.floor(cy / m)) continue;
  701 + }
  702 +
  703 + // stop tiling if the tile is solid clipped square
  704 + if (!options.solidChildren && isClippedSquare(tile, options.extent, options.buffer)) {
  705 + if (cz) solid = z; // and remember the zoom if we're drilling down
  706 + continue;
  707 + }
  708 +
  709 + // if we slice further down, no need to keep source geometry
  710 + tile.source = null;
  711 +
  712 + if (debug > 1) console.time('clipping');
  713 +
  714 + // values we'll use for clipping
  715 + var k1 = 0.5 * options.buffer / options.extent,
  716 + k2 = 0.5 - k1,
  717 + k3 = 0.5 + k1,
  718 + k4 = 1 + k1,
  719 + tl, bl, tr, br, left, right;
  720 +
  721 + tl = bl = tr = br = null;
  722 +
  723 + left = clip(features, z2, x - k1, x + k3, 0, intersectX, tile.min[0], tile.max[0]);
  724 + right = clip(features, z2, x + k2, x + k4, 0, intersectX, tile.min[0], tile.max[0]);
  725 +
  726 + if (left) {
  727 + tl = clip(left, z2, y - k1, y + k3, 1, intersectY, tile.min[1], tile.max[1]);
  728 + bl = clip(left, z2, y + k2, y + k4, 1, intersectY, tile.min[1], tile.max[1]);
  729 + }
  730 +
  731 + if (right) {
  732 + tr = clip(right, z2, y - k1, y + k3, 1, intersectY, tile.min[1], tile.max[1]);
  733 + br = clip(right, z2, y + k2, y + k4, 1, intersectY, tile.min[1], tile.max[1]);
  734 + }
  735 +
  736 + if (debug > 1) console.timeEnd('clipping');
  737 +
  738 + if (features.length) {
  739 + stack.push(tl || [], z + 1, x * 2, y * 2);
  740 + stack.push(bl || [], z + 1, x * 2, y * 2 + 1);
  741 + stack.push(tr || [], z + 1, x * 2 + 1, y * 2);
  742 + stack.push(br || [], z + 1, x * 2 + 1, y * 2 + 1);
  743 + }
  744 + }
  745 +
  746 + return solid;
  747 + };
  748 +
  749 + GeoJSONVT.prototype.getTile = function (z, x, y) {
  750 + var options = this.options,
  751 + extent = options.extent,
  752 + debug = options.debug;
  753 +
  754 + var z2 = 1 << z;
  755 + x = ((x % z2) + z2) % z2; // wrap tile x coordinate
  756 +
  757 + var id = toID(z, x, y);
  758 + if (this.tiles[id]) return transform.tile(this.tiles[id], extent);
  759 +
  760 + if (debug > 1) console.log('drilling down to z%d-%d-%d', z, x, y);
  761 +
  762 + var z0 = z,
  763 + x0 = x,
  764 + y0 = y,
  765 + parent;
  766 +
  767 + while (!parent && z0 > 0) {
  768 + z0--;
  769 + x0 = Math.floor(x0 / 2);
  770 + y0 = Math.floor(y0 / 2);
  771 + parent = this.tiles[toID(z0, x0, y0)];
  772 + }
  773 +
  774 + if (!parent || !parent.source) return null;
  775 +
  776 + // if we found a parent tile containing the original geometry, we can drill down from it
  777 + if (debug > 1) console.log('found parent tile z%d-%d-%d', z0, x0, y0);
  778 +
  779 + // it parent tile is a solid clipped square, return it instead since it's identical
  780 + if (isClippedSquare(parent, extent, options.buffer)) return transform.tile(parent, extent);
  781 +
  782 + if (debug > 1) console.time('drilling down');
  783 + var solid = this.splitTile(parent.source, z0, x0, y0, z, x, y);
  784 + if (debug > 1) console.timeEnd('drilling down');
  785 +
  786 + // one of the parent tiles was a solid clipped square
  787 + if (solid !== null) {
  788 + var m = 1 << (z - solid);
  789 + id = toID(solid, Math.floor(x / m), Math.floor(y / m));
  790 + }
  791 +
  792 + return this.tiles[id] ? transform.tile(this.tiles[id], extent) : null;
  793 + };
  794 +
  795 + function toID(z, x, y) {
  796 + return (((1 << z) * y + x) * 32) + z;
  797 + }
  798 +
  799 + function intersectX(a, b, x) {
  800 + return [x, (x - a[0]) * (b[1] - a[1]) / (b[0] - a[0]) + a[1], 1];
  801 + }
  802 + function intersectY(a, b, y) {
  803 + return [(y - a[1]) * (b[0] - a[0]) / (b[1] - a[1]) + a[0], y, 1];
  804 + }
  805 +
  806 + function extend(dest, src) {
  807 + for (var i in src) dest[i] = src[i];
  808 + return dest;
  809 + }
  810 +
  811 + // checks whether a tile is a whole-area fill after clipping; if it is, there's no sense slicing it further
  812 + function isClippedSquare(tile, extent, buffer) {
  813 +
  814 + var features = tile.source;
  815 + if (features.length !== 1) return false;
  816 +
  817 + var feature = features[0];
  818 + if (feature.type !== 3 || feature.geometry.length > 1) return false;
  819 +
  820 + var len = feature.geometry[0].length;
  821 + if (len !== 5) return false;
  822 +
  823 + for (var i = 0; i < len; i++) {
  824 + var p = transform.point(feature.geometry[0][i], extent, tile.z2, tile.x, tile.y);
  825 + if ((p[0] !== -buffer && p[0] !== extent + buffer) ||
  826 + (p[1] !== -buffer && p[1] !== extent + buffer)) return false;
  827 + }
  828 +
  829 + return true;
  830 + }
  831 +
  832 + function geojsonvt(data, options)
  833 + {
  834 + return new GeoJSONVT(data, options)
  835 + }
  836 + return geojsonvt;
  837 +});
\ No newline at end of file
... ...
  1 +(function (root, factory){
  2 + if (typeof define === 'function' && define.amd){ // AMD
  3 + define(factory);
  4 + } else if (typeof module !== 'undefined' && module.exports) { // Node.js
  5 + module.exports = factory();
  6 + } else { // Browser
  7 + root.GeoJSONWrapper = factory();
  8 + }
  9 +})(this, function () {
  10 +
  11 + // conform to vectortile api
  12 + function GeoJSONWrapper (features) {
  13 + this.features = features;
  14 + this.length = features.length;
  15 + }
  16 +
  17 + GeoJSONWrapper.prototype.feature = function (i) {
  18 + return new FeatureWrapper(this.features[i]);
  19 + }
  20 +
  21 + function FeatureWrapper (feature) {
  22 + this.id = typeof feature.id === 'number' ? feature.id : undefined;
  23 + this.type = feature.type;
  24 + this.rawGeometry = feature.type === 1 ? [feature.geometry] : feature.geometry;
  25 + this.properties = feature.tags;
  26 + this.extent = 4096;
  27 + }
  28 +
  29 + FeatureWrapper.prototype.loadGeometry = function () {
  30 + var rings = this.rawGeometry;
  31 + this.geometry = [];
  32 +
  33 + for (var i = 0; i < rings.length; i++) {
  34 + var ring = rings[i];
  35 + var newRing = [];
  36 + for (var j = 0; j < ring.length; j++) {
  37 + newRing.push(new Point(ring[j][0], ring[j][1]));
  38 + }
  39 + this.geometry.push(newRing);
  40 + }
  41 + return this.geometry;
  42 + }
  43 +
  44 + FeatureWrapper.prototype.bbox = function () {
  45 + if (!this.geometry) this.loadGeometry();
  46 +
  47 + var rings = this.geometry;
  48 + var x1 = Infinity;
  49 + var x2 = -Infinity;
  50 + var y1 = Infinity;
  51 + var y2 = -Infinity;
  52 +
  53 + for (var i = 0; i < rings.length; i++) {
  54 + var ring = rings[i];
  55 +
  56 + for (var j = 0; j < ring.length; j++) {
  57 + var coord = ring[j];
  58 +
  59 + x1 = Math.min(x1, coord.x);
  60 + x2 = Math.max(x2, coord.x);
  61 + y1 = Math.min(y1, coord.y);
  62 + y2 = Math.max(y2, coord.y);
  63 + }
  64 + }
  65 +
  66 + return [x1, y1, x2, y2];
  67 + }
  68 +
  69 + FeatureWrapper.prototype.toGeoJSON = VectorTileFeature.prototype.toGeoJSON;
  70 +
  71 + return GeoJSONWrapper;
  72 +
  73 +});
... ...
  1 +/*
  2 + javascript.util is a port of selected parts of java.util to JavaScript which
  3 + main purpose is to ease porting Java code to JavaScript.
  4 +
  5 + The MIT License (MIT)
  6 + Copyright (C) 2011,2012 by The Authors
  7 + Permission is hereby granted, free of charge, to any person obtaining a copy
  8 + of this software and associated documentation files (the "Software"), to deal
  9 + in the Software without restriction, including without limitation the rights
  10 + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  11 + copies of the Software, and to permit persons to whom the Software is
  12 + furnished to do so, subject to the following conditions:
  13 + The above copyright notice and this permission notice shall be included in
  14 + all copies or substantial portions of the Software.
  15 + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16 + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17 + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  18 + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19 + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  20 + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  21 + THE SOFTWARE.
  22 +*/
  23 +(function(c){var d,b,a,h,e,f={".js":[],".json":[],".css":[],".html":[]};h=function(a){a=Error("Could not find module '"+a+"'");a.code="MODULE_NOT_FOUND";return a};e=function(a,l,b){var e,h;if("function"===typeof a[l+b])return l+b;for(e=0;h=f[b][e];++e)if("function"===typeof a[l+h])return l+h;return null};d=function(a,l,k,c,f){var g,n;k=k.split("/");g=k.pop();if("."===g||".."===g)k.push(g),g="";for(;null!=(n=k.shift());)if(n&&"."!==n&&(".."===n?a=l.pop():(l.push(a),a=a[n]),!a))throw h(c);g&&"function"!==
  24 +typeof a[g]&&((k=e(a,g,".js"))||(k=e(a,g,".json")),k||(k=e(a,g,".css")),k||(k=e(a,g,".html")),k?g=k:2!==f&&"object"===typeof a[g]&&(l.push(a),a=a[g],g=""));if(!g)return 1!==f&&a[":mainpath:"]?d(a,l,a[":mainpath:"],c,1):d(a,l,"index",c,2);f=a[g];if(!f)throw h(c);if(f.hasOwnProperty("module"))return f.module.exports;c={};f.module=g={exports:c};f.call(c,c,g,b(a,l));return g.exports};a=function(a,l,b){var e,f=b;e=b.charAt(0);var g=0;if("/"===e)f=f.slice(1),a=c["/"],l=[];else if("."!==e){e=f.split("/",
  25 +1)[0];a=c[e];if(!a)throw h(b);l=[];f=f.slice(e.length+1);f||((f=a[":mainpath:"])?g=1:(f="index",g=2))}return d(a,l,f,b,g)};b=function(b,l){return function(e){return a(b,[].concat(l),e)}};return b(c,[])})({"javascript.util":{lib:{"ArrayList.js":function(c,d,b){function a(a){this.array=[];a instanceof h&&this.addAll(a)}var h=b("./Collection");c=b("./List");var e=b("./OperationNotSupported"),f=b("./NoSuchElementException"),m=b("./IndexOutOfBoundsException");a.prototype=new c;a.prototype.array=null;a.prototype.add=
  26 +function(a){this.array.push(a);return!0};a.prototype.addAll=function(a){for(a=a.iterator();a.hasNext();)this.add(a.next());return!0};a.prototype.set=function(a,b){var e=this.array[a];this.array[a]=b;return e};a.prototype.iterator=function(){return new a.Iterator(this)};a.prototype.get=function(a){if(0>a||a>=this.size())throw new m;return this.array[a]};a.prototype.isEmpty=function(){return 0===this.array.length};a.prototype.size=function(){return this.array.length};a.prototype.toArray=function(){for(var a=
  27 +[],b=0,e=this.array.length;b<e;b++)a.push(this.array[b]);return a};a.prototype.remove=function(a){for(var b=!1,e=0,m=this.array.length;e<m;e++)if(this.array[e]===a){this.array.splice(e,1);b=!0;break}return b};a.Iterator=function(a){this.arrayList=a};a.Iterator.prototype.arrayList=null;a.Iterator.prototype.position=0;a.Iterator.prototype.next=function(){if(this.position===this.arrayList.size())throw new f;return this.arrayList.get(this.position++)};a.Iterator.prototype.hasNext=function(){return this.position<
  28 +this.arrayList.size()?!0:!1};a.Iterator.prototype.remove=function(){throw new e;};d.exports=a},"Arrays.js":function(c,d,b){function a(){}a.sort=function(){var a=arguments[0],b,f,m;if(1===arguments.length)a.sort();else if(2===arguments.length)f=arguments[1],m=function(a,b){return f.compare(a,b)},a.sort(m);else if(3===arguments.length)for(b=a.slice(arguments[1],arguments[2]),b.sort(),m=a.slice(0,arguments[1]).concat(b,a.slice(arguments[2],a.length)),a.splice(0,a.length),b=0;b<m.length;b++)a.push(m[b]);
  29 +else if(4===arguments.length)for(b=a.slice(arguments[1],arguments[2]),f=arguments[3],m=function(a,b){return f.compare(a,b)},b.sort(m),m=a.slice(0,arguments[1]).concat(b,a.slice(arguments[2],a.length)),a.splice(0,a.length),b=0;b<m.length;b++)a.push(m[b])};a.asList=function(a){for(var b=new javascript.util.ArrayList,f=0,m=a.length;f<m;f++)b.add(a[f]);return b};d.exports=a},"Collection.js":function(c,d,b){function a(){}b("./Iterator");a.prototype.add=function(a){};a.prototype.addAll=function(a){};a.prototype.isEmpty=
  30 +function(){};a.prototype.iterator=function(){};a.prototype.size=function(){};a.prototype.toArray=function(){};a.prototype.remove=function(a){};d.exports=a},"EmptyStackException.js":function(c,d,b){function a(a){this.message=a||""}a.prototype=Error();a.prototype.name="EmptyStackException";d.exports=a},"HashMap.js":function(c,d,b){function a(){this.object={}}c=b("./Map");var h=b("./ArrayList");a.prototype=new c;a.prototype.object=null;a.prototype.get=function(a){return this.object[a]||null};a.prototype.put=
  31 +function(a,b){return this.object[a]=b};a.prototype.values=function(){var a=new h,b;for(b in this.object)this.object.hasOwnProperty(b)&&a.add(this.object[b]);return a};a.prototype.size=function(){return this.values().size()};d.exports=a},"HashSet.js":function(c,d,b){function a(a){this.array=[];a instanceof h&&this.addAll(a)}var h=b("./Collection");c=b("./Set");var e=b("./OperationNotSupported"),f=b("./NoSuchElementException");a.prototype=new c;a.prototype.array=null;a.prototype.contains=function(a){for(var b=
  32 +0,e=this.array.length;b<e;b++)if(this.array[b]===a)return!0;return!1};a.prototype.add=function(a){if(this.contains(a))return!1;this.array.push(a);return!0};a.prototype.addAll=function(a){for(a=a.iterator();a.hasNext();)this.add(a.next());return!0};a.prototype.remove=function(a){throw new e;};a.prototype.size=function(){return this.array.length};a.prototype.isEmpty=function(){return 0===this.array.length};a.prototype.toArray=function(){for(var a=[],b=0,e=this.array.length;b<e;b++)a.push(this.array[b]);
  33 +return a};a.prototype.iterator=function(){return new a.Iterator(this)};a.Iterator=function(a){this.hashSet=a};a.Iterator.prototype.hashSet=null;a.Iterator.prototype.position=0;a.Iterator.prototype.next=function(){if(this.position===this.hashSet.size())throw new f;return this.hashSet.array[this.position++]};a.Iterator.prototype.hasNext=function(){return this.position<this.hashSet.size()?!0:!1};a.Iterator.prototype.remove=function(){throw new javascript.util.OperationNotSupported;};d.exports=a},"IndexOutOfBoundsException.js":function(c,
  34 +d,b){function a(a){this.message=a||""}a.prototype=Error();a.prototype.name="IndexOutOfBoundsException";d.exports=a},"Iterator.js":function(c,d,b){function a(){}a.prototype.hasNext=function(){};a.prototype.next=function(){};a.prototype.remove=function(){};d.exports=a},"List.js":function(c,d,b){function a(){}c=b("./Collection");a.prototype=new c;a.prototype.get=function(a){};a.prototype.set=function(a,b){};a.prototype.isEmpty=function(){};d.exports=a},"Map.js":function(c,d,b){function a(){}a.prototype.get=
  35 +function(a){};a.prototype.put=function(a,b){};a.prototype.size=function(){};a.prototype.values=function(){};d.exports=a},"NoSuchElementException.js":function(c,d,b){function a(a){this.message=a||""}a.prototype=Error();a.prototype.name="NoSuchElementException";d.exports=a},"OperationNotSupported.js":function(c,d,b){function a(a){this.message=a||""}a.prototype=Error();a.prototype.name="OperationNotSupported";d.exports=a},"Set.js":function(c,d,b){function a(){}c=b("./Collection");a.prototype=new c;a.prototype.contains=
  36 +function(a){};d.exports=a},"SortedMap.js":function(c,d,b){function a(){}c=b("./Map");a.prototype=new c;d.exports=a},"SortedSet.js":function(c,d,b){function a(){}c=b("./Set");a.prototype=new c;d.exports=a},"Stack.js":function(c,d,b){function a(){this.array=[]}c=b("./List");var h=b("./EmptyStackException");a.prototype=new c;a.prototype.array=null;a.prototype.push=function(a){this.array.push(a);return a};a.prototype.pop=function(a){if(0===this.array.length)throw new h;return this.array.pop()};a.prototype.peek=
  37 +function(){if(0===this.array.length)throw new h;return this.array[this.array.length-1]};a.prototype.empty=function(a){return 0===this.array.length?!0:!1};a.prototype.isEmpty=function(){return this.empty()};a.prototype.search=function(a){return this.array.indexOf(a)};a.prototype.size=function(){return this.array.length};a.prototype.toArray=function(){for(var a=[],b=0,c=this.array.length;b<c;b++)a.push(this.array[b]);return a};d.exports=a},"TreeMap.js":function(c,d,b){function a(){this.array=[]}c=b("./Map");
  38 +b("./SortedMap");var h=b("./ArrayList");a.prototype=new c;a.prototype.array=null;a.prototype.get=function(a){for(var b=0,c=this.array.length;b<c;b++){var d=this.array[b];if(0===d.key.compareTo(a))return d.value}return null};a.prototype.put=function(a,b){var c=this.get(a);if(c){var d=c.value;c.value=b;return d}for(var d={key:a,value:b},k=0,h=this.array.length;k<h;k++)if(c=this.array[k],1===c.key.compareTo(a))return this.array.splice(k,0,d),null;this.array.push({key:a,value:b});return null};a.prototype.values=
  39 +function(){for(var a=new h,b=0,c=this.array.length;b<c;b++)a.add(this.array[b].value);return a};a.prototype.size=function(){return this.values().size()};d.exports=a},"TreeSet.js":function(c,d,b){function a(a){this.array=[];a instanceof h&&this.addAll(a)}var h=b("./Collection");c=b("./SortedSet");var e=b("./OperationNotSupported"),f=b("./NoSuchElementException");a.prototype=new c;a.prototype.array=null;a.prototype.contains=function(a){for(var b=0,c=this.array.length;b<c;b++)if(0===this.array[b].compareTo(a))return!0;
  40 +return!1};a.prototype.add=function(a){if(this.contains(a))return!1;for(var b=0,c=this.array.length;b<c;b++)if(1===this.array[b].compareTo(a))return this.array.splice(b,0,a),!0;this.array.push(a);return!0};a.prototype.addAll=function(a){for(a=a.iterator();a.hasNext();)this.add(a.next());return!0};a.prototype.remove=function(a){throw new e;};a.prototype.size=function(){return this.array.length};a.prototype.isEmpty=function(){return 0===this.array.length};a.prototype.toArray=function(){for(var a=[],
  41 +b=0,c=this.array.length;b<c;b++)a.push(this.array[b]);return a};a.prototype.iterator=function(){return new a.Iterator(this)};a.Iterator=function(a){this.treeSet=a};a.Iterator.prototype.treeSet=null;a.Iterator.prototype.position=0;a.Iterator.prototype.next=function(){if(this.position===this.treeSet.size())throw new f;return this.treeSet.array[this.position++]};a.Iterator.prototype.hasNext=function(){return this.position<this.treeSet.size()?!0:!1};a.Iterator.prototype.remove=function(){throw new e;
  42 +};d.exports=a},"browser.js":function(c,d,b){javascript={util:b("./")}},"index.js":function(c,d,b){d.exports={ArrayList:b("./ArrayList"),Arrays:b("./Arrays"),Collection:b("./Collection"),HashMap:b("./HashMap"),HashSet:b("./HashSet"),Iterator:b("./Iterator"),List:b("./List"),Map:b("./Map"),Set:b("./Set"),SortedMap:b("./SortedMap"),SortedSet:b("./SortedSet"),Stack:b("./Stack"),TreeMap:b("./TreeMap"),TreeSet:b("./TreeSet")}}}}})("javascript.util/lib/browser");
\ No newline at end of file
... ...
注册登录 后发表评论