-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbundle.js
1793 lines (1733 loc) · 521 KB
/
bundle.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId])
/******/ return installedModules[moduleId].exports;
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ exports: {},
/******/ id: moduleId,
/******/ loaded: false
/******/ };
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/ // Flag the module as loaded
/******/ module.loaded = true;
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "";
/******/ // Load entry module and return exports
/******/ return __webpack_require__(0);
/******/ })
/************************************************************************/
/******/ ([
/* 0 */
/***/ function(module, exports, __webpack_require__) {
var pokescript = __webpack_require__(1);
var SVGSTRING;
window.addEventListener('load',function () {
pokescript.setUp(6);
beginApp('Kalos')
})
function beginApp(region_in) {
if (document.getElementById('subtext_region').text != "")
{
var location = new XMLHttpRequest();
var url = '/pokemap/region_maps/' + region_in.toLowerCase() + '.svg';
location.onreadystatechange = function() {
if (location.readyState == 4 && location.status == 200) {
SVGSTRING = location.response;
loadSVG()
}
};
location.open("GET", url, true);
location.send();
}
function loadSVG() {
var parser = new DOMParser();
var SVGObject = parser.parseFromString(SVGSTRING, "image/svg+xml");
pokescript.createDropDown(SVGObject.getElementsByTagName("svg")[0].getAttribute("regionID"), SVGObject);
}
}
var region_array = ['Kanto', 'Johto', 'Hoenn', 'Sinnoh', 'Unova','Kalos'];
var map_iterator = 5; // the index of the current item to show
document.getElementById("back_region").onclick = function () {
map_iterator+=5;
map_iterator%=6;
document.getElementById('subtext_region').innerHTML = "Region: "+region_array[map_iterator];
pokescript.setUp(map_iterator+1);
beginApp(region_array[map_iterator])
};
document.getElementById("next_region").onclick = function () {
map_iterator+=1;
map_iterator%=6;
document.getElementById('subtext_region').innerHTML = "Region: "+region_array[map_iterator];
pokescript.setUp(map_iterator+1);
beginApp(region_array[map_iterator])
};
document.querySelector(".backToMap").onclick = function () {
document.querySelector(".p1").style.display = "flex";
document.querySelector(".p2").style.display = "none";
}
// setInterval(function() { // setInterval makes it run repeatedly
// document
// .getElementById('HEADER_subtext')
// .innerHTML = title[i++]; // get the item and increment
// if (i == title.length) i = 0; // reset to first element if you've reached the end
// }, 1000);
/***/ },
/* 1 */
/***/ function(module, exports) {
/**
* Created by tmartin on 7/12/16.
*/
var pokeVersion;
var pokeVersionArray = [];
var min = null;
var max = null;
var pokemonSERIES = [];
var pokeJSON = [];
var levelsINDEX = [];
var methodIndex = [];
var locationName = "";
var selected_areaName = "";
var selected_areaID;
var selected_method;
var responseArray = [];
var svg_stored;
var shapes_stored;
var region_stored;
var selectedShapeID = null;
var regions = {
"1": {
"name": "Kanto",
"svg":[{"id":"path6156","type":"poly","borderWidth":"4","borderColor":"none","backgroundColor":"#94ca90","points":[[540.54039,-49.129202],[540.51835,-49.128589,540.49361,-49.119763,540.465,-49.102589,1],[538.63374,-48.003834,-26.127337,-46.539116,-26.127337,-46.539116,1],[-25.39407,129.9935],[-5.6165491,328.86858],[-5.6165491,328.86858,3.5390319,333.99606,6.4690559,327.40352,1],[9.3990729,320.81098,18.556281,324.47456,11.597491,314.2195,1],[4.6387009,303.96445,-1.5874891,302.8651,3.1737879,296.63883,1],[7.9350659,290.41253,-4.8847601,278.693,-4.8847591,278.693,1],[-4.8847591,278.693,5.7369349,279.79089,6.8356889,286.38343,1],[7.9344449,292.97597,8.6668549,295.54006,15.259392,296.63883,1],[21.851931,297.73758,19.655229,302.86453,17.457716,301.76578,1],[15.260203,300.66703,12.696581,296.63854,10.499069,299.2023,1],[8.3015559,301.76607,3.5391819,306.16143,10.864224,309.4577,1],[18.189266,312.75397,18.921867,306.16166,25.148152,305.42915,1],[31.374438,304.69666,42.72854,308.72471,45.292304,306.16095,1],[47.856069,303.59718,36.135475,297.0047,40.530502,296.27219,1],[44.925526,295.53968,46.390726,288.21488,46.390726,292.24366,1],[46.390726,296.27243,47.489626,301.40024,50.785895,301.03398,1],[54.082163,300.66774,47.490103,305.79546,54.08264,306.89421,1],[60.675179,307.99298,68.366807,305.06243,64.338034,302.13242,1],[60.30926,299.2024,57.001291,297.97131,63.238132,297.92056,1],[65.968197,297.89835,68.963826,297.92056,68.963826,297.92056,1],[68.963826,300.85068],[78.987116,300.85068],[78.987116,300.85068,83.38238,304.32954,86.312396,301.76578,1],[89.242414,299.20201,89.608475,296.27262,91.805988,298.10388,1],[94.0035,299.93515,96.201633,303.5978,99.497902,302.49904,1],[102.79417,301.40029,94.369991,298.47013,99.131268,298.10388,1],[103.89255,297.73763,103.89307,298.10388,103.89307,298.10388,1],[103.89307,298.10388,102.42706,304.69589,107.18834,304.69589,1],[107.89617,304.69589,109.88783,303.79113,109.88783,303.79113,1],[126.60069,303.79113],[126.60069,303.79113,128.79797,306.52754,130.62923,305.06253,1],[132.46048,303.59751,129.16431,308.35923,133.55934,306.89421,1],[137.95436,305.42921,139.05293,303.23084,139.05293,303.23084,1],[148.57506,303.23084],[148.57506,303.23084,154.43603,305.7957,155.16855,302.86568,1],[155.90105,299.93568,152.23844,298.47051,152.23844,298.47051,1],[152.60359,292.24366],[152.60359,292.24366,155.5337,291.14461,155.5337,294.80713,1],[155.5337,298.46965,159.92889,295.17353,159.92887,299.2023,1],[159.92887,303.23107,163.22538,307.99202,167.25415,300.30072,1],[171.28293,292.60942,169.81815,290.77821,174.57943,290.41197,1],[179.34071,290.04571,186.66531,281.62254,182.6365,275.39625,1],[178.60772,269.16996,173.48029,266.24024,174.2128,261.47896,1],[174.9453,256.71768,165.0574,247.92739,167.98742,242.79986,1],[170.91744,237.67233,167.98618,233.27744,175.31122,235.84122,1],[182.63626,238.40498,183.73583,245.36325,188.86336,242.43322,1],[193.99089,239.50321,195.45552,243.1664,199.85054,240.23638,1],[204.24557,237.30636,206.44375,244.63037,209.00751,242.06659,1],[211.57127,239.50283,202.04896,263.30931,216.33279,279.05815,1],[218.50768,283.79435,236.79616,304.21037,236.99881,296.43185,1],[236.97707,291.20739,236.84211,279.42478,236.84211,279.42478,1],[240.87063,279.42478],[240.87063,295.90704],[246.73086,294.80713],[246.73086,294.80713,241.96992,300.30077,245.63243,301.76578,1],[249.29496,303.23079,250.02709,302.49885,256.61962,296.63883,1],[263.21215,290.77878,263.9447,292.97564,269.43849,287.48186,1],[274.93227,281.98808,274.56554,281.62218,277.49556,275.02961,1],[280.42557,268.43708,254.05566,239.50421,273.46702,239.13796,1],[292.8784,238.7717,264.31158,224.85382,277.13041,218.99381,1],[289.94923,213.13378,263.21244,197.01786,276.76377,194.08785,1],[290.31509,191.15784,298.73809,204.71016,297.27308,213.50021,1],[295.80807,222.29026,306.06313,228.88256,308.62689,228.88256,1],[308.62689,238.40469],[306.06342,238.40469],[306.06342,328.50342],[325.84093,328.86858],[326.20757,334.36216],[336.09632,335.09543],[336.09632,335.09543,333.16601,342.05408,338.6598,342.05408,1],[344.15358,342.05408,344.52003,342.42072,344.52003,342.42072,1],[344.52003,342.42072,343.42218,350.11159,349.64847,351.94284,1],[355.87474,353.77411,358.43798,355.97138,367.59429,355.97138,1],[376.75059,355.97138,376.01781,362.19744,381.51159,359.99992,1],[387.00537,357.80241,389.56918,362.92993,394.33046,359.99992,1],[399.09174,357.0699,399.45875,354.14084,406.41754,355.23959,1],[413.37633,356.33833,417.4044,344.98423,429.85696,346.44925,1],[442.30954,347.91426,448.16961,345.71612,454.02964,350.11115,1],[459.88968,354.50617,454.76291,346.81479,466.11673,347.18104,1],[477.47054,347.54729,489.55639,345.71661,485.52761,342.05408,1],[481.49884,338.39156,474.90674,327.40458,476.00549,325.57332,1],[477.10425,323.74206,476.37064,290.04681,476.37064,290.04681,1],[519.22242,289.68017],[518.85579,283.81995],[528.3794,284.18658],[528.3794,255.98537],[524.82541,255.98537],[524.82541,246.92005],[527.64614,246.92005],[527.64614,243.64696],[518.84545,243.64696],[518.84545,240.1876],[527.39924,240.1876],[527.39924,225.58582],[524.82541,225.58582],[524.82541,230.98776],[523.69003,230.98776],[523.69003,221.14482],[521.23743,221.14482],[521.23743,217.43709],[524.52235,217.43709],[524.52235,215.05693],[518.84545,215.05693],[518.84545,212.49197],[523.69003,212.49197],[523.69003,208.41761],[527.39924,208.41761],[527.39924,205.89997],[523.69003,205.89997],[523.69003,202.1464],[521.23743,202.05475],[521.23743,198.48302],[521.23743,198.48302,526.91401,200.22367,528.01276,199.3996,1],[529.11152,198.57553,530.8515,196.56102,531.12619,197.84289,1],[531.40088,199.12477,532.31551,202.51265,534.42146,202.1464,1],[536.52741,201.78014,535.88641,199.30704,538.63331,199.85641,1],[541.3802,200.40579,539.09246,195.46116,542.75498,195.36959,1],[546.4175,195.27803,545.40907,192.98975,547.24033,191.891,1],[549.07159,190.79225,547.88247,190.79173,549.80529,189.96766,1],[551.72811,189.14359,544.40188,183.55825,547.24033,181.4523,1],[550.07878,179.34635,550.90366,170.46555,546.6002,166.6199,1],[542.29674,162.77426,544.49439,160.66721,542.48001,158.46969,1],[540.46562,156.27218,544.49344,155.6319,544.40188,153.43438,1],[544.31032,151.23688,546.1428,150.50405,545.59343,148.85591,1],[545.04405,147.20778,543.0291,145.83491,545.04349,143.72895,1],[547.05787,141.623,549.71306,139.33392,549.16367,135.21358,1],[548.6143,131.09325,547.88237,123.31068,549.71363,121.2963,1],[551.54489,119.28191,550.5365,114.0622,552.82558,110.76592,1],[555.11466,107.46966,546.60053,102.25061,551.17869,98.038715,1],[555.75684,93.826817,556.39763,91.994888,552.46042,88.881745,1],[548.52321,85.768603,549.25453,86.317981,547.05701,83.204838,1],[544.85951,80.091696,538.81711,76.978742,536.43647,77.711247,1],[534.05583,78.443751,527.92101,82.290209,527.82944,85.586478,1],[527.73789,88.882746,523.15987,87.874934,523.70926,92.086833,1],[524.25863,96.298733,521.60327,107.01242,525.08265,108.47743,1],[528.56205,109.94244,530.30179,107.74368,529.38616,115.80123,1],[528.47052,123.85877,529.02049,134.29734,529.93611,138.87549,1],[530.85175,143.45364,529.29521,147.75795,525.72426,148.21578,1],[522.15329,148.67359,518.12314,151.23607,514.46062,148.39761,1],[510.7981,145.55917,506.22024,143.08733,506.22024,143.08733,1],[506.22024,143.08733,511.98938,143.36166,515.37721,145.55917,1],[518.76505,147.75668,525.99795,146.20115,526.18108,143.72895,1],[526.3642,141.25674,526.2734,117.54107,526.91434,114.51949,1],[527.55528,111.49791,521.51184,111.95601,520.96246,109.11755,1],[520.41309,106.2791,517.66575,93.093645,519.13077,88.881745,1],[520.59578,84.669847,524.62487,77.161868,526.5477,74.872793,1],[528.47052,72.583717,521.78695,64.892471,522.79415,62.14558,1],[523.80134,59.39869,520.77948,52.165878,514.00381,51.433374,1],[507.22815,50.700869,485.34448,50.426276,479.8507,51.525032,1],[474.35692,52.623788,470.14531,51.066787,468.77186,49.693343,1],[467.39843,48.319897,457.87581,50.975128,455.95299,52.440138,1],[454.03016,53.905146,452.9313,54.912482,453.02288,56.835306,1],[453.11444,58.75813,453.2062,81.923098,453.2062,81.923098,1],[451.19119,81.923098],[451.19119,54.455144],[452.83957,54.546802],[452.93122,45.756466],[452.93122,45.756466,469.0465,45.023962,470.14526,45.756466,1],[471.24402,46.48897,471.79288,49.510311,473.89882,49.785,1],[476.00477,50.059689,479.1174,50.792527,480.49083,48.686578,1],[481.86428,46.580629,482.04774,46.396596,485.06933,46.396596,1],[488.0909,46.396596,513.0878,45.389308,513.63717,46.304938,1],[514.18655,47.220568,519.22248,48.870038,520.68748,47.588156,1],[522.15249,46.306273,521.51126,44.932732,523.25096,44.658043,1],[524.99067,44.383354,523.70849,39.163975,525.81444,38.70616,1],[527.92039,38.248345,535.33762,33.486114,536.3448,29.274215,1],[537.352,25.062316,536.71077,21.766237,533.23138,15.265262,1],[529.75198,8.7642883,530.48458,-16.872838,530.48458,-16.872838,1],[530.48458,-16.872838,541.92949,-49.168024,540.54039,-49.129202,1],[540.54039,-49.129202],null,[444.7825,54.8203],[447.48347,54.911957],[447.48347,82.014757],[444.96433,82.198074],[444.96433,82.198074,444.96539,85.951634,443.13412,85.951634,1],[441.30287,85.951634,430.40576,84.67037,429.30701,87.966639,1],[428.20826,91.262909,428.30025,92.636783,428.30025,92.636783,1],[410.99455,92.820101],[411.26952,90.255143],[425.46179,90.164963],[425.46179,90.164963,424.72905,85.860404,426.65187,84.853211,1],[428.57469,83.846017,427.65888,82.839777,432.14546,82.931341,1],[436.63205,83.022903,442.85924,82.83992,442.9508,78.811148,1],[443.04236,74.782374,442.7675,69.654178,442.7675,69.654178,1],[442.7675,69.654178,445.78926,69.836636,445.78926,69.012569,1],[445.78926,68.188501,444.7825,54.8203,444.7825,54.8203,1],[444.7825,54.8203],null,[515.37721,198.80383],[518.84545,198.80383],[518.84545,202.41989],[515.37721,202.32824],[515.37721,198.80383],[515.37721,198.80383],null,[518.84545,204.48074],[521.23743,204.48074],[521.23743,209.92849],[515.37721,209.83684],[515.37721,207.77748],[518.84545,207.77748],[518.84545,204.48074],[518.84545,204.48074],null,[189.55524,205.71221],[189.73921,205.70775,189.91557,205.71201,190.07414,205.7196,1],[190.49701,205.73984,190.79703,205.78908,190.79706,205.78908,1],[192.35094,205.91857,193.51664,207.47282,193.38715,209.0267,1],[193.25765,210.58057,189.37292,211.74589,187.68954,208.37917,1],[186.58483,206.16975,188.26737,205.74343,189.55524,205.71221,1],[189.55524,205.71221],null,[423.61975,208.24907],[432.42487,208.24907],[432.68359,211.22797],[423.35956,210.70906],[423.61975,208.24907],[423.61975,208.24907],null,[515.37721,217.34543],[518.84545,217.34543],[518.84545,223.84578],[520.93437,223.84578],[520.93437,228.37844],[515.37721,228.37844],[515.37721,217.34543],[515.37721,217.34543],null,[412.02053,217.91904],[412.32526,217.88897,412.54051,217.97783,412.61336,218.22062,1],[413.00183,219.51552,419.54095,219.12686,419.54095,219.12686,1],[419.54095,226.05446],[431.2274,226.05446],[431.2274,229.74445],[420.25205,229.74445],[420.25205,244.11855],[431.2274,244.11855],[431.2274,241.2047],[434.23734,241.2047],[434.23734,244.11855],[446.47374,244.11855],[446.47374,248.58468],[434.23734,248.58468],[434.23734,264.05869],[440.06504,264.05869],[440.06504,253.11734],[450.94135,253.11734],[450.94135,239.52086],[454.82648,239.52086],[455.08546,259.46226,463.50223,254.47771,462.07785,262.1176,1],[460.65346,269.75749,435.14311,285.94363,428.40965,287.36802,1],[421.67618,288.79241,402.38322,273.12391,395.77925,269.62768,1],[389.17527,266.13147,359.13274,268.59127,351.36336,272.99391,1],[343.59397,277.39656,345.40805,285.29609,338.67459,291.77058,1],[331.94112,298.24506,340.87475,299.92814,336.21312,302.12946,1],[331.55149,304.33078,324.30049,319.02713,324.30049,319.02713,1],[317.89031,319.02713],[317.89031,228.4494],[317.89031,228.4494,324.81815,227.80204,329.60928,224.04685,1],[334.4004,220.29164,339.32179,221.19906,346.83219,222.36447,1],[354.34259,223.52988,366.3841,234.92456,371.56368,234.2771,1],[376.74327,233.62965,382.8299,225.47184,384.64275,224.17694,1],[386.45561,222.88205,393.83678,228.19077,397.33302,228.83821,1],[400.82923,229.48566,398.62801,225.21205,400.82933,224.95308,1],[403.03067,224.6941,406.26742,223.918,407.04436,221.97566,1],[407.67563,220.39751,410.70006,218.04931,412.02053,217.91904,1],[412.02053,217.91904],null,[515.37721,231.44605],[521.23743,231.44605],[521.23743,233.46106],[524.52235,233.46106],[524.52235,237.26044],[515.37721,237.26044],[515.37721,231.44605],[515.37721,231.44605],null,[515.37721,246.92005],[521.23743,246.92005],[521.23743,250.17097],[515.37721,250.17097],[515.37721,246.92005],[515.37721,246.92005],null,[515.37721,253.23857],[521.23743,253.23857],[521.23743,258.6405],[524.53269,258.6405],[524.71602,264.13409],[515.37721,263.76746],[515.37721,253.23857],[515.37721,253.23857],null,[386.35766,275.37703],[387.58946,275.37274,390.5075,275.51056,394.14714,276.67799,1],[398.99998,278.23456,395.42874,284.00389,393.87217,286.01827,1],[392.31559,288.03266,390.76011,283.17882,390.66856,280.79818,1],[390.57699,278.41755,384.16701,279.88227,381.60325,277.68475,1],[379.03948,275.48724,385.72344,275.39625,385.72344,275.39625,1],[385.72344,275.39625,385.94705,275.37846,386.35766,275.37703,1],[386.35766,275.37703],null,[355.73487,287.35915],[355.93087,287.34484,356.05717,287.39168,356.05717,287.39168,1],[356.05717,287.39168,367.13644,287.11702,368.96769,288.85673,1],[370.79895,290.59643,370.5243,295.44846,370.43274,298.01222,1],[370.34118,300.57599,366.3116,300.21021,362.55752,301.30897,1],[358.80344,302.40771,358.43761,301.39953,355.87384,298.92732,1],[353.31008,296.45512,353.12752,297.27933,353.58534,291.96868,1],[353.92871,287.98568,355.14688,287.40207,355.73487,287.35915,1],[355.73487,287.35915],null,[66.775851,289.11397],[67.728088,289.02232,68.761526,291.81025,72.443889,292.54672,1],[76.976027,293.45314,77.752685,297.53323,77.752685,297.53323,1],[71.407557,297.53323],[71.407557,294.29563],[62.472342,294.29563],[62.472342,292.93554],[62.472341,292.93552,64.803865,291.76974,66.098762,289.69792,1],[66.341555,289.30945,66.556105,289.13511,66.775851,289.11397,1],[66.775851,289.11397],null,[389.34542,291.12454],[390.74247,291.12454,390.70171,291.5462,390.94206,294.35032,1],[391.21674,297.55503,398.35871,300.66717,400.92247,303.32249,1],[403.48623,305.97782,397.99366,306.06938,394.97207,306.16095,1],[391.9505,306.25251,396.16123,303.78084,393.87217,302.40739,1],[391.58308,301.03395,391.6746,298.10397,389.56865,295.35708,1],[387.46271,292.61019,386.73101,298.46998,383.25162,299.38562,1],[379.77222,300.30125,380.32154,298.83667,381.78656,295.5404,1],[383.25156,292.24413,388.65355,291.14523,388.65355,291.14523,1],[388.91679,291.13379,389.14584,291.12454,389.34542,291.12454,1],[389.34542,291.12454],null,[148.9062,292.93554],[148.9062,300.12184],[140.81366,300.12184],[139.76968,300.12184,145.34543,297.4677,145.47493,295.78433,1],[145.60442,294.10097,148.9062,292.93554,148.9062,292.93554,1],[148.9062,292.93554],null,[491.7116,296.39489],[486.70854,296.4427,481.50111,298.60126,483.83193,308.21588,1],[487.9756,325.3085,491.34194,331.52329,498.59337,330.48738,1],[505.84479,329.45146,507.65765,328.67406,511.54235,323.75345,1],[515.42702,318.83285,527.08154,325.56748,528.37644,321.16484,1],[529.67133,316.76219,536.66376,303.81222,525.52764,301.99936,1],[514.39153,300.1865,502.99671,300.1866,499.37099,297.5968,1],[499.37099,297.5968,495.60287,296.35772,491.7116,296.39489,1],[491.7116,296.39489],null,[109.60694,296.82066],[109.60694,296.82066,110.12424,297.20886,111.67812,297.07937,1],[113.232,296.94988,113.74991,298.11491,113.8794,298.89185,1],[114.00889,299.66879,126.24588,298.37441,126.24588,298.37441,1],[126.24588,300.44561],[110.12437,300.44561],[110.12437,300.44561,110.08247,299.72216,110.18054,298.86819,1],[110.29286,297.89009,109.60694,296.82066,109.60694,296.82066,1],[109.60694,296.82066]],"flat":true},{"id":"path6439","type":"poly","borderWidth":"4","borderColor":"none","backgroundColor":"#679363","points":[[201.80346,90.154614],[197.91878,90.154614,153.63253,99.996065,153.63253,99.996065,1],[153.37382,175.61868],[153.37382,175.61868,143.53364,195.30065,168.13673,194.78268,1],[192.73976,194.26473,208.53698,191.67407,220.45003,176.91225,1],[232.36308,162.15042,259.11947,143.85881,252.64499,131.94576,1],[246.1705,120.03271,235.98888,120.71421,228.99643,105.95238,1],[222.00399,91.190561,205.68815,90.154614,201.80346,90.154614,1],[201.80346,90.154614],null,[255.67051,94.815887],[250.49093,94.815887,246.34838,95.463632,247.38429,97.405977,1],[249.45613,101.29067,259.29679,99.996013,258.00188,107.24743,1],[256.70699,114.49885,254.11773,129.26126,257.48446,138.32554,1],[260.8512,147.38982,260.59233,162.15037,255.93071,171.21464,1],[251.26907,180.27892,255.67059,203.58768,251.26795,205.14155,1],[246.8653,206.69543,239.09598,207.73212,244.01658,214.46559,1],[248.9372,221.19904,249.19661,222.75216,247.90172,231.03949,1],[246.60682,239.32684,255.41271,233.11148,253.0819,242.4347,1],[250.75109,251.75796,259.29619,263.6703,252.8217,264.70621,1],[246.34722,265.74213,251.00951,270.66304,250.75053,280.24527,1],[250.58211,286.47686,246.37237,291.49524,244.01068,295.31716,1],[246.73086,294.80713],[246.73086,294.80713,241.96992,300.30077,245.63243,301.76578,1],[249.29496,303.23079,250.02709,302.49885,256.61962,296.63883,1],[263.21215,290.77878,263.9447,292.97564,269.43849,287.48186,1],[274.93227,281.98808,274.56554,281.62218,277.49556,275.02961,1],[280.42557,268.43708,254.05566,239.50421,273.46702,239.13796,1],[292.8784,238.7717,264.31158,224.85382,277.13041,218.99381,1],[289.94923,213.13378,263.21244,197.01786,276.76377,194.08785,1],[290.31509,191.15784,298.73809,204.71016,297.27308,213.50021,1],[296.00329,221.11898,303.5313,227.07855,307.23132,228.53367,1],[308.26921,227.89538,308.76143,227.41456,308.76143,227.41456,1],[308.76143,227.41456,310.05738,218.8674,307.72657,212.39292,1],[305.39575,205.91843,306.68935,203.58701,311.86894,204.36395,1],[317.04852,205.14088,322.74608,208.24916,324.8179,203.84652,1],[326.88974,199.44386,324.8179,191.67516,337.76687,191.67516,1],[350.71584,191.67516,355.89679,194.26384,352.27108,187.01241,1],[348.64537,179.76099,343.46453,172.76852,349.16208,171.21464,1],[354.85963,169.66077,357.70887,170.69748,368.84498,170.4385,1],[379.9811,170.17953,378.42778,164.74149,384.12534,169.92108,1],[389.82287,175.10067,397.33343,175.35872,398.36934,172.25098,1],[399.40526,169.14322,405.6202,173.54644,408.98693,174.58235,1],[412.35366,175.61827,414.684,177.94875,415.20197,169.14346,1],[415.71992,160.33816,411.05818,146.6127,416.75572,147.13066,1],[422.45326,147.64862,431.51766,150.23758,428.15093,145.058,1],[424.7842,139.87841,418.3103,142.46812,420.38215,136.51159,1],[422.45397,130.55506,424.52578,122.5271,417.53334,121.75015,1],[410.5409,120.97322,418.05047,114.75735,402.51171,113.46246,1],[386.97296,112.16756,272.50461,108.02504,272.50461,108.02504,1],[268.87967,103.36229],[268.87967,103.36229,276.39021,97.405829,270.17471,96.110932,1],[267.06697,95.463484,260.85009,94.815887,255.67051,94.815887,1],[255.67051,94.815887],null,[388.83834,189.67938],[388.71925,189.67765,388.59613,189.68124,388.47023,189.69268,1],[384.44146,190.05894,389.20269,200.31442,387.00518,202.87818,1],[384.80766,205.44196,374.18717,205.44243,366.49587,206.17493,1],[358.80457,206.90744,350.74612,208.00567,350.01361,201.41313,1],[349.28111,194.82059,345.61902,197.01896,340.49149,205.07652,1],[337.89654,209.15429,335.96339,215.94021,334.68153,221.66077,1],[334.68642,221.65975,334.69143,221.65882,334.69631,221.65782,1],[335.9617,221.39566,337.28745,221.31904,338.70563,221.36953,1],[338.70966,221.36967,338.71343,221.36939,338.71745,221.36953,1],[338.72337,221.36974,338.72928,221.37079,338.7352,221.37101,1],[339.07723,221.38359,339.43278,221.41003,339.78631,221.43606,1],[340.28797,221.47253,340.80243,221.51882,341.32972,221.57799,1],[341.54348,221.60216,341.76043,221.62606,341.97873,221.65338,1],[342.52704,221.72153,343.10119,221.80128,343.68032,221.88548,1],[344.68482,222.03219,345.72258,222.19229,346.83219,222.36447,1],[354.34259,223.52988,366.3841,234.92456,371.56368,234.2771,1],[376.74327,233.62965,382.8299,225.47184,384.64275,224.17694,1],[386.45561,222.88205,393.83678,228.19077,397.33302,228.83821,1],[400.82923,229.48566,398.62801,225.21205,400.82933,224.95308,1],[403.03067,224.6941,406.26742,223.918,407.04436,221.97566,1],[407.08936,221.86317,407.1495,221.746,407.21733,221.62676,1],[407.23843,221.5897,407.2637,221.552,407.28682,221.51441,1],[407.33028,221.4437,407.3771,221.37225,407.42726,221.30005,1],[407.55566,221.11529,407.70101,220.92773,407.86634,220.73827,1],[407.90595,220.69284,407.94914,220.6492,407.99051,220.60374,1],[408.09852,220.48519,408.21513,220.3693,408.3335,220.25189,1],[408.51187,220.07478,408.69732,219.90541,408.89232,219.73594,1],[408.9749,219.66417,409.05174,219.59268,409.13625,219.52306,1],[409.39248,219.31181,409.65321,219.11318,409.91534,218.93024,1],[409.93881,218.91387,409.96139,218.89458,409.98483,218.87849,1],[410.27695,218.67787,410.56218,218.50357,410.83636,218.35664,1],[411.02778,218.254,411.21082,218.16702,411.38336,218.09792,1],[411.47178,218.06255,411.55881,218.03157,411.64059,218.00626,1],[411.66221,217.99955,411.68454,217.99153,411.70564,217.98556,1],[411.81799,217.95383,411.9246,217.9285,412.02053,217.91904,1],[412.11372,217.90985,412.19543,217.91534,412.27037,217.92938,1],[412.28955,217.93293,412.30575,217.9405,412.32359,217.94565,1],[412.3759,217.96086,412.42242,217.98264,412.46257,218.01217,1],[412.47733,218.02303,412.49243,218.0333,412.50544,218.04617,1],[412.55226,218.09248,412.59126,218.14697,412.61336,218.22062,1],[413.00183,219.51552,419.54095,219.12686,419.54095,219.12686,1],[419.54095,220.64957],[421.66534,218.56234,423.67501,216.62018,424.73001,215.69706,1],[425.68435,214.862,425.42364,213.04709,424.55112,210.77559,1],[423.35956,210.70906],[423.58723,208.55954],[421.47136,204.13691,417.98775,198.76083,416.30629,195.18775,1],[413.37629,188.96146,408.98001,195.91954,400.92247,195.91954,1],[393.11672,195.91954,392.53021,189.73308,388.83834,189.67938,1],[388.83834,189.67938],null,[451.87715,190.75267],[448.99936,190.77251,446.68229,191.39862,446.06424,193.08108,1],[444.41611,197.56768,434.70994,205.80883,439.92904,213.40856,1],[445.14813,221.00828,449.17694,217.62007,452.74791,221.55728,1],[456.31887,225.49449,456.40991,231.07979,462.17837,225.76914,1],[467.94685,220.45849,466.8478,219.45062,481.77258,219.45062,1],[496.69735,219.45062,494.13473,217.16193,499.9032,222.65571,1],[505.67167,228.1495,514.00342,235.20008,499.4449,235.65789,1],[484.88639,236.11572,461.53772,233.00266,459.6149,241.42646,1],[458.74934,245.21841,457.71462,248.48923,456.64043,251.41279,1],[456.6419,251.41648,456.6434,251.41946,456.64486,251.42314,1],[456.79258,251.79499,456.94598,252.13908,457.10316,252.46242,1],[457.11293,252.48253,457.12292,252.50311,457.13273,252.52304,1],[457.32189,252.90757,457.51709,253.25265,457.7152,253.57711,1],[457.88981,253.86301,458.06643,254.12887,458.24446,254.37543,1],[458.33565,254.5018,458.42651,254.62168,458.51795,254.7391,1],[458.65056,254.90924,458.78366,255.07179,458.91563,255.22548,1],[459.0085,255.33374,459.10159,255.44794,459.19357,255.54925,1],[459.36913,255.74262,459.54265,255.92442,459.71248,256.09772,1],[459.96928,256.3598,460.20557,256.59365,460.43981,256.82951,1],[460.45212,256.84186,460.46604,256.85563,460.47825,256.86794,1],[460.48014,256.86985,460.4823,256.87195,460.48418,256.87386,1],[460.88225,257.27624,461.24164,257.67111,461.52642,258.09499,1],[461.59435,258.19592,461.6606,258.29909,461.72008,258.40544,1],[461.73726,258.4362,461.75688,258.4658,461.77331,258.4971,1],[461.85232,258.64738,461.92124,258.80487,461.98175,258.97018,1],[461.99869,259.01648,462.01221,259.06587,462.02758,259.11358,1],[462.07125,259.2489,462.10801,259.39132,462.13846,259.53934,1],[462.14934,259.59233,462.16189,259.64421,462.17098,259.69901,1],[462.20272,259.88994,462.22428,260.09093,462.23307,260.30661,1],[462.23519,260.35855,462.23235,260.4157,462.23307,260.46924,1],[462.23559,260.65711,462.22941,260.85596,462.21385,261.06501,1],[462.20897,261.1306,462.20434,261.19675,462.19759,261.26459,1],[462.17096,261.53254,462.13491,261.81154,462.07785,262.1176,1],[460.65346,269.75749,435.14311,285.94363,428.40965,287.36802,1],[428.21553,287.40908,428.00907,287.43311,427.79465,287.44637,1],[427.71225,287.4515,427.62417,287.44815,427.53889,287.44933,1],[427.40171,287.45116,427.26342,287.45157,427.11904,287.44342,1],[427.01736,287.43775,426.91222,287.42727,426.8071,287.4168,1],[426.66418,287.40246,426.51858,287.38508,426.3695,287.3621,1],[426.2634,287.34585,426.15635,287.3279,426.04722,287.30741,1],[425.90279,287.28014,425.75472,287.24875,425.60519,287.21427,1],[425.46887,287.18297,425.33312,287.15084,425.19273,287.11374,1],[425.07777,287.08323,424.95847,287.0475,424.84088,287.01322,1],[424.67987,286.96644,424.52172,286.92196,424.35598,286.86833,1],[424.35512,286.86805,424.35389,286.86861,424.35302,286.86833,1],[424.35162,286.86788,424.34999,286.86731,424.34858,286.86685,1],[423.81683,286.69455,423.25951,286.48459,422.68395,286.24742,1],[422.15142,286.02799,421.59656,285.77319,421.03262,285.50529,1],[420.77544,285.38287,420.50895,285.24644,420.24613,285.11499,1],[418.58313,284.28472,416.8247,283.29497,415.01718,282.19672,1],[411.32787,282.6332,407.89616,282.72524,406.87435,282.07992,1],[406.08725,281.58281,405.83595,278.92226,405.7848,276.16647,1],[405.77565,276.16024,405.76882,276.15498,405.75967,276.14873,1],[404.319,275.16641,403.04178,274.3005,401.75183,273.42707,1],[400.91414,272.85913,400.0981,272.31054,399.35541,271.82305,1],[398.93153,271.54507,398.51404,271.27287,398.12689,271.02769,1],[397.87452,270.86774,397.61564,270.70188,397.38033,270.55757,1],[397.24991,270.47763,397.12226,270.40025,396.99742,270.32547,1],[396.56035,270.06359,396.14339,269.82046,395.77925,269.62768,1],[389.17527,266.13147,359.13274,268.59127,351.36336,272.99391,1],[343.59397,277.39656,345.40805,285.29609,338.67459,291.77058,1],[331.94112,298.24506,340.87475,299.92814,336.21312,302.12946,1],[336.07276,302.19574,335.92917,302.27485,335.78439,302.36303,1],[335.75747,302.3793,335.73012,302.3993,335.70308,302.41627,1],[335.58376,302.49176,335.46426,302.57252,335.34236,302.66167,1],[335.14249,302.8062,334.93818,302.97545,334.73327,303.15248,1],[334.6102,303.26007,334.48701,303.36944,334.36221,303.48807,1],[331.19027,306.50311,327.5193,312.93812,325.61031,316.50652,1],[325.56551,316.59124,325.50172,316.70709,325.45952,316.78741,1],[325.16368,317.3503,324.92954,317.80698,324.77651,318.10906,1],[329.55543,318.70422,351.78186,321.39318,354.40878,320.07972,1],[357.3388,318.6147,349.6479,310.19087,354.77542,307.26085,1],[359.90295,304.33085,362.83244,302.49837,372.72125,304.69589,1],[382.61006,306.8934,385.54012,302.86549,385.54012,308.35927,1],[385.54012,313.85305,383.70958,318.61466,396.16214,318.61466,1],[408.61472,318.61466,456.59327,327.40414,460.9883,323.74162,1],[465.38331,320.0791,458.05914,278.69261,464.65168,278.32636,1],[471.24421,277.96011,505.30465,277.22823,513.36221,274.66446,1],[521.41975,272.10069,525.08227,276.49557,524.71602,270.26929,1],[524.57163,267.81456,523.62889,265.70777,522.54134,264.04835,1],[515.37721,263.76746],[515.37721,257.18283],[513.78838,255.46077,512.31824,253.02135,512.63042,250.03348,1],[513.27135,243.89876,512.72189,227.3251,512.53876,220.91568,1],[512.35563,214.50627,515.92607,210.29556,513.45387,209.28836,1],[510.98166,208.28118,494.95883,208.92216,492.8529,205.07652,1],[490.74695,201.23086,485.71097,201.32213,478.66063,201.96308,1],[471.61027,202.60402,469.87033,195.64542,465.65843,193.63103,1],[463.026,192.37205,456.67348,190.71958,451.87715,190.75267,1],[451.87715,190.75267],null,[233.96077,204.08749],[232.76224,204.09767,230.90599,204.94706,227.96011,205.40027,1],[221.22664,206.43618,222.00414,217.3143,217.34252,221.71695,1],[212.68089,226.11959,208.53763,217.57325,205.42988,218.86815,1],[202.32212,220.16304,189.37177,217.31425,177.97671,216.01934,1],[166.58161,214.72445,168.65439,219.12708,165.54664,226.11951,1],[164.46598,228.55099,164.74747,230.88385,165.67379,233.02936,1],[164.49176,233.31467,163.44259,234.47513,162.69784,236.99581,1],[159.33111,248.3909,158.03539,254.08922,160.62518,259.2688,1],[163.21498,264.44839,165.8057,269.62706,161.14408,274.54768,1],[157.15923,278.7539,153.94345,285.98579,154.2224,292.20374,1],[154.90006,292.43713,155.5337,293.10461,155.5337,294.80713,1],[155.5337,298.46965,159.92889,295.17353,159.92887,299.2023,1],[159.92887,303.23107,163.22538,307.99202,167.25415,300.30072,1],[171.28293,292.60942,169.81815,290.77821,174.57943,290.41197,1],[179.34071,290.04571,186.66531,281.62254,182.6365,275.39625,1],[178.60772,269.16996,173.48029,266.24024,174.2128,261.47896,1],[174.9453,256.71768,165.0574,247.92739,167.98742,242.79986,1],[170.91744,237.67233,167.98618,233.27744,175.31122,235.84122,1],[182.63626,238.40498,183.73583,245.36325,188.86336,242.43322,1],[193.99089,239.50321,195.45552,243.1664,199.85054,240.23638,1],[204.24557,237.30636,206.44375,244.63037,209.00751,242.06659,1],[211.57127,239.50283,202.04896,263.30931,216.33279,279.05815,1],[218.50768,283.79435,236.79616,304.21037,236.99881,296.43185,1],[236.98227,292.45715,236.91294,286.04615,236.87463,282.55595,1],[235.32986,281.16204,233.54126,279.14683,234.17513,271.69887,1],[235.21105,259.52683,236.766,255.38385,233.14028,246.57854,1],[229.51457,237.77325,236.50672,233.37032,230.55019,231.03949,1],[224.59367,228.70868,236.76575,220.4214,236.2478,210.83917,1],[235.95645,205.44915,235.50176,204.0744,233.96077,204.08749,1],[233.96077,204.08749],null,[386.35766,275.37703],[387.58946,275.37274,390.5075,275.51056,394.14714,276.67799,1],[398.99998,278.23456,395.42874,284.00389,393.87217,286.01827,1],[392.31559,288.03266,390.76011,283.17882,390.66856,280.79818,1],[390.57699,278.41755,384.16701,279.88227,381.60325,277.68475,1],[379.03948,275.48724,385.72344,275.39625,385.72344,275.39625,1],[385.72344,275.39625,385.94705,275.37846,386.35766,275.37703,1],[386.35766,275.37703],null,[355.73487,287.35915],[355.83288,287.352,355.91386,287.35958,355.96993,287.36949,1],[356.02601,287.37941,356.05717,287.39168,356.05717,287.39168,1],[356.05717,287.39168,367.13644,287.11702,368.96769,288.85673,1],[370.79895,290.59643,370.5243,295.44846,370.43274,298.01222,1],[370.34118,300.57599,366.3116,300.21021,362.55752,301.30897,1],[358.80344,302.40771,358.43761,301.39953,355.87384,298.92732,1],[353.31008,296.45512,353.12752,297.27933,353.58534,291.96868,1],[353.92871,287.98568,355.14688,287.40207,355.73487,287.35915,1],[355.73487,287.35915],null,[389.34542,291.12454],[390.74247,291.12454,390.70171,291.5462,390.94206,294.35032,1],[391.21674,297.55503,398.35871,300.66717,400.92247,303.32249,1],[403.48623,305.97782,397.99366,306.06938,394.97207,306.16095,1],[391.9505,306.25251,396.16123,303.78084,393.87217,302.40739,1],[391.58308,301.03395,391.6746,298.10397,389.56865,295.35708,1],[387.46271,292.61019,386.73101,298.46998,383.25162,299.38562,1],[379.77222,300.30125,380.32154,298.83667,381.78656,295.5404,1],[383.25156,292.24413,388.65355,291.14523,388.65355,291.14523,1],[388.91679,291.13379,389.14584,291.12454,389.34542,291.12454,1],[389.34542,291.12454],null,[491.7116,296.39489],[486.70854,296.4427,481.50111,298.60126,483.83193,308.21588,1],[487.9756,325.3085,491.34194,331.52329,498.59337,330.48738,1],[505.84479,329.45146,507.65765,328.67406,511.54235,323.75345,1],[515.42702,318.83285,527.08154,325.56748,528.37644,321.16484,1],[529.67133,316.76219,536.66376,303.81222,525.52764,301.99936,1],[514.39153,300.1865,502.99671,300.1866,499.37099,297.5968,1],[499.37099,297.5968,495.60287,296.35772,491.7116,296.39489,1],[491.7116,296.39489],null,[474.46504,326.26518],[458.44723,326.07634,428.57455,330.88301,413.74134,330.33363,1],[393.96373,329.60112,386.63888,331.43306,374.18631,339.4906,1],[366.83442,344.24771,368.29847,351.28561,370.72546,356.26705,1],[376.65655,357.47048,376.74142,361.90798,381.51159,359.99992,1],[387.00537,357.80241,389.56918,362.92993,394.33046,359.99992,1],[399.09174,357.0699,399.45875,354.14084,406.41754,355.23959,1],[413.37633,356.33833,417.4044,344.98423,429.85696,346.44925,1],[442.30954,347.91426,448.16961,345.71612,454.02964,350.11115,1],[459.88968,354.50617,454.76291,346.81479,466.11673,347.18104,1],[477.47054,347.54729,489.55639,345.71661,485.52761,342.05408,1],[481.86222,338.72191,476.0946,329.3489,475.90792,326.30214,1],[475.43621,326.28622,474.96457,326.27108,474.46504,326.26518,1],[474.46504,326.26518]],"flat":true},{"id":"path4222","type":"poly","borderWidth":"4","borderColor":"none","backgroundColor":"#986749","points":[[69.142578,-46.806641],[22.694952,-46.670463,0.07531945,-46.611332,-10.289062,-46.583984,1],[-13.081874,-45.401704,-15.895713,-44.049189,-18.759766,-42.494141,1],[-21.2693,-41.131577,-23.714255,-39.715345,-26.09375,-38.248047,1],[-25.394531,129.99414],[-12.207031,262.60156],[-5.4889403,269.31066,1.6356717,275.83591,9.1679688,282.13477,1],[11.735036,284.46849,13.369827,295.66984,18.970703,295.66992,1],[24.571568,295.66992,43.942038,286.80308,49.076172,289.60352,1],[54.210305,292.40395,62.378596,287.50402,67.746094,288.4375,1],[69.311884,288.70981,70.536051,289.74371,71.664062,290.99805,1],[72.614604,291.5413,73.514775,292.31796,74.384766,293.22852,1],[76.215145,294.18139,77.07627,295.69032,77.460938,296.64844,1],[78.593982,297.11304,79.901985,297.19447,81.513672,296.60352,1],[88.514777,294.03644,90.381839,287.27061,98.316406,288.4375,1],[106.25098,289.60434,104.61676,289.6039,109.05078,292.87109,1],[111.18288,294.44209,112.40163,295.89949,113.99609,296.94336,1],[114.46803,297.01926,114.94961,297.09915,115.5,297.19922,1],[118.5564,297.75493,120.80892,298.1265,122.65234,298.41406,1],[130.29208,297.70165,130.90345,291.70952,137.28711,291.9375,1],[143.82145,292.17088,140.08907,282.36896,141.72266,280.96875,1],[143.35624,279.56851,143.35579,259.96671,145.68945,259.5,1],[148.02317,259.03326,151.0557,260.4333,151.28906,258.09961,1],[151.52244,255.76591,150.59145,249.69527,147.79102,249.22852,1],[144.99056,248.76177,142.65534,246.42931,143.35547,235.46094,1],[144.05554,224.49257,140.32298,221.22656,146.39062,221.22656,1],[152.45825,221.22656,161.09174,219.59137,160.625,224.02539,1],[160.15826,228.4594,159.22578,232.66044,160.85938,234.99414,1],[162.49296,237.32782,164.35806,239.42806,169.49219,234.06055,1],[174.62633,228.69306,165.75962,222.15981,172.52734,219.35938,1],[179.29506,216.55895,184.89723,213.05907,183.26367,209.0918,1],[181.63007,205.1245,171.35987,198.58799,167.39258,199.52148,1],[163.42531,200.45495,157.35855,198.35697,158.52539,194.62305,1],[159.69223,190.88913,159.22603,187.15424,162.72656,187.1543,1],[166.22711,187.1543,160.159,177.11979,166.69336,174.55273,1],[173.22771,171.98566,198.19816,162.41798,197.49805,154.7168,1],[196.79794,147.0156,201.93184,125.77855,195.63086,119.71094,1],[189.32988,113.64333,169.96154,108.04281,182.79688,98.941406,1],[189.97321,93.852766,202.22371,99.4205,211.41211,96.755859,1],[220.97151,93.98362,234.79473,92.24208,237.7832,82.748047,1],[239.20288,78.237861,232.1587,74.771667,231.32617,70.117188,1],[230.61366,66.13366,226.58938,63.182323,232.76367,58.0625,1],[238.93796,52.942677,261.83877,53.566453,268.66602,60.492188,1],[275.49325,67.417923,265.62978,78.851737,269.85742,82.826172,1],[274.08507,86.800608,280.58211,84.76203,282.30664,82.720703,1],[284.03116,80.679376,282.06327,81.126365,284.45508,78.275391,1],[286.84688,75.424417,296.78725,76.345617,300.47852,78.894531,1],[304.1698,81.443444,301.152,85.222218,303.25586,86.580078,1],[305.35971,87.93794,308.53303,84.688726,310.08984,86.046875,1],[311.64667,87.405023,308.65954,89.933615,310.41211,91.580078,1],[312.16466,93.226541,319.29688,91.544922,319.29688,91.544922,1],[319.29688,91.544922,321.70998,94.945313,322.35742,94.945312,1],[323.00487,94.945312,328.70292,96.369471,328.31445,93.261719,1],[327.92597,90.153967,326.24439,83.031834,329.22266,82.902344,1],[332.20091,82.772854,339.57971,81.479936,340.09766,84.199219,1],[340.61563,86.918502,338.67328,89.119215,340.09766,93.003906,1],[341.52205,96.888595,345.14754,101.16173,339.70898,101.67969,1],[334.27041,102.19764,317.30837,103.10346,316.91992,100.51367,1],[316.53145,97.923875,313.03609,92.355544,311.09375,96.240234,1],[309.1514,100.12493,312.259,103.88085,303.32422,102.58594,1],[294.38942,101.29104,285.71221,99.607627,280.66211,99.996094,1],[275.61202,100.38456,283.25188,88.859554,279.36719,87.953125,1],[275.4825,87.046698,267.97207,84.974939,268.10156,91.837891,1],[268.23105,98.700846,260.20346,108.80127,267.06641,114.75781,1],[273.92935,120.71432,300.86275,137.28901,323.52344,134.69922,1],[346.18413,132.10942,388.91591,140.78457,393.70703,130.94336,1],[398.49814,121.10215,421.93611,120.585,420.51172,112.55664,1],[419.08734,104.52827,419.34501,100.2553,414.29492,101.67969,1],[409.24482,103.10408,406.26791,105.69451,403.16016,104.14062,1],[400.0524,102.58675,398.10925,103.49321,391.63477,105.43555,1],[385.16028,107.3779,384.90338,99.348617,378.16992,98.701172,1],[371.43645,98.053727,351.49452,100.51557,350.97656,97.925781,1],[350.45861,95.335986,349.68106,89.896484,352.40039,89.896484,1],[355.11967,89.896484,359.00411,91.449574,359.39258,89.636719,1],[359.78105,87.823864,357.19077,86.918172,364.70117,87.306641,1],[372.21157,87.69511,388.39795,86.91774,393.70703,85.234375,1],[399.0161,83.55101,408.72796,82.904348,410.15234,85.494141,1],[411.26264,87.512848,410.49165,89.291786,411.25977,90.347656,1],[411.26953,90.255859],[425.46094,90.164062],[425.46094,90.164062,424.72952,85.860709,426.65234,84.853516,1],[428.57516,83.846322,427.65795,82.840077,432.14453,82.931641,1],[436.63112,83.023203,442.85961,82.839319,442.95117,78.810547,1],[443.04273,74.781773,442.76758,69.654297,442.76758,69.654297,1],[442.76758,69.654297,442.9237,69.658523,443.01367,69.662109,1],[439.93555,37.064453],[470.75195,37.193359],[470.75195,37.193359,473.21409,37.193715,474.25,35.380859,1],[475.28592,33.568004,478.13441,33.826579,479.94727,34.603516,1],[481.76013,35.380455,482.0175,33.698255,488.10352,34.345703,1],[494.18953,34.993152,506.23413,33.178725,513.22656,33.826172,1],[517.81717,34.25123,524.8024,35.946386,529.10156,37.070312,1],[532.0289,35.223763,535.66082,32.137526,536.3457,29.273438,1],[537.3529,25.061538,536.70986,21.7666,533.23047,15.265625,1],[529.75107,8.7646513,530.48438,-16.873047,530.48438,-16.873047,1],[530.48438,-16.873047,532.4481,-22.428631,534.64258,-28.894531,1],[325.16016,-30.818359],[211.41211,-22.667969],[144.90775,-29.76505,101.50421,-40.189129,69.142578,-46.806641,1],[69.142578,-46.806641],null,[467.24414,49.3125],[465.8582,49.29599,463.81307,49.680165,461.81836,50.205078,1],[459.01364,52.417771,455.36223,55.80742,455.60352,58.300781,1],[455.99199,62.314961,456.12174,76.428572,458.58203,79.277344,1],[461.04233,82.126117,457.28714,86.658279,458.58203,90.542969,1],[459.87692,94.427659,461.81798,95.981354,462.33594,101.41992,1],[462.8539,106.85849,467.25703,101.55058,466.99805,111.13281,1],[466.99805,111.13281,468.55178,113.85151,469.19922,111.26172,1],[469.84668,108.67192,469.97656,106.98828,469.97656,106.98828,1],[469.97656,106.98828,477.48633,106.21077,477.48633,107.11719,1],[477.48633,108.02362,478.65238,110.48438,479.94727,110.48438,1],[481.24217,110.48438,480.46546,113.72149,481.63086,113.98047,1],[482.79627,114.23945,482.92427,110.4838,484.99609,110.61328,1],[487.06792,110.74277,489.27148,110.09739,489.27148,105.82422,1],[489.27148,101.55107,492.50841,102.58421,492.37891,104.26758,1],[492.24943,105.95095,494.44922,105.04631,494.44922,106.4707,1],[494.44922,107.89509,493.93303,111.13279,495.35742,109.83789,1],[496.78181,108.54299,496.00295,107.37792,497.94531,106.73047,1],[499.88764,106.08302,499.11133,104.00977,499.11133,104.00977,1],[514.13281,103.75195],[514.13281,103.75195,513.61526,110.22482,514.91016,110.61328,1],[516.20505,111.00175,517.24026,107.11796,518.53516,107.37695,1],[519.30056,107.53002,520.07609,107.41377,520.61133,107.29102,1],[519.74296,102.84117,517.84352,92.581952,519.13086,88.880859,1],[520.59587,84.668961,524.62405,77.162122,526.54688,74.873047,1],[528.4697,72.583971,521.78772,64.893375,522.79492,62.146484,1],[523.80211,59.399594,520.77958,52.166098,514.00391,51.433594,1],[507.22825,50.701089,485.34534,50.426635,479.85156,51.525391,1],[474.35778,52.624147,470.14493,51.066803,468.77148,49.693359,1],[468.51397,49.435837,467.97084,49.321156,467.24414,49.3125,1],[467.24414,49.3125],null,[537.48633,77.609375],[537.08897,77.588279,536.73313,77.619374,536.43555,77.710938,1],[534.05491,78.443442,527.92165,82.289668,527.83008,85.585938,1],[527.73853,88.882205,523.15959,87.874038,523.70898,92.085938,1],[524.25835,96.297837,521.60265,107.01155,525.08203,108.47656,1],[528.56143,109.94157,530.30235,107.74323,529.38672,115.80078,1],[528.47108,123.85832,529.01993,134.29685,529.93555,138.875,1],[530.85119,143.45315,529.29556,147.75701,525.72461,148.21484,1],[522.15364,148.67265,518.12346,151.2369,514.46094,148.39844,1],[510.79842,145.56,506.2207,143.08789,506.2207,143.08789,1],[506.2207,143.08789,511.98912,143.36108,515.37695,145.55859,1],[518.76479,147.7561,525.99851,146.20072,526.18164,143.72852,1],[526.24126,142.92352,526.27429,139.62172,526.31055,135.75977,1],[524.84816,134.27305,522.35569,132.48507,518.53516,131.98047,1],[511.6722,131.07405,512.18948,129.38962,513.48438,127.44727,1],[514.77927,125.50492,518.01778,127.7066,518.40625,125.63477,1],[518.79472,123.56293,519.05351,116.5709,516.72266,116.44141,1],[514.39184,116.31191,513.22597,120.19711,513.35547,122.39844,1],[513.35547,122.39844,493.28394,123.69255,490.95312,122.13867,1],[488.62232,120.58479,487.32881,116.05263,482.4082,120.84375,1],[477.4876,125.63487,469.9779,122.65605,468.8125,122.26758,1],[467.64709,121.87911,469.97788,119.16051,467.51758,117.34766,1],[465.05727,115.53481,460.39375,113.33267,460.13477,115.79297,1],[459.87579,118.25328,454.1794,124.59907,459.87695,127.31836,1],[465.57449,130.03764,473.21481,143.37571,471.91992,149.7207,1],[470.62502,156.06571,473.86005,166.81236,468.93945,169.01367,1],[464.01884,171.215,460.91294,176.78285,463.76172,178.5957,1],[466.61049,180.40856,467.77534,173.41722,475.15625,174.45312,1],[482.53716,175.48905,500.27785,178.98588,506.23438,175.61914,1],[512.19089,172.25241,514.51997,173.41754,516.5918,171.3457,1],[518.66364,169.27386,516.46418,167.33026,512.70898,166.42383,1],[508.95378,165.51741,509.21099,158.65491,511.80078,159.82031,1],[514.39057,160.98573,510.89537,163.70529,513.74414,164.09375,1],[516.59291,164.48223,525.52791,164.87125,525.39844,162.66992,1],[525.26895,160.4686,523.19636,157.10118,526.43359,157.61914,1],[529.67084,158.1371,530.57712,164.22195,528.63477,167.84766,1],[526.69243,171.47337,530.57718,185.19887,532.51953,187.01172,1],[534.46188,188.82458,524.75015,193.09905,522.54883,194.52344,1],[520.4083,195.90849,519.5014,198.14999,521.23828,200.05859,1],[521.23828,198.48242],[521.23828,198.48242,526.91492,200.22446,528.01367,199.40039,1],[529.11243,198.57632,530.85226,196.56188,531.12695,197.84375,1],[531.40164,199.12563,532.31592,202.51273,534.42188,202.14648,1],[536.52783,201.78022,535.88591,199.3061,538.63281,199.85547,1],[541.3797,200.40485,539.09334,195.46071,542.75586,195.36914,1],[546.41838,195.27758,545.40897,192.98937,547.24023,191.89062,1],[549.07149,190.79188,547.88187,190.79087,549.80469,189.9668,1],[551.72751,189.14273,544.40178,183.55908,547.24023,181.45312,1],[550.07868,179.34717,550.90307,170.46479,546.59961,166.61914,1],[542.29615,162.7735,544.49485,160.66627,542.48047,158.46875,1],[540.46608,156.27124,544.4939,155.63111,544.40234,153.43359,1],[544.31078,151.23609,546.14312,150.50361,545.59375,148.85547,1],[545.04437,147.20734,543.02858,145.83448,545.04297,143.72852,1],[547.05735,141.62257,549.71345,139.33323,549.16406,135.21289,1],[548.61469,131.09256,547.88163,123.31126,549.71289,121.29688,1],[551.54415,119.28248,550.53709,114.06191,552.82617,110.76562,1],[555.11525,107.46937,546.59957,102.25096,551.17773,98.039062,1],[555.75588,93.827165,556.39815,91.994002,552.46094,88.880859,1],[548.52373,85.767717,549.25416,86.318221,547.05664,83.205078,1],[545.13382,80.481078,540.26776,77.757056,537.48633,77.609375,1],[537.48633,77.609375],null,[122.09375,186.00781],[132.6569,186.06935,141.95703,187.32967,141.95703,189.95508,1],[141.95703,194.15573,131.68872,206.75803,125.62109,208.625,1],[119.55349,210.49195,92.95007,220.76018,84.082031,216.32617,1],[75.213978,211.89213,58.876065,213.28956,59.576172,209.32227,1],[60.27628,205.35498,60.044152,202.43967,61.677734,200.22266,1],[63.311313,198.00566,66.576226,196.25619,67.042969,190.88867,1],[67.509724,185.52117,88.746927,189.25462,103.44922,187.1543,1],[108.96259,186.36667,115.75584,185.97089,122.09375,186.00781,1],[122.09375,186.00781],null,[214.33398,196.79102],[211.72691,196.92397,211.12695,198.92578,211.12695,198.92578,1],[211.12695,198.92578,205.94692,199.44422,207.75977,203.58789,1],[209.57263,207.73156,206.98357,210.06139,205.42969,212.91016,1],[203.87581,215.75894,204.91099,223.52776,207.75977,224.30469,1],[210.60854,225.08162,217.85906,232.33305,220.9668,224.30469,1],[224.07456,216.27633,219.15503,212.13273,216.82422,206.95312,1],[214.49341,201.77353,219.15501,197.37149,215.5293,196.85352,1],[215.3027,196.82116,215.08767,196.80051,214.88281,196.79102,1],[214.69075,196.78213,214.50778,196.78215,214.33398,196.79102,1],[214.33398,196.79102],null,[390.21289,269.89062],[384.1203,269.9058,377.94166,270.40315,373.76562,271.95703,1],[362.6295,276.10069,367.54967,278.17467,370.39844,281.02344,1],[373.24722,283.87222,364.18446,283.87193,368.32812,286.7207,1],[372.47179,289.56947,372.47046,286.97812,379.46289,286.20117,1],[383.47368,285.75553,385.6986,288.5472,388.03711,291.30273,1],[388.32632,291.22704,388.6543,291.14453,388.6543,291.14453,1],[388.91754,291.13309,389.14612,291.125,389.3457,291.125,1],[389.53984,291.125,389.70053,291.13665,389.84375,291.1582,1],[389.8595,291.1606,389.87152,291.16524,389.88672,291.16797,1],[390.0061,291.18923,390.11068,291.22203,390.19922,291.26758,1],[390.26349,291.3008,390.32422,291.33771,390.375,291.38672,1],[390.39459,291.40571,390.41188,291.43148,390.42969,291.45312,1],[390.45901,291.48872,390.48481,291.53488,390.50977,291.57812,1],[390.55111,291.65013,390.58769,291.73628,390.61914,291.83203,1],[390.63533,291.88108,390.65385,291.93437,390.66797,291.99023,1],[390.69605,292.10245,390.72211,292.23477,390.74414,292.37695,1],[390.75177,292.42616,390.76043,292.4782,390.76758,292.53125,1],[390.82674,292.97425,390.87308,293.55005,390.9375,294.30469,1],[391.89969,295.09412,392.9627,295.7275,394.22461,296.04297,1],[400.44012,297.59684,398.88648,291.12203,405.87891,299.15039,1],[412.87136,307.17876,431.7778,310.5468,435.14453,306.66211,1],[438.51126,302.77742,442.65564,296.04368,431.51953,292.41797,1],[425.84558,290.57064,421.99408,287.38225,419.40234,284.69531,1],[419.40234,284.69531,419.40039,284.69336,419.40039,284.69336,1],[419.08349,284.5277,418.75867,284.34823,418.43555,284.17188,1],[418.10905,283.99374,417.78099,283.81284,417.44922,283.625,1],[417.12608,283.44193,416.8059,283.25972,416.47852,283.06836,1],[416.33289,282.98332,416.18344,282.89316,416.03711,282.80664,1],[415.16584,282.29094,414.28741,281.75302,413.40039,281.19531,1],[413.21798,281.08077,413.03614,280.96934,412.85352,280.85352,1],[411.95242,280.28136,411.05334,279.69939,410.15625,279.10742,1],[410.05114,279.03814,409.94671,278.97174,409.8418,278.90234,1],[408.9198,278.29179,408.01074,277.6803,407.11328,277.07227,1],[405.19745,275.7759,403.40726,274.54919,401.73633,273.41797,1],[401.20018,273.05452,400.70191,272.72294,400.20312,272.39062,1],[398.8033,271.45876,397.52311,270.62934,396.50391,270.04297,1],[396.50082,270.04119,396.49723,270.03888,396.49414,270.03711,1],[394.46436,269.94803,392.35482,269.8853,390.21289,269.89062,1],[390.21289,269.89062],null,[386.35742,275.37695],[387.58922,275.37266,390.50684,275.5103,394.14648,276.67773,1],[398.99932,278.2343,395.42962,284.0032,393.87305,286.01758,1],[393.38662,286.64708,392.89859,286.60657,392.45703,286.17969,1],[392.3687,286.09432,392.2836,285.99285,392.19922,285.87891,1],[391.35545,284.73944,390.72519,282.28673,390.66797,280.79883,1],[390.5764,278.4182,384.16728,279.88307,381.60352,277.68555,1],[379.03975,275.48804,385.72266,275.39648,385.72266,275.39648,1],[385.72266,275.39648,385.94681,275.37838,386.35742,275.37695,1],[386.35742,275.37695],null,[242.54688,357.98828],[241.35336,358.0445,240.29477,358.5008,239.8457,359.45508,1],[238.4771,362.36334,227.35833,369.20627,228.38477,372.79883,1],[228.70105,373.90583,229.54041,375.01664,230.52344,376.04102,1],[229.64371,374.79803,229.22961,373.46461,229.77344,372.18359,1],[230.45337,370.58197,232.20964,370.00757,234.21289,369.95898,1],[236.21614,369.91038,238.46657,370.38756,240.13281,370.88867,1],[243.94365,372.03474,249.77308,374.72061,249.19727,378.6582,1],[249.17065,378.84018,249.10989,379.00006,249.0293,379.14648,1],[249.0929,379.14388,249.20317,379.12891,249.25586,379.12891,1],[251.13768,379.12891,251.47816,375.53569,251.82031,373.14062,1],[252.16246,370.74559,246.86062,365.44217,247.54492,361.84961,1],[247.9726,359.60426,245.39333,358.0952,243.06445,357.98828,1],[242.88979,357.98026,242.71738,357.98025,242.54688,357.98828,1],[242.54688,357.98828],null,[350.68945,361.66602],[348.82107,361.77053,345.68382,364.44112,344.71484,369.03516,1],[343.95709,372.62772,352.35186,375.36624,355.15039,370.57617,1],[357.60498,366.3748,352.8412,361.9363,351.04492,361.67969,1],[350.93265,361.66365,350.81401,361.65905,350.68945,361.66602,1],[350.68945,361.66602],null,[332.38672,362.51953],[329.86791,362.67866,328.88488,366.27613,328.80469,368.52148,1],[328.71915,370.91652,330.68689,371.59129,333.5957,371.42969,1],[336.67503,371.25862,336.84545,370.57518,338.04297,368.69336,1],[339.24049,366.81154,335.81842,362.87731,332.91016,362.53516,1],[332.72839,362.51377,332.55464,362.50892,332.38672,362.51953,1],[332.38672,362.51953]],"flat":true},{"id":"path4226","type":"poly","borderWidth":"4","borderColor":"none","backgroundColor":"#deeff0","points":[[132.44063,95.365236],[122.67141,95.695976,119.58049,106.31974,109.51643,115.50868,1],[98.781426,125.31021,68.210317,136.74671,68.210317,136.74671,1],[61.209224,150.04879,104.84935,171.98469,118.85152,168.48414,1],[132.8537,164.98361,151.99061,159.14911,173.69399,161.01607,1],[182.58801,161.78115,190.96841,155.21512,197.7674,147.20088,1],[198.60834,137.66794,200.41686,124.31858,195.63098,119.70995,1],[194.97427,119.07755,194.1522,118.45083,193.26284,117.8241,1],[184.14414,116.10685,173.821,113.75527,166.22593,110.84208,1],[149.18993,104.30773,145.92361,96.60555,134.4885,95.438709,1],[133.77381,95.365787,133.09191,95.343186,132.44063,95.365236,1],[132.44063,95.365236]],"flat":true},{"id":"path6449","type":"poly","borderWidth":"4","borderColor":"none","backgroundColor":"#c9b293","points":[[245.05292,308.99201],[243.61809,309.06627,241.89226,311.44515,242.72154,312.61843,1],[243.59172,313.84958,246.63203,313.00717,247.1241,311.5821,1],[247.48494,310.53712,246.15696,308.93488,245.05292,308.99201,1],[245.05292,308.99201],null,[236.03935,314.40724],[235.93701,314.40224,235.83442,314.40924,235.73037,314.4309,1],[234.3546,314.7174,232.63736,316.15451,232.88157,317.53842,1],[233.30428,319.93392,236.97537,321.40761,239.35531,320.90465,1],[240.43694,320.67606,241.53493,319.41636,241.42797,318.31603,1],[241.28575,316.85284,239.30561,316.24842,238.06027,315.46723,1],[237.43006,315.07191,236.75577,314.44229,236.03935,314.40724,1],[236.03935,314.40724],null,[239.87274,325.5674],[238.90781,325.54643,237.43873,325.90975,237.28413,326.86244,1],[237.14724,327.70599,239.28168,327.84061,239.0966,328.67491,1],[238.87776,329.66136,236.62182,328.77259,236.2478,329.71124,1],[235.67617,331.1458,237.00536,333.04175,238.31899,333.85362,1],[239.71422,334.71592,241.61078,334.03921,243.24045,333.85362,1],[244.38479,333.72329,246.38156,334.207,246.60667,333.07747,1],[246.89698,331.62091,243.79668,331.72905,242.98173,330.48738,1],[242.30352,329.45407,242.93967,327.85575,242.20412,326.86244,1],[241.67519,326.14817,240.76131,325.58671,239.87274,325.5674,1],[239.87274,325.5674],null,[247.38429,326.34354],[246.71456,326.2658,245.963,327.23499,246.08924,327.8973,1],[246.29178,328.95983,248.15966,330.20213,248.93805,329.45106,1],[249.77151,328.64684,248.53476,326.47706,247.38429,326.34354,1],[247.38429,326.34354],null,[235.51601,335.057],[234.15402,335.03181,232.84439,335.36608,232.62138,336.4437,1],[232.34475,337.78031,234.65569,338.48329,235.98908,338.77508,1],[237.44486,339.09365,239.94363,339.41875,240.39165,337.99746,1],[240.75868,336.8331,238.97001,335.76263,237.80156,335.40885,1],[237.16961,335.21751,236.33321,335.07211,235.51601,335.057,1],[235.51601,335.057],null,[238.62353,343.42156],[237.47028,343.48205,236.04191,344.20077,235.98908,345.24883,1],[235.92998,346.4215,237.66487,347.26963,238.83788,347.32149,1],[239.84363,347.36595,241.30497,346.76691,241.42797,345.76772,1],[241.56223,344.67721,240.18627,343.57735,239.0966,343.43635,1],[238.94793,343.41712,238.78828,343.41293,238.62353,343.42156,1],[238.62353,343.42156],null,[234.43533,351.98276],[233.22036,351.81183,231.48446,353.09146,231.58653,354.31414,1],[231.70233,355.70128,233.82032,356.43323,235.21147,356.38532,1],[235.83361,356.3639,236.64849,355.96046,236.76522,355.34899,1],[237.02116,354.00827,235.78696,352.17291,234.43533,351.98276,1],[234.43533,351.98276],null,[297.88955,365.4181],[297.62899,365.41957,297.36773,365.42909,297.1075,365.44916,1],[294.60108,365.64246,292.26618,366.80683,289.85614,367.52182,1],[288.73046,367.85577,287.45789,367.89354,286.48991,368.55814,1],[285.22282,369.42811,283.18666,370.71482,283.6411,372.18309,1],[284.57753,375.20863,289.55931,374.66343,292.70494,375.03189,1],[295.11179,375.31382,298.30431,372.74153,299.9563,374.51446,1],[300.78857,375.40766,298.69785,377.1692,299.43887,378.13941,1],[301.55118,380.90493,306.80048,381.20258,309.79775,379.43445,1],[310.99896,378.72584,310.70224,376.78362,311.35152,375.54932,1],[311.93113,374.44745,312.28628,372.94704,313.42418,372.4418,1],[315.5777,371.48563,319.74515,375.73706,320.41535,373.47814,1],[321.71187,369.10825,312.22544,369.45327,307.98529,367.78053,1],[306.46164,367.17944,304.92137,366.58909,303.32402,366.22677,1],[301.54231,365.82263,299.71349,365.4079,297.88955,365.4181,1],[297.88955,365.4181],null,[234.21357,369.95816],[232.21032,370.00675,230.4525,370.58147,229.77257,372.18309,1],[228.42321,375.36159,232.92431,378.87992,235.98908,380.47078,1],[238.51868,381.78385,241.73886,381.27886,244.53549,380.7295,1],[246.20404,380.40173,248.95072,380.34085,249.19676,378.65832,1],[249.77257,374.72073,243.94377,372.03412,240.13293,370.88805,1],[238.46669,370.38694,236.21682,369.90956,234.21357,369.95816,1],[234.21357,369.95816],null,[272.14241,371.87706],[271.83104,371.87512,271.51915,371.89039,271.20956,371.92437,1],[270.05828,372.05075,269.08036,372.85821,268.10205,373.47814,1],[265.50547,375.1235,263.49448,377.60735,260.85069,379.17573,1],[259.71983,379.8466,257.12072,379.41882,257.22574,380.7295,1],[257.33945,382.14868,259.98415,382.1,261.36812,381.76583,1],[262.26015,381.55044,262.56464,380.22628,263.44078,379.95336,1],[265.59791,379.2814,267.92741,380.49616,270.17471,380.7295,1],[275.77966,381.31148,282.84364,386.08031,287.00734,382.28325,1],[287.6452,381.70157,287.54588,380.36785,287.00734,379.69316,1],[285.79232,378.17102,283.16391,378.99412,281.30973,378.39812,1],[279.61543,377.85352,276.26712,378.10237,276.38974,376.32694,1],[276.48208,374.98997,279.97718,376.59727,280.27488,375.2906,1],[280.45168,374.51461,279.16805,374.10212,278.46093,373.73685,1],[276.52399,372.73631,274.32207,371.89072,272.14241,371.87706,1],[272.14241,371.87706],null,[360.8914,376.88428],[358.73459,376.92123,356.84913,377.45143,356.67364,379.17573,1],[356.42689,381.60032,360.99031,381.70291,363.4061,382.02453,1],[365.30608,382.27749,367.84323,382.69093,369.10369,381.24693,1],[369.50107,380.79167,369.39847,379.96196,369.10369,379.43445,1],[368.46091,378.28414,367.03457,377.59546,365.73747,377.36327,1],[364.41051,377.12574,362.56893,376.85554,360.8914,376.88428,1],[360.8914,376.88428]],"flat":true},{"id":"digletts-cave","type":"line","lineWidth":"0.20791896","lineColor":"#000000","points":[[242.42773,99.324219],[242.42773,99.324219],null,[466.42773,225.99414],[466.42773,225.99414]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-victory-road-1","type":"line","lineWidth":"4","lineColor":"#000000","points":[[194.75806,74.35484],[194.75806,106.30175]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-victory-road-2","type":"line","lineWidth":"4","lineColor":"#000000","points":[[194.75806,106.30175],[194.75806,180.65659]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-route-1","type":"line","lineWidth":"4","lineColor":"#000000","points":[[242.27152,265.99878],[242.27152,180.77756]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-route-2","type":"line","lineWidth":"4","lineColor":"#000000","points":[[249.59645,83.73],[249.59645,94.475896],[242.27152,94.596864],[242.27152,180.77756]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-route-3","type":"line","lineWidth":"4","lineColor":"#000000","points":[[342.691,70.125962],[331.52608,70.125962],[331.52608,83.73],[249.59645,83.73]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-route-4","type":"line","lineWidth":"4","lineColor":"#000000","points":[[342.691,70.125962],[366.44098,70.125962],[366.44098,94.475896],[425.97481,94.475896],[425.97481,105.41019],[448.55661,105.41019]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-route-5","type":"line","lineWidth":"4","lineColor":"#000000","points":[[448.12892,105.41019],[448.12892,180.65659]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-route-6","type":"line","lineWidth":"4","lineColor":"#000000","points":[[448.12892,232.68941],[448.12892,180.65659]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-route-7","type":"line","lineWidth":"4","lineColor":"#000000","points":[[376.36329,180.65659],[448.12892,180.65659]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-route-8","type":"line","lineWidth":"4","lineColor":"#000000","points":[[514.42018,180.65659],[448.12892,180.65659]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-route-9","type":"line","lineWidth":"4","lineColor":"#000000","points":[[514.632,135.1771],[514.632,105.41019],[448.55661,105.41019]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-route-10","type":"line","lineWidth":"4","lineColor":"#000000","points":[[514.632,131.75562],[514.632,180.65659]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-route-11","type":"line","lineWidth":"4","lineColor":"#000000","points":[[448.12892,232.68941],[514.632,232.68941]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-route-12","type":"line","lineWidth":"4","lineColor":"#000000","points":[[514.632,180.65659],[514.632,283.32738]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-route-13","type":"line","lineWidth":"4","lineColor":"#000000","points":[[469.76981,294.96042],[469.76981,283.32738],[514.632,283.32738]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-route-14","type":"line","lineWidth":"4","lineColor":"#000000","points":[[469.76981,324.89842],[469.76981,294.96042]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-route-15","type":"line","lineWidth":"4","lineColor":"#000000","points":[[374.224,324.89842],[469.76981,324.89842]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-route-16","type":"line","lineWidth":"4","lineColor":"#000000","points":[[369.52032,180.65659],[311.01293,180.65659],[311.01293,225.50429]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-route-17","type":"line","lineWidth":"4","lineColor":"#000000","points":[[311.01293,222.76711],[311.01293,324.89842]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-route-18","type":"line","lineWidth":"4","lineColor":"#000000","points":[[311.01293,324.89842],[374.224,324.89842]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-route-19","type":"line","lineWidth":"4","lineColor":"#000000","points":[[374.224,324.89842],[374.224,372.28598]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-route-20","type":"line","lineWidth":"4","lineColor":"#000000","points":[[240.57797,372.28598],[374.224,372.28598]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-route-21","type":"line","lineWidth":"4","lineColor":"#000000","points":[[242.27152,372.40695],[242.27152,265.99878]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-route-22","type":"line","lineWidth":"4","lineColor":"#000000","points":[[240.57797,180.65659],[194.75806,180.65659]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-route-23","type":"line","lineWidth":"4","lineColor":"#000000","points":[[194.75806,41.451614],[194.75806,74.35484]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-route-24","type":"line","lineWidth":"4","lineColor":"#000000","points":[[448.12892,41.086285],[448.12892,105.41019]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-route-25","type":"line","lineWidth":"4","lineColor":"#000000","points":[[520.74993,41.086285],[448.12892,41.086285]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-route-26","type":"line","lineWidth":"4","lineColor":"#000000","points":[[164.6641,300.49955],[164.6641,213.72717],[194.75806,213.72717],[194.75806,180.65659]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-route-27","type":"line","lineWidth":"4","lineColor":"#000000","points":[[120.72581,300.49955],[164.6641,300.49955]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kanto-route-28","type":"line","lineWidth":"4","lineColor":"#000000","points":[[145.67742,180.65659],[194.75806,180.65659]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"mt-silver","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"143.71091","y":"180.31653","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"cinnabar-island","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"242.42848","y":"373.38785","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"seafoam-island","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"341.93198","y":"374.83945","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"pallet-town","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"242.42848","y":"266.93622","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"viridian-city","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"242.42848","y":"180.31653","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"viridian-forest","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"242.42848","y":"132.58136","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"pewter-city","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"251.62202","y":"82.816391","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"indigo-plateau","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"194.75806","y":"41.032974","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"mt-moon","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"342.42847","y":"70.33252","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"cerulean-city","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"448.50668","y":"105.03297","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"saffron-city","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"448.50668","y":"180.31653","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"lavender-town","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"514.42847","y":"180.31653","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"power-plant","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"514.42847","y":"132.58136","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"rock-tunnel","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"504.69293","y":"105.03297","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"celadon-city","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"374.42847","y":"180.31653","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"vermilion-city","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"448.50668","y":"232.31653","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"cerulean-cave","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"433.3317","y":"70.33252","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"kanto-safari-zone","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"356.6286","y":"324.76852","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"fuchsia-city","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"374.42847","y":"324.76852","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"tohjo-falls","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"120.80293","y":"300.32333","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"pokemon-tower","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"532.12848","y":"180.31653","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1}]
},
"2": {
"name": "Johto",
"svg":[{"id":"path4134","type":"poly","borderWidth":"4","borderColor":"none","backgroundColor":"#94ca90","points":[[-5.2325482,-1.952775],[-5.2325482,150.56181],[8.7263466,148.57819,33.713139,144.66838,36.525306,141.66873,1],[40.440917,137.49208,62.630351,138.79835,66.023878,140.62564,1],[69.417406,142.45292,73.593728,135.92628,86.645758,145.58478,1],[99.697788,155.24328,106.48559,164.64061,106.22455,170.3835,1],[105.96351,176.12639,115.09915,186.04596,122.93037,186.307,1],[130.76159,186.56804,149.81827,189.17905,152.68972,178.47638,1],[164.95794,178.21561],[165.47948,182.91398],[161.82569,182.65321],[161.56492,187.87313],[166.26329,187.87313],[166.52406,192.04996],[173.57237,192.04996],[174.09392,189.43925],[169.13477,189.43925],[169.39554,177.95334],[185.84059,177.69257],[185.84059,177.69257,185.84145,158.37616,190.80122,156.80992,1],[195.761,155.24367,202.80867,155.76534,202.80867,155.76534,1],[202.54791,159.94217],[191.8458,160.20294],[191.58354,174.29955],[200.19797,174.56032],[202.28713,177.69257],[206.2017,177.69257],[206.2017,177.69257,202.54791,182.3922,202.54791,185.52468,1],[202.54791,188.65717,194.19511,198.05356,199.15488,199.6198,1],[204.11465,201.18605,206.72503,199.35948,209.33544,203.27509,1],[211.94585,207.19069,212.9895,206.66814,212.72846,209.53959,1],[212.46742,212.41103,210.90156,220.50395,210.90156,220.50395,1],[205.68016,219.98091],[205.15861,216.32712],[193.41193,216.06634],[192.62813,230.94528],[205.94092,231.20604],[205.94092,227.55225],[210.90156,227.55225],[211.16233,244.77962],[215.59994,245.04188],[215.59994,245.04188,216.64439,248.95645,218.21064,248.95645,1],[219.77688,248.95645,219.51507,256.00475,221.86443,256.00475,1],[224.2138,256.00475,224.73591,260.18158,224.73591,260.18158,1],[227.60738,260.18158],[227.60738,263.05306],[227.86816,266.96911],[224.99668,268.27447],[225.51971,271.92826],[225.51971,271.92826,200.98124,296.20572,201.50333,298.81613,1],[202.02541,301.42653,216.38321,309.51826,216.90529,312.38971,1],[217.42737,315.26116,228.3914,319.43801,235.4395,319.43801,1],[242.4876,319.43801,244.05274,323.09224,246.66314,327.00786,1],[249.27354,330.92346,248.49102,329.61847,251.88455,334.05616,1],[255.27807,338.49386,260.7594,340.84274,265.45812,340.32066,1],[270.15685,339.79858,269.89644,335.36151,273.55101,335.36151,1],[277.20558,335.36151,275.89984,330.92415,287.12459,327.79167,1],[298.34933,324.65918,296.26157,312.91148,302.52655,309.779,1],[308.79152,306.64651,320.01656,292.81196,318.18928,288.89635,1],[316.36199,284.98074,297.0441,277.14912,297.30514,264.61919,1],[297.56618,252.08923,293.65134,248.95645,293.65134,248.95645,1],[293.39057,240.60428],[290.77987,240.34202],[291.04064,234.86133],[304.87499,234.86133],[304.87499,234.86133,306.18021,242.17002,307.74646,243.9973,1],[309.3127,245.82459,320.7999,251.82778,325.23759,250.52257,1],[329.67528,249.21737,331.76312,248.17321,331.50208,250.52257,1],[331.24105,252.87194,328.89194,254.96059,331.24131,256.00475,1],[333.59067,257.04891,336.20058,259.13677,334.63433,262.26925,1],[333.06809,265.40174,328.10834,266.18495,337.50581,270.88368,1],[346.90326,275.58241,344.81482,276.8883,352.12396,271.66749,1],[359.4331,266.44668,358.12732,280.80402,362.82606,283.15339,1],[367.52479,285.50275,371.44135,291.50651,376.40112,292.0286,1],[381.3609,292.55067,388.93012,298.0322,388.93012,299.59844,1],[388.93012,301.16469,398.32867,308.21263,406.68202,298.29309,1],[415.03532,288.37355,408.76918,286.28603,412.16271,284.45874,1],[415.55623,282.63146,411.90292,280.80347,415.29644,280.80347,1],[418.68997,280.80347,418.95069,286.80753,422.8663,284.98029,1],[426.7819,283.15301,433.04715,278.71541,435.65755,280.54269,1],[438.26796,282.36998,439.57212,282.89274,439.57212,281.3265,1],[439.57212,279.76025,438.52867,273.49439,443.2274,273.49439,1],[447.92613,273.49439,433.82985,257.04957,434.61297,253.91708,1],[435.39609,250.7846,440.87771,247.12952,437.74522,244.25808,1],[434.61274,241.38664,429.39204,235.90549,423.12706,234.86133,1],[416.86208,233.81716,423.38784,231.20638,410.33581,223.6362,1],[406.43796,221.37544,403.99096,219.13837,402.51412,216.9798,1],[406.64923,216.9798],[409.48805,219.45968,413.07665,221.80823,414.77341,222.85239,1],[418.16693,224.94071,421.82198,227.81279,421.56094,230.94528,1],[421.2999,234.07776,430.69724,233.55509,436.17909,238.7759,1],[441.66095,243.99671,440.87765,248.69609,445.0543,249.74025,1],[449.23095,250.78441,452.88542,254.17786,449.4919,254.17786,1],[446.09837,254.17786,441.39928,250.78433,441.13824,254.17786,1],[440.8772,257.57139,440.61717,262.79202,447.40423,263.05306,1],[454.19127,263.3141,451.05811,255.22125,459.67245,257.83165,1],[468.28679,260.44205,470.89788,258.61545,473.50829,258.61545,1],[476.11869,258.61545,466.19952,250.78441,468.80992,249.74025,1],[471.42033,248.69609,475.33587,248.69517,476.11899,252.0887,1],[476.90212,255.48223,476.90218,259.137,481.86195,259.137,1],[486.82172,259.137,489.69281,256.26564,486.56032,254.6994,1],[485.15663,253.99756,484.91183,252.66579,485.36822,251.22293,1],[491.51947,250.91447],[491.91137,253.00364],[500.37976,252.92466],[501.869,255.2245,503.48518,257.0255,505.61607,255.22244,1],[509.0096,252.35099,507.70384,250.7843,516.31818,251.30638,1],[519.0747,251.47345,520.51664,251.3455,521.4919,251.14694,1],[521.46554,252.74189,521.56133,255.37382,522.45303,256.26553,1],[523.5903,257.4028,524.43039,257.05279,525.23212,255.99432,1],[539.77278,255.8915],[539.93045,256.81221,540.30212,257.57088,541.11688,257.57088,1],[543.20521,257.57088,546.33901,260.44259,549.99358,257.31011,1],[550.47055,256.90128,550.90153,256.38752,551.30638,255.80955,1],[557.36226,255.76633],[557.89224,256.61557,558.8111,257.18884,560.4349,256.9182,1],[563.56739,256.39611,562.78414,253.91728,562.00103,253.00364,1],[561.87713,252.85909,561.63364,252.726,561.34835,252.6028,1],[561.34835,245.93894],[566.26132,246.88695,561.63818,250.05443,565.39405,251.30638,1],[569.30965,252.61158,564.87172,259.91998,568.52629,257.83165,1],[572.18086,255.74332,575.05282,251.04459,578.1853,244.77962,1],[581.31779,238.51465,587.58339,245.56292,586.27819,235.90442,1],[584.97299,226.24592,578.18572,221.54763,579.22988,213.71641,1],[580.27405,205.88519,572.9639,209.27825,572.9639,206.92888,1],[572.9639,204.57952,570.61579,202.75221,576.09763,204.05741,1],[581.57949,205.36261,571.39825,199.09868,578.1853,200.14284,1],[584.97236,201.18701,586.27822,209.27893,589.14966,207.71269,1],[592.02111,206.14644,601.67816,203.53535,605.07168,206.92888,1],[605.11823,206.97543,605.17978,207.01388,605.23261,207.05703,1],[605.23261,-1.952775],[-5.2325482,-1.952775],[-5.2325482,-1.952775],null,[316.73641,23.671464],[319.95556,23.714578,322.9283,25.048722,321.5823,25.766584,1],[319.6245,26.810746,321.71339,29.943442,323.93223,32.814889,1],[326.15108,35.686335,336.06958,27.854939,340.89883,28.63806,1],[345.72808,29.421182,340.57308,33.011429,340.37728,34.251371,1],[340.18152,35.491314,339.85501,36.731362,341.29073,37.775524,1],[342.72646,38.819687,342.98806,37.644765,343.64067,40.907773,1],[344.29327,44.17078,342.46507,41.168307,340.89883,44.300795,1],[339.33259,47.433282,338.02835,46.388985,336.33159,50.957196,1],[334.63483,55.525406,333.85081,54.350902,328.49948,55.134024,1],[323.14814,55.917145,319.88528,54.090785,316.7528,52.785582,1],[313.62031,51.480379,317.40628,51.219309,316.62316,49.914106,1],[315.84004,48.608903,317.53662,48.34661,317.5366,46.780367,1],[317.5366,45.214124,317.40501,43.518209,318.57969,43.77925,1],[319.75437,44.04029,321.32084,42.734715,320.53772,40.515869,1],[319.7546,38.297024,322.62611,37.644318,326.28067,36.991717,1],[329.93524,36.339115,332.93742,34.512606,333.32898,33.337924,1],[333.72054,32.163241,329.93485,33.076689,328.10757,34.251371,1],[326.28028,35.426054,325.23625,35.294729,321.45117,35.033689,1],[317.66608,34.772648,319.23325,35.425622,319.10273,38.297069,1],[318.97221,41.168516,316.88298,38.557797,316.36089,40.776642,1],[315.83882,42.995487,314.27312,41.168769,310.74907,43.126574,1],[307.22503,45.084379,313.75057,47.825095,311.92329,49.130299,1],[310.096,50.435502,308.00762,47.95511,306.18034,52.52332,1],[304.35306,57.091531,299.65489,54.87276,295.47824,53.175996,1],[291.30159,51.479233,304.87506,52.131611,305.52766,51.217968,1],[305.95252,50.623176,301.48337,49.061922,299.0158,46.506183,1],[297.69302,45.136134,295.74909,41.654617,294.56479,40.515869,1],[291.17126,37.252862,293.78162,30.597087,296.78359,28.900323,1],[299.78556,27.20356,304.09217,34.511876,307.48569,34.772916,1],[310.87922,35.033957,308.79088,26.811208,312.57597,24.592363,1],[313.75881,23.898973,315.27315,23.651867,316.73641,23.671464,1],[316.73641,23.671464],null,[413.1894,91.692818],[414.23561,91.65612,415.55722,92.463217,415.55722,92.463217,1],[416.34034,94.029461,415.03472,93.245565,414.51264,96.117009,1],[413.99056,98.988454,415.42611,95.333998,418.29756,99.641161,1],[421.169,103.94833,417.38381,103.81833,414.77341,104.2099,1],[412.163,104.60145,414.90504,100.03368,411.51152,100.1642,1],[408.11799,100.29472,411.64126,103.94938,407.20356,103.68835,1],[402.76587,103.42731,405.115,102.12201,405.24553,100.1642,1],[405.37605,98.206396,406.55091,97.422363,409.42236,97.422363,1],[412.29381,97.422363,411.38019,93.115475,412.29383,92.071315,1],[412.52224,91.810273,412.84067,91.705071,413.1894,91.692818,1],[413.1894,91.692818],null,[253.71741,104.27696],[254.02089,104.27757,253.81002,104.47101,254.49525,104.86257,1],[255.4089,105.38465,254.36412,106.55998,254.36412,107.86518,1],[254.36412,109.17038,253.58112,110.21321,252.798,109.16905,1],[252.01487,108.12486,251.4927,110.0828,249.27385,107.60292,1],[247.05499,105.12303,252.11946,104.51061,253.1899,104.34103,1],[253.45751,104.29863,253.61624,104.27674,253.71741,104.27696,1],[253.71741,104.27696],null,[368.12942,110.89908],[370.33195,110.86645,372.81213,110.99751,373.92155,111.65011,1],[376.1404,112.95531,373.79012,117.52323,371.17972,117.00115,1],[368.56931,116.47907,367.52597,113.47727,365.30713,113.21623,1],[363.08828,112.95519,360.86929,111.64914,364.00177,111.12707,1],[364.00177,111.12707,365.92694,110.93171,368.12942,110.89908,1],[368.12942,110.89908],null,[280.37282,112.13142],[280.59159,112.12531,280.80094,112.13947,280.99121,112.17165,1],[282.51346,112.4291,281.38239,112.43333,282.81812,115.17426,1],[284.25384,117.91519,282.4258,121.43837,281.38163,123.26565,1],[280.33746,125.09294,279.16349,123.00542,277.07516,122.48334,1],[274.98683,121.96125,276.29105,118.82741,276.55213,115.82544,1],[276.78053,113.19872,278.84139,112.17417,280.37282,112.13142,1],[280.37282,112.13142],null,[443.83686,112.68426],[444.31759,112.67457,444.8093,112.67688,445.31507,112.6932,1],[445.31507,112.6932,432.78631,116.34839,429.65383,120.78608,1],[427.00589,124.53732,417.28959,123.63697,412.44881,125.47253,1],[412.29235,122.90951],[416.16653,122.77482,420.11792,123.09678,425.21473,120.00227,1],[432.06705,115.84194,436.62606,112.82956,443.83686,112.68426,1],[443.83686,112.68426],null,[299.78471,113.8689],[301.41622,113.91115,301.2218,113.60747,301.35232,115.6958,1],[301.48285,117.78413,298.87126,121.30762,298.87126,121.30762,1],[295.34711,121.17798],[295.34711,121.17798,295.60807,121.04724,294.69443,119.21995,1],[293.78079,117.39267,298.15321,113.82666,299.78471,113.8689,1],[299.78471,113.8689],null,[359.77577,115.59746],[359.85735,115.59746,360.02019,115.69614,360.34649,116.0877,1],[360.99909,116.87082,360.08572,123.13601,360.08572,123.13601,1],[354.21312,123.13601],[354.21312,123.13601,354.21176,123.00553,355.51699,120.91721,1],[356.82218,118.82889,359.69381,115.6958,359.69381,115.6958,1],[359.69381,115.6958,359.69419,115.59746,359.77577,115.59746,1],[359.77577,115.59746],null,[341.29073,121.83066],[341.29073,121.83066,347.81715,124.96271,347.42559,125.87635,1],[347.03403,126.79,346.25126,131.2273,342.72721,127.70325,1],[339.20316,124.1792,340.37709,121.83066,341.29073,121.83066,1],[341.29073,121.83066],null,[298.74162,122.61298],[298.74162,122.61298,297.69746,125.22409,298.74162,126.26826,1],[299.78579,127.31242,297.56645,130.05296,297.04437,128.09516,1],[296.52228,126.13735,295.73901,122.87375,295.73901,122.87375,1],[298.74162,122.61298],[298.74162,122.61298],null,[410.59658,123.00339],[410.59658,126.52606],[410.505,126.61132,410.41502,126.69739,410.33581,126.78981,1],[407.20332,130.44438,411.11974,135.927,409.55349,136.18804,1],[408.36566,136.38601,405.52899,136.43556,404.22628,137.58578,1],[400.47116,137.69009],[400.50743,136.98317,400.56963,136.43253,400.67829,136.18804,1],[401.72245,133.83867,401.72236,134.36019,405.11589,133.83811,1],[408.50942,133.31603,401.46067,125.48484,407.20356,123.65756,1],[408.3579,123.29027,409.48008,123.10537,410.59658,123.00339,1],[410.59658,123.00339],null,[360.08572,124.70213],[360.08572,124.70213,362.69639,127.05092,359.82494,127.44248,1],[356.9535,127.83405,353.69008,129.00811,353.69008,127.31135,1],[353.69008,125.61458,354.08199,124.83177,354.08199,124.83177,1],[360.08572,124.70213],[360.08572,124.70213],null,[400.44285,139.97297],[403.57361,139.97297],[403.60069,141.82053,403.74683,146.8256,404.00277,152.54666,1],[401.17599,152.67481],[400.80668,147.9355,400.49397,143.18962,400.44285,139.97297,1],[400.44285,139.97297],null,[51.822959,149.37418],[51.291047,149.37004,50.750596,149.37276,50.20319,149.38164,1],[32.154416,149.67417,6.1340997,156.85545,-5.2325482,160.2551,1],[-5.2325482,197.47849],[2.83815,200.57074,13.921524,206.89141,16.948006,209.53959,1],[21.124655,213.19416,50.621558,209.27885,55.320289,212.15029,1],[60.01902,215.02174,54.538508,228.33543,54.016427,233.2952,1],[53.811695,235.24016,55.020157,237.79347,56.539214,240.54915,1],[48.34202,240.36437],[46.497402,239.70026,43.300273,241.5044,39.13601,241.12583,1],[33.393116,240.60375,35.22058,244.77959,30.260809,241.90815,1],[25.301037,239.03669,21.646348,237.73281,18.774902,237.73281,1],[15.903456,237.73281,4.6786789,230.42289,2.8513963,228.33457,1],[1.8747101,227.21836,-1.9048455,227.66893,-5.2325482,228.32861,1],[-5.2325482,265.66377],[5.4681269,266.44273,17.210164,258.61526,22.951731,258.87623,1],[28.694624,259.13727,26.606657,252.872,31.305388,256.26553,1],[36.004119,259.65906,48.27258,258.09403,53.493392,256.52779,1],[55.605533,255.89415,55.567934,254.18447,54.721258,252.0887,1],[61.779994,252.0887],[61.838019,252.53449,61.864712,252.97014,61.847049,253.39405,1],[61.586009,259.65902,66.02349,257.31076,67.850774,255.22244,1],[68.291044,254.71928,68.560853,253.07745,68.722499,250.82805,1],[72.549148,250.87424],[72.546255,252.76789,72.549148,254.68222,72.549148,255.48321,1],[72.549148,259.65987,84.034815,260.18206,87.167302,253.91708,1],[90.299789,247.65211,96.043517,252.34988,102.30849,253.39405,1],[108.57347,254.43821,108.05073,249.73942,117.44819,247.6511,1],[126.84566,245.56277,123.19114,239.82066,123.19114,230.94528,1],[123.19114,222.06989,119.53675,224.68048,114.31594,222.07007,1],[109.09513,219.45967,117.97135,215.28248,116.4051,209.53959,1],[114.83886,203.79669,81.425364,156.28683,61.586276,150.54393,1],[58.873902,149.75877,55.546341,149.4032,51.822959,149.37418,1],[51.822959,149.37418],null,[298.87126,151.32774],[298.87126,151.32774,297.95845,153.54594,300.96042,153.41541,1],[300.82929,156.41801],[297.95782,156.28689],[298.08894,159.6814],[300.43739,159.55026],[300.43739,162.55287],[293.91212,162.16097],[293.39057,151.58851],[298.87126,151.32774],[298.87126,151.32774],null,[305.26689,151.32774],[311.27061,151.45887],[311.00985,161.5083],[303.43999,161.9002],[303.17922,159.15836],[304.74535,159.28949],[304.87499,156.15725],[303.57113,156.15725],[303.83189,153.28577],[303.83189,153.28577,305.91949,154.19919,305.26689,151.32774,1],[305.26689,151.32774],null,[404.05939,153.86245],[404.24492,157.80152,404.47296,161.7025,404.73293,164.57051,1],[402.17885,164.54815],[401.93073,161.7559,401.62643,158.29351,401.2803,153.96974,1],[404.05939,153.86245],[404.05939,153.86245],null,[402.37257,166.76845],[404.97582,166.85636],[405.10401,167.837,405.23805,168.54014,405.37666,168.81737,1],[406.42083,170.9057,406.94317,176.64841,405.11589,177.69257,1],[405.08763,177.70872,405.06169,177.73292,405.03393,177.75069,1],[401.50233,177.78347],[401.72962,176.83707,402.05258,176.00795,402.50519,175.34413,1],[406.4208,169.60124,402.76623,171.95039,402.50519,168.29582,1],[402.48918,168.07179,402.40484,167.15057,402.37257,166.76845,1],[402.37257,166.76845],null,[335.75789,168.76969],[336.50812,168.78345,337.1139,168.9485,337.1139,168.9485,1],[338.54962,171.16735,337.63572,173.38511,337.37468,175.08187,1],[337.11364,176.77863,333.06759,175.08264,332.93707,171.42807,1],[332.8555,169.14397,334.50749,168.74674,335.75789,168.76969,1],[335.75789,168.76969],null,[592.42795,174.96862],[593.45579,174.98493,594.50072,175.34413,594.50072,175.34413,1],[595.80592,176.77985,595.15236,177.43161,593.97768,178.34525,1],[592.803,179.25889,590.58405,179.38891,590.45353,176.64799,1],[590.38827,175.27753,591.4001,174.9523,592.42795,174.96862,1],[592.42795,174.96862],null,[401.15811,180.08721],[403.59,180.17363],[403.03203,182.32261,403.08114,185.67157,404.07131,189.96229,1],[404.57614,192.14986,404.91483,194.71691,405.05926,197.29669,1],[402.43664,197.33544],[401.95221,192.03311,400.73445,185.11043,401.15811,180.08721,1],[401.15811,180.08721],null,[232.43689,187.35158],[232.69767,193.48644],[226.43317,193.3553],[226.69394,187.48123],[232.43689,187.35158],[232.43689,187.35158],null,[402.61248,200.27993],[405.13526,200.3604],[405.10347,204.67424,404.46049,208.60288,403.02673,210.32339,1],[402.146,211.38027,402.82872,212.91449,404.22628,214.56132,1],[401.24156,214.60155],[399.63576,210.46821,401.16624,206.72311,402.24441,203.79663,1],[402.55353,202.95761,402.64082,201.73099,402.61248,200.27993,1],[402.61248,200.27993],null,[-5.2325482,201.55548],[-5.2325482,224.98774],[-5.142616,224.97015,-5.0706702,224.95984,-4.9792259,224.94155,1],[-1.0636165,224.15843,7.2889069,227.0291,11.726598,228.59534,1],[16.164288,230.16159,19.819929,234.33829,23.735538,234.33829,1],[27.651147,234.33829,31.56622,237.47054,37.309113,237.47054,1],[43.052006,237.47054,48.272938,237.4712,48.795019,235.38287,1],[49.3171,233.29455,48.272819,224.41904,50.361143,223.89697,1],[52.449468,223.37488,50.62272,218.41571,49.839599,216.06634,1],[49.056477,213.71698,17.992287,213.71614,15.381882,213.97719,1],[12.804662,214.23491,1.5840317,204.07509,-5.2325482,201.55548,1],[-5.2325482,201.55548],null,[408.90082,209.01804],[410.7281,209.01804,410.20502,209.93191,410.59658,210.97607,1],[410.98814,212.02024,408.77048,212.01962,407.98736,210.84494,1],[407.20424,209.67025,408.90082,209.01804,408.90082,209.01804,1],[408.90082,209.01804],null,[76.986748,221.28626],[76.986748,221.28626,77.509486,222.85242,74.899079,225.72387,1],[73.372119,227.40352,72.837884,235.85073,72.648986,243.42658,1],[68.920687,243.38337],[68.924692,236.74422,68.634582,229.31063,68.634582,226.50767,1],[68.634582,221.28686,76.986748,221.28626,76.986748,221.28626,1],[76.986748,221.28626],null,[350.34922,221.28626],[350.89985,221.2702,351.34165,221.4174,351.34165,221.4174,1],[352.90789,223.24468,351.20998,225.20289,351.73206,227.55225,1],[352.25414,229.90162,350.68813,231.07518,348.59981,230.81414,1],[346.51148,230.5531,348.20791,227.94283,348.20791,224.15774,1],[348.20791,221.79206,349.4315,221.31303,350.34922,221.28626,1],[350.34922,221.28626],null,[291.30142,225.855],[291.30142,225.855,301.35114,225.85449,303.96154,229.24802,1],[306.57195,232.64155,303.57113,231.85872,303.57113,231.85872,1],[290.64874,231.72759],[290.77987,229.50879],[291.56218,229.37915],[291.30142,225.855],[291.30142,225.855],null,[287.12459,229.11837],[288.95297,229.24802],[288.69071,231.85872],[285.03692,231.72759],[285.03692,229.9007],[286.99495,230.42373],[287.12459,229.11837],[287.12459,229.11837],null,[285.16656,234.59907],[288.95297,234.59907],[288.82184,236.68823],[286.86381,236.949],[286.73268,238.7759],[288.95297,238.64626],[289.08261,242.56082],[291.43254,242.69195],[290.90951,247.6511],[287.38535,247.91336],[287.38535,247.91336,287.90851,239.55875,286.34227,239.03666,1],[284.77614,238.51512],[285.16656,234.59907],[285.16656,234.59907],null,[353.99854,237.94291],[354.51451,237.95311,354.86431,237.99358,354.86431,237.99358,1],[355.90847,239.55982,355.25614,241.38621,354.60354,243.21349,1],[353.95093,245.04078,355.64865,244.51873,355.12657,246.08498,1],[354.60449,247.65122,353.03745,247.52157,350.81861,245.95533,1],[348.59977,244.38908,350.55777,243.86729,349.90516,240.60428,1],[349.41571,238.15703,352.45066,237.91233,353.99854,237.94291,1],[353.99854,237.94291],null,[57.613596,242.46247],[58.948724,244.81255,60.322154,247.23859,61.133278,249.52716,1],[53.520215,249.66426],[52.158308,247.20913,50.438481,244.60238,49.902184,242.63532,1],[57.613596,242.46247],[57.613596,242.46247],null,[492.40013,245.44869],[494.43184,245.50231,496.17026,246.98233,497.78545,248.95645,1],[498.2535,249.5285,498.71161,250.24657,499.17127,250.98898,1],[493.99904,251.04561],[493.73826,249.34835],[486.51711,249.05479],[487.28764,248.0063,488.31439,247.03487,489.43179,246.34724,1],[490.49227,245.69463,491.47663,245.42431,492.40013,245.44869,1],[492.40013,245.44869],null,[558.43515,246.04474],[558.67208,252.09466],[557.54889,252.08795,556.59031,252.35769,556.64998,253.13328,1],[556.67154,253.41355,556.71179,253.72141,556.76472,254.03332,1],[552.39715,254.01841],[554.10111,250.89927,555.5575,247.07078,558.43515,246.04474,1],[558.43515,246.04474],null,[68.902805,246.29955],[72.586401,246.38598],[72.575541,247.13506,72.565273,247.8734,72.559579,248.57199,1],[68.840219,248.70611],[68.8699,247.94551,68.888435,247.1309,68.902805,246.29955,1],[68.902805,246.29955],null,[525.55995,250.52704],[526.46251,250.58222,527.65723,250.73416,529.37021,251.04561,1],[537.98455,252.61185,539.81153,252.61173,539.81153,252.61173,1],[539.81153,252.61173,539.72325,253.20903,539.68636,253.97371,1],[525.6732,253.92603],[525.42582,252.91473,524.93258,251.75196,525.55995,250.52704,1],[525.55995,250.52704]],"flat":true},{"id":"path4214","type":"poly","borderWidth":"4","borderColor":"none","backgroundColor":"#c9b293","points":[[151.04102,174.1582],[137.19727,174.71094],[137.19727,174.71094,137.19728,177.11199,136.82812,181.35742,1],[136.60736,183.89616,131.18005,185.57074,126.8457,186.51172,1],[135.71012,187.03127,149.85019,187.65205,152.58008,178.80664,1],[152.55859,178.47656],[151.04102,174.1582],[151.04102,174.1582],null,[116.10938,213.25977],[112.02804,213.63151,105.12071,214.68033,107.66016,217.50195,1],[111.18421,221.41755,111.96596,222.46043,110.13867,223.76562,1],[108.31139,225.07083,104.00491,230.81452,107.39844,234.59961,1],[110.79197,238.38469,111.57444,240.34214,116.92578,240.47266,1],[119.7248,240.54093,122.15807,240.75166,123.88477,240.9375,1],[123.92023,238.26547,123.19141,234.92211,123.19141,230.94531,1],[123.19141,222.06992,119.53722,224.68072,114.31641,222.07031,1],[110.29986,220.06204,114.61282,217.12208,116.10938,213.25977,1],[116.10938,213.25977],null,[150.13477,213.85352],[148.3541,213.83344,146.43139,214.61428,146.94531,218.28516,1],[147.85895,224.81118,149.16464,224.55054,151.64453,222.20117,1],[154.12442,219.85181,157.38731,219.71987,156.86523,217.89258,1],[156.34315,216.0653,154.12552,215.54383,152.82031,214.36914,1],[152.82031,214.36914,151.51973,213.86913,150.13477,213.85352,1],[150.13477,213.85352],null,[129.93555,214.98438],[128.66862,215.0362,127.66935,215.52197,127.49805,216.84961,1],[126.97596,220.89574,125.93239,223.76597,129.97852,223.89648,1],[134.02465,224.02701,137.54789,221.67791,137.93945,220.24219,1],[138.33102,218.80647,138.72403,218.02361,136.24414,216.58789,1],[136.24414,216.58789,133.03062,215.10937,130.49414,214.98828,1],[130.3039,214.9792,130.11654,214.97695,129.93555,214.98438,1],[129.93555,214.98438],null,[151.38477,231.72852],[151.38477,231.72852,146.42493,233.55475,147.59961,237.33984,1],[148.7743,241.12493,150.86267,242.17077,154.38672,240.99609,1],[157.91076,239.82141,156.73563,238.9071,159.47656,237.73242,1],[162.21748,236.55773,156.60558,231.46748,151.38477,231.72852,1],[151.38477,231.72852],null,[135.02148,232.27734],[134.6934,232.27046,134.54688,232.38086,134.54688,232.38086,1],[134.54688,232.38086,127.36887,234.33889,131.02344,237.73242,1],[134.67801,241.12595,136.63492,242.56065,138.20117,240.3418,1],[139.76741,238.12296,141.07296,237.07882,138.33203,234.33789,1],[136.61895,232.62481,135.56829,232.28881,135.02148,232.27734,1],[135.02148,232.27734]],"flat":true},{"id":"path4234","type":"poly","borderWidth":"4","borderColor":"none","backgroundColor":"#679363","points":[[245.95682,-1.952775],[240.11314,4.0231038,235.78169,8.4349343,235.58106,8.585409,1],[234.84272,9.1391598,265.29868,61.192884,265.29868,61.192884,1],[295.75391,69.683633],[304.98377,87.034682],[304.98377,87.034682,321.41204,97.371406,321.04288,94.233487,1],[320.6737,91.095569,319.19704,83.527209,321.04288,80.943039,1],[322.88871,78.358869,328.6108,78.542683,326.76497,74.481844,1],[324.91913,70.421005,329.16403,65.992058,333.40944,66.914975,1],[337.65487,67.837892,336.36288,73.374295,342.08497,73.005128,1],[347.80706,72.63596,415.54909,72.635768,417.7641,72.820352,1],[419.9791,73.004935,427.36273,40.518994,426.6244,39.226909,1],[426.21981,38.518876,434.09872,17.23294,441.33196,-1.952775,1],[245.95682,-1.952775],[245.95682,-1.952775],null,[316.73641,23.671464],[319.95556,23.714578,322.9283,25.048722,321.5823,25.766584,1],[319.6245,26.810746,321.71339,29.943442,323.93223,32.814889,1],[326.15108,35.686335,336.06958,27.854939,340.89883,28.63806,1],[345.72808,29.421182,340.57307,33.011429,340.37728,34.251371,1],[340.18152,35.491314,339.85501,36.731362,341.29073,37.775524,1],[342.72646,38.819687,342.98806,37.644765,343.64067,40.907773,1],[344.29327,44.17078,342.46507,41.168307,340.89883,44.300795,1],[339.33259,47.433282,338.02835,46.388985,336.33159,50.957196,1],[334.63483,55.525406,333.85081,54.350902,328.49948,55.134024,1],[323.14814,55.917145,319.88528,54.090785,316.7528,52.785582,1],[313.62031,51.480379,317.40628,51.219309,316.62316,49.914106,1],[315.84004,48.608903,317.53661,48.34661,317.5366,46.780367,1],[317.5366,45.214124,317.40501,43.518209,318.57969,43.77925,1],[319.75437,44.04029,321.32084,42.734715,320.53772,40.515869,1],[319.7546,38.297024,322.62611,37.644318,326.28067,36.991717,1],[329.93524,36.339115,332.93742,34.512606,333.32898,33.337924,1],[333.72054,32.163241,329.93485,33.076689,328.10757,34.251371,1],[326.28028,35.426054,325.23625,35.294729,321.45117,35.033689,1],[317.66608,34.772648,319.23325,35.425622,319.10273,38.297069,1],[318.97221,41.168516,316.88298,38.557797,316.36089,40.776642,1],[315.83882,42.995487,314.27312,41.168769,310.74907,43.126574,1],[307.22503,45.084379,313.75057,47.825095,311.92329,49.130299,1],[310.096,50.435502,308.00762,47.95511,306.18034,52.52332,1],[304.35306,57.091531,299.65489,54.87276,295.47824,53.175996,1],[291.30159,51.479233,304.87506,52.131611,305.52766,51.217968,1],[305.95252,50.623176,301.48337,49.061922,299.0158,46.506183,1],[297.69302,45.136134,295.74909,41.654617,294.56479,40.515869,1],[291.17126,37.252862,293.78162,30.597087,296.78359,28.900323,1],[299.78556,27.20356,304.09217,34.511876,307.48569,34.772916,1],[310.87922,35.033957,308.79088,26.811208,312.57597,24.592363,1],[313.75881,23.898973,315.27315,23.651867,316.73641,23.671464,1],[316.73641,23.671464]],"flat":true},{"id":"path4230","type":"poly","borderWidth":"4","borderColor":"none","backgroundColor":"#f4ed92","points":[[156.23026,-1.952775],[164.33059,56.208406],[164.33059,56.208406,166.17691,78.542731,173.37567,81.680652,1],[180.57443,84.818573,192.20388,76.328306,205.49389,82.23498,1],[218.78391,88.141655,223.02812,96.63202,237.24106,90.356176,1],[251.45399,84.080339,254.03875,70.605349,266.40585,72.820352,1],[278.77295,75.035354,276.55794,65.25305,289.29421,69.129305,1],[302.03048,73.00556,312.73561,79.282171,312.92018,75.5905,1],[313.10477,71.898828,271.75925,57.869899,275.45093,52.147808,1],[279.1426,46.425717,291.69423,44.948712,285.41839,36.0887,1],[279.14254,27.228688,272.8669,16.522503,279.88107,14.3075,1],[286.89525,12.092497,300.92322,19.10701,308.12197,13.200335,1],[310.49857,11.250316,309.26429,5.229126,306.55734,-1.952775,1],[156.23026,-1.952775],[156.23026,-1.952775]],"flat":true},{"id":"path4222","type":"poly","borderWidth":"4","borderColor":"none","backgroundColor":"#986749","points":[[-5.2325482,-1.952775],[-5.2325482,81.76708],[8.1908992,82.645228,20.652908,84.531553,21.647869,88.511399,1],[23.862872,97.371406,68.901747,79.65,105.08013,91.463339,1],[141.25851,103.27669,162.66997,104.01565,166.36164,87.772295,1],[169.34859,74.629715,158.32247,22.824328,168.08125,-1.952775,1],[-5.2325482,-1.952775],[-5.2325482,-1.952775],null,[395.74001,-1.952775],[389.39295,8.124222,385.56856,18.714921,391.55275,25.014069,1],[405.5811,39.780755,421.82498,60.453829,407.79663,61.930497,1],[393.76828,63.407166,358.32866,56.762782,352.42198,58.239451,1],[346.51531,59.71612,333.22554,65.622794,336.91721,81.127815,1],[340.60888,96.632837,333.96368,104.01627,331.01034,106.96961,1],[328.057,109.92295,336.91731,118.04343,339.87064,115.82842,1],[342.82398,113.61342,348.73042,105.4929,356.85214,105.4929,1],[364.97381,105.4929,376.78712,102.53966,378.26379,108.44633,1],[379.74046,114.35301,381.95574,118.78176,387.12409,115.82842,1],[392.29242,112.87508,395.24572,122.47367,385.64737,123.212,1],[381.73306,123.51311,371.86003,124.39857,360.65196,125.32799,1],[361.21474,126.0528,361.74537,127.1806,359.82494,127.44248,1],[356.9535,127.83405,353.69008,129.00811,353.69008,127.31135,1],[353.69008,126.71139,353.74452,126.26555,353.80781,125.88828,1],[351.62249,126.06284,349.43804,126.22399,347.24826,126.39045,1],[346.79773,127.77019,345.86322,130.83926,342.72721,127.70325,1],[342.41177,127.38781,342.14539,127.08558,341.90168,126.78981,1],[331.56375,127.53262,322.05675,128.08001,316.7975,128.01171,1],[312.40627,127.95468,305.8841,127.64689,298.97855,127.31433,1],[298.74367,128.41996,297.43069,129.54388,297.04437,128.09516,1],[296.97542,127.83662,296.89649,127.50505,296.82084,127.21151,1],[281.94058,126.49458,265.89724,125.75168,264.55957,127.08932,1],[262.52916,129.11974,266.22127,135.02565,272.12794,137.7944,1],[278.03462,140.56316,285.41734,133.36463,292.98526,133.7338,1],[300.55319,134.10297,314.39748,134.28669,320.67332,141.48545,1],[326.94917,148.68421,326.58058,150.16131,338.39393,149.05381,1],[350.20728,147.9463,356.85233,156.62168,351.31482,159.02127,1],[345.77732,161.42086,343.37687,173.4198,353.34438,172.86605,1],[363.31189,172.3123,364.23539,180.06366,365.34289,188.92367,1],[366.45039,197.78368,372.91111,211.99676,385.64737,210.52009,1],[398.38364,209.04342,399.67577,212.55142,398.56827,204.24516,1],[397.46077,195.9389,394.32227,180.4331,398.01394,174.8956,1],[401.70562,169.35809,393.39858,134.47266,397.27484,132.81141,1],[400.04239,131.62532,403.8119,131.10296,405.76111,130.89808,1],[405.39937,129.61552,404.86808,128.10659,404.86108,126.77043,1],[402.4754,125.59613,397.04065,122.28195,399.67543,117.30514,1],[402.99794,111.0293,406.50469,108.44513,406.50469,105.86096,1],[406.50469,104.81743,406.2949,104.11291,406.06808,103.57361,1],[403.23711,103.15207,405.12827,101.92304,405.24553,100.1642,1],[405.37605,98.206396,406.55091,97.422363,409.42236,97.422363,1],[412.29381,97.422363,411.38019,93.115475,412.29383,92.071315,1],[413.20748,91.027156,415.55722,92.463217,415.55722,92.463217,1],[416.34034,94.029461,415.03472,93.245565,414.51264,96.117009,1],[413.99056,98.988454,415.42611,95.333998,418.29756,99.641161,1],[420.02827,102.23723,419.33538,103.21865,417.9444,103.67643,1],[418.51104,104.34477,419.21244,105.10445,419.79514,105.4929,1],[420.90263,106.23124,414.44217,111.03007,418.31842,112.32215,1],[422.19468,113.61424,426.25566,99.955533,428.47067,98.478867,1],[430.68566,97.002194,432.16244,101.80064,431.4241,104.93857,1],[430.68576,108.07648,427.54736,106.78422,428.10111,110.47589,1],[428.5446,113.43245,428.91224,116.38327,429.07119,117.67916,1],[434.38731,114.5299,438.73894,112.48106,445.31507,112.6932,1],[445.31507,112.6932,432.78631,116.34839,429.65383,120.78608,1],[427.50517,123.83001,420.68965,123.80387,415.60937,124.66638,1],[415.19911,125.65661,414.55035,127.50237,414.81066,128.93409,1],[415.17983,130.96452,409.08881,133.17962,410.75007,137.60962,1],[412.41132,142.03963,413.51828,150.53133,411.67245,152.74634,1],[409.82661,154.96134,407.24236,156.80651,408.71902,160.68277,1],[410.19569,164.55902,408.35101,172.49678,409.82767,175.6347,1],[411.30435,178.77262,413.33414,180.43359,413.51872,183.94068,1],[413.70331,187.44777,413.70418,198.70674,411.48917,199.07591,1],[409.27417,199.44507,405.02812,206.09071,409.45813,206.82904,1],[413.88813,207.56738,410.38128,213.10502,411.11961,216.98128,1],[411.41848,218.55036,411.89651,220.04476,412.36238,221.28478,1],[413.30891,221.92131,414.17838,222.48622,414.77341,222.85239,1],[418.16693,224.94071,421.82198,227.81279,421.56094,230.94528,1],[421.2999,234.07776,430.69724,233.55509,436.17909,238.7759,1],[436.46245,239.04576,436.71893,239.31393,436.97035,239.58057,1],[439.31768,238.88129,443.7914,237.78875,445.26738,239.13054,1],[447.2978,240.97638,448.59051,249.83706,453.02052,249.83712,1],[457.45052,249.83712,472.77044,242.82241,476.83128,245.03741,1],[480.89212,247.25241,487.35303,243.37669,491.59845,244.11503,1],[492.83691,244.33041,493.80571,245.14799,494.69791,246.14011,1],[495.79546,246.76738,496.81406,247.76919,497.78545,248.95645,1],[498.12237,249.36823,498.45305,249.85766,498.78384,250.37207,1],[499.7917,250.93934,500.9707,251.13118,502.48829,250.57473,1],[508.02581,248.54431,509.50291,243.19208,515.77875,244.11503,1],[522.0546,245.03794,520.76241,245.03712,524.2695,247.6213,1],[525.95588,248.86389,526.91995,250.0173,528.18109,250.84295,1],[528.55437,250.90298,528.93489,250.96646,529.37021,251.04561,1],[531.78767,251.48515,533.56867,251.77929,535.02673,252.00674,1],[541.06938,251.44326,541.55438,246.70336,546.60353,246.88368,1],[551.77187,247.06827,548.81921,239.31566,550.1113,238.20816,1],[551.40338,237.10065,551.40218,221.59581,553.24801,221.22666,1],[555.09385,220.85749,557.49358,221.96532,557.67816,220.11949,1],[557.86275,218.27365,557.12451,213.47314,554.90951,213.10397,1],[552.69451,212.7348,550.84947,210.88954,551.40324,202.21411,1],[551.95696,193.53868,549.00317,190.95471,553.80234,190.95471,1],[558.60152,190.95471,565.43092,189.66195,565.06175,193.16904,1],[564.69258,196.67612,563.95444,199.99873,565.24653,201.84457,1],[566.53861,203.6904,568.01494,205.35238,572.07578,201.10695,1],[576.13662,196.86153,569.12345,191.69299,574.47637,189.47799,1],[579.8293,187.26299,584.2592,184.49471,582.96713,181.3568,1],[581.67504,178.21887,573.55221,173.0501,570.41428,173.78844,1],[567.27637,174.52677,562.47734,172.86595,563.40025,169.91261,1],[564.32317,166.95927,563.95449,164.0057,566.72324,164.00575,1],[569.492,164.00575,564.6931,156.0687,569.86145,154.03828,1],[575.02978,152.00786,594.78028,144.43998,594.22653,138.34873,1],[593.67278,132.25747,597.73356,115.45983,592.74981,110.66066,1],[587.76605,105.86148,572.44547,101.43224,582.59757,94.233487,1],[588.27368,90.20863,597.87104,92.932086,605.23261,92.504943,1],[605.23261,-1.952775],[395.74001,-1.952775],[395.74001,-1.952775],null,[290.55784,72.526797],[290.10215,72.532565,289.52436,72.590921,288.73988,72.637066,1],[288.73988,72.637066,283.01852,75.774362,276.55809,76.328113,1],[270.09766,76.881863,265.48279,76.327921,267.69779,81.865429,1],[269.9128,87.402936,273.23568,95.524521,268.06734,96.078267,1],[262.899,96.63202,262.5296,100.69271,266.40585,103.0923,1],[270.28211,105.49188,263.08338,109.73813,267.88256,111.03021,1],[272.09075,112.16319,274.45338,115.70566,276.58938,115.56616,1],[276.9793,112.77604,279.51483,111.92195,280.99121,112.17165,1],[282.51346,112.4291,281.38239,112.43333,282.81812,115.17426,1],[283.25888,116.01572,283.38944,116.93022,283.33221,117.84755,1],[294.84344,117.68214],[295.72278,115.89174,298.54342,113.83676,299.78471,113.8689,1],[301.17642,113.90494,301.2414,113.7812,301.3106,115.01332,1],[301.86205,114.64287,302.67399,114.3517,303.8766,114.3517,1],[307.1991,114.3517,315.69029,114.16789,319.93571,109.36872,1],[324.18114,104.56954,326.39522,96.816508,320.48855,93.124836,1],[314.58187,89.433164,312.36745,82.604627,311.07541,79.835874,1],[309.78332,77.06712,295.75478,79.097588,293.72436,75.5905,1],[292.20155,72.960184,291.92491,72.509492,290.55784,72.526797,1],[290.55784,72.526797],null,[534.58566,163.09975],[542.94058,163.14842,550.29607,164.14351,550.29607,166.22008,1],[550.29607,169.54258,542.17435,179.51057,537.37517,180.98725,1],[532.576,182.46391,511.53351,190.58597,504.51934,187.07889,1],[497.50516,183.57179,484.5835,184.67801,485.13725,181.54009,1],[485.691,178.40216,485.50666,176.0963,486.79874,174.34276,1],[488.09082,172.58922,490.67494,171.20461,491.04411,166.95918,1],[491.41329,162.71376,508.21058,165.667,519.83935,164.00575,1],[524.20014,163.38278,529.57269,163.07055,534.58566,163.09975,1],[534.58566,163.09975]],"flat":true},{"id":"path4226","type":"poly","borderWidth":"4","borderColor":"none","backgroundColor":"#deeff0","points":[[542.76944,91.405226],[535.04248,91.666824,532.59772,100.06969,524.63756,107.33767,1],[516.14671,115.09018,491.96651,124.13588,491.96651,124.13588,1],[486.429,134.65715,520.94613,152.00734,532.02114,149.23858,1],[543.09616,146.46983,558.23249,141.85504,575.39877,143.33171,1],[582.43348,143.93685,589.06195,138.74346,594.43962,132.4046,1],[595.10475,124.86452,596.5352,114.30585,592.74981,110.66066,1],[592.23039,110.16047,591.58017,109.66476,590.87673,109.16905,1],[583.6643,107.8108,575.49922,105.95081,569.4919,103.64662,1],[556.01729,98.478287,553.4338,92.386251,544.38921,91.463339,1],[543.82392,91.405661,543.28457,91.387785,542.76944,91.405226,1],[542.76944,91.405226]],"flat":true},{"id":"path4228","type":"poly","borderWidth":"4","borderColor":"none","backgroundColor":"none","points":[[486.7986,174.34205],[488.09067,172.5885,490.67484,171.20413,491.04401,166.9587,1],[491.41319,162.71328,508.21029,165.66662,519.83906,164.00536,1],[531.46782,162.34411,550.29534,162.89786,550.29534,166.22037,1],[550.29534,169.54287,542.17367,179.51038,537.3745,180.98706,1],[532.57532,182.46372,511.53279,190.5854,504.51862,187.07831,1],[497.50444,183.57122,484.58359,184.67873,485.13734,181.5408,1],[485.6911,178.40288,485.50652,176.09558,486.7986,174.34205,1],[486.7986,174.34205]],"flat":true},{"id":"johto-route-48","type":"line","lineWidth":"4","lineColor":"#000000","points":[[45.847891,185.81508],[45.847891,228.199]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"johto-route-47","type":"line","lineWidth":"4","lineColor":"#000000","points":[[111.54039,228.2471],[45.847891,228.2471]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"johto-route-41","type":"line","lineWidth":"4","lineColor":"#000000","points":[[143.70235,228.2471],[112.90899,228.2471]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"johto-route-40","type":"line","lineWidth":"4","lineColor":"#000000","points":[[143.01805,226.87289],[143.01805,166.106],[164.321,166.106]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"johto-route-39","type":"line","lineWidth":"4","lineColor":"#000000","points":[[164.23125,116.62652],[164.23125,163.843]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"johto-route-38","type":"line","lineWidth":"4","lineColor":"#000000","points":[[243.89895,116.36455],[164.063,116.36455]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"johto-route-42","type":"line","lineWidth":"4","lineColor":"#000000","points":[[322.30383,116.36455],[243.89895,116.36455]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"johto-route-44","type":"line","lineWidth":"4","lineColor":"#000000","points":[[327.77821,116.36455],[406.63102,116.36455]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"johto-route-29","type":"line","lineWidth":"4","lineColor":"#000000","points":[[411.94672,250.48113],[345.56992,250.48113]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"johto-route-46","type":"line","lineWidth":"4","lineColor":"#000000","points":[[406.3868,214.89769],[391.41782,214.89769],[391.41782,250.82328]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"johto-route-45","type":"line","lineWidth":"4","lineColor":"#000000","points":[[406.3868,116.33414],[406.3868,214.89769]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"johto-route-37","type":"line","lineWidth":"4","lineColor":"#000000","points":[[244.29399,116.59531],[244.29399,153.02172]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"johto-route-36","type":"line","lineWidth":"4","lineColor":"#000000","points":[[233.53681,152.97443],[286.28848,152.97443],[286.28848,175.1807]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"johto-route-31","type":"line","lineWidth":"4","lineColor":"#000000","points":[[285.77279,176.24054],[346.20134,176.24054]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"johto-route-32","type":"line","lineWidth":"4","lineColor":"#000000","points":[[286.28848,175.1807],[286.28848,294.03419]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"johto-route-33","type":"line","lineWidth":"4","lineColor":"#000000","points":[[286.01,294.03419],[257.97993,294.03419]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"johto-route-34","type":"line","lineWidth":"4","lineColor":"#000000","points":[[233.53681,221.39851],[233.53681,294.03419],[258.66422,294.03419]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"johto-route-35","type":"line","lineWidth":"4","lineColor":"#000000","points":[[233.53681,150.23164],[233.53681,221.39851]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"johto-route-43","type":"line","lineWidth":"4","lineColor":"#000000","points":[[325.04102,46.218512],[325.04102,115.3325]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"johto-route-30","type":"line","lineWidth":"4","lineColor":"#000000","points":[[346.57258,251.69355],[346.57258,175.96774]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"slowpoke-well","type":"circle","borderWidth":"0.16445337","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"267.65704","y":"304.99878","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"goldenrod-city","type":"circle","borderWidth":"0.16445337","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"233.59761","y":"220.71983","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"ilex-forest","type":"circle","borderWidth":"0.16445337","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"233.59761","y":"293.93961","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"union-cave","type":"circle","borderWidth":"0.16445337","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"286.28848","y":"293.93961","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"violet-city","type":"circle","borderWidth":"0.16445337","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"286.28848","y":"176.24054","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"ruins-of-alph","type":"circle","borderWidth":"0.16445337","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"268.49677","y":"198.50499","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"dark-cave","type":"circle","borderWidth":"0.16445337","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"377.19092","y":"164.92484","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"cherrygrove-town","type":"circle","borderWidth":"0.16445337","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"347.19092","y":"250.48112","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"blackthorn-city","type":"circle","borderWidth":"0.16445337","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"406.38681","y":"116.36455","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"mt-silver","type":"circle","borderWidth":"0.16445337","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"553.84863","y":"159.61777","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"new-bark-town","type":"circle","borderWidth":"0.16445337","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"413.56772","y":"250.48112","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"cianwood-city","type":"circle","borderWidth":"0.16445337","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"112.47706","y":"228.2471","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"whirl-islands","type":"circle","borderWidth":"0.16445337","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"142.97023","y":"228.2471","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"johto-lighthouse","type":"circle","borderWidth":"0.16445337","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"164.23125","y":"166.24054","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"battle-frontier","type":"circle","borderWidth":"0.16445337","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"128.55803","y":"142.70998","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"national-park","type":"circle","borderWidth":"0.16445337","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"233.59761","y":"152.97443","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"ecruteak-city","type":"circle","borderWidth":"0.16445337","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"244.29399","y":"116.36455","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"burned-tower","type":"circle","borderWidth":"0.16445337","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"235.20258","y":"101.83564","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"bell-tower","type":"circle","borderWidth":"0.16445337","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"252.65215","y":"101.83564","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"lake-of-rage","type":"circle","borderWidth":"0.16445337","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"325.2934","y":"41.776184","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"mahogany-town","type":"circle","borderWidth":"0.16445337","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"325.2934","y":"116.36455","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"mt-mortar","type":"circle","borderWidth":"0.16445337","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"292.44714","y":"101.83564","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"ice-path","type":"circle","borderWidth":"0.16445337","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"419.04205","y":"87.281921","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"safari-zone-gate","type":"circle","borderWidth":"0.16445337","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"45.847893","y":"185.1364","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"azalea-town","type":"circle","borderWidth":"0.16445337","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"256.86371","y":"293.93961","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"sprout-tower","type":"circle","borderWidth":"0.16445337","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"301.77234","y":"146.72441","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"olivine-city","type":"circle","borderWidth":"0.16445337","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"152.23125","y":"166.24054","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1}]
},
"3": {
"name": "Hoenn",
"svg":[{"id":"path4158","type":"poly","borderWidth":"0.98688012","borderColor":"#94ca90","backgroundColor":"#94ca90","points":[[121.34597,2.1637419],[117.64879,2.1419367,113.8835,2.4408695,110.341,3.2153409,1],[96.092243,6.3132278,91.398454,6.7780191,91.398454,6.7780191,1],[91.398454,6.7780191,77.413951,5.1147142,73.91081,8.2027038,1],[70.328947,11.300591,70.064028,13.439434,65.104525,13.439434,1],[60.135182,13.439434,44.30295,24.14796,41.455172,43.893277,1],[38.607394,63.648493,37.483295,53.414811,36.75413,68.874553,1],[36.025949,84.344193,34.170764,82.196688,37.217316,87.669952,1],[37.217316,87.669952,35.297769,98.378619,39.337205,101.95159,1],[43.377625,105.51466,31.286393,114.66898,37.102,119.46922,1],[42.916624,124.25956,43.010014,122.81524,43.010014,126.61584,1],[43.010014,130.42634,40.99251,132.15901,34.369015,131.20886,1],[27.746504,130.25871,28.673812,143.3416,32.714233,144.05421,1],[36.753669,144.76682,38.608209,145.24297,36.952089,147.14329,1],[35.296954,149.05349,36.952735,155.23905,34.834122,155.23905,1],[34.834122,155.23905,26.951532,153.00223,24.236598,155.23905,1],[21.52068,157.47586,20.395766,164.75053,22.31659,165.46314,1],[24.237413,166.18565,26.554447,166.89881,26.554447,170.22434,1],[26.554447,173.55976,27.15106,185.71246,25.230237,185.94999,1],[23.376327,186.19743,14.76614,195.68022,10.262243,200.91595,1],[5.7593292,206.15167,7.6789372,225.65853,9.5338311,230.89426,1],[11.454654,236.12998,14.500041,239.45705,18.27477,240.64474,1],[22.050487,241.84233,22.579894,242.79124,22.579894,247.78943,1],[22.579894,252.77772,30.594344,253.4901,30.594343,253.4901,1],[30.594343,253.4901,30.130805,257.53791,31.785941,259.43821,1],[33.44206,261.33851,26.951994,265.4276,33.442645,271.33635,1],[39.933296,277.2451,45.495823,275.37388,51.654856,274.9087,1],[51.654856,274.9087,55.696384,278.47138,58.742935,278.47138,1],[61.788503,278.47138,66.561579,283.70702,60.401561,286.55747,1],[54.239576,289.41782,47.614375,289.18067,58.012602,301.55243,1],[68.409846,313.92418,82.383986,306.07631,86.428342,306.30395,1],[90.462858,306.55139,92.589128,305.59002,91.398454,309.16298,1],[90.197939,312.73595,88.01232,322.42698,91.525301,324.27779,1],[94.9694,326.11871,99.672751,326.77062,101.78841,330.10604,1],[103.9139,333.43157,111.26598,330.57138,115.50715,331.99661,1],[119.73847,333.43173,122.38389,322.01129,126.89074,321.06114,1],[131.32871,320.11098,122.85768,309.16383,125.43583,299.88997,1],[128.02383,290.60621,125.30653,286.31971,129.67562,286.31971,1],[134.0447,286.31971,129.94107,294.4167,135.8354,299.64253,1],[135.8354,299.64253,135.50099,305.12632,138.94509,305.72016,1],[142.3203,306.30411,142.58607,310.82583,148.61816,307.26276,1],[154.64042,303.6898,152.38807,302.85803,154.64149,301.67034,1],[156.89491,300.47276,153.38178,298.81123,158.42,294.77309,1],[163.51727,290.72505,157.7607,274.07716,156.69795,272.52327,1],[155.56632,270.97927,157.22864,267.04962,157.95682,263.96163,1],[158.685,260.87364,159.01027,260.16165,160.47647,260.38929,1],[161.86395,260.62682,163.18147,269.19727,162.32536,281.45026,1],[161.5283,293.69334,162.12856,294.65347,165.76946,294.89101,1],[169.41037,295.12855,167.75744,316.29976,175.10813,323.56449,1],[182.45882,330.81928,186.82844,328.31484,189.68212,324.15793,1],[192.52596,319.99113,200.67303,307.01548,200.53526,293.81235,1],[200.40734,280.60922,200.074,281.9258,200.074,281.9258,1],[194.97704,281.32268],[194.24863,273.23658],[183.71838,273.48402],[184.11237,270.26736],[188.49245,270.1475],[188.6193,272.05739],[197.76192,271.80996],[197.56396,263.36817],[188.2253,263.60594],[188.15611,265.50617],[183.38395,265.62408],[183.65111,261.94349],[195.84191,261.82364],[195.84191,257.18229],[193.12622,256.82661],[193.12622,252.42111],[194.77908,252.54095],[194.77908,245.404],[198.02714,244.9304],[197.95795,233.86348],[189.41689,234.17083],[189.54374,223.52146],[186.23802,223.40355],[181.85987,219.79061],[194.77908,219.71135],[194.77908,211.37782],[193.58941,210.91194],[193.32226,204.96383],[195.4383,204.7164],[194.97704,185.21929],[179.67463,185.17869],[179.93985,179.15133],[191.53294,178.96382],[191.86736,168.18493],[192.66442,169.08559,193.45018,169.8272,193.32226,170.93571,1],[193.12545,172.84591,192.39888,179.26979,194.97704,177.59713,1],[197.56503,175.93437,199.48343,170.22387,200.40842,169.7488,1],[201.40229,169.27372,200.86975,164.03707,205.3766,162.61184,1],[209.87361,161.18661,210.80991,160.23794,210.80991,155.95236,1],[210.80991,151.66679,214.11516,153.57652,214.38085,149.29095,1],[214.64653,145.00537,206.1064,137.63258,213.91958,129.5464,1],[221.73277,121.45033,222.92299,119.78725,226.23917,118.8371,1],[229.5455,117.88695,231.20766,115.7396,233.98262,115.02699,1],[236.8363,114.31438,235.43983,105.51527,238.29351,98.379251,1],[241.13735,91.243224,236.16747,76.258634,232.32976,71.735521,1],[228.55109,67.212408,229.54519,40.806293,227.89202,36.758256,1],[226.23885,32.720116,227.16331,30.333373,233.98262,31.045986,1],[240.87082,31.758599,230.67667,40.329904,231.67054,45.555732,1],[232.59553,50.791458,234.51461,69.825322,237.56509,71.488086,1],[240.60574,73.160747,242.26906,78.147569,242.06241,84.580881,1],[241.80656,91.004292,240.40978,99.803943,241.13796,103.84215,1],[241.8071,107.90008,245.84023,111.70076,245.37774,114.31367,1],[244.91525,116.93649,240.87097,118.59933,237.83032,118.59933,1],[234.71095,118.59933,210.80998,128.11004,216.30086,142.62953,1],[221.7327,157.13912,222.40061,151.66702,221.92827,156.19013,1],[221.46578,160.71324,225.04841,158.80134,226.89839,162.61184,1],[228.81724,166.41244,238.48992,167.37427,240.60559,166.41422,1],[240.60559,166.41422,247.49487,168.32365,250.81104,167.84858,1],[254.11738,167.3735,252.46274,173.32137,257.43209,173.55891,1],[262.40143,173.78655,268.10042,172.84676,269.75359,174.03445,1],[271.40675,175.22214,273.99352,171.89591,275.381,173.0737,1],[276.83736,174.27129,271.40621,178.30989,270.67803,179.73512,1],[269.94985,181.17024,268.75864,178.78489,266.43633,181.88278,1],[264.05498,184.97076,263.32665,187.59312,263.32665,187.59312,1],[263.32665,187.59312,267.37224,190.44419,269.75359,190.20665,1],[272.06605,189.96911,276.11033,188.54366,277.30101,189.96888,1],[278.49168,191.39411,286.51036,189.25743,289.1574,184.97185,1],[291.73555,180.69618,291.00791,179.50772,293.3991,180.22033,1],[295.78045,180.93294,294.58907,185.21767,299.08608,183.30747,1],[303.52405,181.40717,304.72595,177.12159,305.91663,177.12159,1],[307.1073,177.12159,310.1468,176.88436,310.1468,175.45913,1],[310.1468,174.03391,313.26601,174.98537,315.64736,172.84754,1],[317.96967,170.6998,355.1175,170.69933,356.78051,172.12456,1],[358.43368,173.55968,366.24571,174.50953,367.89888,173.78702,1],[369.56189,173.0744,363.8659,171.18315,365.78475,170.93571,1],[367.64457,170.69818,383.73266,171.41118,384.92334,173.55891,1],[386.11401,175.69675,389.16427,173.32129,391.08313,175.45913,1],[392.94294,177.59697,396.51511,181.4081,399.35895,178.07267,1],[402.21264,174.74714,406.18803,172.60984,407.64439,170.4621,1],[409.03187,168.32426,407.37941,163.5623,408.10759,160.94938,1],[408.83577,158.32657,406.45472,156.18881,406.45472,152.61585,1],[406.45472,149.05278,403.40377,149.76687,406.71995,145.95637,1],[410.02628,142.14587,418.97134,135.25542,418.76469,131.68246,1],[418.50884,128.1095,413.07616,113.83783,403.13748,115.50059,1],[393.19879,117.16335,387.30384,119.31086,388.23867,121.4487,1],[389.16365,123.59644,389.62738,132.63354,387.7774,132.88097,1],[385.84871,133.10861,371.67816,135.4833,369.7593,138.10611,1],[367.89949,140.71902,357.97003,139.05657,355.84453,136.44365,1],[353.72887,133.82084,340.68112,132.396,332.20863,132.63354,1],[323.65743,132.88097,322.80163,134.85001,317.7634,134.05822,1],[312.72518,133.26643,303.06256,127.64594,303.06256,120.97509,1],[303.06256,114.31414,300.02053,105.99042,309.02439,102.41746,1],[317.9692,98.854431,323.40258,94.578571,331.01895,94.093599,1],[338.56645,93.618523,341.87179,92.667908,349.42913,93.618059,1],[357.04551,94.578107,375.45721,93.618136,378.76356,91.717835,1],[382.07973,89.807636,386.11355,91.955218,385.18856,95.518283,1],[384.19469,99.091245,384.196,101.95159,387.51218,101.95159,1],[390.81851,101.95159,401.75006,104.32743,400.7562,102.1797,1],[399.83121,100.04183,398.63116,94.577566,402.21302,95.042744,1],[405.726,95.517819,405.98124,95.755307,405.51875,103.12884,1],[405.51875,103.12884,405.72578,105.75157,413.53896,105.2765,1],[421.35215,104.80142,437.18447,107.17755,438.1685,103.84215,1],[439.10333,100.51655,440.49111,95.291184,436.51564,94.093599,1],[432.48112,92.90591,425.13066,90.291604,430.35585,86.481104,1],[430.35585,86.481104,433.20977,81.473095,431.08426,71.961693,1],[428.9686,62.440392,426.1838,60.90753,424.19607,59.125999,1],[422.20833,57.334568,423.93076,45.556196,408.10759,40.09283,1],[392.27457,34.619567,383.73236,34.144877,379.688,30.09684,1],[375.72237,26.0587,366.70905,32.007271,358.43337,24.148734,1],[350.1577,16.300093,339.02749,11.301674,325.58566,11.539211,1],[294.78673,12.488356],[294.78673,12.488356,292.46404,7.491096,280.61633,7.2535583,1],[268.75879,7.0259181,259.08557,6.7784057,255.77923,9.4012173,1],[255.77923,9.4012173,245.84085,9.1637593,241.334,13.439434,1],[241.334,13.439434,240.87051,15.112095,236.3735,13.686869,1],[231.86665,12.251746,217.9641,14.863423,215.30722,14.398245,1],[212.72907,13.913273,210.34679,12.251746,196.89513,13.439434,1],[196.89513,13.439434,187.89211,9.6376776,175.37527,12.250586,1],[162.78955,14.8635,147.42764,8.915858,144.83964,6.7780191,1],[142.90603,5.1746399,132.4375,2.2291576,121.34597,2.1637419,1],[121.34597,2.1637419],null,[75.042826,18.295347],[76.673853,18.337411,78.014131,18.674233,78.014131,18.674233,1],[78.014131,18.674233,78.210706,22.297764,79.007769,24.485091,1],[80.395249,27.315748,91.457188,26.007898,94.773364,28.007173,1],[96.692219,28.343685,95.364011,32.106322,92.057676,33.877957,1],[86.094464,37.055023,77.552483,34.164827,71.992723,34.214314,1],[66.423123,34.263801,64.306924,33.145318,64.306924,33.145318,1],[64.306924,33.145318,63.647778,30.453302,63.972508,28.770743,1],[64.307077,27.088185,68.016249,27.759738,68.016249,27.759738,1],[68.016249,27.759738,72.317683,25.404389,70.999085,23.048807,1],[69.670647,20.693226,68.017787,22.040818,70.330254,19.685237,1],[71.491407,18.507446,73.411799,18.253283,75.042826,18.295347,1],[75.042826,18.295347],null,[313.61012,35.053274],[314.43793,35.05946,315.38268,35.177997,316.17974,35.093869,1],[317.83291,34.915715,318.02971,38.34068,319.62384,38.786063,1],[320.88339,39.132472,322.07361,37.380787,323.33316,37.707401,1],[323.99246,37.875658,324.78967,38.478858,324.72079,39.132086,1],[324.65191,40.052545,323.33232,40.399263,322.46637,40.686287,1],[319.75045,41.586951,316.24731,42.617595,313.85612,41.043908,1],[312.27184,39.994783,310.74813,37.332228,311.742,35.689259,1],[312.07165,35.154799,312.7823,35.047088,313.61012,35.053274,1],[313.61012,35.053274],null,[545.25461,68.429943],[542.85004,68.340008,540.56218,69.343674,538.18575,71.370167,1],[532.76375,76.012049,526.46582,77.318661,523.02172,76.724817,1],[519.57762,76.140869,505.86995,78.515706,502.69154,78.396937,1],[499.51313,78.278168,496.79698,85.058198,500.24108,88.8588,1],[503.61629,92.6693,503.54817,95.756439,501.7671,95.162595,1],[499.97617,94.578648,497.25979,91.600458,495.14412,93.144453,1],[493.01862,94.688447,492.16176,96.588671,493.6181,98.261332,1],[495.00559,99.924096,494.08191,103.97213,496.92575,104.4472,1],[499.71055,104.92228,499.31594,104.7439,500.5755,104.20944,1],[501.8941,103.67498,503.2918,103.24977,506.13564,103.61598,1],[508.97948,103.97228,516.66528,103.49729,517.26554,104.68498,1],[517.85596,105.87267,518.91886,118.8371,522.09727,118.8371,1],[525.27568,118.8371,526.14032,122.05453,530.10595,120.61941,1],[534.15031,119.19418,537.7923,120.73826,536.86731,115.50252,1],[535.94232,110.27669,534.15146,109.20631,541.37424,109.79026,1],[548.58717,110.394,553.6845,112.05738,555.47543,109.43457,1],[555.47543,109.43457,555.80931,106.94151,556.7343,106.5852,1],[557.65929,106.22889,561.24115,106.58498,560.1784,103.13077,1],[559.11565,99.686486,562.56075,81.247543,555.54463,74.349054,1],[551.63127,70.468654,548.34619,68.545573,545.25461,68.429943,1],[545.25461,68.429943],null,[175.70969,114.90713],[178.35673,118.27225,174.71444,118.60807,174.0453,120.62714,1],[173.386,122.64621,177.02813,121.97396,177.02813,123.64662,1],[177.02813,125.33907,175.37382,125.6667,173.38608,125.6667,1],[171.32946,125.6667,167.03002,122.64667,168.02389,119.61807,1],[169.01776,116.57957,175.70969,114.90713,175.70969,114.90713,1],[175.70969,114.90713],null,[143.73838,133.69867],[144.37502,133.76934,143.83094,134.51551,145.56806,135.84052,1],[148.28398,137.85959,148.2842,142.5696,146.29647,142.5696,1],[144.24969,142.5696,142.58761,140.55239,140.59987,138.53332,1],[138.55309,136.51425,141.2687,134.15681,141.2687,134.15681,1],[142.34375,133.90442,142.98491,133.75759,143.38282,133.71027,1],[143.53204,133.69252,143.64743,133.68857,143.73838,133.69867,1],[143.73838,133.69867],null,[311.46524,135.14462],[312.68174,135.12359,313.85612,135.37465,313.85612,135.37465,1],[315.71594,136.21593,315.5199,137.56229,315.38213,138.90833,1],[315.18533,140.25438,312.66614,140.08551,310.87521,140.25377,1],[309.02523,140.42202,308.49378,138.74117,308.82835,136.55384,1],[308.99071,135.46018,310.24873,135.16565,311.46524,135.14462,1],[311.46524,135.14462],null,[141.16875,147.10076],[143.4233,147.1879,146.21767,150.24009,146.21767,150.24009,1],[145.54853,152.59567,142.90111,152.30895,139.9195,151.29942,1],[136.86901,150.28988,137.86296,148.27074,140.24431,147.26121,1],[140.5346,147.13501,140.84668,147.08831,141.16875,147.10076,1],[141.16875,147.10076],null,[168.243,165.93868],[168.96933,165.93203,169.41153,165.94835,169.41153,165.94835,1],[168.09308,191.45349],[175.83654,191.44382],[175.6405,197.46152],[173.45527,197.52145],[173.12085,205.55729],[176.63414,205.67714],[176.4381,213.45588],[172.994,213.49454],[172.994,213.49454,174.84305,212.47643,172.78643,209.89321,1],[171.86144,208.73521,168.82118,208.08128,168.7523,204.47862,1],[168.48661,195.67983,161.66729,193.06754,161.8641,188.78197,1],[162.12979,184.50629,158.08605,181.16955,157.82036,179.02181,1],[157.62356,176.88397,150.73451,180.93286,149.08135,182.12055,1],[147.42818,183.30824,145.56813,191.16585,143.18678,193.54122,1],[140.80543,195.9166,140.13622,200.6781,138.67986,202.82584,1],[137.29238,204.96368,133.24795,209.00283,134.91095,214.00101,1],[136.56412,218.9992,135.83671,218.99811,133.9769,223.28369,1],[132.05804,227.55937,126.36029,230.41067,126.36029,226.13499,1],[126.36029,221.84942,125.8971,220.18627,125.8971,217.32592,1],[125.8971,214.47547,131.33032,191.39456,133.71167,190.44442,1],[136.10286,189.49427,137.7551,188.78057,139.40827,187.35535,1],[141.06144,185.93012,141.06144,184.97123,144.57442,182.35832,1],[148.15628,179.7355,145.76571,176.40906,148.1569,175.22137,1],[150.53825,174.03368,154.3163,169.5111,158.35081,167.6108,1],[161.33242,166.17815,166.06398,165.95864,168.243,165.93868,1],[168.243,165.93868],null,[188.01965,167.50255],[187.89088,174.38048],[176.69372,174.55831],[176.10176,185.23862],[174.18367,185.21929],[174.64686,167.6108],[188.01965,167.50255],[188.01965,167.50255],null,[179.4094,191.35491],[188.35407,191.40517],[188.15611,213.67432],[181.20064,213.8425],[181.26791,205.55729],[183.71838,205.55729],[183.84715,197.46152],[179.28063,197.46152],[179.4094,191.35491],[179.4094,191.35491],null,[51.084043,210.66644],[52.334005,210.7085,53.244293,211.12992,53.244293,212.13945,1],[53.244293,214.15852,53.245169,219.20573,53.576787,221.56131,1],[53.974334,223.907,42.913394,220.21557,39.204591,220.8886,1],[35.561718,221.56162,30.196858,221.56255,28.541722,218.87046,1],[28.541722,218.87046,29.204727,213.14913,33.840485,211.80309,1],[38.543156,210.45704,44.237543,212.47627,46.886547,211.46673,1],[48.244506,210.96197,49.834081,210.62438,51.084043,210.66644,1],[51.084043,210.66644],null,[176.17096,219.80994],[176.17096,223.6993],[179.93985,223.997],[185.63838,227.91537],[185.63838,234.16117],[170.47435,234.45887],[170.6012,219.94912],[176.17096,219.80994],[176.17096,219.80994],null,[74.395136,241.68087],[75.582005,241.6718,74.205249,242.58309,75.367632,243.76088,1],[76.686232,245.10693,75.033294,247.79941,72.651945,247.12638,1],[70.329639,246.45336,73.714773,241.74273,73.714773,241.74273,1],[74.003831,241.7019,74.225584,241.68217,74.395136,241.68087,1],[74.395136,241.68087],null,[62.786677,254.62675],[63.529983,254.69248,64.306924,255.87553,64.306924,255.87553,1],[64.631653,257.22157,65.300562,260.58646,65.300562,260.58646,1],[65.300562,260.58646,68.677163,262.26986,69.671031,262.9429,1],[70.6649,263.61591,67.682141,268.66429,64.306924,265.63568,1],[60.990748,262.60708,60.991286,259.577,61.660426,256.21188,1],[61.907663,254.94996,62.340693,254.58732,62.786677,254.62675,1],[62.786677,254.62675],null,[124.66898,335.11081],[123.88204,335.10079,123.19932,335.14946,122.66057,335.27318,1],[118.95078,336.15405,120.0123,346.72448,121.39978,347.64493,1],[122.86599,348.56539,129.48965,348.2387,137.83421,347.81312,1],[142.73467,347.56568,145.84397,344.52764,145.71605,342.84508,1],[145.5094,341.16252,144.78006,340.33067,143.05801,339.40033,1],[140.80213,338.18789,130.17767,335.1809,124.66898,335.11081,1],[124.66898,335.11081],null,[275.05042,344.3065],[274.65791,344.31831,274.26382,344.34222,273.86652,344.37995,1],[267.44082,344.97379,264.19336,347.53661,262.14659,350.92152,1],[260.08997,354.30643,259.16498,360.40416,262.14659,362.75974,1],[265.12819,365.10543,267.44058,363.29242,269.694,366.38041,1],[271.94743,369.4684,277.77311,369.36069,279.03267,367.56926,1],[280.36111,365.78772,282.34754,362.80807,285.3193,362.80807,1],[288.30091,362.80807,291.81427,361.03605,291.61747,357.46309,1],[291.35178,353.89012,291.47932,349.97098,288.7634,348.29832,1],[286.21723,346.73948,280.93823,344.12937,275.05042,344.3065,1],[275.05042,344.3065]],"flat":true},{"id":"path4724","type":"poly","borderWidth":"0.98688012","borderColor":"#94ca90","backgroundColor":"#94ca90","points":[[217.17588,218.03903],[218.95697,218.57348,223.12925,217.32641,223.79839,219.83046,1],[224.52657,222.3246,226.05182,226.96648,229.7616,227.08525,1],[233.40251,227.20402,244.72867,229.9456,246.64753,224.82864,1],[248.56638,219.71169,250.41636,218.40523,253.53573,218.8803,1],[256.57637,219.35538,257.44232,215.90119,260.74865,215.66365,1],[264.06483,215.42611,268.43392,215.0797,269.49667,211.74428,1],[270.29373,209.3788,270.42165,204.00451,267.24324,201.27283,1],[264.06483,198.54114,249.68818,198.3036,247.23795,195.08695,1],[244.72867,191.88019,240.34975,189.25738,238.49977,188.426,1],[236.58092,187.59462,236.11843,188.18846,232.21183,183.30904,1],[228.2954,178.43952,222.14522,181.28997,221.54497,187.35708,1],[221.01359,193.42419,221.93858,199.37252,217.107,201.86667,1],[212.20654,204.37071,207.37496,209.71531,210.55337,213.76335,1],[213.79082,217.81138,215.31607,217.51446,217.17588,218.03903,1],[217.17588,218.03903]],"flat":true},{"id":"path4728","type":"poly","borderWidth":"0.98688012","borderColor":"#986749","backgroundColor":"#986749","points":[[462.95371,58.977151],[461.36328,58.888074,460.59996,59.125458,460.36871,60.550683,1],[459.90622,63.401135,458.45032,64.114753,460.10349,65.787414,1],[460.10349,65.787414,460.36833,67.212563,463.41881,67.687638,1],[466.52834,68.162713,463.68504,75.298895,468.64455,76.011508,1],[473.61389,76.724121,472.42221,80.296233,475.73839,79.346082,1],[479.04472,78.395931,479.50753,73.16036,480.23571,75.298199,1],[480.96389,77.436038,477.85551,85.533119,481.17169,86.720807,1],[484.47802,87.908495,488.05027,88.620954,488.05027,84.582814,1],[488.05027,80.534776,487.79266,76.258401,490.174,77.436193,1],[492.55536,78.633778,492.55636,74.11082,495.87253,73.635745,1],[499.17887,73.16067,491.56156,64.828139,487.79273,64.6005,1],[484.01407,64.362961,480.69897,67.213181,478.31762,64.115294,1],[476.00516,61.027305,477.65886,59.126231,470.50497,59.363768,1],[466.96247,59.482537,464.54415,59.066228,462.95371,58.977151,1],[462.95371,58.977151],null,[491.12344,108.64974],[488.72347,108.63363,487.52198,109.01895,485.20582,109.01895,1],[482.55879,109.01895,483.21801,109.69306,480.69889,110.87085,1],[478.18962,112.04864,479.37922,116.25504,479.84171,119.28365,1],[480.37309,122.30235,476.98957,123.14209,476.98957,123.14209,1],[473.48643,124.99289,473.48643,129.37784,470.83939,130.71399,1],[468.12347,132.06003,470.50474,140.13662,471.49861,142.66046,1],[472.49248,145.1843,474.67664,144.00728,475.53274,145.18507,1],[476.32981,146.36286,476.98925,146.86655,479.38045,147.53957,1],[481.69291,148.21259,480.83612,150.73743,482.36136,153.76604,1],[483.87676,156.79464,482.68594,155.95321,483.67981,158.30879,1],[484.67368,160.66438,485.73605,159.31825,486.7299,158.47697,1],[487.72378,157.63569,488.58111,153.09155,489.71275,152.75504,1],[490.90342,152.41853,493.08751,148.54996,493.42207,145.6896,1],[493.7468,142.82926,493.21604,144.00573,496.26653,144.34224,1],[499.24813,144.67876,498.91264,141.31503,501.96313,141.31503,1],[504.94473,141.31503,507.59255,142.15538,508.6553,139.12678,1],[509.64915,136.09817,510.30792,138.79127,511.30179,136.94045,1],[512.29566,135.08964,509.77701,134.75166,507.59247,131.22819,1],[505.47681,127.68492,505.93914,129.03088,507.92688,127.68484,1],[509.97366,126.33879,509.64915,124.31988,508.6553,123.14209,1],[507.59255,121.97418,509.64962,122.14369,511.83416,120.45122,1],[513.94982,118.77857,514.60751,121.97504,514.60751,117.08572,1],[514.60751,112.2162,511.96071,114.5622,508.44773,111.71175,1],[504.94458,108.8514,504.74877,109.35539,502.0919,109.18714,1],[499.44486,109.01888,495.41081,108.85085,492.23239,108.6826,1],[491.83386,108.66157,491.4663,108.65203,491.12344,108.64974,1],[491.12344,108.64974],null,[439.0449,126.56751],[437.18508,126.56751,433.74076,129.78317,433.15034,130.73332,1],[432.55008,131.68347,429.04624,132.39724,429.24305,135.13882,1],[429.50874,137.8705,426.86317,137.27635,426.0661,139.7705,1],[425.20016,142.27454,427.59073,142.03723,429.37182,143.22492,1],[431.16275,144.41261,429.63743,147.62849,430.76906,147.38105,1],[431.95973,147.14352,435.40423,150.12286,439.77331,150.83548,1],[444.14239,151.54809,445.59883,150.47995,444.28023,149.64856,1],[442.95179,148.80728,443.94582,146.54983,443.94582,146.54983,1],[445.59899,144.41199,447.12308,143.69961,448.91401,140.60172,1],[450.63606,137.51373,448.04845,136.68243,447.58596,135.48484,1],[447.12346,134.30705,445.93371,131.68385,445.33346,130.13986,1],[444.74304,128.59586,440.96375,126.56751,439.0449,126.56751,1],[439.0449,126.56751],null,[436.3465,134.96677],[436.51272,134.95724,436.70498,134.97319,436.92885,135.01897,1],[438.70994,135.37528,438.84832,136.91919,439.77331,136.91919,1],[440.69829,136.91919,439.43897,138.58319,440.50172,139.17704,1],[441.56447,139.77088,441.56417,141.56246,438.71048,141.31503,1],[435.86664,141.08739,436.45674,141.20623,434.21316,139.4148,1],[434.21316,139.4148,433.27918,138.34574,434.34193,137.27681,1],[435.27184,136.34151,435.18305,135.03348,436.3465,134.96677,1],[436.3465,134.96677],null,[377.25868,237.19998],[375.00909,237.21483,373.06441,237.52381,372.21937,238.15106,1],[370.03483,239.81383,368.44109,245.8807,369.16928,250.28504,1],[369.89746,254.67949,375.32929,253.72848,381.22363,253.61961,1],[387.11795,253.49095,388.57308,250.3933,388.57308,250.3933,1],[389.30127,249.33427,390.36509,250.61042,391.89034,250.99641,1],[393.41558,251.38241,395.92447,251.23581,397.64652,252.89858,1],[399.43745,254.56134,403.48142,255.045,407.58482,255.51017,1],[411.7571,255.99515,409.16887,252.77911,405.13435,252.18526,1],[401.09,251.59142,401.09054,248.13777,397.32171,247.79136,1],[393.54304,247.42516,397.7842,244.45524,400.76581,246.83062,1],[403.67853,249.21589,406.66044,247.54392,410.42927,247.54392,1],[414.20794,247.54392,418.71395,249.81012,420.6328,249.45382,1],[422.48277,249.09751,415.27016,245.76247,412.09175,245.6437,1],[408.91334,245.52493,409.37575,242.90174,407.58482,243.26794,1],[405.86277,243.62425,403.01862,243.86193,400.62743,242.43671,1],[398.24609,241.00159,396.25858,241.4762,394.46764,241.96118,1],[392.68655,242.43625,390.23709,241.8431,387.38341,239.45783,1],[385.60601,237.96703,381.00798,237.17524,377.25868,237.19998,1],[377.25868,237.19998],null,[8.6804941,248.8101],[5.5020827,248.97835,3.6482964,250.15629,7.1583253,252.68013,1],[7.1583253,252.68013,9.5423951,253.85777,10.735038,253.01649,1],[11.860766,252.17522,11.85989,248.64184,8.6804941,248.8101,1],[8.6804941,248.8101],null,[426.0661,249.8095],[421.43133,249.69073,422.48354,250.58251,422.15881,251.82958,1],[422.02105,252.37394,423.81175,253.96587,424.8745,254.20341,1],[425.92741,254.44095,424.54009,258.13399,427.98419,257.77768,1],[431.35941,257.42137,435.26546,256.58968,432.35274,253.25426,1],[429.37113,249.92873,430.63199,249.92827,426.0661,249.8095,1],[426.0661,249.8095],null,[414.97849,253.36638],[413.49168,253.39856,412.32929,253.76189,411.29606,253.61961,1],[409.6429,253.37218,410.69466,258.3706,412.82016,256.82661,1],[412.82016,256.82661,416.12726,256.35115,417.05225,257.42007,1],[418.04611,258.48899,420.17046,256.82661,422.02044,256.82661,1],[423.93929,256.82661,421.09638,254.91664,418.04589,253.84772,1],[416.87981,253.44687,415.87057,253.34707,414.97849,253.36638,1],[414.97849,253.36638],null,[9.9335931,255.17961],[9.7991541,255.19571,9.6657521,255.30975,9.5415191,255.5411,1],[9.5415191,255.5411,7.1586175,265.80394,7.5561649,269.84208,1],[7.8877825,273.88022,10.005873,272.03026,9.8740131,267.99212,1],[9.6752391,263.95398,9.6740711,264.12122,10.865729,261.76564,1],[11.909291,259.70451,10.874666,255.0669,9.9335931,255.17961,1],[9.9335931,255.17961],null,[407.74434,273.32937],[403.37598,273.21326,399.55146,274.43618,398.97457,275.9777,1],[398.31527,277.74933,391.48673,281.11583,391.48673,281.11583,1],[388.44608,278.33466,389.1738,280.02697,386.5858,277.2458,1],[384.00765,274.46463,377.97517,274.38429,372.41541,275.80952,1],[366.78677,277.24464,365.19387,281.45142,363.3439,287.58781,1],[361.48409,293.7341,363.80601,313.83642,375.00425,315.76641,1],[386.19266,317.6964,378.57559,316.69707,389.3015,319.30009,1],[399.96836,321.91301,408.51019,317.78424,411.42292,322.66366,1],[414.40452,327.54308,425.99637,332.16501,428.64341,331.41281,1],[431.35933,330.65071,437.51881,330.4042,438.1781,329.14723,1],[438.84724,327.88037,442.02704,325.69373,443.2866,323.67466,1],[444.54616,321.65559,442.29296,311.8959,440.57091,308.20417,1],[438.77998,304.49265,432.35381,301.72192,425.33769,303.06796,1],[418.31172,304.41401,415.27054,302.39401,414.20779,301.12714,1],[413.14504,299.87017,419.97335,300.7911,420.2292,299.6232,1],[420.49489,298.44541,419.7092,296.75319,419.83713,295.15971,1],[419.90601,293.55633,426.19403,294.06032,424.34405,292.6351,1],[422.48424,291.20987,422.42528,286.49863,421.22476,284.39049,1],[420.03409,282.28234,416.85452,283.55037,417.5827,281.37294,1],[418.25184,279.17571,415.73334,277.82951,414.27698,277.75033,1],[412.87966,277.66125,414.73855,274.04862,409.64128,273.46468,1],[409.00289,273.39045,408.36839,273.34595,407.74434,273.32937,1],[407.74434,273.32937],null,[49.804038,279.94246],[48.825974,279.974,48.155022,280.85781,48.155022,282.87688,1],[48.155022,285.56897,49.081684,286.24122,50.340256,284.55866,1],[50.340256,284.55866,52.327071,280.85712,50.870709,280.18409,1],[50.48989,280.01584,50.130058,279.93194,49.804038,279.94246,1],[49.804038,279.94246],null,[46.35225,287.25725],[45.695028,287.14823,44.933021,287.56732,44.974227,289.34885,1],[45.041141,292.2092,45.505202,296.92191,44.047857,298.60446,1],[42.59051,300.29692,44.842367,306.34339,45.835252,304.66083,1],[46.82912,302.97827,45.901873,298.44472,47.159462,297.42529,1],[48.418034,296.41575,47.557362,288.55752,47.226729,287.84491,1],[47.102372,287.57768,46.746585,287.32266,46.35225,287.25725,1],[46.35225,287.25725],null,[17.700113,291.40372],[16.298632,291.42035,14.906548,292.19319,14.575054,294.40774,1],[14.045647,297.94111,14.707437,300.45444,16.562331,300.45444,1],[18.41624,300.45444,23.715001,299.62312,22.722117,296.07985,1],[21.728249,292.54648,21.728479,293.07097,20.00643,292.04165,1],[19.385754,291.65565,18.541002,291.39375,17.700113,291.40372,1],[17.700113,291.40372]],"flat":true},{"id":"path4734","type":"poly","borderWidth":"0.98688012","borderColor":"#f2efec","backgroundColor":"#f2efec","points":[[527.19423,151.24143],[527.19423,151.24143,523.81932,152.92406,525.54137,155.27965,1],[527.19454,157.63523,524.88177,161.84201,520.30603,158.64515,1],[515.80902,155.44829,514.14525,157.80325,515.33592,159.99057,1],[516.46756,162.1779,517.65838,162.85015,517.46157,165.87875,1],[517.32381,168.89746,520.50253,171.09647,523.68095,170.42344,1],[526.8692,169.75042,532.233,164.70127,534.88003,169.41244,1],[537.52707,174.11371,537.93067,176.9855,539.71176,174.46166,1],[541.57157,171.93783,541.76753,170.42166,539.58299,165.87875,1],[537.39845,161.33585,537.93052,155.61515,534.88003,153.25957,1],[531.89843,150.90399,529.71334,151.91445,527.19423,151.24143,1],[527.19423,151.24143],null,[456.12702,152.98314],[449.77019,153.00294,443.87686,156.79395,442.88299,159.48604,1],[441.03302,166.55279,437.18447,170.42344,437.18447,170.42344,1],[432.68746,178.15332,437.85446,190.27593,443.21741,190.94895,1],[448.58036,191.62198,448.91363,193.96782,451.22609,195.31387,1],[453.61728,196.65991,455.2713,195.65022,458.98108,195.65022,1],[462.62199,195.65022,467.12799,192.28541,470.16864,190.27624,1],[473.15025,188.25717,474.6764,184.20906,474.80433,182.5265,1],[475.01097,180.84394,479.18303,178.49857,477.52002,177.15252,1],[475.86685,175.80647,473.81054,169.74934,468.97896,160.15876,1],[466.79442,155.86329,461.23412,152.96335,456.12702,152.98314,1],[456.12702,152.98314],null,[455.71956,171.76887],[456.95373,171.69773,458.18463,172.76789,458.8427,174.62984,1],[459.90545,177.59906,460.70313,179.02374,460.70313,179.02374,1],[460.70313,179.02374,454.93595,180.81409,452.28891,179.15133,1],[452.28891,179.15133,451.95589,175.69736,453.6189,173.20322,1],[454.23883,172.2642,454.97906,171.81155,455.71956,171.76887,1],[455.71956,171.76887],null,[525.54714,173.39846],[525.37937,173.38603,525.19966,173.40017,525.009,173.44099,1],[525.009,173.44099,523.8184,176.80727,524.34977,179.33111,1],[524.88115,181.85494,522.02785,182.52774,521.29967,184.04203,1],[520.64037,185.56623,519.3114,187.07041,520.50207,188.75297,1],[521.70259,190.43553,523.15856,193.46305,521.83013,195.31387,1],[520.50169,197.16468,522.36189,200.52964,520.50207,199.85662,1],[518.6521,199.18359,518.31768,196.66006,519.18362,194.9775,1],[519.98068,193.29495,520.30634,192.11701,518.65317,191.10747,1],[517,190.09794,512.63015,193.79956,511.96101,195.31387,1],[511.30171,196.82817,509.44228,201.2029,514.81508,203.55848,1],[520.17803,205.91405,524.15304,208.43852,529.84073,206.41945,1],[535.53825,204.40038,535.73614,203.89538,540.04618,202.71759,1],[544.41527,201.5398,541.43335,200.36246,543.42109,197.50211,1],[545.40882,194.64176,539.90711,192.2865,537.72257,192.62301,1],[535.53802,192.95952,535.5394,191.62198,534.2208,191.44382,1],[532.89237,191.27557,530.8346,192.45429,529.84073,193.63208,1],[528.84686,194.80987,527.33261,195.31479,527.33261,193.29572,1],[527.33261,191.27665,527.33161,189.08816,528.52229,186.91073,1],[529.71296,184.71351,527.33261,181.51712,527.33261,177.98374,1],[527.33261,174.9007,526.7215,173.48547,525.54714,173.39846,1],[525.54714,173.39846],null,[504.21947,210.60844],[504.01686,210.59925,503.81525,210.60481,503.61599,210.62584,1],[502.0317,210.7941,498.58822,211.29871,498.58822,215.16859,1],[498.58822,219.03847,499.24791,221.0584,502.42632,221.73142,1],[505.60473,222.40444,509.44297,222.24555,510.11211,218.70228,1],[510.77141,215.16891,509.97297,213.6536,508.44773,212.4758,1],[507.12175,211.44524,505.63774,210.67285,504.21947,210.60844,1],[504.21947,210.60844],null,[504.06572,214.47075],[504.17348,214.46518,504.28936,214.47361,504.41359,214.49588,1],[505.40746,214.66414,506.93355,216.51534,506.26441,217.86139,1],[505.60511,219.20743,502.95677,219.03956,502.95677,217.02049,1],[502.95677,215.25381,503.31138,214.50972,504.06572,214.47075,1],[504.06572,214.47075],null,[226.74078,253.57708],[225.52405,253.56761,225.98354,255.75761,225.98354,255.75761,1],[227.04629,257.77668,226.90853,255.99553,227.70559,258.13337,1],[228.5617,260.28111,231.73865,258.60883,232.60459,260.50913,1],[233.40166,262.41933,233.26451,262.17159,244.0593,262.41903,1],[254.79505,262.65656,253.00496,258.49037,253.53634,255.87746,1],[253.99883,253.25465,248.29992,253.84834,245.72176,256.70869,1],[243.06489,259.55914,238.49938,260.16218,235.78346,258.9646,1],[233.06754,257.77691,232.21221,256.35153,230.42129,256.82661,1],[228.69923,257.30168,229.35892,254.56118,227.37118,253.7298,1],[227.12271,253.62588,226.9146,253.57844,226.74078,253.57708,1],[226.74078,253.57708],null,[259.78069,253.83226],[258.80383,253.81453,258.2978,255.76457,258.70249,257.53991,1],[259.16498,259.55898,256.91125,260.50913,256.91125,260.50913,1],[254.12645,263.13195,262.2742,264.91279,263.79945,263.01248,1],[265.32469,261.11218,268.30537,261.58726,269.49605,259.79583,1],[270.68672,258.0143,277.64372,258.37075,277.04347,255.99538,1],[276.45305,253.62,265.45153,254.67964,262.94226,255.63969,1],[260.48219,256.58984,261.54518,254.67825,260.22658,253.96564,1],[260.06913,253.87656,259.92024,253.83479,259.78069,253.83226,1],[259.78069,253.83226],null,[339.51389,256.71062],[337.80399,256.8498,337.92868,258.60837,336.78475,260.03359,1],[335.25951,261.94379,336.98094,263.48825,339.10644,263.72579,1],[339.10644,263.72579,342.55047,264.20009,344.93182,261.94349,1],[347.31316,259.67698,346.31998,258.72629,341.9509,257.18229,1],[340.85863,256.79629,340.08385,256.66422,339.51389,256.71062,1],[339.51389,256.71062],null,[283.6722,258.75969],[281.13066,258.71037,278.72062,259.42452,277.04347,260.62705,1],[274.06186,262.77479,272.80345,267.40762,275.51937,266.94245,1],[275.51937,266.94245,278.69817,263.96248,283.53959,263.84371,1],[288.37117,263.72494,291.4794,267.65374,293.27033,266.33739,1],[294.99238,265.03093,293.87104,262.88343,289.56099,260.38929,1],[287.70549,259.2981,285.64896,258.79805,283.6722,258.75969,1],[283.6722,258.75969],null,[338.34728,267.48951],[337.19649,267.41667,336.07794,267.55253,335.25874,268.0907,1],[333.00531,269.51593,331.55018,269.86149,331.35338,271.17784,1],[331.08769,272.4843,330.1617,273.31591,330.821,274.38483,1],[330.821,274.38483,334.06914,277.60079,338.57599,276.88818,1],[343.01395,276.17556,345.99594,275.33544,342.41408,274.86037,1],[338.9011,274.38529,333.00592,273.07922,337.11916,271.29769,1],[341.29144,269.51616,344.59693,269.26834,343.14057,268.67449,1],[342.27339,268.30953,340.26527,267.61091,338.34728,267.48951,1],[338.34728,267.48951],null,[290.55464,269.19836],[284.99488,269.31713,280.48756,274.66126,280.48756,274.66126,1],[279.89715,275.97762,280.95036,275.265,282.2788,274.9087,1],[283.53836,274.54249,283.40021,275.85985,284.59088,276.92877,1],[285.7914,277.99769,291.35224,276.33447,294.79634,276.45324,1],[298.24044,276.57201,297.51202,274.07863,297.51202,272.04966,1],[297.51202,270.03059,296.05536,269.07959,290.55464,269.19836,1],[290.55464,269.19836],null,[10.967591,305.55585],[10.680547,305.5624,10.360676,305.65003,10.004704,305.83808,1],[7.1569262,307.35238,8.6808478,313.74688,7.0257121,316.77548,1],[5.3695925,319.80409,6.6943253,320.47695,5.1710494,321.31823,1],[3.6477735,322.15951,5.8322549,324.68444,6.3626462,327.37653,1],[6.8261235,330.06862,6.694848,332.42258,8.0193501,335.11467,1],[9.3438523,337.80677,8.2178318,339.82684,10.204585,341.34114,1],[12.191338,342.85544,10.536787,338.14405,12.722314,337.63928,1],[14.90784,337.13452,16.893487,337.29295,18.549606,333.26471,1],[20.204742,329.22657,21.727372,332.25455,22.389623,330.40374,1],[22.655311,329.63174,24.707994,327.187,23.250648,325.62321,1],[21.99306,324.26727,20.668158,322.83261,19.741204,325.35645,1],[18.814249,327.88029,17.754219,331.59096,15.568692,331.41281,1],[13.383166,331.24455,13.715137,330.75069,13.052886,329.22649,1],[12.191861,327.45486,12.522371,325.52486,13.71403,325.0201,1],[14.906671,324.51533,17.225396,319.9718,16.364372,317.95273,1],[15.569277,315.93366,13.383458,313.57916,13.383458,311.39184,1],[13.383458,309.47793,12.9769,305.50997,10.967591,305.55585,1],[10.967591,305.55585],null,[190.84873,331.64478],[190.35506,331.61114,189.79413,331.78242,189.16128,332.25563,1],[185.84511,334.77947,190.01723,336.79707,190.47972,339.65742,1],[191.0111,342.50788,193.86424,339.99572,193.86424,335.78932,1],[193.86424,335.78932,192.98799,331.79056,190.84873,331.64478,1],[190.84873,331.64478],null,[171.72553,347.07275],[170.62259,347.08533,169.74263,347.49246,169.61717,348.56509,1],[169.29244,351.43533,169.2929,352.94113,171.074,353.4558,1],[172.93381,353.96057,172.47101,352.43536,173.46488,351.43572,1],[173.46488,351.43572,177.63761,350.59576,176.64374,349.07156,1],[176.02258,348.1313,173.56375,347.05177,171.72553,347.07275,1],[171.72553,347.07275],null,[32.104981,349.70367],[30.495726,349.75069,29.063657,349.8973,27.623039,350.0903,1],[21.861553,350.8524,16.0324,359.16598,13.71403,367.91528,1],[10.734392,381.43513,46.630516,395.33094,61.531657,397.69642,1],[72.06076,399.04246,78.359617,390.37249,79.609333,388.94726,1],[84.312988,383.56307,75.111017,373.13176,69.413492,375.15083,1],[55.505236,381.17834,73.714865,357.6325,56.36743,353.4558,1],[43.353163,350.32327,36.932747,349.56264,32.104981,349.70367,1],[32.104981,349.70367],null,[190.96982,354.85728],[187.74494,354.66206,188.5232,359.07102,187.96968,360.1752,1],[185.7753,364.3915,188.82556,364.0454,191.6694,363.21401,1],[194.52309,362.37273,194.85889,362.36269,194.65224,359.34398,1],[194.52432,356.30548,193.5981,355.38533,191.6694,354.95974,1],[191.41725,354.90344,191.18481,354.8703,190.96982,354.85728,1],[190.96982,354.85728],null,[175.16386,362.53937],[174.45409,362.54923,173.46833,363.03501,173.25923,365.55885,1],[172.9345,369.59699,174.58712,369.59745,176.64374,368.75617,1],[178.63148,367.91489,180.81649,368.75741,179.82262,366.06532,1],[178.82875,363.37322,178.29668,364.21412,175.91534,362.69981,1],[175.91534,362.69981,175.58972,362.53345,175.16386,362.53937,1],[175.16386,362.53937]],"flat":true},{"id":"path4738","type":"poly","borderWidth":"0.98688012","borderColor":"#c9b293","backgroundColor":"#c9b293","points":[[535.72568,35.880634],[535.50043,35.902947,535.28333,35.95587,535.07606,36.044947,1],[531.76973,37.470173,532.29073,38.420092,530.83437,41.993054,1],[530.83437,41.993054,521.83051,47.705478,525.66822,49.843317,1],[529.44689,51.991054,531.30709,48.65416,533.68844,50.316924,1],[536.06978,51.989585,538.39308,51.990358,539.38695,49.130009,1],[540.31194,46.279557,540.04495,44.132053,542.2295,43.181901,1],[544.21292,42.291136,539.10443,35.545945,535.72568,35.880634,1],[535.72568,35.880634],null,[518.5244,48.952165],[518.5244,48.952165,517.99249,49.970515,516.00475,50.811794,1],[513.94813,51.643176,512.62985,54.345475,515.33592,54.345475,1],[517.9928,54.345475,518.31753,51.64449,520.50207,52.159155,1],[522.69646,52.663923,521.29936,49.130318,518.5244,48.952165,1],[518.5244,48.952165],null,[529.51592,54.513654],[528.18748,54.513654,523.68025,56.365242,526.66185,57.533135,1],[529.71234,58.710926,534.01331,57.533445,533.35401,56.365551,1],[532.69471,55.18776,530.9034,54.513654,529.51592,54.513654,1],[529.51592,54.513654],null,[505.80122,54.840346],[503.41987,55.077883,498.6478,58.166647,498.6478,59.839308,1],[498.6478,61.502071,497.52493,61.739222,496.06857,63.649421,1],[494.68109,65.539824,494.6817,67.450487,498.91302,70.310837,1],[498.91302,70.310837,502.69139,75.773816,506.47005,73.873514,1],[510.23888,71.973213,509.57989,66.975102,510.96737,65.539979,1],[512.42373,64.114753,508.12353,54.602808,505.80122,54.840346,1],[505.80122,54.840346],null,[438.53366,60.158266],[438.37708,60.161471,438.2167,60.181928,438.05126,60.223991,1],[435.33535,60.897014,433.21953,62.422453,433.21953,65.945927,1],[433.21953,65.945927,434.53873,67.459534,436.06398,67.459534,1],[437.52034,67.459534,442.22377,68.133175,442.22377,66.114105,1],[442.22377,64.221227,440.88232,60.110206,438.53366,60.158266,1],[438.53366,60.158266],null,[562.35403,132.158],[560.44416,132.22149,558.69582,132.70893,557.60109,133.82239,1],[554.01923,137.39535,557.33425,140.96746,554.94306,143.34283,1],[552.6306,145.71821,553.82127,149.29141,554.94306,149.76649,1],[556.13374,150.24156,554.48164,152.61694,553.09416,155.95236,1],[551.6378,159.28779,555.20875,163.32569,554.94306,168.08634,1],[554.74626,172.84699,554.28384,191.64309,554.28384,193.78093,1],[554.28384,195.91877,552.43418,197.82765,552.63098,202.5784,1],[552.63098,202.5784,557.33433,206.15244,559.44999,205.91491,1],[561.56565,205.67737,558.26047,209.71536,561.37,209.71536,1],[564.42049,209.71536,559.45137,204.7164,567.26455,204.7164,1],[575.07774,204.7164,574.34856,207.3396,575.34243,207.3396,1],[576.27726,207.3396,573.42457,214.71316,579.3189,219.71135,1],[585.28211,224.70954,586.66844,222.08618,591.17529,221.13603,1],[595.68214,220.18588,590.25093,218.76236,594.01975,214.71432,1],[597.79842,210.66628,592.36612,204.48961,592.56293,201.62926,1],[592.82862,198.76891,586.6689,199.72864,585.74392,197.10583,1],[584.75005,194.49292,583.36157,191.64285,580.04539,187.35728,1],[576.73905,183.0717,577.46847,175.69775,579.58413,172.36233,1],[581.69979,169.0368,578.85472,157.13959,580.04539,155.47682,1],[581.23606,153.80416,577.39859,142.39307,573.88561,139.53272,1],[573.88561,139.53272,572.69601,138.34519,572.03671,135.73228,1],[571.53608,133.92909,566.55574,132.01832,562.35403,132.158,1],[562.35403,132.158],null,[457.20714,234.97306],[456.65019,234.96829,456.04868,234.98211,455.3986,235.01365,1],[445.0663,235.52833,445.40095,233.16253,437.51888,239.3979,1],[429.7057,245.61347,428.18122,242.59437,426.99055,244.94006,1],[425.86876,247.30554,425.33746,246.95983,426.33133,247.63284,1],[426.33133,247.63284,428.97836,248.30564,431.49748,248.13738,1],[434.00675,247.97902,433.68186,247.79994,434.53797,250.15552,1],[435.33503,252.521,433.5448,258.40037,441.88936,257.89561,1],[450.23392,257.39084,450.23314,258.40153,452.41768,259.57932,1],[454.61207,260.75711,451.89615,256.88699,457.58383,255.87746,1],[463.28136,254.86792,465.46552,257.22196,465.80008,255.03463,1],[466.13465,252.84731,464.80599,251.17473,466.79373,250.66006,1],[468.85035,250.15529,467.12937,248.30487,471.83302,245.61277,1],[471.83302,245.61277,473.02271,245.10855,471.30066,243.94066,1],[469.63765,242.76286,465.14117,242.59414,464.47203,240.74333,1],[463.85394,238.99891,465.56148,235.04457,457.20714,234.97306,1],[457.20714,234.97306],null,[526.30054,237.44355],[525.87575,237.43166,525.40368,237.46188,524.88215,237.546,1],[520.64099,238.20913,521.17167,240.74302,522.69692,241.41605,1],[524.15328,242.08907,523.35622,244.09901,520.97487,244.43553,1],[518.65256,244.77204,517.78715,246.29662,519.31239,247.30616,1],[519.31239,247.30616,521.29936,248.64199,524.67458,248.47374,1],[528.05964,248.30548,529.71272,250.99688,529.51592,254.19374,1],[529.37816,257.3906,532.55618,258.23173,533.55005,258.7365,1],[534.54392,259.24126,532.23207,260.9239,535.41049,262.77471,1],[538.5889,264.62552,533.35486,268.49688,534.2208,272.19851,1],[535.07691,275.90014,535.53856,276.40483,533.35401,276.57308,1],[531.16947,276.74134,532.03565,271.18742,522.02808,271.35569,1],[511.96147,271.52394,510.11126,269.84184,505.80122,274.553,1],[501.43213,279.26417,497.91893,284.4808,499.90666,286.15346,1],[501.96328,287.84592,502.76012,287.8456,502.62236,290.5377,1],[502.42555,293.22979,506.47021,295.2392,511.30179,294.73443,1],[516.13337,294.22966,515.13996,295.58576,519.64681,293.9032,1],[524.15366,292.21074,524.67558,292.21005,525.20696,295.91168,1],[525.66945,299.6232,529.05473,300.45497,534.54561,299.27718,1],[540.04633,298.09939,537.06373,298.27739,540.90144,295.40715,1],[544.74899,292.5567,539.38558,294.06086,544.61077,287.00402,1],[544.61077,287.00402,544.74822,284.48064,543.55754,277.58215,1],[542.42592,270.68366,543.88259,263.28002,544.61077,261.59746,1],[545.27991,259.9149,542.76202,257.72711,540.7054,254.19374,1],[538.71767,250.66037,539.90734,251.50173,536.72893,249.81917,1],[533.55051,248.13661,533.55013,246.28549,531.16878,246.28549,1],[528.84647,246.28549,528.38444,242.59422,529.18151,241.07002,1],[529.93921,239.74501,529.27403,237.52677,526.30054,237.44355,1],[526.30054,237.44355],null,[441.03217,245.73262],[441.79356,245.65839,442.58778,246.07756,442.88299,246.45367,1],[443.48325,247.21577,443.74917,248.30495,447.05551,249.65099,1],[450.44056,250.99704,450.2336,252.34331,449.44638,253.35285,1],[448.58044,254.36238,446.85816,253.02615,443.55182,253.02615,1],[440.16677,253.02615,439.04474,251.17573,439.37931,247.97887,1],[439.54167,246.37549,440.27078,245.80685,441.03217,245.73262,1],[441.03217,245.73262],null,[525.60864,276.82439],[526.05514,276.82439,526.66839,277.07716,527.33261,278.08669,1],[528.72009,280.10576,528.18848,280.61068,530.0483,281.95673,1],[531.89827,283.30277,524.4787,284.64805,517.99395,283.63851,1],[511.49936,282.62898,512.62961,284.80695,509.44136,282.95614,1],[509.44136,282.95614,507.46507,277.41382,511.83416,277.75033,1],[516.13436,278.08684,515.67164,279.93704,517.99395,279.59063,1],[520.30642,279.26402,524.88215,277.07761,524.88215,277.07761,1],[524.88215,277.07761,525.16214,276.82439,525.60864,276.82439,1],[525.60864,276.82439]],"flat":true},{"id":"path4806","type":"poly","borderWidth":"0.98688012","borderColor":"#94ca90","backgroundColor":"#94ca90","points":[[357.11455,107.40586],[357.11455,107.40586,350.49204,112.65149,352.21409,116.50157,1],[354.00502,120.33187,357.78369,121.7373,361.28683,121.03458,1],[364.73093,120.33187,368.17503,122.08371,371.02871,119.98546,1],[373.80367,117.88721,374.79754,111.25595,371.35344,108.10858,1],[367.8503,104.9612,360.89322,105.66392,357.11455,107.40586,1],[357.11455,107.40586]],"flat":true},{"id":"hoenn-route-101","type":"line","lineWidth":"4","lineColor":"#000000","points":[[111.554,253.099],[111.554,290.33564]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-102","type":"line","lineWidth":"4","lineColor":"#000000","points":[[111.554,253.099],[43.227934,253.099],null,[43.227934,233.77199],[43.227934,253.099]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-103","type":"line","lineWidth":"4","lineColor":"#000000","points":[[182.779,217.20373],[111.554,217.18394],[111.554,253.099]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-104","type":"line","lineWidth":"4","lineColor":"#000000","points":[[43.227934,186.71478],[43.227934,233.77199]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-105","type":"line","lineWidth":"4","lineColor":"#000000","points":[[43.227934,253.099],[43.227934,343.40551]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-106","type":"line","lineWidth":"4","lineColor":"#000000","points":[[59.267596,367.11968],[59.267596,343.40551],[43.227934,343.40551]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-107","type":"line","lineWidth":"4","lineColor":"#000000","points":[[59.267596,367.11968],[104.25737,367.11968],[104.25737,361.15155],[114.65855,361.22084]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-108","type":"line","lineWidth":"4","lineColor":"#000000","points":[[114.16654,361.22084],[182.779,361.22084]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-109","type":"line","lineWidth":"4","lineColor":"#000000","points":[[182.779,266.94313],[182.779,361.22084]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-110","type":"line","lineWidth":"4","lineColor":"#000000","points":[[182.779,266.94313],[182.779,144.002]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-111","type":"line","lineWidth":"4","lineColor":"#000000","points":[[182.779,143.33942],[182.779,23.39281]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-112","type":"line","lineWidth":"4","lineColor":"#000000","points":[[128.85808,78.570827],[182.779,78.570827],null,[158.37893,78.897442],[158.37893,65.288514],[182.779,65.288514]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-113","type":"line","lineWidth":"4","lineColor":"#000000","points":[[103.388,23.39281],[182.779,23.39281]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-114","type":"line","lineWidth":"4","lineColor":"#000000","points":[[62.842,59.023458],[83.73054,59.023458],[83.764981,23.42745],[103.388,23.39281]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-115","type":"line","lineWidth":"4","lineColor":"#000000","points":[[43.154132,186.71478],[43.154132,59.023458],[62.842,59.023458]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-116","type":"line","lineWidth":"4","lineColor":"#000000","points":[[111.928,144.002],[83.799422,144.002],[83.799422,186.71478],[43.154132,186.71478]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-117","type":"line","lineWidth":"4","lineColor":"#000000","points":[[111.928,144.002],[182.779,144.002]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-118","type":"line","lineWidth":"4","lineColor":"#000000","points":[[182.779,144.002],[255.61077,144.002]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-119","type":"line","lineWidth":"4","lineColor":"#000000","points":[[246.94148,144.002],[246.94148,26.084903],[268.0046,26.084903]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-120","type":"line","lineWidth":"4","lineColor":"#000000","points":[[268.0046,26.084903],[281.68752,26.015621],[281.68752,86.053264]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-121","type":"line","lineWidth":"4","lineColor":"#000000","points":[[281.68752,86.053264],[408.7832,86.053264]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-122","type":"line","lineWidth":"4","lineColor":"#000000","points":[[346.13153,86.053264],[346.13153,128.50321],[361.87599,128.50321],[361.87599,144.002]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-123","type":"line","lineWidth":"4","lineColor":"#000000","points":[[255.61077,144.002],[361.87599,144.002]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-124","type":"line","lineWidth":"4","lineColor":"#000000","points":[[455.30869,173.769],[455.30869,86.053264],null,[513.61316,91.378066],[470.31591,91.378066],[470.31591,86.053264],[455.30869,86.053264],[408.6848,86.053264]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-125","type":"line","lineWidth":"4","lineColor":"#000000","points":[[513.61316,91.378066],[513.61316,56.380851],[523.45344,56.380851]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-126","type":"line","lineWidth":"4","lineColor":"#000000","points":[[455.30869,173.769],[513.61316,173.769]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-127","type":"line","lineWidth":"4","lineColor":"#000000","points":[[513.61316,91.378066],[513.61316,185.75969]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-128","type":"line","lineWidth":"4","lineColor":"#000000","points":[[568.81714,194.23681],[568.81714,217.7085],[513.61316,217.7085],null,[513.61316,185.75969],[513.61316,217.7085],[513.61316,248.67747]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-129","type":"line","lineWidth":"4","lineColor":"#000000","points":[[513.61316,248.67747],[513.61316,266.94313],[483.53141,266.94313]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-130","type":"line","lineWidth":"4","lineColor":"#000000","points":[[444.17028,266.94313],[483.53141,266.94313]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-131","type":"line","lineWidth":"4","lineColor":"#000000","points":[[405.566,266.94313],[444.17028,266.94313]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-132","type":"line","lineWidth":"4","lineColor":"#000000","points":[[332.82747,266.94313],[405.566,266.94313]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-133","type":"line","lineWidth":"4","lineColor":"#000000","points":[[250.13957,266.94313],[332.82747,266.94313]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-route-134","type":"line","lineWidth":"4","lineColor":"#000000","points":[[182.779,266.94313],[250.13957,266.94313]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"hoenn-victory-road","type":"line","lineWidth":"4","lineColor":"#000000","points":[[568.5121,194.23681],[568.81714,180.09837],[568.81714,180.09837],[564.11349,180.09837],[564.11349,157.1265],[564.11349,180.09837]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"littleroot-town","type":"circle","borderWidth":"0.98688012","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"111.6935","y":"290.25394","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"oldale-town","type":"circle","borderWidth":"0.98688012","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"111.6935","y":"253.58409","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"petalburg-city","type":"circle","borderWidth":"0.98688012","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"70.236389","y":"253.58409","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"rustboro-city","type":"circle","borderWidth":"0.98688012","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"43.387169","y":"186.96469","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"lavaridge-town","type":"circle","borderWidth":"0.98688012","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"129.51424","y":"78.627724","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"fortree-city","type":"circle","borderWidth":"0.98688012","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"268.66568","y":"26.141792","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"lilycove-city","type":"circle","borderWidth":"0.98688012","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"409.13574","y":"86.110153","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"pacificlog-town","type":"circle","borderWidth":"0.98688012","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"405.76053","y":"266.77155","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"mossdeep-city","type":"circle","borderWidth":"0.98688012","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"513.84619","y":"90.742134","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"hoenn-elite-four","type":"circle","borderWidth":"0.98688","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"564.35","y":"156.01","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"ever-grande-city","type":"circle","borderWidth":"0.98688","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"568.9","y":"194.37","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"sootopolis-city","type":"circle","borderWidth":"0.98688012","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"455.03082","y":"173.97929","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"dewford-town","type":"circle","borderWidth":"0.98688012","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"59.500633","y":"366.78064","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"verdanturf-town","type":"circle","borderWidth":"0.98688012","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"112.42168","y":"143.90111","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"slateport-city","type":"circle","borderWidth":"0.98688012","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"183.02571","y":"266.77155","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"mauville-city","type":"circle","borderWidth":"0.98688012","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"183.02571","y":"143.90111","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"fallarbor-town","type":"circle","borderWidth":"0.98688012","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"104.07713","y":"23.449697","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"cave-of-orgin","type":"circle","borderWidth":"0.98688","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"438.67","y":"167.62","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"sky-pillar","type":"circle","borderWidth":"0.98688","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"375.03","y":"216.71","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"battle-resort","type":"circle","borderWidth":"0.98688","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"479.58","y":"345.8","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"sealed-chamber","type":"circle","borderWidth":"0.98688","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"236.4","y":"280.81","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"sea-mauville","type":"circle","borderWidth":"0.98688","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"126.85","y":"341.27","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"granite-cave","type":"circle","borderWidth":"0.98688","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"30.032","y":"362.63","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"petalburg-woods","type":"circle","borderWidth":"0.98688","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"43.214","y":"234","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"meteor-falls","type":"circle","borderWidth":"0.98688","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"62.759","y":"58.545","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"mt-chimney","type":"circle","borderWidth":"0.98688","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"138.24","y":"38.901","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"jagged-pass","type":"circle","borderWidth":"0.98688","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"138.24","y":"59.355","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"fiery-path","type":"circle","borderWidth":"0.98688","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"158.29","y":"64.846","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"rusturf-tunnel","type":"circle","borderWidth":"0.98688","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"100.06","y":"143.9","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"new-mauville","type":"circle","borderWidth":"0.98688","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"197.57","y":"157.08","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"scorched-slab","type":"circle","borderWidth":"0.98688","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"300.49","y":"33.687","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"hoenn-safari-zone","type":"circle","borderWidth":"0.98688","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"347.31","y":"69.596","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"shoal-cave","type":"circle","borderWidth":"0.98688","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"526.4","y":"55.96","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"seafloor-cavern","type":"circle","borderWidth":"0.98688","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"504.14","y":"228.38","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"mt-pyre","type":"circle","borderWidth":"0.98688","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"361.4","y":"114.14","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1}]
},
"4": {
"name": "Sinnoh",
"svg":[{"id":"path5457","type":"poly","borderWidth":"1px","borderColor":"none","backgroundColor":"#94ca90","points":[[526.13347,81.558424],[526.13347,81.558424,514.77811,81.085284,510.51985,91.967501,1],[506.2616,102.84972,490.17484,107.58112,497.74508,110.41995,1],[505.31532,113.2588,521.87521,94.80634,530.39173,98.11832,1],[538.90824,101.4303,548.84418,84.870403,542.69337,77.773305,1],[536.54255,70.676207,530.39173,80.139005,526.13347,81.558424,1],[526.13347,81.558424]],"flat":true},{"id":"path4146","type":"poly","borderWidth":"1px","borderColor":"none","backgroundColor":"#94ca90","points":[[414.434,-0.00919075],[359.61784,0.32540731],[359.61784,0.32540824,361.95647,18.040159,366.30172,30.9088,1],[370.64698,43.777441,363.46077,45.449128,366.46901,54.641015,1],[369.47728,63.832902,367.13822,70.016361,367.13822,70.016361,1],[367.13822,70.016361,358.44701,93.914701,356.10725,104.44359,1],[353.7675,114.97248,353.09943,117.98112,359.11594,121.65788,1],[365.13244,125.33463,359.44972,130.68304,365.13198,133.69129,1],[370.81424,136.69954,367.6392,139.37302,365.46657,143.55115,1],[363.29395,147.72927,385.35387,160.4312,388.195,155.58456,1],[391.03612,150.73793,405.57693,147.72954,400.73029,141.21165,1],[395.88366,134.69378,406.07843,136.1979,404.74143,130.84989,1],[403.40443,125.50189,398.89174,125.83631,395.38211,125.83631,1],[391.87248,125.83631,388.86436,121.82531,394.21237,120.65543,1],[399.56037,119.48556,405.74401,109.45744,404.57413,101.9368,1],[403.40426,94.416165,412.09473,103.77509,413.59885,99.262708,1],[415.10298,94.750327,415.77086,95.419698,420.78463,94.918323,1],[425.79838,94.416947,434.32238,99.430007,434.32238,99.430007,1],[434.32238,99.430007,432.484,113.97056,434.32238,124.66657,1],[436.16075,135.36258,445.68663,135.86318,447.02364,142.04681,1],[448.36063,148.23044,452.37121,148.8989,454.3767,151.07152,1],[456.38222,153.24416,449.02927,153.24381,445.85389,155.91781,1],[442.67851,158.59182,447.0239,166.78225,449.86503,170.12476,1],[452.70616,173.46726,457.219,170.62587,459.39164,167.28337,1],[461.56426,163.94086,467.24552,168.95449,470.08665,163.27223,1],[472.92778,157.58997,478.27587,161.76811,477.94162,158.09135,1],[477.60737,154.41459,481.78581,153.24459,482.12006,148.89933,1],[482.45431,144.55408,476.4375,145.89086,472.76074,142.21411,1],[469.08398,138.53736,468.91669,128.17555,462.23168,125.33442,1],[455.54666,122.49329,461.73081,127.50691,457.55269,100.59975,1],[453.37456,73.692594,442.34386,60.657349,439.00136,59.654598,1],[435.65886,58.651847,424.29438,38.430043,419.61488,34.084788,1],[414.93538,29.739533,414.434,-0.00919075,414.434,-0.00919075,1],[414.434,-0.00919075],null,[238.16259,6.2807228],[238.03468,6.2900653,237.90881,6.3101004,237.78347,6.3414362,1],[229.76146,8.3469391,231.59975,14.363752,219.56674,20.881635,1],[207.53371,27.399518,213.71653,26.229207,204.52464,33.415591,1],[195.33276,40.601975,198.0072,38.429957,197.17157,46.953342,1],[196.33595,55.476738,198.50801,60.991991,200.5135,66.507123,1],[202.51901,72.022256,191.99077,79.040687,194.66477,82.550317,1],[197.33878,86.059947,197.17157,86.896052,197.17157,86.896052,1],[191.32219,89.068679,196.00126,94.583681,194.16287,98.427561,1],[188.7127,109.82337,189.8178,119.48582,189.1493,123.49682,1],[188.4808,127.50783,176.78229,137.70243,176.44804,148.06419,1],[176.11379,158.42595,157.89652,169.62216,157.7294,174.13454,1],[157.56228,178.64692,144.69455,187.83964,139.17942,189.17663,1],[133.66429,190.51365,129.31908,194.6909,135.33559,198.70191,1],[141.35209,202.7129,154.38798,200.03947,165.25112,200.54085,1],[176.11426,201.04222,175.27763,203.88275,175.94613,207.72663,1],[176.61464,211.5705,173.44022,213.07485,174.27585,214.41185,1],[175.11147,215.74885,175.77914,217.58775,174.77639,220.09463,1],[173.77364,222.6015,181.62836,223.10215,184.97087,223.26927,1],[188.31336,223.4364,199.00968,218.25568,204.69194,218.25568,1],[210.3742,218.25568,215.55517,226.44487,217.72779,229.95449,1],[219.90042,233.46413,227.92226,231.95995,233.10314,228.61744,1],[238.28402,225.27494,232.93632,222.09978,232.10069,219.76004,1],[231.26506,217.42027,240.45756,207.72663,240.45756,207.72663,1],[242.96435,208.89772],[242.96435,208.89772,236.61316,215.9161,234.77478,218.42298,1],[232.9364,220.92987,234.9423,220.93,236.44643,222.43412,1],[237.95055,223.93824,237.28219,225.94379,235.27668,228.95204,1],[233.27119,231.9603,229.92841,233.13049,222.07353,233.13049,1],[214.21864,233.13049,212.71396,228.11694,209.87283,224.27306,1],[207.0317,220.42918,202.18571,220.76283,198.84321,221.09708,1],[195.50071,221.43133,187.4777,225.60963,183.63381,226.44526,1],[179.78993,227.28087,174.27493,223.60451,172.1023,222.93602,1],[169.92968,222.26752,174.1085,217.92205,172.7715,216.25079,1],[171.4345,214.57954,171.26773,213.57714,173.1061,211.40451,1],[174.94448,209.23189,172.26992,205.72151,171.26716,204.21739,1],[170.26441,202.71326,168.25842,202.71304,161.74054,202.71304,1],[155.22266,202.71304,131.01673,204.22478,132.43483,207.53369,1],[133.85293,210.8426,126.28928,218.40512,126.28928,222.65943,1],[126.28928,226.91375,138.10704,227.85997,135.27083,229.75076,1],[132.43462,231.64158,130.07095,235.42292,131.48905,239.20453,1],[132.90716,242.98615,121.08994,246.29468,115.41752,250.07628,1],[109.7451,253.8579,113.52666,257.16707,122.03529,264.2576,1],[130.54391,271.34811,123.92572,268.03905,121.08951,272.29336,1],[118.2533,276.54769,122.50751,278.43907,122.50751,282.22069,1],[122.50751,286.00229,107.38143,291.20185,99.81821,290.25644,1],[92.254986,289.31104,105.01755,284.58405,110.68997,283.63869,1],[116.36239,282.69328,113.99829,275.1292,112.58018,271.34758,1],[111.16208,267.56597,109.27197,273.71216,109.27197,268.98515,1],[109.27197,264.25813,112.10748,262.83981,112.58018,260.0036,1],[113.05289,257.16739,107.85435,257.16756,108.79976,251.96785,1],[109.74516,246.76813,102.18086,244.40392,99.344649,243.45852,1],[96.50844,242.51311,93.200444,269.45737,93.200444,269.45737,1],[89.890889,268.98515],[89.890889,268.98515,92.726606,254.80341,90.363103,248.65828,1],[87.9996,242.51316,82.800417,247.24061,83.273124,242.9863,1],[83.74582,238.73199,78.073412,235.89508,71.455578,234.47697,1],[64.837757,233.05887,62.947545,232.11341,57.747833,241.09474,1],[52.548112,250.07606,38.366529,251.96687,29.385205,252.91228,1],[20.403872,253.85769,12.099405,256.12334,12.099405,256.12334,1],[-14.742688,246.66689],[-24.603902,344.26849],[-24.603902,344.26849,6.6492484,345.27117,13.668512,346.60798,1],[20.687769,347.94498,57.212333,335.5001,66.312476,333.57213,1],[75.109024,331.70848,75.610625,333.38088,70.490909,338.58571,1],[57.963421,351.32147,76.172346,361.81616,76.172346,365.82716,1],[76.172346,378.37157,82.021689,384.3785,85.197058,384.3785,1],[88.372437,384.3785,90.211953,380.03325,94.05583,374.01674,1],[97.899707,368.00023,102.57926,368.50222,110.93552,366.83096,1],[119.29178,365.15971,131.15676,352.95891,134.66639,351.95616,1],[138.17601,350.95341,138.17676,342.76475,141.85351,340.75925,1],[145.53027,338.75375,146.19821,341.76105,154.22017,342.42955,1],[162.24218,343.09805,163.57897,347.778,173.43936,350.61913,1],[183.29974,353.46025,187.64482,368.83573,193.99558,370.0056,1],[200.34634,371.17547,201.18247,376.85777,204.85924,376.52353,1],[208.53599,376.18928,212.88151,378.69572,218.06239,378.69572,1],[223.24328,378.69572,221.07104,382.20618,224.91492,383.37605,1],[228.75881,384.54593,227.75584,388.89127,228.59145,391.23103,1],[229.42708,393.57078,228.25686,393.90493,228.25686,393.90512,1],[233.93963,448.72127],[344.91035,447.71883],[340.23135,395.24216],[340.23135,395.24216,340.56447,389.39287,336.55347,387.55449,1],[332.54246,385.71611,331.87506,383.54357,328.53256,379.86681,1],[325.19005,376.19006,325.52407,366.3295,321.84733,364.15687,1],[318.17057,361.98424,318.33774,358.30705,318.00349,355.96729,1],[317.66924,353.62754,322.34774,360.98118,323.51762,359.97843,1],[324.6875,358.97567,320.6764,356.30216,320.84353,353.9624,1],[321.01066,351.62265,321.01126,348.4464,318.83863,347.94502,1],[316.66601,347.44365,316.16511,346.94218,318.00349,345.27094,1],[319.84187,343.59968,320.67766,340.59155,318.17079,338.92031,1],[315.66391,337.24906,317.83554,336.07918,318.50404,333.73943,1],[319.17255,331.39968,316.33193,333.40588,313.82506,334.40862,1],[311.31817,335.41138,307.64194,331.73467,309.14607,330.56479,1],[309.55897,330.24363,309.56066,329.35024,309.45099,328.26307,1],[313.65775,328.39125],[313.65775,328.39125,313.15594,331.39958,315.82995,331.06533,1],[318.50394,330.73109,322.01445,331.06564,321.84733,330.06288,1],[321.6802,329.06013,321.68002,328.55855,321.68002,328.55855,1],[324.52142,328.55855],[324.85467,326.72095],[329.87229,326.45651],[329.81425,326.60054,329.77297,326.73614,329.7023,326.8869,1],[327.19542,332.23491,328.53228,332.06908,330.87205,341.09385,1],[333.2118,350.11861,339.8971,352.2902,345.41224,360.81358,1],[350.92737,369.33697,351.59466,364.65812,354.60291,360.14574,1],[357.61117,355.63336,353.76806,354.96442,352.76531,351.95616,1],[351.76256,348.94792,346.74885,346.10669,343.7406,344.10119,1],[340.73234,342.09569,343.0714,338.58571,343.0714,338.58571,1],[343.0714,338.58571,344.57552,344.10206,348.25228,344.93769,1],[351.92904,345.77332,353.09896,347.10979,354.77021,349.61667,1],[356.44147,352.12355,363.62888,354.29617,360.95488,349.61667,1],[358.28088,344.93716,375.99598,339.42159,381.51111,341.4271,1],[387.02625,343.43261,388.52941,341.26037,388.36228,337.91786,1],[388.19516,334.57536,400.06205,332.23535,398.3908,329.8956,1],[396.71956,327.55584,393.71082,329.56217,388.86419,329.39505,1],[384.01756,329.22793,385.68938,326.21927,385.52225,322.54251,1],[385.35513,318.86576,388.52963,318.02987,389.86664,319.70112,1],[391.20364,321.37237,389.19896,322.3756,389.36609,324.04686,1],[389.53321,325.71811,388.3629,327.22237,391.53827,328.05799,1],[394.71365,328.89362,398.05611,324.88149,395.38211,324.38011,1],[392.7081,323.87874,395.21438,322.54217,397.38701,322.20792,1],[399.55964,321.87367,399.22586,328.72531,406.91362,323.04306,1],[414.60139,317.3608,428.13922,316.69243,433.48723,316.69243,1],[438.83523,316.69243,438.16604,309.33979,443.1798,301.98629,1],[448.19355,294.63277,449.36304,301.98617,457.0508,297.97515,1],[464.73855,293.96415,480.94988,296.30425,488.30339,298.30975,1],[495.6569,300.31526,497.49571,301.81829,501.67384,301.14979,1],[505.85197,300.48129,502.84415,297.13962,504.68253,295.46836,1],[504.7041,295.44875,504.73278,295.43342,504.75538,295.41439,1],[516.79823,295.13376],[516.79823,295.13376,517.38326,294.46513,516.88188,296.30351,1],[516.38051,298.14189,518.80452,299.228,522.73197,299.98004,1],[526.65941,300.73211,523.81745,298.30975,525.82295,298.30975,1],[527.82846,298.30975,529.33298,296.30385,527.4946,294.04766,1],[525.65621,291.79148,528.49674,290.37082,526.90905,288.78313,1],[525.32136,287.19545,528.49735,285.77449,527.4946,284.52105,1],[526.49184,283.26761,526.909,283.43557,528.16245,281.43007,1],[529.41588,279.42455,525.15532,278.0033,521.47857,278.17043,1],[517.80181,278.33755,518.13528,282.26521,518.13528,282.26521,1],[516.63094,282.09791],[516.21404,276.83338],[516.14658,276.85766],[516.02987,275.57765,515.54485,274.23667,515.54485,273.57509,1],[515.54485,272.07097,519.89093,273.0728,520.22518,271.40155,1],[520.55943,269.73029,523.90127,268.72789,526.0739,266.55527,1],[528.24653,264.38264,525.74009,263.37993,518.72083,262.71143,1],[511.70156,262.04292,511.36654,266.55567,510.19666,269.56396,1],[509.02678,272.5722,503.51235,270.3989,505.68497,268.89475,1],[507.85761,267.39064,505.35077,264.38272,501.84114,264.04847,1],[498.3315,263.71422,499.50047,259.70283,494.48672,262.37683,1],[489.47296,265.05083,473.09577,268.05969,476.10403,260.37194,1],[479.11228,252.68417,472.09293,254.5222,473.42993,249.67557,1],[474.76694,244.82894,473.4292,245.16376,466.24282,241.15276,1],[459.05642,237.14175,458.38828,224.60662,456.21565,218.42298,1],[454.04302,212.23936,458.55515,191.68343,458.55515,191.68343,1],[461.06202,181.32167,462.23147,171.62775,460.72733,171.62775,1],[459.22321,171.62775,452.37142,179.81685,445.51929,185.83335,1],[438.66715,191.84985,428.47247,193.68832,418.27783,193.68832,1],[408.08319,193.68832,409.92135,191.68334,406.41173,189.00934,1],[402.90209,186.33534,401.3991,178.31389,399.72785,175.30563,1],[398.0566,172.29738,396.71929,179.31633,395.54941,181.48897,1],[394.37953,183.6616,398.89101,185.33224,398.55676,188.67474,1],[398.22251,192.01724,390.86982,193.18705,387.69444,191.18153,1],[384.51907,189.17603,392.2067,185.16545,394.04507,183.82846,1],[395.88345,182.49145,391.20411,181.32123,389.03149,178.31298,1],[386.85885,175.30472,395.2149,173.9675,392.70802,171.62775,1],[390.20115,169.28799,369.47758,164.27415,365.46657,163.77278,1],[361.45556,163.2714,369.47749,167.95086,378.33513,172.7975,1],[387.19276,177.64413,378.16861,183.99562,360.78759,169.62286,1],[343.40657,155.25009,373.62525,167.8309,359.45054,159.763,1],[349.59016,154.15069,341.56823,158.41947,331.03934,136.36537,1],[319.52383,112.24467,293.26826,85.391533,291.42988,80.043526,1],[289.5915,74.695519,281.73637,70.851596,278.22673,68.344717,1],[274.7171,65.837847,259.67631,68.344717,256.66805,68.344717,1],[253.65981,68.344717,254.32821,67.175406,253.99396,65.002779,1],[253.65972,62.830151,254.99693,64.667701,255.4983,65.503327,1],[255.99968,66.338953,258.00531,65.838448,259.50944,66.339824,1],[261.01357,66.841199,274.21621,66.17209,277.39158,63.163836,1],[280.56696,60.155582,276.05414,55.476042,274.38289,51.465026,1],[272.71164,47.454022,278.06057,33.583195,276.55643,32.580444,1],[275.05231,31.577692,271.20738,35.754778,265.19087,41.938411,1],[259.26838,48.025425,246.22072,5.6921916,238.16259,6.2807228,1],[238.16259,6.2807228],null,[243.95735,43.140538],[245.0278,43.15441,246.15975,43.359542,247.30874,43.777354,1],[250.98549,45.114356,251.31988,54.974265,251.31988,54.974265,1],[250.48425,57.982519,252.65674,55.308776,247.30874,57.815654,1],[241.96073,60.322532,238.95322,59.821244,233.77234,60.489745,1],[228.59145,61.158246,230.2628,53.471314,231.26555,49.627432,1],[232.26829,45.783553,236.44564,47.95605,238.28402,45.616297,1],[239.54791,44.007717,241.60238,43.110018,243.95735,43.140538,1],[243.95735,43.140538],null,[302.40418,130.6772],[303.27702,130.6772,306.86829,130.93376,308.47687,135.02833,1],[310.31525,139.70784,309.31193,141.04424,311.81881,142.21411,1],[314.32569,143.38399,314.6612,145.8909,314.32695,148.73203,1],[313.9927,151.57316,316.8337,152.07467,325.85846,157.92405,1],[334.57821,163.57573,334.86747,164.41142,334.72667,167.47495,1],[332.68805,167.25639],[332.6728,166.94075,332.67426,166.61573,332.70963,166.27957,1],[333.04388,163.10419,329.03337,162.60364,326.69361,160.59814,1],[324.35386,158.59264,324.35412,158.7592,324.35412,158.7592,1],[324.35412,158.7592,323.68565,160.93279,325.69117,162.26978,1],[327.69666,163.60679,329.36752,167.95143,329.2004,169.45556,1],[329.12417,170.14169,329.40815,170.6449,329.90062,170.99903,1],[329.93571,172.6167],[326.38517,172.2343,327.34784,169.28235,325.85846,168.62041,1],[324.71232,168.11101,324.23987,169.25964,323.56484,171.08807,1],[319.72775,171.00442],[320.82349,169.78146,322.11867,168.24603,322.51518,165.94633,1],[323.35079,161.09969,319.84156,161.60137,319.00594,159.763,1],[318.17031,157.92461,315.162,153.9127,312.488,152.40857,1],[309.814,150.90445,312.1535,146.8937,309.64661,144.8882,1],[307.13974,142.88269,303.9641,141.71295,306.80522,138.53757,1],[309.64635,135.36219,302.2099,130.68259,302.2099,130.68259,1],[302.2099,130.68259,302.27949,130.6772,302.40418,130.6772,1],[302.40418,130.6772],null,[529.75044,141.71221],[521.72843,141.54508,516.71527,147.22734,512.20291,152.07397,1],[507.69051,156.9206,511.36736,159.42801,504.51523,162.93763,1],[497.66309,166.44727,491.14504,159.09385,488.80528,165.61172,1],[486.46553,172.12961,481.61842,169.45512,479.27867,176.80863,1],[476.93891,184.16214,473.59641,182.65785,468.91691,192.18398,1],[464.2374,201.71012,475.93686,208.22817,479.94787,207.89392,1],[483.95887,207.55967,481.78551,204.05021,483.1225,202.88034,1],[484.45951,201.71047,485.79738,198.70269,483.959,196.86431,1],[482.12063,195.02594,489.64044,195.35996,489.64044,195.35996,1],[489.64044,195.35996,485.96402,200.37425,489.97503,201.04275,1],[493.98604,201.71125,489.13936,204.05083,493.81886,206.05633,1],[498.49837,208.06183,494.65406,199.03629,506.35282,192.35128,1],[518.05158,185.66626,515.37815,173.46726,518.55352,170.12476,1],[521.7289,166.78225,527.41038,161.09994,525.572,158.42595,1],[523.73363,155.75194,525.57306,155.41717,526.57581,152.74316,1],[527.57855,150.06916,532.92669,151.74033,535.76782,150.06908,1],[538.60894,148.39783,536.6034,145.22209,539.61165,144.5536,1],[542.61991,143.8851,537.77245,141.87933,529.75044,141.71221,1],[529.75044,141.71221],null,[269.29241,142.69576],[269.4554,142.68788,269.59209,142.69218,269.69177,142.69846,1],[269.80569,142.70564,269.8712,142.716,269.8712,142.716,1],[269.8712,142.716,266.86322,145.05502,267.53172,145.89064,1],[268.20022,146.72627,269.70386,148.23019,268.36686,149.56718,1],[267.02986,150.90419,265.52617,152.74303,266.19467,153.91291,1],[266.36197,154.24751],[266.36197,154.24751,266.52831,154.08047,268.19956,156.92161,1],[269.87082,159.76273,266.52888,160.26345,264.85763,162.77033,1],[264.19163,163.76934,263.95862,165.45497,263.90915,167.12552,1],[261.28363,167.04725],[260.98349,165.45421,259.83559,163.40731,263.85383,160.43084,1],[268.36621,157.08834,263.1865,154.24678,263.68788,152.24127,1],[264.18925,150.23577,266.0272,153.41185,265.86007,147.72959,1],[265.73212,143.37911,268.15143,142.75101,269.29241,142.69576,1],[269.29241,142.69576],null,[252.82557,162.11193],[253.74019,162.14914,254.57842,162.41554,254.82911,163.10493,1],[255.49762,164.9433,255.49758,167.11559,253.49207,167.95122,1],[251.48656,168.78684,251.98803,170.45901,250.98528,170.12476,1],[249.98252,169.7905,250.65133,163.43901,249.98283,162.93763,1],[249.56502,162.62426,251.30121,162.04991,252.82557,162.11193,1],[252.82557,162.11193],null,[215.55561,164.77658],[218.8981,165.11083,218.39694,165.94554,217.05994,167.78391,1],[216.52131,168.52453,216.31346,169.23824,216.20726,169.95746,1],[214.21855,169.95746],[214.55316,167.61662],[209.67988,167.76907],[210.13557,167.10759,210.75846,166.59425,211.54447,166.44687,1],[214.21847,165.94549,215.55561,164.77658,215.55561,164.77658,1],[215.55561,164.77658],null,[261.3295,168.60017],[263.9105,168.7135],[263.97057,170.58857,264.18843,172.12965,264.18843,172.12965,1],[261.18109,171.96235],[261.18109,171.96235,261.28962,170.17223,261.3295,168.60017,1],[261.3295,168.60017],null,[332.98892,168.91184],[334.80897,169.23969],[335.2278,171.72986,336.79682,173.22141,335.38373,172.7975,1],[334.04498,172.39588,333.74861,172.73866,331.80568,172.72195,1],[331.83266,171.60212],[332.01076,171.61602,332.19005,171.62775,332.37639,171.62775,1],[334.21476,171.62775,334.54858,171.79505,334.54858,171.79505,1],[334.54858,171.79505,333.51853,170.65733,332.98892,168.91184,1],[332.98892,168.91184],null,[212.21231,169.45556],[212.54691,171.79505],[216.00489,171.98799],[215.95178,172.41253,215.87385,172.84656,215.7229,173.29939,1],[215.0544,175.30491,211.04235,172.96544,209.53822,172.29695,1],[208.90993,172.0177,208.69561,171.03701,208.84744,169.95476,1],[212.21231,169.45556],[212.21231,169.45556],null,[318.32054,172.76107],[322.80525,173.11321],[321.86359,175.82626,326.40786,176.53255,329.0331,179.65002,1],[331.70711,182.82541,329.7019,183.49425,328.03065,185.16551,1],[326.3594,186.83676,329.3677,190.68099,329.3677,190.68099,1],[329.3677,190.68099,328.19774,190.01156,326.69361,188.50744,1],[325.18948,187.00331,329.03384,181.8223,325.85846,179.31542,1],[322.68308,176.80855,319.84087,176.64177,318.33673,174.46914,1],[317.92715,173.87751,317.99749,173.33448,318.32054,172.76107,1],[318.32054,172.76107],null,[487.96069,175.07762],[490.68668,174.94726,497.14082,177.26932,499.33434,179.14948,1],[501.6741,181.15497,491.81288,182.1576,489.47313,185.50011,1],[487.13339,188.84261,491.64549,187.67203,491.81262,190.01179,1],[491.97974,192.35155,484.62671,191.51574,480.61571,189.84449,1],[476.60471,188.17324,482.11976,186.33525,483.1225,186.33525,1],[484.12526,186.33525,484.29225,178.48028,484.29225,178.48028,1],[480.61549,177.14328,485.12848,175.63972,487.46823,175.13834,1],[487.61447,175.107,487.77895,175.08632,487.96069,175.07762,1],[487.96069,175.07762],null,[432.18526,226.82033],[433.80955,226.82527,436.49457,227.615,436.49457,227.615,1],[436.49457,227.615,436.99569,229.6206,433.65318,230.2891,1],[430.31068,230.95759,431.14621,228.95183,430.97908,227.4477,1],[430.92687,226.97766,431.44694,226.81808,432.18526,226.82033,1],[432.18526,226.82033],null,[338.8282,230.90028],[338.90654,230.89798,338.93609,231.01996,338.89432,231.29155,1],[338.56006,233.46417,338.89305,236.6402,341.56706,240.98545,1],[344.24106,245.33072,341.56823,245.99865,341.4011,249.50828,1],[341.31114,251.39769,344.56495,253.76677,348.00404,255.60795,1],[346.21636,255.98707],[345.35113,255.05458,345.29745,254.39474,344.58383,254.45709,1],[344.31487,254.4806,343.94916,254.60577,343.406,254.85645,1],[343.406,254.85645,343.3074,255.03505,343.22116,255.19106,1],[339.44343,255.10067],[340.14569,253.56139,339.76883,253.30868,337.89052,251.17992,1],[335.38364,248.33879,339.06087,245.83226,337.05537,241.15276,1],[335.30056,237.05819,338.27982,230.91627,338.8282,230.90028,1],[338.8282,230.90028],null,[265.02492,241.15276],[265.02492,241.15276,269.20201,241.65336,269.20201,242.99034,1],[269.20201,244.32735,268.1997,245.99944,267.02981,247.67068,1],[265.85995,249.34194,269.36917,250.51177,270.53906,251.51452,1],[271.70894,252.51727,277.22415,249.67597,278.39403,251.34722,1],[279.56391,253.01847,279.22966,265.38521,278.39403,266.38796,1],[277.55841,267.39072,280.40044,270.39954,280.56757,273.40779,1],[280.73469,276.41604,290.0927,277.58561,291.26258,279.59112,1],[292.43246,281.59662,286.91833,284.10337,285.74845,285.94174,1],[284.57857,287.78013,289.59168,288.61589,291.59718,289.95288,1],[293.60269,291.28988,293.10083,292.45955,292.43232,293.62942,1],[291.76383,294.7993,293.60229,297.47408,289.92554,296.9727,1],[286.24878,296.47132,285.58119,296.30429,286.9182,294.46591,1],[288.2552,292.62754,287.92039,291.28931,285.07926,288.11394,1],[282.23813,284.93856,286.24991,282.43212,288.42254,280.76086,1],[290.59517,279.08961,283.91012,277.41858,281.90462,277.08433,1],[279.89912,276.75007,277.55888,274.07534,277.55888,269.8972,1],[277.55888,265.71908,270.03763,264.04821,269.20201,261.20708,1],[268.36638,258.36595,274.88479,256.3608,274.88479,256.3608,1],[274.88479,256.3608,274.55033,258.19877,273.38044,258.53299,1],[272.21056,258.86724,271.54168,261.20783,271.70881,263.21333,1],[271.87593,265.21884,274.38381,262.87877,276.55643,264.21578,1],[278.72906,265.55277,275.55346,258.53321,275.05208,254.85645,1],[274.55071,251.17971,272.54539,252.51631,270.03851,253.18481,1],[267.53163,253.85332,266.52888,251.0124,264.85763,249.50828,1],[263.18637,248.00415,266.02672,246.16577,266.69522,244.32739,1],[267.36373,242.48902,265.02492,241.15276,265.02492,241.15276,1],[265.02492,241.15276],null,[454.44821,242.94852],[455.65122,242.90226,456.55025,243.32494,456.55025,243.32494,1],[457.38587,244.99621,456.38222,245.66536,454.3767,247.83798,1],[452.37121,250.01061,449.02961,246.66715,451.36936,244.32739,1],[452.39301,243.30376,453.51255,242.98451,454.44821,242.94852,1],[454.44821,242.94852],null,[385.52225,246.50094],[385.52225,246.50094,384.6857,246.8344,383.34871,248.33853,1],[382.01171,249.84265,377.1659,249.67506,367.30551,249.17368,1],[361.56804,248.88194,357.64705,255.15381,356.84796,260.87788,1],[355.2362,260.56615,353.93506,260.70654,353.93506,260.70654,1],[353.93506,260.70654,350.92715,258.86746,349.08878,260.03734,1],[349.06574,260.052,349.04305,260.07098,349.01997,260.08591,1],[346.725,259.34521],[347.26832,258.51561,347.52795,257.98039,347.41983,257.49952,1],[348.57459,257.24399,349.7113,256.99396,350.47304,256.83166,1],[352.53535,257.77179,354.38478,258.42208,355.27211,258.53299,1],[357.94611,258.86725,355.93996,258.03148,355.93996,254.52185,1],[355.93996,251.01222,358.28005,250.1769,361.45543,248.33853,1],[364.63081,246.50015,385.52225,246.50094,385.52225,246.50094,1],[385.52225,246.50094],null,[161.90785,250.84532],[161.90785,250.84532,165.75228,252.18289,163.74679,252.68427,1],[161.74128,253.18564,160.06956,255.19148,159.40105,253.01886,1],[158.73255,250.84624,161.90785,250.84532,161.90785,250.84532,1],[161.90785,250.84532],null,[162.07514,255.8589],[162.07514,255.8589,163.91408,256.19372,163.91408,257.69784,1],[163.91408,259.20197,160.40363,258.8679,159.23374,257.86515,1],[158.06387,256.86239,162.07514,255.8589,162.07514,255.8589,1],[162.07514,255.8589],null,[153.21637,256.20969],[154.16787,256.17542,154.63837,256.73653,155.89181,257.36325,1],[157.8973,258.366,153.71871,259.53545,151.54608,259.53545,1],[149.37344,259.53545,150.71093,257.02865,150.71093,257.02865,1],[151.9017,256.4646,152.64547,256.23025,153.21637,256.20969,1],[153.21637,256.20969],null,[338.69194,256.59825],[342.48046,256.68865],[342.15771,257.41232,341.84218,258.24761,341.67634,259.03354,1],[337.65846,258.92696],[337.86934,258.33839,338.11109,257.7586,338.39241,257.19595,1],[338.52373,256.93332,338.57804,256.82099,338.69194,256.59825,1],[338.69194,256.59825],null,[341.43349,260.74836],[341.03695,263.37762,340.03215,268.46713,340.89921,271.0683,1],[341.90196,274.07655,340.89895,277.75283,343.2387,277.08433,1],[345.57845,276.41582,348.92096,272.9055,348.41958,271.23424,1],[347.91821,269.56299,342.40347,265.88747,344.91035,262.04358,1],[345.13133,261.70473,345.26368,261.52024,345.45811,261.23272,1],[346.5631,263.36713],[346.42937,264.36167,346.67976,265.57091,347.58443,267.05717,1],[349.92418,270.90104,348.25233,273.40801,349.58933,274.91213,1],[350.92634,276.41626,352.93235,278.08751,355.27211,274.91213,1],[357.61186,271.73675,354.60299,267.39106,357.277,266.72257,1],[357.29767,266.71739,357.31715,266.70912,357.33771,266.70368,1],[357.93265,268.18669,358.94867,269.29667,360.45299,269.73125,1],[367.97363,271.90387,363.96223,278.75541,363.96223,276.91703,1],[363.96223,275.07865,362.12472,273.24049,359.61784,273.24049,1],[357.11097,273.24049,360.28508,276.41617,357.1097,277.41893,1],[353.93433,278.42168,359.28281,279.9248,356.27455,282.93306,1],[353.2663,285.94131,357.61217,289.11664,359.45054,291.95777,1],[361.28892,294.7989,357.61212,296.63806,358.11349,295.30107,1],[358.61487,293.96406,357.10996,290.78846,354.77021,288.61584,1],[352.43046,286.44321,355.10459,281.42988,353.60047,281.26276,1],[352.09634,281.09563,349.7564,276.74956,348.25228,276.58243,1],[346.74815,276.41531,345.74554,279.42455,341.90165,281.43007,1],[338.05777,283.43557,332.7099,290.7889,330.37014,291.62452,1],[328.0304,292.46014,328.19747,298.14211,329.0331,302.98873,1],[329.86873,307.83536,325.85785,307.66798,327.86335,310.50911,1],[329.86887,313.35024,330.03555,315.68998,330.03555,315.68998,1],[327.13543,319.69492,330.50126,321.08096,330.34721,324.45701,1],[324.68871,324.882],[325.05165,320.52548],[328.62017,319.77228,325.53143,316.71873,326.52631,314.01835,1],[327.69619,310.84297,323.68466,310.50889,326.02441,309.00476,1],[328.36416,307.50064,327.19494,299.64632,325.35657,295.30107,1],[323.51818,290.9558,331.20564,286.77742,336.72077,282.09791,1],[342.2359,277.41841,338.55985,272.23709,337.38997,268.72746,1],[336.59033,266.32854,336.49406,263.53951,337.09989,260.8401,1],[341.43349,260.74836],[341.43349,260.74836],null,[422.37667,261.86279],[425.36304,261.65944,431.08441,265.40645,431.81558,266.72257,1],[432.65121,268.22669,430.31124,268.39421,430.31124,268.39421,1],[430.31124,268.39421,429.64252,268.05899,428.8069,270.0645,1],[427.97127,272.07,431.14631,275.74659,428.4723,280.25897,1],[425.79829,284.77135,425.96577,283.26826,418.44513,281.26276,1],[410.9245,279.25726,413.93345,275.91423,413.93345,270.3991,1],[413.93345,264.88397,418.94676,263.88079,421.28652,262.20953,1],[421.57899,262.00062,421.95004,261.89184,422.37667,261.86279,1],[422.37667,261.86279],null,[182.88232,270.33704],[183.17478,270.31616,183.63451,270.48218,184.30301,271.23424,1],[185.64001,272.73838,183.80207,272.90606,182.13082,273.07319,1],[180.45957,273.24031,182.46407,270.5664,182.46407,270.5664,1],[182.46407,270.5664,182.58984,270.35793,182.88232,270.33704,1],[182.88232,270.33704],null,[507.77352,279.65993],[507.98082,279.65594,508.20499,279.65852,508.44676,279.66668,1],[509.60723,279.7058,511.15788,279.86304,513.03805,279.92572,1],[513.52328,279.94189,513.91912,279.89753,514.27256,279.82453,1],[514.70969,282.18156],[506.74948,282.57957],[506.50079,282.16048,506.29861,281.76934,506.18552,281.43007,1],[505.72854,280.05912,506.32237,279.68776,507.77352,279.65993,1],[507.77352,279.65993],null,[512.87074,284.10415],[514.12414,293.12887],[511.40553,293.02768],[511.89238,292.68329,512.20289,292.24069,512.20291,291.62452,1],[512.2029,289.80069,509.80761,286.90029,508.00963,284.4374,1],[512.87074,284.10415],[512.87074,284.10415],null,[517.55108,284.6047],[517.55108,284.6047,516.54807,287.02836,517.30013,287.52974,1],[518.05219,288.03111,519.72349,289.70155,518.63718,290.62073,1],[517.55087,291.53992,517.80068,293.04522,517.80068,293.04522,1],[516.13038,293.21117],[515.79579,284.68835],[517.55108,284.6047],[517.55108,284.6047],null,[90.847461,298.88856],[91.182323,298.87668,91.527148,298.90448,91.882288,298.9776,1],[97.564548,300.14747,98.567517,299.6468,98.567517,299.6468,1],[102.41139,300.64954,99.069109,299.64623,105.25274,302.98873,1],[111.43638,306.33124,109.2634,310.17469,104.91815,315.52269,1],[100.57289,320.8707,96.060553,323.21142,90.712542,324.21416,1],[85.364531,325.21692,84.52908,320.03572,80.518074,320.03572,1],[76.507078,320.03572,77.509648,310.17482,80.350778,309.17207,1],[83.014333,308.23199,85.824526,299.06665,90.847461,298.88856,1],[90.847461,298.88856],null,[321.22669,320.69278],[321.62684,320.68988,322.05558,320.69314,322.51518,320.70357,1],[322.60889,320.70571,322.67892,320.69999,322.76882,320.70088,1],[322.84977,320.87087],[323.35167,327.22149],[320.67758,327.22149],[321.07694,320.69683],[321.12953,320.69622,321.17312,320.69317,321.22669,320.69278,1],[321.22669,320.69278],null,[310.9189,321.50365],[311.04401,321.50708,311.17725,321.51918,311.31826,321.54007,1],[312.153,321.66374,312.80937,321.70666,313.37307,321.69657,1],[313.99235,326.55366],[309.2648,326.69262],[308.93364,324.1858,308.64053,321.44094,310.9189,321.50365,1],[310.9189,321.50365],null,[233.03838,322.56815],[233.17364,322.56295,233.30393,322.56326,233.42694,322.56815,1],[234.01743,322.59165,234.44018,322.70982,234.44018,322.70982,1],[237.61556,324.88245,236.61286,325.55108,235.77723,326.72095,1],[234.94161,327.89082,229.09187,326.55392,230.26175,324.21416,1],[230.90152,322.93461,232.09156,322.60456,233.03838,322.56815,1],[233.03838,322.56815],null,[324.52142,334.07402],[324.52142,334.07402,320.67645,334.4078,322.18057,340.09006,1],[323.6847,345.77231,321.51321,350.28516,325.85846,354.79755,1],[330.20372,359.30993,337.55683,369.0035,339.72946,369.33775,1],[341.90209,369.672,338.22585,356.13468,335.05047,353.6278,1],[331.87509,351.12093,330.03651,348.44606,328.36525,342.42955,1],[326.694,336.41304,326.86117,335.9124,324.52142,334.07402,1],[324.52142,334.07402],null,[234.2513,334.41132],[235.65489,334.46845,236.11183,335.57837,236.11183,335.57837,1],[237.2817,338.08525,237.11406,337.2491,235.60993,340.25736,1],[234.1058,343.26561,236.77976,343.60016,239.45377,344.43578,1],[242.12777,345.27141,239.78878,348.27988,237.61617,351.12101,1],[235.44354,353.96214,232.93594,351.28727,230.42905,350.28451,1],[227.92218,349.28177,233.77133,345.94009,234.10558,344.60309,1],[234.43984,343.26608,233.43783,341.2598,230.93095,341.2598,1],[228.42407,341.2598,226.2511,339.08834,230.59635,335.91297,1],[232.22582,334.7222,233.40915,334.37697,234.2513,334.41132,1],[234.2513,334.41132],null,[325.18926,360.12145],[324.71923,360.17628,324.43786,360.60554,324.52142,361.65008,1],[324.85567,365.82822,327.69688,367.8335,327.19551,370.5075,1],[326.69413,373.1815,325.85842,374.3512,329.7023,375.52108,1],[333.54618,376.69095,331.37303,384.0446,334.38128,384.71309,1],[337.38954,385.38159,342.57054,386.55182,343.5733,385.0477,1],[344.57604,383.54357,343.40548,380.86948,342.9041,377.19273,1],[342.40272,373.51597,337.89091,371.67763,334.38128,368.16801,1],[330.87165,364.65837,329.7023,363.15308,329.7023,363.15308,1],[329.7023,363.15308,326.59938,359.95695,325.18926,360.12145,1],[325.18926,360.12145]],"flat":true},{"id":"path4958","type":"poly","borderWidth":"1px","borderColor":"none","backgroundColor":"#deeff0","points":[[238.16259,6.2807228],[238.03468,6.2900653,237.90881,6.3101004,237.78347,6.3414362,1],[229.76146,8.3469391,231.59975,14.363752,219.56674,20.881635,1],[207.53371,27.399518,213.71653,26.229207,204.52464,33.415591,1],[195.33276,40.601975,198.0072,38.429957,197.17157,46.953342,1],[196.33595,55.476737,198.50801,60.991991,200.5135,66.507123,1],[202.51901,72.022256,191.99077,79.040687,194.66477,82.550317,1],[197.33878,86.059947,197.17157,86.896052,197.17157,86.896052,1],[191.32219,89.068679,196.00126,94.583681,194.16287,98.427561,1],[188.7127,109.82337,189.8178,119.48582,189.1493,123.49682,1],[188.4808,127.50783,176.78229,137.70243,176.44804,148.06419,1],[176.43429,148.49038,176.38083,148.91877,176.30907,149.34727,1],[182.48222,148.35288,191.39729,145.99212,202.96633,140.52897,1],[227.05468,129.15391,229.06174,128.48419,235.75295,135.17539,1],[242.44415,141.86661,241.1064,144.5425,251.81233,141.86602,1],[262.51826,139.18953,277.90697,140.52897,277.90697,140.52897,1],[287.94494,127.81557],[287.94494,127.81557,279.91473,116.44018,293.29715,113.09459,1],[299.99169,111.42095,304.84431,106.73318,307.77125,101.37689,1],[299.46776,90.880121,292.35516,82.735217,291.42988,80.043526,1],[289.5915,74.695519,281.73637,70.851596,278.22673,68.344717,1],[274.7171,65.837845,259.67631,68.344717,256.66805,68.344717,1],[253.65981,68.344717,254.32821,67.175406,253.99396,65.002779,1],[253.65972,62.830151,254.99693,64.667701,255.4983,65.503327,1],[255.99968,66.338953,258.00531,65.838448,259.50944,66.339824,1],[261.01357,66.841199,274.21621,66.17209,277.39158,63.163836,1],[280.56696,60.155582,276.05414,55.47604,274.38289,51.465026,1],[272.71164,47.454022,278.06057,33.583195,276.55643,32.580444,1],[275.05231,31.577692,271.20738,35.754778,265.19087,41.938411,1],[259.26838,48.025425,246.22072,5.6921916,238.16259,6.2807228,1],[238.16259,6.2807228],null,[243.95735,43.140538],[245.0278,43.15441,246.15975,43.359542,247.30874,43.777354,1],[250.98549,45.114356,251.31988,54.974265,251.31988,54.974265,1],[250.48425,57.982519,252.65674,55.308776,247.30874,57.815654,1],[241.96073,60.322532,238.95322,59.821244,233.77234,60.489745,1],[228.59145,61.158246,230.2628,53.471313,231.26555,49.627432,1],[232.26829,45.783553,236.44564,47.95605,238.28402,45.616297,1],[239.54791,44.007717,241.60238,43.110018,243.95735,43.140538,1],[243.95735,43.140538]],"flat":true},{"id":"path4162","type":"poly","borderWidth":"1px","borderColor":"none","backgroundColor":"none","points":[[265.02436,241.15232],[265.02436,241.15232,267.36412,242.48932,266.69561,244.3277,1],[266.02711,246.16607,263.18598,248.00445,264.85723,249.50858,1],[266.52849,251.01271,267.53124,253.85384,270.03811,253.18533,1],[272.545,252.51683,274.55049,251.17984,275.05187,254.85658,1],[275.55324,258.53334,278.72863,265.55261,276.556,264.2156,1],[274.38337,262.8786,271.87649,265.21835,271.70937,263.21284,1],[271.54224,261.20735,272.21074,258.86759,273.38062,258.53334,1],[274.55049,258.19909,274.88474,256.36072,274.88474,256.36072,1],[274.88474,256.36072,268.36686,258.36621,269.20249,261.20735,1],[270.03811,264.04847,277.55875,265.71973,277.55875,269.89785,1],[277.55875,274.07599,279.8985,276.75,281.90401,277.08425,1],[283.90951,277.41849,290.59452,279.08974,288.42189,280.76099,1],[286.24926,282.43225,282.23826,284.93913,285.07939,288.11451,1],[287.92052,291.28988,288.25476,292.62689,286.91776,294.46526,1],[285.58075,296.30364,286.24926,296.47076,289.92602,296.97214,1],[293.60278,297.47351,291.76439,294.79951,292.43289,293.62964,1],[293.1014,292.45976,293.60278,291.28988,291.59726,289.95288,1],[289.59176,288.61589,284.57801,287.78026,285.74788,285.94187,1],[286.91776,284.1035,292.43289,281.59662,291.26301,279.59112,1],[290.09314,277.58561,280.73412,276.41574,280.567,273.40749,1],[280.39987,270.39923,277.55875,267.39098,278.39438,266.38823,1],[279.23001,265.38548,279.56426,253.01821,278.39438,251.34696,1],[277.2245,249.6757,271.70937,252.51683,270.53949,251.51408,1],[269.36961,250.51134,265.85998,249.34145,267.02986,247.6702,1],[268.19974,245.99895,269.20249,244.3277,269.20249,242.99069,1],[269.20249,241.6537,265.02436,241.15232,265.02436,241.15232,1],[265.02436,241.15232]],"flat":true},{"id":"path4164","type":"poly","borderWidth":"1px","borderColor":"none","backgroundColor":"none","points":[[300.4549,302.98865],[300.4549,302.98865,297.7809,304.99415,299.28503,306.49827,1],[300.78915,308.00241,298.11515,309.50653,300.12065,309.50653,1],[302.12616,309.50653,304.29879,309.67366,302.96178,305.9969,1],[301.62478,302.32015,302.12616,303.3229,300.4549,302.98865,1],[300.4549,302.98865]],"flat":true},{"id":"path4242","type":"poly","borderWidth":"1px","borderColor":"none","backgroundColor":"#c9b293","points":[[513.4563,150.73152],[513.03518,151.18169,512.6138,151.63262,512.20291,152.07397,1],[507.6905,156.9206,511.36736,159.42801,504.51523,162.93763,1],[504.47372,162.95889,504.43258,162.97518,504.3911,162.99564,1],[503.27472,165.58243,502.89059,166.6134,508.70446,171.1353,1],[512.32647,173.95241,514.49113,175.21936,516.62284,175.68206,1],[517.10791,173.24713,517.53048,171.20166,518.55352,170.12476,1],[520.59176,167.97926,523.65339,164.87229,525.10519,162.21312,1],[523.89019,160.99234,522.73989,159.82322,521.94,158.84555,1],[517.68567,153.64583,518.15806,156.71758,514.37645,151.75421,1],[514.06913,151.35087,513.76209,151.0249,513.4563,150.73152,1],[513.4563,150.73152],null,[497.25795,261.46343],[496.60764,261.45817,495.74016,261.70833,494.48672,262.37683,1],[492.31535,263.53489,488.01405,264.75236,484.07773,265.13996,1],[484.3234,265.75577,484.84472,266.14781,485.77905,266.14781,1],[490.26972,266.14781,487.90594,269.22126,495.23282,269.22126,1],[502.55969,269.22126,501.85098,273.00228,505.39625,271.11147,1],[505.64018,270.98137,505.88052,270.8406,506.12345,270.70402,1],[505.21993,270.26918,504.77474,269.52493,505.68497,268.89475,1],[507.85761,267.39064,505.35077,264.38272,501.84114,264.04847,1],[499.20891,263.79779,499.20887,261.4792,497.25795,261.46343,1],[497.25795,261.46343],null,[459.77481,284.10551],[441.41605,284.22602,460.36383,289.63519,449.14456,292.38277,1],[437.56337,295.21898,439.92654,299.71075,438.98112,304.43777,1],[438.03572,309.16478,429.52647,308.9284,426.45391,313.65542,1],[423.38135,318.38243,415.8185,315.07284,415.58216,307.74597,1],[415.34581,300.4191,401.87392,303.2548,402.34662,305.6183,1],[402.81931,307.98181,414.16435,312.70919,408.72828,315.78173,1],[404.32884,318.26838,403.65509,323.17521,403.55414,324.9778,1],[404.46618,324.6461,405.56428,324.04041,406.91362,323.04306,1],[414.60139,317.3608,428.13922,316.69243,433.48723,316.69243,1],[438.83523,316.69243,438.16604,309.33979,443.1798,301.98629,1],[448.19355,294.63277,449.36304,301.98617,457.0508,297.97515,1],[464.73855,293.96415,480.94988,296.30425,488.30339,298.30975,1],[495.6569,300.31526,497.49571,301.81829,501.67384,301.14979,1],[502.12082,301.07828,502.4708,300.97092,502.76803,300.84352,1],[499.04054,299.46318,494.16089,295.40641,487.66927,290.96477,1],[478.68794,284.81965,483.17833,284.34724,461.67041,284.1109,1],[460.9983,284.10351,460.36702,284.10162,459.77481,284.10551,1],[459.77481,284.10551],null,[162.93322,324.28567],[161.71749,324.17765,159.1415,325.19107,157.01433,326.6535,1],[153.23272,329.25335,144.25209,327.59965,141.88859,328.54505,1],[139.52508,329.49047,148.03341,333.03517,148.74246,335.63503,1],[149.12479,337.0369,147.10709,338.83453,145.16172,340.20878,1],[146.88776,340.60946,148.90626,341.8556,153.46328,342.34859,1],[153.24657,342.03132,152.93686,341.57313,152.76035,341.30837,1],[150.39684,337.76311,158.90494,330.90892,162.45022,326.89095,1],[164.00126,325.1331,163.8788,324.36968,162.93322,324.28567,1],[162.93322,324.28567],null,[150.04173,343.60064],[150.04173,343.60064,146.03129,343.43343,146.69979,346.10744,1],[147.3683,348.78144,152.38188,348.28023,151.71338,346.27473,1],[151.04488,344.26922,150.04173,343.60064,150.04173,343.60064,1],[150.04173,343.60064],null,[151.87933,355.69476],[150.99311,355.71434,149.47794,356.09203,147.70224,357.97219,1],[144.86111,360.98045,140.18174,361.81659,141.35161,363.65497,1],[142.52149,365.49335,145.02907,368.16723,147.20169,364.82472,1],[149.37432,361.48221,152.54904,361.48186,153.05042,359.30924,1],[153.55179,357.1366,154.72133,358.30688,152.71583,355.8,1],[152.71583,355.8,152.41106,355.68301,151.87933,355.69476,1],[151.87933,355.69476],null,[159.40105,358.30679],[159.40105,358.30679,153.71961,358.80895,153.71961,361.65008,1],[153.71961,364.49121,150.7102,366.83078,153.88557,366.66366,1],[157.06095,366.49653,161.57368,362.15067,159.40105,358.30679,1],[159.40105,358.30679]],"flat":true},{"id":"path4194","type":"poly","borderWidth":"1px","borderColor":"none","backgroundColor":"#986749","points":[[370.84578,22.323917],[368.50122,22.285857,366.09183,22.524326,364.01485,23.079463,1],[364.70158,25.761514,365.46323,28.425573,366.30172,30.9088,1],[367.67706,34.981938,367.89447,37.930008,367.64821,40.353116,1],[368.80116,41.25347,369.88523,42.684271,370.67579,44.924164,1],[373.512,52.960089,378.71176,63.832601,375.87556,69.505019,1],[373.03935,75.177437,357.43998,91.249288,366.89401,93.140094,1],[376.34804,95.0309,380.12938,80.376829,388.16531,85.576546,1],[396.20123,90.776262,409.90937,94.557172,414.63637,88.884754,1],[419.36339,83.212336,415.58265,80.849746,426.92747,82.740552,1],[438.27232,84.631358,456.23471,89.357888,448.19878,83.212768,1],[440.16286,77.067649,425.98132,78.012459,436.85345,73.285444,1],[440.51548,71.693258,444.26758,70.580621,447.33125,69.321529,1],[443.86263,63.310351,440.57675,60.127214,439.00136,59.654598,1],[435.65886,58.651847,424.29438,38.430043,419.61488,34.084788,1],[419.58658,34.058516,419.56057,34.019812,419.53258,33.991694,1],[416.17177,34.162428,412.63286,33.798041,404.23818,31.215065,1],[391.94794,27.433453,383.43932,28.852476,380.60311,25.070864,1],[379.36227,23.416408,375.22508,22.395007,370.84578,22.323917,1],[370.84578,22.323917],null,[420.88986,95.815533],[419.65731,95.794642,418.52922,96.505316,418.94703,99.430007,1],[419.78266,105.27939,427.6374,100.09846,425.29766,98.092961,1],[422.9579,96.087459,423.45871,96.588617,423.45871,96.588617,1],[423.45871,96.588617,422.12241,95.836424,420.88986,95.815533,1],[420.88986,95.815533],null,[285.74845,116.6443],[285.58081,116.6443,285.4124,116.67557,285.24521,116.72255,1],[283.03447,123.83273,284.08861,133.35011,277.72618,136.53132,1],[268.11751,141.33566,244.24634,138.92026,237.96965,139.85438,1],[229.973,144.98321,222.24083,150.68749,222.24083,155.08266,1],[222.24083,162.10192,229.9275,167.44984,240.62351,162.77033,1],[249.7976,158.75666,262.29772,151.41201,265.84253,149.30139,1],[265.86897,148.86919,265.87866,148.36171,265.86007,147.72959,1],[265.73212,143.37911,268.15143,142.75101,269.29241,142.69576,1],[269.4554,142.68788,269.59209,142.69218,269.69177,142.69846,1],[269.80569,142.70564,269.8712,142.716,269.8712,142.716,1],[269.8712,142.716,266.86322,145.05502,267.53172,145.89064,1],[268.20022,146.72627,269.70386,148.23019,268.36686,149.56718,1],[267.02986,150.90419,265.52617,152.74303,266.19467,153.91291,1],[266.36197,154.24751],[266.36197,154.24751,266.52831,154.08047,268.19956,156.92161,1],[269.87082,159.76273,266.52888,160.26345,264.85763,162.77033,1],[264.19163,163.76934,263.95862,165.45497,263.90915,167.12552,1],[262.26313,167.07694],[262.39401,168.64739],[263.9105,168.7135],[263.97057,170.58857,264.18843,172.12965,264.18843,172.12965,1],[262.67733,172.046],[262.68408,172.12965],[262.68408,172.12965,278.05965,180.15223,264.02113,189.51124,1],[249.98261,198.87024,246.30685,197.86659,242.96435,202.88034,1],[240.53979,206.51718,239.52799,208.04127,238.89655,209.4347,1],[239.81253,208.41089,240.45756,207.72663,240.45756,207.72663,1],[242.96435,208.89772],[242.96435,208.89772,236.61316,215.9161,234.77478,218.42298,1],[232.9364,220.92987,234.9423,220.93,236.44643,222.43412,1],[237.95055,223.93824,237.28219,225.94379,235.27668,228.95204,1],[234.3765,230.30233,233.20216,231.27991,231.47602,231.94994,1],[231.57757,233.18125,232.04801,238.31137,232.93584,238.31137,1],[233.93858,238.31137,229.42682,244.9965,230.93095,247.50339,1],[232.43507,250.01026,241.45919,248.00383,241.96056,250.51072,1],[242.46193,253.0176,232.93575,253.18494,235.44263,257.19595,1],[237.9495,261.20695,236.11113,272.90619,235.44263,277.08433,1],[234.77413,281.26245,231.93375,288.9507,232.268,291.79182,1],[232.60225,294.63295,226.7523,300.48156,230.42905,303.99119,1],[234.1058,307.50082,242.12825,315.18858,243.79951,324.71472,1],[245.47076,334.24084,236.61347,359.97797,244.1341,365.99447,1],[251.65473,372.01097,256.33376,397.07965,255.33102,399.58654,1],[254.32826,402.09342,296.94536,408.77858,296.94536,408.77856,1],[296.94536,408.77856,326.52618,408.44432,327.69606,408.77856,1],[328.86592,409.11281,300.12096,372.84732,303.63059,368.00071,1],[307.14022,363.15406,308.97881,347.44378,299.95405,336.41351,1],[290.92929,325.38325,285.41399,324.21355,284.24411,305.49553,1],[283.1901,288.6316,281.33901,288.17219,284.27919,284.94875,1],[284.90023,283.24091,287.03349,281.82937,288.42254,280.76086,1],[290.59517,279.08961,283.91012,277.41858,281.90462,277.08433,1],[279.89912,276.75007,277.55888,274.07534,277.55888,269.8972,1],[277.55888,265.71908,270.03763,264.04821,269.20201,261.20708,1],[268.36638,258.36595,274.88479,256.3608,274.88479,256.3608,1],[274.88479,256.3608,274.55033,258.19877,273.38044,258.53299,1],[272.21056,258.86724,271.54168,261.20783,271.70881,263.21333,1],[271.87593,265.21884,274.38381,262.87877,276.55643,264.21578,1],[278.72906,265.55277,275.55346,258.53321,275.05208,254.85645,1],[274.55071,251.17971,272.54539,252.51631,270.03851,253.18481,1],[267.53163,253.85332,266.52888,251.0124,264.85763,249.50828,1],[263.18637,248.00415,266.02672,246.16577,266.69522,244.32739,1],[267.36373,242.48902,265.02492,241.15276,265.02492,241.15276,1],[265.02492,241.15276,269.20201,241.65336,269.20201,242.99034,1],[269.20201,244.32735,268.1997,245.99944,267.02981,247.67068,1],[265.85995,249.34194,269.36917,250.51177,270.53906,251.51452,1],[271.70894,252.51727,277.22415,249.67597,278.39403,251.34722,1],[278.59208,251.63015,278.74415,252.23666,278.86085,253.02561,1],[280.87628,252.78581,283.75361,252.18632,284.07681,250.67802,1],[284.57818,248.33827,286.58364,227.28113,293.10153,224.10576,1],[299.61941,220.93039,303.12883,220.42892,307.13983,216.25079,1],[311.15083,212.07266,331.2056,211.57089,335.38373,209.39827,1],[339.56185,207.22564,343.74041,213.07529,343.5733,207.05878,1],[343.40617,201.04226,341.06664,187.50508,345.07764,184.9982,1],[349.08865,182.49132,346.24773,176.97584,341.4011,174.30184,1],[339.66481,173.34389,337.75973,172.8642,335.9261,172.49663,1],[336.02422,172.83938,335.92135,172.95878,335.38373,172.7975,1],[334.04498,172.39588,333.74861,172.73866,331.80568,172.72195,1],[331.83131,171.66014],[331.1124,171.47508,330.44768,171.25614,329.8669,170.968,1],[329.87942,170.97741,329.88783,170.98982,329.90062,170.99903,1],[329.93571,172.6167],[326.38517,172.2343,327.34784,169.28235,325.85846,168.62041,1],[324.71232,168.11101,324.23987,169.25964,323.56484,171.08807,1],[322.63795,171.06784],[322.48364,171.86021,322.42196,172.51811,322.40049,173.08083,1],[322.80525,173.11321],[321.86359,175.82626,326.40786,176.53255,329.0331,179.65002,1],[331.70711,182.82541,329.7019,183.49425,328.03065,185.16551,1],[327.63412,185.56204,327.50649,186.08204,327.53415,186.64286,1],[331.65788,186.37529,335.68446,183.90226,335.05047,188.34014,1],[334.38196,193.01965,336.72164,190.84793,337.55727,195.69457,1],[338.3929,200.5412,339.72967,203.71662,336.05293,202.2125,1],[332.37616,200.70837,334.54871,196.86371,323.01707,198.8692,1],[311.48542,200.87471,307.64164,203.88353,304.96764,200.70814,1],[302.29363,197.53277,303.29599,195.19267,303.29599,195.19267,1],[303.29599,195.19267,305.46928,192.35158,312.98991,191.34883,1],[320.23255,190.38314,322.3657,186.94755,326.39408,186.69413,1],[326.72024,184.48392,328.20846,181.17068,325.85846,179.31542,1],[323.40111,177.37541,321.14626,176.83336,319.5537,175.68206,1],[317.47003,175.50221,314.40207,175.34908,309.64661,176.97593,1],[303.29586,179.14856,292.60063,186.50264,287.0855,178.81488,1],[281.57037,171.12712,285.24664,173.46704,287.92065,168.62041,1],[290.59465,163.77378,287.58578,159.42775,295.10642,160.09624,1],[302.62704,160.76474,311.65196,162.93789,309.47932,160.59814,1],[307.30669,158.25839,292.93409,156.92096,294.10397,152.40857,1],[295.27385,147.89619,298.1152,133.35616,295.60832,127.67391,1],[293.10144,121.99165,290.17727,116.6443,285.74845,116.6443,1],[285.74845,116.6443],null,[178.48262,121.37995],[177.5866,121.36036,176.92787,121.65758,177.11588,122.66032,1],[177.61726,125.33433,179.28917,126.50429,181.62892,125.33442,1],[183.96868,124.16454,184.13632,123.66273,182.13082,122.32573,1],[182.13082,122.32573,179.97597,121.41258,178.48262,121.37995,1],[178.48262,121.37995],null,[168.98704,122.64683],[168.03593,122.65712,166.98475,122.99479,166.25357,124.16467,1],[164.58232,126.83867,168.25855,128.51036,170.93256,127.17336,1],[173.60656,125.83636,174.60967,126.00335,171.26716,123.16222,1],[171.26716,123.16222,170.20986,122.63361,168.98704,122.64683,1],[168.98704,122.64683],null,[413.45179,131.24655],[411.13293,131.18389,409.00295,131.93535,409.75501,135.19428,1],[411.25914,141.71217,417.7772,142.5488,420.28407,140.04192,1],[422.79095,137.53504,418.27783,132.18694,418.27783,132.18694,1],[418.27783,132.18694,415.77065,131.30923,413.45179,131.24655,1],[413.45179,131.24655],null,[529.75044,141.71221],[525.0676,141.61465,521.41347,143.51496,518.28235,146.07414,1],[520.63274,150.0507,523.0444,152.84608,525.00535,155.58996,1],[525.35987,154.83591,526.07319,154.08346,526.57581,152.74316,1],[527.57855,150.06916,532.92669,151.74033,535.76782,150.06908,1],[538.60894,148.39783,536.6034,145.22209,539.61165,144.5536,1],[542.61991,143.8851,537.77245,141.87933,529.75044,141.71221,1],[529.75044,141.71221],null,[148.53199,146.5531],[145.38704,146.53437,142.16596,147.14451,139.67997,148.89933,1],[133.99771,152.91034,134.66713,161.09978,131.49175,163.43953,1],[128.31637,165.77929,122.29912,169.12166,129.4855,169.79016,1],[136.67189,170.45865,146.53306,162.60325,153.55232,158.9265,1],[160.57158,155.24975,162.24876,150.44004,158.5659,148.64838,1],[156.49429,147.64058,152.5755,146.57716,148.53199,146.5531,1],[148.53199,146.5531],null,[532.0481,154.95989],[530.96334,154.9676,529.83482,155.36508,529.24989,156.7543,1],[527.91288,159.92968,528.91468,160.76474,530.92019,160.09624,1],[532.92569,159.42774,536.93665,158.25856,534.76402,155.58456,1],[534.76402,155.58456,533.4428,154.94996,532.0481,154.95989,1],[532.0481,154.95989],null,[374.3874,203.40382],[371.81934,203.16234,354.61825,207.60674,361.93035,212.25989,1],[369.72992,217.22327,374.93012,216.75042,373.27567,222.89555,1],[371.62121,229.04066,379.18457,228.09524,374.45756,232.1132,1],[369.73054,236.13116,364.29437,235.65916,375.87556,240.62252,1],[387.45674,245.58589,386.74699,244.40413,391.00131,252.44005,1],[395.25562,260.47598,414.87267,249.13129,421.25415,253.62195,1],[427.63562,258.11261,439.6895,255.74835,433.07168,251.73039,1],[426.45386,247.71243,433.07168,250.31271,433.07168,246.0584,1],[433.07168,241.80409,428.58101,240.62238,433.07168,239.44063,1],[437.56235,238.25888,415.81931,231.87679,410.85595,226.91343,1],[405.89258,221.95007,387.69295,205.17026,374.69367,203.51581,1],[374.66413,203.45672,374.55861,203.41992,374.3874,203.40382,1],[374.3874,203.40382],null,[493.94299,208.02614],[493.67272,208.0144,493.48427,208.06122,493.48427,208.06122,1],[493.48427,208.06122,491.47924,210.06646,492.64911,210.40071,1],[493.81899,210.73496,496.15901,210.40067,495.49051,209.06367,1],[495.0727,208.22803,494.39344,208.04572,493.94299,208.02614,1],[493.94299,208.02614],null,[494.22092,212.52973],[493.36898,212.53463,492.27292,212.67823,492.48183,213.40941,1],[492.81608,214.57928,497.49518,214.74697,495.99106,215.24835,1],[494.48693,215.74973,496.99368,218.08852,497.1608,216.91865,1],[497.32793,215.74877,497.99682,217.42002,498.83246,216.91865,1],[499.66808,216.41727,497.16184,216.08362,498.1646,214.91375,1],[499.16735,213.74387,498.49763,213.5767,496.99351,213.5767,1],[495.48938,213.5767,495.15591,212.57426,495.15591,212.57426,1],[495.15591,212.57426,494.73209,212.5268,494.22092,212.52973,1],[494.22092,212.52973],null,[485.79659,219.09218],[485.79659,219.09218,482.28757,220.09506,483.7917,223.10331,1],[485.29583,226.11157,485.79646,221.59846,486.96634,221.09708,1],[488.13622,220.59571,488.13635,219.2593,485.79659,219.09218,1],[485.79659,219.09218],null,[497.83,222.09953],[497.83,222.09953,495.15596,222.76846,496.49295,225.10821,1],[497.82997,227.44797,495.51821,228.86213,499.6676,227.28041,1],[501.99554,226.393,499.12403,222.16955,497.83,222.09953,1],[497.83,222.09953],null,[488.91457,222.84427],[488.14259,222.86222,487.50985,223.01875,487.30095,223.43656,1],[486.63244,224.77357,486.29789,225.94405,488.30339,226.61255,1],[490.30889,227.28106,488.80567,225.94336,490.47693,225.94336,1],[492.14817,225.94336,495.65659,225.10851,494.48672,224.10576,1],[493.31683,223.10301,492.98372,223.43656,492.98372,223.43656,1],[492.98372,223.43656,490.61292,222.80478,488.91457,222.84427,1],[488.91457,222.84427],null,[484.97629,227.65683],[483.74676,227.5884,482.5585,228.87928,484.45956,229.28665,1],[486.7993,229.78802,487.63476,228.45137,489.47313,229.62125,1],[491.31151,230.79112,491.81314,230.28957,492.31452,229.45394,1],[492.81589,228.61832,492.81551,228.78557,490.64288,228.2842,1],[490.64288,228.2842,487.1336,228.95235,485.79659,227.9496,1],[485.5459,227.76158,485.26003,227.67262,484.97629,227.65683,1],[484.97629,227.65683],null,[500.50409,230.79099],[500.50409,230.79099,497.66328,232.79558,499.50165,233.79832,1],[501.34002,234.80108,504.34772,235.47058,502.84358,233.46508,1],[501.33946,231.45958,502.5096,231.29237,500.50409,230.79099,1],[500.50409,230.79099],null,[490.25566,238.30327],[490.00661,238.31926,489.74471,238.37422,489.47313,238.47866,1],[487.30051,239.31429,490.81105,240.6509,491.64667,241.9879,1],[492.4823,243.3249,487.80245,245.83121,491.31207,245.32983,1],[494.82171,244.82846,496.15901,243.32525,495.49051,242.3225,1],[494.82202,241.31975,493.14967,239.98301,493.14967,239.98301,1],[493.14967,239.98301,491.99905,238.1913,490.25566,238.30327,1],[490.25566,238.30327],null,[486.63174,239.48111],[486.63174,239.48111,485.46305,241.15192,486.46579,241.6533,1],[487.46855,242.15468,488.30339,242.65706,488.30339,241.32005,1],[488.30339,239.98306,488.63725,239.48111,486.63174,239.48111,1],[486.63174,239.48111],null,[504.51523,245.83174],[504.51523,245.83174,502.67577,245.83213,502.17439,247.50339,1],[501.67301,249.17463,503.51182,249.00686,505.18308,248.17122,1],[506.85433,247.33561,506.52073,245.83174,504.51523,245.83174,1],[504.51523,245.83174],null,[488.97258,248.17122],[488.97258,248.17122,485.79716,249.50896,487.63554,250.17747,1],[489.47391,250.84597,490.14215,249.84218,489.97503,249.17368,1],[489.8079,248.50518,488.97258,248.17122,488.97258,248.17122,1],[488.97258,248.17122],null,[493.98617,249.67557],[493.98617,249.67557,491.64619,250.00969,492.48183,250.84532,1],[493.31745,251.68094,495.82454,251.34683,493.98617,249.67557,1],[493.98617,249.67557],null,[503.34548,253.18481],[503.34548,253.18481,501.67353,254.35513,502.67629,256.19351,1],[503.67903,258.03188,508.02498,258.19857,503.34548,253.18481,1],[503.34548,253.18481],null,[487.43315,268.27548],[487.43315,268.27548,478.6878,271.34807,474.66984,270.87536,1],[470.65188,270.40266,465.68876,269.22093,462.6162,273.47525,1],[459.54363,277.72956,477.26927,273.94786,480.34183,277.49313,1],[483.41439,281.03839,482.94176,285.05641,488.14148,282.69289,1],[493.3412,280.32939,497.83268,277.72946,495.23282,274.89325,1],[492.63296,272.05704,490.97842,269.69358,487.43315,268.27548,1],[487.43315,268.27548],null,[280.55272,273.27422],[280.55636,273.31876,280.5651,273.36325,280.56757,273.40779,1],[280.59738,273.9443,280.92865,274.42076,281.44454,274.85547,1],[280.55272,273.27422],[280.55272,273.27422],null,[424.07664,319.10074],[423.54785,319.07137,423.12546,319.28366,423.12546,320.03572,1],[423.12546,322.04123,425.46448,322.37487,426.30011,322.04062,1],[427.13574,321.70636,426.1328,319.86843,426.1328,319.86843,1],[426.1328,319.86843,424.95797,319.1497,424.07664,319.10074,1],[424.07664,319.10074],null,[419.00234,320.10858],[418.75937,320.11347,418.44479,320.16125,418.11053,320.20303,1],[418.11053,320.20303,414.93625,320.87126,415.2705,322.54251,1],[415.60475,324.21376,414.26782,326.60276,417.94458,322.54251,1],[419.82591,320.46498,419.73128,320.0939,419.00234,320.10858,1],[419.00234,320.10858],null,[425.83059,323.576],[425.45456,323.60733,425.04627,323.87891,424.62846,324.54741,1],[422.9572,327.22141,427.30307,331.73379,427.80445,329.72829,1],[428.30583,327.72279,427.80445,325.55121,427.80445,325.55121,1],[427.80445,325.55121,426.95868,323.48199,425.83059,323.576,1],[425.83059,323.576],null,[408.25067,324.71472],[408.25067,324.71472,404.5737,325.8845,406.74633,327.22149,1],[408.91895,328.55851,408.75247,329.22674,411.25936,329.561,1],[413.76623,329.89524,412.93061,328.22407,411.25936,327.0542,1],[409.58811,325.88432,409.08629,326.05171,408.25067,324.71472,1],[408.25067,324.71472],null,[440.8403,326.05175],[440.8403,326.05175,439.83682,327.55645,438.83406,327.8907,1],[437.83131,328.22496,436.99616,328.89266,437.99892,329.72829,1],[439.00167,330.56391,441.17373,328.89244,441.34085,328.22394,1],[441.50798,327.55544,442.34443,326.38601,440.8403,326.05175,1],[440.8403,326.05175],null,[432.24463,326.76008],[431.67462,326.78925,431.188,327.04445,430.97908,327.72339,1],[430.31059,329.89602,436.15997,330.23067,436.15997,329.39505,1],[436.15997,328.55943,435.15753,327.72339,435.15753,327.72339,1],[435.15753,327.72339,433.49864,326.69589,432.24463,326.76008,1],[432.24463,326.76008],null,[161.90785,354.96485],[161.90785,354.96485,159.40157,355.80086,159.90295,356.6365,1],[160.40432,357.47212,162.74351,357.63807,163.24489,356.80245,1],[163.74627,355.96683,163.41197,355.46623,161.90785,354.96485,1],[161.90785,354.96485],null,[151.19529,356.58523],[150.14994,356.63549,150.10519,357.80611,148.20414,358.97599,1],[146.03151,360.31299,149.03985,361.81652,150.87823,360.98088,1],[152.71661,360.14525,154.38712,360.48029,154.05286,359.14329,1],[153.71861,357.80629,153.30107,356.97075,151.71338,356.6365,1],[151.51491,356.59472,151.34463,356.57805,151.19529,356.58523,1],[151.19529,356.58523],null,[163.07759,358.72504],[161.95062,358.81075,160.73862,359.64423,161.23999,361.31548,1],[161.74137,362.98674,162.243,365.32592,164.08138,364.65741,1],[165.91976,363.98892,167.42275,362.31823,165.58437,361.31548,1],[163.746,360.31273,164.20455,358.63933,163.07759,358.72504,1],[163.07759,358.72504],null,[149.21603,362.30848],[148.37388,362.32806,147.66028,362.73613,147.53495,363.98957,1],[147.20069,367.33207,151.37882,365.4941,152.71583,365.66122,1],[154.05283,365.82835,155.22371,364.99162,152.38257,363.32037,1],[152.38257,363.32037,150.61962,362.27584,149.21603,362.30848,1],[149.21603,362.30848],null,[182.46541,367.64722],[182.36438,367.64745,182.25414,367.65382,182.13082,367.66611,1],[180.15769,367.86272,178.78818,369.17072,178.11969,372.01185,1],[177.45119,374.85298,184.13593,377.0252,185.64006,375.52108,1],[187.14418,374.01695,190.9881,373.5151,186.9771,371.17535,1],[183.21679,368.98183,183.98095,367.64391,182.46541,367.64722,1],[182.46541,367.64722]],"flat":true},{"id":"sinnoh-route-224","type":"line","lineWidth":"4","lineColor":"#000000","points":[[494.72995,172.30255],[507.75672,172.30255],[507.75672,157.20403],[517.93868,157.20403],[517.93868,96.225761]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-route-201","type":"line","lineWidth":"4","lineColor":"#000000","points":[[102.8004,338.67044],[102.8004,321.52526],[151.09281,321.52526]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-route-202","type":"line","lineWidth":"4","lineColor":"#000000","points":[[151.22851,320.49406],[151.22851,276.96519]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-route-203","type":"line","lineWidth":"4","lineColor":"#000000","points":[[225.2165,275.54577],[149.98727,275.54577]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-route-204","type":"line","lineWidth":"4","lineColor":"#000000","points":[[151.22851,229.20677],[151.22851,276.01892]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-route-205","type":"line","lineWidth":"4","lineColor":"#000000","points":[[183.9004,171.14491],[231.98397,171.14491],[183.9004,171.14491],[183.9004,229.11552],[149.98727,229.11552]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-route-206","type":"line","lineWidth":"4","lineColor":"#000000","points":[[228.34564,275.90732],[228.34564,170.94049]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-route-207","type":"line","lineWidth":"4","lineColor":"#000000","points":[[228.34564,275.50792],[228.34564,255.4565],[257.03973,255.4565]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-route-208","type":"line","lineWidth":"4","lineColor":"#000000","points":[[257.03973,255.4565],[309.90855,255.4565]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-route-209","type":"line","lineWidth":"4","lineColor":"#000000","points":[[352.96427,223.02724],[352.96427,255.4565],[308.96227,255.4565]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-route-210","type":"line","lineWidth":"4","lineColor":"#000000","points":[[352.96427,225.86609],[352.96427,171.14491],[303.28458,171.14491]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-route-211","type":"line","lineWidth":"4","lineColor":"#000000","points":[[302.33831,171.14491],[228.34564,171.14491]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-route-212","type":"line","lineWidth":"4","lineColor":"#000000","points":[[309.6426,255.4565],[309.6426,328.38001],[376.47283,328.38001]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-route-213","type":"line","lineWidth":"4","lineColor":"#000000","points":[[376.60999,327.43043],[376.60999,306.73995],[429.61293,306.73995],[429.61293,281.90732]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-route-214","type":"line","lineWidth":"4","lineColor":"#000000","points":[[429.61293,281.90732],[429.61293,206.94049]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-route-215","type":"line","lineWidth":"4","lineColor":"#000000","points":[[429.61293,206.46735],[352.49114,206.46735]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-route-216","type":"line","lineWidth":"4","lineColor":"#000000","points":[[230.83896,119.98635],[282.46643,119.98635]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-route-217","type":"line","lineWidth":"4","lineColor":"#000000","points":[[262.56468,55.763676],[230.83896,55.763676],[230.83896,119.98635]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-route-218","type":"line","lineWidth":"4","lineColor":"#000000","points":[[86.586523,275.54577],[151.87982,275.54577]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-route-219","type":"line","lineWidth":"4","lineColor":"#000000","points":[[151.22851,321.95134],[151.22851,358.24864]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-route-220","type":"line","lineWidth":"4","lineColor":"#000000","points":[[151.08495,358.38276],[187.47047,358.38276]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-route-221","type":"line","lineWidth":"4","lineColor":"#000000","points":[[217.38021,358.38276],[187.47047,358.38276]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-route-222","type":"line","lineWidth":"4","lineColor":"#000000","points":[[499.16449,282.09402],[429.61293,282.09402]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-route-223","type":"line","lineWidth":"4","lineColor":"#000000","points":[[499.13024,280.75031],[499.13024,236.37998],[486.43156,236.37998],[486.43156,194.18949]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-route-225","type":"line","lineWidth":"4","lineColor":"#000000","points":[[384.1915,97.64518],[384.1915,137.38893]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-route-226","type":"line","lineWidth":"4","lineColor":"#000000","points":[[384.1915,97.64518],[452.56969,97.64518]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-route-227","type":"line","lineWidth":"4","lineColor":"#000000","points":[[425.61299,76.181682],[425.61299,97.435125]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-route-228","type":"line","lineWidth":"4","lineColor":"#000000","points":[[452.56969,97.64518],[452.56969,137.14611]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-route-229","type":"line","lineWidth":"4","lineColor":"#000000","points":[[452.56969,137.1461],[464.6358,137.1461],[464.6358,152.33835]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-route-230","type":"line","lineWidth":"4","lineColor":"#000000","points":[[384.1915,137.38893],[452.56969,137.14611]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"sinnoh-victory-road","type":"line","lineWidth":"4","lineColor":"#000000","points":[[494.72995,172.30255],[486.43156,172.30255],[486.43156,194.58145]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"mt-coronet","type":"line","lineWidth":"4","lineColor":"#000000","points":[[257.03973,255.4565],[257.03973,219.71527],[269.28176,219.71527],[282.46643,219.71527],[282.46643,194.8018],[282.46643,169.88834],[282.46643,144.97488],[282.46643,120.06141]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"iron-island","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"143.90532","y":"157.07669","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"celestic-town","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"303.1561","y":"171.12823","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"snowpoint-city","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"263.00882","y":"56.039459","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"hearthome-city","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"309.84729","y":"255.43748","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"solaceon-ruins","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"352.92593","y":"224.65791","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"veilstone-city","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"429.37848","y":"206.59164","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"sunyshore-city","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"499.20853","y":"281.5332","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"pastoria-city","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"376.75937","y":"328.37167","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"stark-mountain","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"425.61298","y":"76.113098","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"survival-area","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"384.1915","y":"97.64518","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"resort-area","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"464.74875","y":"152.72743","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"fight-area","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"384.1915","y":"137.2675","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"oreburgh-city","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"228.29424","y":"275.58569","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"oreburgh-mine","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"243.29424","y":"275.58569","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"jubilife-city","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"151.26564","y":"275.58569","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"twinleaf-town","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"102.75703","y":"338.74304","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"sandgem-town","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"151.26564","y":"321.68042","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"canalave-city","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"85.481895","y":"275.58569","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"floaroma-town","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"151.26564","y":"229.05467","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"eterna-forest-area","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"183.88205","y":"170.99011","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"old-chateau","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"183.88205","y":"157.07669","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"fuego-ironworks","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"151.26564","y":"214.90176","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"valley-windworks","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"196.75111","y":"229.05467","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"pal-park","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"217.875","y":"358.53107","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"flower-paradise","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"517.91699","y":"96.59684","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"lake-verity","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"92.829941","y":"311.29993","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"lake-valor","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"421.68301","y":"273.52298","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"valor-lakefront","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"421.68301","y":"258.52298","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"lake-acuity","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"243.45335","y":"46.861355","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"acuity-lakefront","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"228.45335","y":"46.861355","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"sendoff-spring","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"438.14987","y":"237.19901","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"maniac-tunnel","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"438.14987","y":"219.19901","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"trophy-garden","type":"circle","borderWidth":"0.11046758","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"337.41138","y":"316.1431","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1}]
},
"5": {
"name": "Unova",
"svg":[{"id":"path4253","type":"poly","borderWidth":"4","borderColor":"none","backgroundColor":"#94ca90","points":[[631.44531,-16.568359],[321.39258,-12.220703],[321.39258,2.9993156,333.13361,14.740225,334.87305,22.132812,1],[336.61248,29.525396,348.78757,33.874881,346.61328,39.962891,1],[344.43899,46.050902,348.70898,52.613281,348.70898,52.613281,1],[348.70898,52.613281,340.69587,65.756177,351.33398,70.144531,1],[354.48836,71.445752,360.15609,74.458161,366.66406,77.994141,1],[350.95508,78.841797],[346.99188,76.393763,344.01732,74.007761,342.89844,71.873047,1],[338.79817,64.05015,346.58408,57.630845,343.64258,51.507812,1],[342.53268,49.197449,338.61826,49.213758,337.4668,46.923828,1],[335.6454,43.301619,338.6443,38.643104,337.47266,34.761719,1],[335.93214,29.658247,331.5776,25.878008,328.61914,21.443359,1],[325.07735,16.134331,319.82015,11.640756,317.96875,5.5332031,1],[316.00698,-0.93841596,317.99409,-14.753906,317.99414,-14.753906,1],[207.02539,-16.134766],[207.02539,-16.134766,202.24092,11.26206,210.06836,15.175781,1],[217.8958,19.089503,237.02951,29.091677,239.63867,35.179688,1],[242.24781,41.267699,237.03638,53.081087,238.89258,61.742188,1],[241.74598,75.056292,256.44744,95.210701,256.67383,98.517578,1],[256.90021,101.82445,261.05214,105.21229,255.12305,107.125,1],[249.19397,109.0377,244.50493,113.4449,249.87305,118.95898,1],[255.24114,124.47306,256.58285,128.43628,253.05859,134.23438,1],[249.53433,140.03247,219.21379,181.40279,234.68164,204.26953,1],[238.63975,210.12096,241.42365,214.34968,243.32422,217.51758,1],[207.88867,218.33203],[206.44219,217.18485,204.59115,216.41339,203.11133,216.51367,1],[201.81944,216.60122,200.33588,217.41938,199.17773,218.5332,1],[180.58594,218.95898],[182.06541,215.05808,184.49407,211.07704,188.39453,210.25586,1],[196.47691,208.55423,190.42349,203.45942,198.50586,201.75781,1],[206.58823,200.05619,205.68271,186.82964,204.90039,180.60938,1],[204.11808,174.38911,208.78144,169.61435,214.45898,164.02734,1],[220.13653,158.44033,216.44127,151.32666,212.79883,139.77734,1],[209.1564,128.22801,242.96371,106.54195,238.60938,100.21484,1],[234.25502,93.887722,229.89746,75.460858,229.22852,62.535156,1],[228.96438,57.431188,230.50724,54.748052,231.37695,47.355469,1],[232.24668,39.962884,225.7229,31.265056,206.1543,24.742188,1],[186.5857,18.219323,194.41406,-14.394531,194.41406,-14.394531,1],[-18.357422,-14.929688],[-28.955078,321.23828],[-27.447266,401.02148],[-27.447266,401.02148,-0.33943038,394.70709,12.4375,389.35742,1],[19.689812,386.32091,26.601838,382.77732,33.039062,377.87305,1],[39.476294,372.96879,40.489874,372.15635,55.666016,369.93359,1],[70.842203,367.7108,68.314108,356.81766,79.943359,354.85547,1],[91.572617,352.89326,106.6543,338.86133,106.6543,338.86133,1],[106.6543,338.86133,106.12491,336.31486,103.11133,333.95117,1],[100.09774,331.58762,94.656299,319.80132,93.974609,315.05078,1],[93.292919,310.30024,88.859774,308.04221,86.376953,308.22461,1],[83.894133,308.40702,75.146916,321.23471,71.501953,314.85547,1],[67.856982,308.47624,76.294819,306.74994,80.375,303.86523,1],[84.455187,300.98053,84.078175,295.46678,85.169922,290.58594,1],[86.26167,285.70511,84.010732,278.85637,87.789062,271.5625,1],[91.567394,264.26863,91.267578,254.6875,91.267578,254.6875,1],[91.267578,254.6875,92.835374,261.95954,90.601562,270.98633,1],[88.36775,280.01313,88.467754,281.48285,89.048828,284.76367,1],[89.629902,288.04449,88.794216,286.25948,86.001953,297.54297,1],[83.209692,308.82647,90.180726,301.29816,91.521484,305.26172,1],[92.862248,309.22529,98.866939,308.41374,100.61523,307.91602,1],[102.36351,307.4183,104.79835,301.33135,107.00195,302.27734,1],[109.20554,303.22327,121.29297,297.53516,121.29297,297.53516,1],[121.29297,297.53516,116.98345,302.282,110.26953,303.14453,1],[103.55561,304.00706,103.30194,305.50219,101.52344,315.97266,1],[99.744926,326.44312,110.66016,334.875,110.66016,334.875,1],[128.54492,335.77734],[128.54492,335.77734,131.66163,334.44009,141.90234,322.60938,1],[152.14306,310.77867,137.07227,304.13086,137.07227,304.13086,1],[143.23438,290.01367],[139.05469,291.42969],[138.90625,284.05469],[161.5293,281.2832],[161.60352,287.55664],[149.56836,288.81055],[145.10352,301.69336],[153.36328,302.56445],[153.36328,302.56445,156.91176,297.13323,166.28711,293.49023,1],[175.66246,289.84722,174.00044,270.7671,166.80859,264.64844,1],[159.61674,258.52978,158.58076,253.80556,167.04297,252.44531,1],[175.50518,251.08506,189.74543,245.60729,188.50781,237.94336,1],[187.27021,230.27943,170.04102,233.75977,170.04102,233.75977,1],[170.34766,227.83008],[178.50586,227.23047],[178.50586,227.23048,178.66516,225.92664,179.07812,224.06055,1],[197.44922,223.44727],[197.45294,223.45495,197.45518,223.46305,197.45898,223.4707,1],[199.33184,227.23685,208.58925,226.97459,210.06836,223.03711,1],[210.06957,223.03389,210.06911,223.03057,210.07031,223.02734,1],[245.68555,221.83984],[248.04511,226.91949,246.21044,227.62409,243.63672,230.9375,1],[239.37794,236.42028,233.80168,243.47784,236.83789,251.37891,1],[239.87409,259.27998,239.74324,267.7837,236.24414,273.94922,1],[232.74503,280.11474,233.60126,292.60682,240.05859,298.41016,1],[248.3327,305.84629,240.48309,331.67514,253.25977,345.44727,1],[259.03125,351.66992],[256.10547,376.62695],[270.4707,378.15625],[273.67188,357.24219],[284.76562,363.07422],[282.57422,388.3457],[293.56641,392.70703],[294.63281,387.45898],[299.32031,388.22266],[300.94531,380.71875],[295.70312,377.04102],[297.98633,368.75],[315.00977,372.66797],[316.44141,398.7832],[329.21094,397.84375],[327.52539,373.22656],[338.31836,369.47852],[344.21289,387.87891],[348.06445,386.85742],[349.70898,390.06055],[355.53516,391.84766],[359.84375,387.09961],[353.99219,384.94531],[356.04492,383.68555],[351.54492,364.81445],[366.97852,355.92578],[378.67383,370.57617],[376.3418,372.96289],[381.68555,378.10938],[387.13477,374.38672],[385.13477,371.20898],[388.58008,369.47852],[384.02344,365.38281],[386.4043,363.73047],[378,350.31641],[378,350.31641,385.95747,346.7768,389.88672,341.6875,1],[391.42103,339.70024,392.78263,333.47864,394.57227,325.5332,1],[445,299.57617],[445.91798,301.21144,446.65643,302.86923,446.90625,305.00195,1],[447.76403,312.3245,460.43249,309.91646,461.41602,319.07617,1],[462.39957,328.23588,485.52984,327.64405,484.08594,327.38086,1],[484.08594,327.38086,486.94838,327.54145,493.07617,333.73828,1],[499.20395,339.9351,537.88939,337.46076,544.72656,343.60547,1],[551.56371,349.75019,551.89251,354.52652,549.83984,355.78516,1],[547.78717,357.04381,527.69621,355.1958,533.33594,375.0918,1],[538.97567,394.98778,550.20037,392.3176,562.25977,391.43164,1],[574.31918,390.54568,591.70319,378.92846,598.72656,366.96484,1],[605.74993,355.00122,607.32753,341.5922,612.65039,336.03125,1],[617.97325,330.47029,629.02111,278.32946,622.28711,268.48438,1],[615.55309,258.6393,602.69235,237.42711,587.16406,234.50586,1],[571.63577,231.5846,570.76993,239.77029,549.6875,197.375,1],[549.6875,197.375,538.5175,195.61279,529.37109,197.39258,1],[528.56139,197.55013,527.80968,197.60657,527.10352,197.58594,1],[529.74023,194.10742],[534.81188,193.97451,538.7207,193.38086,538.7207,193.38086,1],[538.7207,193.38086,538.25819,192.97458,537.48828,192.38867,1],[539.07617,191.10938],[542.73633,194.33594],[544.58203,195.96218,552.73633,196.07617,552.73633,196.07617,1],[552.73633,196.07617,554.04013,194.33581,550.99609,193.03125,1],[549.96727,192.59031,548.64184,192.1542,547.33594,191.76367,1],[549.2793,186.99023],[549.81963,187.08154,550.32894,187.18543,550.78125,187.32422,1],[553.69422,188.21804,552.96289,182.73438,552.96289,182.73438,1],[552.96289,182.73438,550.27149,181.9774,547.20508,181.37109,1],[547.73438,179.62891],[552.11343,180.62487,555.78125,182.5957,555.78125,182.5957,1],[555.78125,182.5957,557.08628,177.8118,553.60742,177.37695,1],[553.17256,177.32259,552.62805,177.29502,552.00977,177.28906,1],[551.10796,177.2804,550.03236,177.32352,548.91797,177.38672,1],[551.08984,172.44727],[554.50567,172.40546,557.25,172.44727,557.25,172.44727,1],[557.25,172.44727,567.01475,148.46662,570.25977,143.79688,1],[573.50481,139.12707,563.75451,132.0882,566.94922,126.68359,1],[570.14395,121.27899,568.83433,107.34178,573.77734,101.43945,1],[578.72036,95.537128,588.22647,83.392236,596.81445,83.869141,1],[628.83789,83.449219],[631.44531,-16.568359],null,[159.07617,47.539062],[160.40323,47.539062,161.30078,47.603516,161.30078,47.603516,1],[173.62955,49.315845,180.82278,51.028307,183.5625,57.535156,1],[186.30223,64.042005,174.99976,63.69954,167.12305,57.535156,1],[159.24634,51.370772,149.65697,58.904618,148.28711,52.740234,1],[147.25971,48.116947,155.09501,47.539063,159.07617,47.539062,1],[159.07617,47.539062],null,[289.93359,53.238281],[289.93359,53.238281,304.07374,68.461267,317.89258,71.125,1],[329.18977,74.726378,339.42142,83.575558,340.33203,86.462891,1],[341.24263,89.350222,359.00038,93.585673,365.86523,94.927734,1],[372.73008,96.269788,377.91856,104.38153,380.16992,111.23242,1],[381.7721,116.10781,389.96276,119.92378,394.56445,121.72656,1],[394.93867,119.44617,395.64072,117.4818,396.88867,115.91211,1],[403.12467,108.0684,399.47881,101.68981,387.70117,96.277344,1],[381.39437,93.37902,370.18447,88.827246,360.48828,84.025391,1],[376.82227,83.523438],[390.13256,90.773488,404.22988,98.263041,409.63867,99.097656,1],[419.36617,100.59868,419.78872,117.18362,414.8457,123.08594,1],[409.90269,128.98827,416.5125,136.99832,412.37695,149.48828,1],[408.2414,161.9783,403.9242,182.23556,408.88477,192.21094,1],[413.25154,200.99221,430.01841,209.43421,434.24609,215.33984,1],[399.94922,215.33984],[399.57223,213.66662,399.68189,211.83915,400.46484,209.81641,1],[405.61414,196.51336,387.66238,178.99877,392.78906,160.1582,1],[395.93484,148.59747,394.41972,137.52867,394.2168,128.88086,1],[391.37522,125.95183,387.22637,121.9002,384.72461,120.49805,1],[380.64696,118.21267,373.96443,109.10457,371.93945,105.56055,1],[369.91447,102.01654,360.59432,96.052592,352.05664,96.310547,1],[343.51897,96.568503,327.44005,80.394624,324.02148,77.322266,1],[320.6029,74.249908,305.40328,70.934854,300.99609,69.042969,1],[296.58891,67.151073,289.93359,53.238281,289.93359,53.238281,1],[289.93359,53.238281],null,[596.37065,147.19914],[593.25736,144.45596,587.09,143.34043,583.9729,146.07927,1],[580.59484,149.0474,579.89322,156.8053,583.44794,159.5594,1],[587.48412,162.68653,595.5318,159.56036,598.11981,155.15901,1],[599.49677,152.81725,598.4089,148.99509,596.37065,147.19914,1],[596.37065,147.19914],null,[116.44727,153.87109],[121.38522,158.30894,124.60033,163.61257,123.38281,166.65625,1],[122.16528,169.69993,123.58073,174.76544,123.37695,176.99609,1],[123.17319,179.22672,127.19861,185.9483,127.07031,189.28125,1],[126.94201,192.61417,114.95117,210.11328,114.95117,210.11328,1],[114.95117,210.11329,109.88711,203.83737,112.72461,203.62891,1],[115.56212,203.42045,124.36172,186.15546,123.17188,184.39648,1],[121.98204,182.6375,114.65973,185.0226,108.95703,190.24219,1],[103.25434,195.46176,107.30273,202.55078,107.30273,202.55078,1],[107.30273,202.55078,104.54365,198.68982,103.6582,196.16992,1],[103.04611,194.42799,106.32839,190.51363,107.89453,188.87695,1],[104.22221,191.12054,86.888672,195.92578,86.888672,195.92578,1],[82.382812,187.39453],[82.382812,187.39453,83.496408,188.04972,88.308594,190.65039,1],[93.120772,193.2511,112.02466,183.00096,117.26953,181.50781,1],[122.51438,180.01464,120.39216,169.83,121.91406,166.02539,1],[123.43596,162.2208,116.44727,153.87109,116.44727,153.87109,1],[116.44727,153.87109],null,[107.89453,188.87695],[108.15961,188.71499,108.36564,188.56215,108.47656,188.42969,1],[108.98524,187.82231,108.59398,188.14599,107.89453,188.87695,1],[107.89453,188.87695],null,[519.78125,171.87695],[519.78125,171.87695,537.33554,173.17345,543.36523,172.73047,1],[544.43502,172.65188,545.56278,172.59755,546.69336,172.55273,1],[545.04492,177.67969],[542.13836,177.94517,539.69141,178.24609,539.69141,178.24609,1],[539.69141,178.24609,538.82145,178.68233,544.47461,179.11719,1],[543.82422,180.82422],[542.97134,180.71892,542.14212,180.63824,541.41211,180.62891,1],[537.13069,180.57417,534.64764,180.75574,533.8125,178.9707,1],[532.97734,177.18567,519.78125,171.87695,519.78125,171.87695,1],[519.78125,171.87695],null,[518.86523,179.33008],[519.31055,179.36294,519.78337,179.61039,520.28516,179.99414,1],[523.01486,181.23457,529.29842,183.90682,535.30469,185.13867,1],[540.31817,186.16689,543.99862,186.41309,546.76758,186.67773,1],[544.19922,190.89844],[543.1376,190.62623,542.30078,190.42187,542.30078,190.42188,1],[537.95117,189.55273],[535.61914,191.08008],[534.08112,190.07526,532.08825,188.94806,529.80469,188.12695,1],[525.59664,186.61385,522.60942,181.77163,520.28516,179.99414,1],[519.39994,179.59187,518.86525,179.33008,518.86523,179.33008,1],[518.86523,179.33008],null,[514.07227,187.4375],[514.81809,187.65797,515.49949,188.20483,516.17383,188.93555,1],[518.2975,190.38234,521.73078,192.50247,524.97852,193.53125,1],[522.07422,195.73828],[519.54069,193.7965,517.87607,190.78008,516.17383,188.93555,1],[514.91759,188.07972,514.07227,187.4375,514.07227,187.4375,1],[514.07227,187.4375],null,[405.56836,223],[437.36523,223.51758],[439.90944,227.51661,444.61755,231.68155,451.11914,236.375,1],[460.86928,243.41355,460.02761,257.13847,457.4668,261.38867,1],[454.90599,265.63888,438.97056,267.18059,439.24219,281.5625,1],[439.31212,285.26454,439.79982,288.11994,440.49609,290.45703,1],[397.92969,311.63281],[400.42214,302.29604,403.7018,292.51828,408.45898,284.92969,1],[420.3499,265.96145,414.97856,265.61827,413.81641,259.05664,1],[412.65426,252.495,421.65363,243.34166,420.41602,235.67773,1],[419.70062,231.24763,411.42989,227.73825,405.56836,223,1],[405.56836,223],null,[494.50977,241.76367],[500.62318,241.56697,511.13086,248.58398,511.13086,248.58398,1],[515.91536,255.98733,527.07844,273.2618,519.80859,271.21094,1],[512.53874,269.16008,498.70332,275.34619,491.46875,252.98242,1],[488.75579,244.596,490.84174,241.88168,494.50977,241.76367,1],[494.50977,241.76367],null,[163.93555,334.66797],[163.38289,334.67238,162.84877,334.70566,162.33984,334.76953,1],[154.93063,335.69943,143.84839,344.81309,147.10547,351.76953,1],[152.33003,362.92807,179.93856,360.78481,182.9043,348.76953,1],[184.80926,341.0519,172.22547,334.60187,163.93555,334.66797,1],[163.93555,334.66797],null,[515.25586,350.25391],[511.80707,350.27778,507.34986,353.4719,507.48047,356.68164,1],[507.63466,360.47071,514.34795,363.53106,517.43359,361.49023,1],[520.33761,359.56952,520.39694,352.56949,517.41406,350.7832,1],[516.79448,350.41217,516.05173,350.2484,515.25586,350.25391,1],[515.25586,350.25391],null,[501.14453,357.88477],[498.80371,358.05674,495.61454,361.15668,496.53125,363.39453,1],[498.02439,367.03961,506.55017,367.70246,507.98242,364.03125,1],[509.11297,361.13339,504.15416,357.66366,501.14453,357.88477,1],[501.14453,357.88477],null,[212.28516,367.18164],[202.7291,367.00134,191.1864,372.22627,191.47656,380.26562,1],[191.89539,391.87023,215.48236,397.43318,223.84961,389.70508,1],[228.8236,385.11105,226.4145,372.75512,220.66797,369.25977,1],[218.43567,367.90197,215.47051,367.24173,212.28516,367.18164,1],[212.28516,367.18164],null,[484.01953,368.00586],[479.34204,368.12004,474.60787,369.92457,472.63672,373.64258,1],[470.32467,378.00358,473.23463,385.438,477.51953,387.68555,1],[483.90805,391.03653,495.50076,388.27741,498.11914,381.37305,1],[499.76662,377.02885,495.37035,371.17362,491.23438,369.32227,1],[489.41191,368.50649,487.21128,368.05931,484.95312,368.00586,1],[484.64261,367.99851,484.33136,367.99824,484.01953,368.00586,1],[484.01953,368.00586],null,[514.51172,373.73828],[512.26839,373.8268,509.60315,375.31955,509.59766,377.20508,1],[509.59128,379.40196,513.67586,380.49938,515.5625,379.49609,1],[517.05929,378.70011,518.13394,375.63407,516.89648,374.45312,1],[516.4205,373.9989,515.72587,373.77692,514.95312,373.74023,1],[514.80822,373.73336,514.66127,373.73238,514.51172,373.73828,1],[514.51172,373.73828]],"flat":true},{"id":"path4141","type":"poly","borderWidth":"1.17697763px","borderColor":"none","backgroundColor":"#679363","points":[[631.44531,-16.568359],[321.39258,-12.220703],[321.39258,2.9993156,333.13361,14.740225,334.87305,22.132812,1],[336.61248,29.525396,348.78757,33.874881,346.61328,39.962891,1],[344.43899,46.050902,348.70898,52.613281,348.70898,52.613281,1],[348.70898,52.613281,346.6588,55.978059,346.00977,59.871094,1],[347.1877,62.28068,349.99445,64.68653,356.04883,66.107422,1],[371.62744,69.763536,396.52977,69.041323,408.66211,74.427734,1],[420.79445,79.814153,454.96824,84.319573,470.87891,82.412109,1],[486.78958,80.50465,512.30334,78.260836,536.11523,82.419922,1],[559.92712,86.578998,564.25506,92.538902,573.24805,93.724609,1],[577.42578,97.107422],[582.6569,91.019126,590.00625,83.491071,596.81445,83.869141,1],[628.83789,83.449219],[631.44531,-16.568359],[631.44531,-16.568359],null,[207.02539,-16.134766],[207.02539,-16.134766,202.24092,11.26206,210.06836,15.175781,1],[217.8958,19.089503,237.02951,29.091677,239.63867,35.179688,1],[242.24781,41.267699,237.03638,53.081087,238.89258,61.742188,1],[240.36605,68.617493,244.98482,77.283231,249.15234,84.544922,1],[232.79492,84.855469],[230.9484,77.591248,229.57924,69.312006,229.22852,62.535156,1],[228.96438,57.431188,230.50724,54.748052,231.37695,47.355469,1],[232.24668,39.962884,225.7229,31.265056,206.1543,24.742188,1],[186.5857,18.219323,194.41406,-14.394531,194.41406,-14.394531,1],[-18.357422,-14.929688],[-28.955078,321.23828],[-27.613281,392.21875],[-8.4363319,384.88353,29.300633,368.30436,34.1875,363.38867,1],[40.524118,357.01468,47.894495,360.53482,56.28125,358.07227,1],[64.667998,355.60974,64.315066,350.46532,83.75,342.75977,1],[93.0386,339.07702,96.639785,332.10115,97.875,325.82031,1],[95.963553,321.86733,94.328176,317.51471,93.974609,315.05078,1],[93.292919,310.30024,88.859774,308.04221,86.376953,308.22461,1],[83.894133,308.40702,75.146916,321.23471,71.501953,314.85547,1],[68.720161,309.98693,72.971913,307.82855,76.957031,305.79688,1],[75.4723,304.31192,74.193584,302.49919,75.207031,301.28906,1],[77.18424,298.92813,63.882043,302.49014,61.753906,302.64648,1],[59.625784,302.80283,65.199265,306.08684,63.574219,313.5918,1],[61.949165,321.09675,53.081147,321.74723,44.964844,315.14258,1],[54.434566,299.86037,69.178474,301.7336,71.638672,296.01367,1],[74.098871,290.29375,44.563061,280.6459,56.625,274.58984,1],[68.686923,268.5338,80.998162,271.32204,81.425781,277.56836,1],[81.520823,278.95666,83.080821,279.55981,85.574219,279.68555,1],[85.777236,277.10029,86.337111,274.36542,87.789062,271.5625,1],[91.567394,264.26863,91.267578,254.6875,91.267578,254.6875,1],[91.267578,254.6875,92.835374,261.95954,90.601562,270.98633,1],[89.554288,275.21836,89.032557,277.75953,88.820312,279.63477,1],[98.588398,279.01921,115.51225,274.86414,123.75977,276.30469,1],[135.66571,278.38423,136.83008,279.77539,136.83008,279.77539,1],[136.83008,279.77539,137.87699,263.81994,146.0625,258.41797,1],[150.19239,255.69247,127.74264,247.77762,104.48242,240.60156,1],[128.80145,245.19019,153.96145,248.70881,157.01562,244.3457,1],[163.10363,235.64854,165.71349,223.47072,135.27344,208.68555,1],[129.83814,206.04556,125.10103,203.661,120.66992,201.40625,1],[117.76037,206.00727,114.95117,210.1133,114.95117,210.11328,1],[114.95117,210.11329,109.88711,203.83737,112.72461,203.62891,1],[112.80238,203.6232,112.88627,203.59902,112.97266,203.56836,1],[112.99448,203.56059,113.01672,203.55423,113.03906,203.54492,1],[113.07837,203.52859,113.12122,203.50146,113.16211,203.48047,1],[113.25133,203.43453,113.34316,203.3798,113.43945,203.3125,1],[113.47943,203.28461,113.51942,203.25604,113.56055,203.22461,1],[113.66595,203.14395,113.7743,203.05205,113.88672,202.94922,1],[113.91767,202.92095,113.94708,202.8951,113.97852,202.86523,1],[114.27068,202.58727,114.58565,202.23899,114.91406,201.83594,1],[115.13478,201.56534,115.36314,201.26509,115.5957,200.94727,1],[115.94809,200.46531,116.31071,199.94156,116.67969,199.37305,1],[112.87138,197.41831,109.45524,195.65705,106.38867,194.08008,1],[106.38656,194.08626,106.38491,194.09341,106.38281,194.09961,1],[106.21454,194.59758,106.10044,195.09197,106.02539,195.58008,1],[105.99805,195.75818,105.98151,195.93568,105.96484,196.11133,1],[105.94286,196.34228,105.92928,196.56945,105.92383,196.79492,1],[105.92002,196.95518,105.91239,197.11655,105.91602,197.27344,1],[105.91943,197.4232,105.92996,197.5686,105.93945,197.71484,1],[105.94871,197.85631,105.96026,197.99699,105.97461,198.13477,1],[105.98891,198.27288,106.00268,198.40896,106.02148,198.54297,1],[106.04123,198.68294,106.06586,198.82002,106.08984,198.95508,1],[106.1105,199.07199,106.12705,199.19177,106.15039,199.30469,1],[106.15081,199.3067,106.15192,199.30855,106.15234,199.31055,1],[106.19839,199.53173,106.24897,199.7451,106.30273,199.94922,1],[106.39844,200.31383,106.5041,200.64484,106.60938,200.94531,1],[106.62696,200.99534,106.64456,201.04179,106.66211,201.08984,1],[106.72989,201.27592,106.79366,201.43181,106.85742,201.58594,1],[106.92954,201.75908,106.99713,201.91179,107.05664,202.03906,1],[107.17159,202.27898,107.30273,202.55078,107.30273,202.55078,1],[107.30273,202.55078,104.54365,198.68982,103.6582,196.16992,1],[103.6231,196.07005,103.60376,195.96141,103.59375,195.84766,1],[103.58906,195.79718,103.59193,195.74235,103.5918,195.68945,1],[103.59201,195.62862,103.59163,195.56976,103.59766,195.50586,1],[103.60476,195.42513,103.61896,195.34098,103.63477,195.25586,1],[103.64125,195.22219,103.64847,195.18861,103.65625,195.1543,1],[103.67902,195.05089,103.70629,194.94463,103.74023,194.83594,1],[103.74259,194.82854,103.74565,194.82187,103.74805,194.81445,1],[103.90675,194.31542,104.183,193.76635,104.51758,193.20312,1],[104.52953,193.18297,104.53867,193.16276,104.55078,193.14258,1],[103.47824,192.59441,102.33912,192.01012,101.35742,191.51758,1],[100.97641,191.64708,100.57389,191.77641,100.18164,191.90625,1],[99.862878,192.01179,99.561887,192.11362,99.238281,192.21875,1],[98.260126,192.53658,97.279545,192.84854,96.300781,193.15234,1],[94.713988,193.6448,93.229584,194.08992,91.865234,194.49219,1],[91.71009,194.53797,91.697217,194.54177,91.546875,194.58594,1],[88.86921,195.37279,86.888672,195.92578,86.888672,195.92578,1],[82.382812,187.39453],[82.382812,187.39453,83.496408,188.04972,88.308594,190.65039,1],[88.441102,190.72202,88.58889,190.78141,88.742188,190.83398,1],[88.790137,190.85036,88.840708,190.86435,88.890625,190.87891,1],[89.011378,190.91434,89.137663,190.94557,89.269531,190.9707,1],[89.317634,190.97977,89.362569,190.99032,89.412109,190.99805,1],[89.569151,191.0229,89.735308,191.03894,89.90625,191.05078,1],[90.209859,191.07107,90.532927,191.0728,90.876953,191.05469,1],[91.93472,190.99901,93.17445,190.76962,94.529297,190.41797,1],[94.529297,190.41797,94.53125,190.41797,94.53125,190.41797,1],[94.560547,190.41016],[95.444335,190.17986,96.377287,189.89832,97.341797,189.57812,1],[97.354676,189.57385,97.36797,189.56873,97.380859,189.56445,1],[91.379805,186.7015,87.396767,185.272,84.830078,185.63867,1],[78.742067,186.50838,89.613281,163.02539,89.613281,163.02539,1],[89.613281,163.02539,111.16307,160.60582,122.03516,163.81641,1],[122.00128,163.62431,121.95118,163.42513,121.90039,163.22656,1],[121.86248,163.07847,121.81988,162.9283,121.77344,162.77734,1],[121.72714,162.62675,121.681,162.47705,121.62695,162.32422,1],[121.57595,162.18016,121.51819,162.03419,121.46094,161.88867,1],[121.39518,161.72139,121.3329,161.55323,121.25977,161.38477,1],[121.20735,161.26412,121.14759,161.14435,121.0918,161.02344,1],[120.94872,160.71309,120.79789,160.40244,120.63672,160.09375,1],[120.55274,159.93301,120.46854,159.77256,120.38086,159.61328,1],[120.28196,159.43348,120.18062,159.25709,120.07812,159.08008,1],[120.02263,158.98431,119.96644,158.88769,119.91016,158.79297,1],[119.61198,158.29068,119.30541,157.80483,119.00195,157.3457,1],[118.96852,157.29516,118.93565,157.24712,118.90234,157.19727,1],[118.68703,156.87472,118.48152,156.58409,118.27734,156.29492,1],[118.08181,156.01843,117.89279,155.75176,117.7168,155.51367,1],[117.58888,155.34058,117.45717,155.16296,117.34375,155.01367,1],[117.22242,154.85431,117.12549,154.72573,117.02539,154.59766,1],[116.744,154.23983,116.44727,153.87109,116.44727,153.87109,1],[116.88001,154.26,117.29478,154.65848,117.69922,155.05859,1],[117.78209,155.1406,117.86373,155.22035,117.94531,155.30273,1],[118.34182,155.70291,118.72573,156.10545,119.08984,156.51172,1],[119.12135,156.54692,119.15038,156.58196,119.18164,156.61719,1],[119.5235,157.00209,119.84684,157.38899,120.15625,157.77539,1],[120.21089,157.84373,120.26674,157.91215,120.32031,157.98047,1],[120.65463,158.4062,120.96942,158.83161,121.25977,159.25391,1],[121.26236,159.25768,121.26499,159.2599,121.26758,159.26367,1],[121.2729,159.27142,121.2779,159.27936,121.2832,159.28711,1],[121.58688,159.73057,121.86288,160.17127,122.11328,160.60547,1],[122.23158,160.81061,122.34164,161.01267,122.44727,161.21484,1],[122.46104,161.24124,122.47474,161.26857,122.48828,161.29492,1],[122.59483,161.50173,122.69447,161.70521,122.78711,161.9082,1],[123.07942,162.54876,123.3007,163.16802,123.44336,163.75781,1],[123.49041,163.95233,123.52709,164.14248,123.55664,164.33008,1],[123.55696,164.33211,123.55827,164.33391,123.55859,164.33594,1],[125.70953,165.17253,127.27591,166.29817,127.88086,167.81055,1],[131.35972,176.5077,130.48999,198.24919,142.66602,203.90234,1],[154.84204,209.55549,162.67003,211.73069,171.36719,206.94727,1],[180.06435,202.16382,173.9744,185.20531,186.15039,187.81445,1],[191.79262,189.0235,198.91636,191.34107,205.03711,192.80078,1],[205.70625,188.5224,205.28925,183.70118,204.90039,180.60938,1],[204.16655,174.77449,208.2396,170.20327,213.43164,165.04883,1],[235.66602,165.41406],[230.25186,178.71343,227.41792,193.53127,234.68164,204.26953,1],[250.14951,227.13628,247.89552,225.45472,243.63672,230.9375,1],[241.60322,233.55546,239.27988,236.53667,237.72656,239.79297,1],[362.18359,250.35547],[415.02344,229.79492],[415.02344,229.79492,414.86469,229.45478,414.84961,229.42188,1],[407.73679,224.45763,396.81211,219.2531,400.46484,209.81641,1],[405.14067,197.73657,390.76995,182.18296,391.92578,165.31836,1],[412.875,164.86328],[421.49219,159.01562],[392.96289,159.47266],[394.93444,151.79504,394.89608,144.37133,394.60547,137.73047,1],[388.71739,132.52167,381.31362,126.8911,376.21094,126.29492,1],[366.50858,125.16132,325.29644,111.57172,315.08594,113.42969,1],[307.42806,114.82316,292.91819,112.77335,279.30078,112.78711,1],[274.76165,112.7917,270.32134,113.02431,266.26758,113.69141,1],[260.44985,114.64879,255.25406,117.22692,250.97461,120.13672,1],[255.40431,125.05688,256.32634,128.85829,253.05859,134.23438,1],[251.46577,136.85488,244.40312,146.74933,238.56445,158.91016,1],[217.27344,158.60938],[217.95654,153.85636,215.36707,147.92065,212.79883,139.77734,1],[209.1564,128.22801,242.96371,106.54195,238.60938,100.21484,1],[237.2781,98.280405,235.94707,95.206971,234.7207,91.513672,1],[253.12109,91.386719],[255.12564,94.840269,256.60501,97.512342,256.67383,98.517578,1],[256.78038,100.07399,257.74925,101.64609,258.13477,103.07617,1],[266.38675,106.52964,281.07702,109.87527,301.86523,107.75391,1],[327.70718,105.11684,363.50247,107.28716,362.87109,103.27148,1],[362.56597,101.33089,361.76311,99.437701,361.01562,97.988281,1],[360.01909,97.611917,358.99244,97.286723,357.94922,97.021484,1],[357.77412,96.977266,357.59783,96.935048,357.42188,96.894531,1],[357.16904,96.835851,356.91634,96.777218,356.66211,96.726562,1],[356.25213,96.645618,355.84181,96.572205,355.42969,96.513672,1],[355.0712,96.462176,354.71243,96.419787,354.35352,96.386719,1],[354.3183,96.38352,354.28326,96.379969,354.24805,96.376953,1],[353.94751,96.350835,353.64573,96.334523,353.3457,96.322266,1],[353.25217,96.318522,353.15986,96.314861,353.06641,96.3125,1],[352.72928,96.303753,352.39197,96.300416,352.05664,96.310547,1],[343.51897,96.568503,327.44005,80.394624,324.02148,77.322266,1],[320.6029,74.249908,305.40328,70.934854,300.99609,69.042969,1],[296.58891,67.151073,289.93359,53.238281,289.93359,53.238281,1],[289.93359,53.238281,290.11195,53.428664,290.44727,53.771484,1],[290.64491,53.973539,291.00395,54.323471,291.30664,54.623047,1],[291.52664,54.841444,291.72727,55.042985,292,55.306641,1],[292.61376,55.897632,293.33496,56.579153,294.17969,57.339844,1],[295.06148,58.133919,296.05939,58.999833,297.15234,59.902344,1],[299.90891,59.726041,303.60241,58.205633,305.30273,57.355469,1],[308.7816,55.616037,316.6089,47.788949,326.17578,46.484375,1],[331.30346,45.785145,336.71356,47.500285,340.64453,49.242188,1],[339.35888,48.65961,338.05398,48.091582,337.4668,46.923828,1],[335.6454,43.301619,338.6443,38.643104,337.47266,34.761719,1],[335.93214,29.658247,331.5776,25.878008,328.61914,21.443359,1],[325.07735,16.134331,319.82015,11.640756,317.96875,5.5332031,1],[316.00698,-0.93841596,317.99409,-14.753906,317.99414,-14.753906,1],[207.02539,-16.134766],[207.02539,-16.134766],null,[159.07617,47.539062],[160.40323,47.539062,161.30078,47.603516,161.30078,47.603516,1],[173.62955,49.315845,180.82278,51.028307,183.5625,57.535156,1],[186.30223,64.042005,174.99976,63.69954,167.12305,57.535156,1],[159.24634,51.370772,149.65697,58.904618,148.28711,52.740234,1],[147.25971,48.116947,155.09501,47.539063,159.07617,47.539062,1],[159.07617,47.539062],null,[527.51562,90.048828],[525.34702,90.061477,523.2697,90.206747,521.3418,90.521484,1],[509.00316,92.535794,439.00637,90.661161,427.12305,94.119141,1],[427.12305,94.119141,416.55549,101.17422,421.41797,104.50977,1],[426.28047,107.84533,415.89088,112.30027,419.13086,117.9707,1],[422.37082,123.64112,424.39285,132.35627,433.08398,129.13281,1],[441.77511,125.90935,482.39084,115.1718,498.85742,116.17773,1],[515.32401,117.18366,549.39528,120.21823,555.88281,116.04883,1],[562.37035,111.87943,569.62392,98.052335,560.91016,95.738281,1],[553.55794,93.785791,539.22613,89.980526,527.51562,90.048828,1],[527.51562,90.048828],null,[323.62305,131.4043],[336.90751,131.49001,351.82216,134.54745,358.33984,146.43945,1],[371.37518,170.22346,351.05239,180.58066,344.33594,186.61328,1],[337.61948,192.64589,283.85499,203.98114,269.58203,172.5332,1],[255.30907,141.08526,298.68555,134.20703,298.68555,134.20703,1],[298.68555,134.20703,310.33859,131.31859,323.62305,131.4043,1],[323.62305,131.4043],null,[312.91016,141.61719],[306.10756,141.73194,299.12465,143.70125,293.91406,147.84961,1],[288.51458,152.14835,283.77772,159.6207,284.50586,166.63477,1],[285.33235,174.59626,292.05785,182.37181,299.31836,185.11914,1],[311.85887,189.8644,329.72617,187.99534,338.74023,177.79297,1],[343.76589,172.1048,344.18142,161.58421,340.73047,154.75195,1],[336.89904,147.1664,327.35555,143.32115,319.18359,142.04492,1],[317.58404,141.79511,315.93595,141.65146,314.26953,141.61914,1],[313.81821,141.61039,313.36366,141.60954,312.91016,141.61719,1],[312.91016,141.61719],null,[542.31055,197.83398],[527.92037,197.576,509.95153,208.44242,487.07812,214.90039,1],[468.88025,220.03829,458.12047,229.81902,452.23438,237.25586,1],[460.79391,244.50164,459.9251,257.30859,457.4668,261.38867,1],[454.90599,265.63888,438.97056,267.18059,439.24219,281.5625,1],[439.51383,295.94441,446.04849,297.6794,446.90625,305.00195,1],[447.76403,312.3245,460.43249,309.91646,461.41602,319.07617,1],[462.39957,328.23588,485.52984,327.64405,484.08594,327.38086,1],[484.08594,327.38086,486.94838,327.54145,493.07617,333.73828,1],[499.20395,339.9351,537.88939,337.46076,544.72656,343.60547,1],[551.56371,349.75019,551.89251,354.52652,549.83984,355.78516,1],[547.78717,357.04381,527.69621,355.1958,533.33594,375.0918,1],[538.97567,394.98778,550.20037,392.3176,562.25977,391.43164,1],[574.31918,390.54568,591.70319,378.92846,598.72656,366.96484,1],[605.74993,355.00122,607.32753,341.5922,612.65039,336.03125,1],[614.65514,333.93682,617.47093,325.23294,619.84375,314.67188,1],[624.38477,281.21484],[624.45457,275.42057,623.86235,270.78737,622.28711,268.48438,1],[615.55309,258.6393,602.69235,237.42711,587.16406,234.50586,1],[571.9242,231.63886,570.76049,239.35092,550.79492,199.56641,1],[548.11152,198.42265,545.2884,197.88736,542.31055,197.83398,1],[542.31055,197.83398],null,[494.50977,241.76367],[500.62318,241.56697,511.13086,248.58398,511.13086,248.58398,1],[515.91536,255.98733,527.07844,273.2618,519.80859,271.21094,1],[512.53874,269.16008,498.70332,275.34619,491.46875,252.98242,1],[488.75579,244.596,490.84174,241.88168,494.50977,241.76367,1],[494.50977,241.76367]],"flat":true},{"id":"path4163","type":"poly","borderWidth":"1.17697763px","borderColor":"none","backgroundColor":"#c9b293","points":[[323.625,131.4043],[310.34054,131.31858,298.68555,134.20508,298.68555,134.20508,1],[298.68555,134.20508,255.30906,141.08527,269.58203,172.5332,1],[283.85499,203.98115,337.61947,192.64589,344.33594,186.61328,1],[351.05239,180.58066,371.37519,170.22542,358.33984,146.44141,1],[351.82217,134.5494,336.90946,131.49001,323.625,131.4043,1],[323.625,131.4043],null,[312.91016,141.61719],[313.36366,141.60954,313.81821,141.61039,314.26953,141.61914,1],[315.93595,141.65146,317.58404,141.79511,319.18359,142.04492,1],[327.35555,143.32115,336.89904,147.1664,340.73047,154.75195,1],[344.18142,161.58421,343.76589,172.1048,338.74023,177.79297,1],[329.72617,187.99534,311.85887,189.8644,299.31836,185.11914,1],[292.05785,182.37181,285.33235,174.59626,284.50586,166.63477,1],[283.77772,159.6207,288.51458,152.14835,293.91406,147.84961,1],[299.12465,143.70125,306.10756,141.73194,312.91016,141.61719,1],[312.91016,141.61719],null,[264.82227,222.6875],[262.739,222.68549,260.51446,222.95922,258.10742,223.59766,1],[254.38455,224.5851,250.47443,225.70998,246.58203,226.86133,1],[246.13833,228.17512,244.99063,229.19448,243.63672,230.9375,1],[239.37794,236.42028,233.80168,243.47784,236.83789,251.37891,1],[239.87409,259.27998,239.74324,267.7837,236.24414,273.94922,1],[232.74503,280.11474,233.60126,292.60682,240.05859,298.41016,1],[242.21279,300.34619,243.26984,303.53576,243.88672,307.42773,1],[249.88387,305.13786,257.53546,303.55101,266.83203,304.19922,1],[292.62112,305.99737,304.84006,291.80377,327.58789,296.04102,1],[350.33572,300.27828,357.86561,285.32537,372.6543,298.27148,1],[383.12911,307.44119,391.2272,313.25757,397.0332,315.07422,1],[399.62243,304.75188,403.11264,293.4581,408.45898,284.92969,1],[420.3499,265.96145,414.97856,265.61827,413.81641,259.05664,1],[412.65426,252.495,421.65363,243.34166,420.41602,235.67773,1],[419.70537,231.27702,411.53956,227.78635,405.68555,223.0957,1],[392.14173,228.82007,372.75828,236.96882,361.84375,234.07031,1],[344.41625,229.44219,316.50021,227.80178,300.76562,232.28125,1],[286.99786,236.20079,279.40518,222.70162,264.82227,222.6875,1],[264.82227,222.6875]],"flat":true},{"id":"path4151","type":"poly","borderWidth":"1.17697763px","borderColor":"none","backgroundColor":"#986749","points":[[424.45312,-28.310547],[344.43945,-15.699219],[344.43945,-15.699219,337.91704,11.695648,357.05078,23.001953,1],[376.18453,34.308258,377.92485,41.700717,389.66602,36.482422,1],[401.40718,31.264128,404.88499,19.088123,414.88672,14.304688,1],[424.88846,9.5212497,424.45314,-28.310547,424.45312,-28.310547,1],[424.45312,-28.310547],null,[156.19727,92.392578],[154.30462,92.365557,151.97039,92.478823,148.98242,92.767578,1],[133.0466,94.307606,106.49481,96.996277,97.904297,101.68945,1],[89.313779,106.38263,88.350066,107.29369,82.34375,113.91016,1],[76.337433,120.52662,56.639097,144.60332,59.625,151.76953,1],[62.610897,158.93574,85.602155,182.3563,96.851562,180.05273,1],[105.35846,178.31075,113.85145,173.40471,121.13477,172.60352,1],[121.27783,170.03443,121.31193,167.53065,121.91406,166.02539,1],[123.43596,162.2208,116.44727,153.87109,116.44727,153.87109,1],[121.38522,158.30894,124.60033,163.61257,123.38281,166.65625,1],[122.73347,168.27953,122.83541,170.45931,123.03906,172.49609,1],[124.69031,172.49204,126.26986,172.74268,127.76172,173.35156,1],[136.19625,176.79397,158.28609,181.81669,166.42383,170.50977,1],[174.56157,159.20283,173.90618,154.82102,183.91797,144.85352,1],[193.92977,134.88602,216.32889,123.63822,211.69531,118.43945,1],[207.06175,113.24068,183.33071,99.844172,172.81836,97.292969,1],[164.27708,95.220115,164.39875,92.509669,156.19727,92.392578,1],[156.19727,92.392578],null,[204.84961,203.0332],[200.636,203.02955,193.50159,207.47846,195.2832,211.29688,1],[197.58054,216.22061,209.88895,213.91419,211.37305,208.6875,1],[212.15895,205.91969,207.72684,203.03569,204.84961,203.0332,1],[204.84961,203.0332]],"flat":true},{"id":"path4139","type":"poly","borderWidth":"1.17697763px","borderColor":"none","backgroundColor":"#deeff0","points":[[107.97333,65.749136],[93.767553,65.77477,79.474723,72.023272,79.474723,72.023272,1],[79.474723,72.023272,56.792651,89.568185,47.163225,94.706976,1],[37.5338,99.845759,39.246912,119.66204,58.173686,114.94805,1],[72.983454,111.25946,75.097099,113.02094,82.623583,113.60386,1],[88.360236,107.29082,89.460679,106.30117,97.903682,101.68858,1],[106.4942,96.995401,133.04591,94.307048,148.98173,92.76702,1],[157.031,91.989145,160.34645,92.501894,163.01321,93.527861,1],[163.05121,93.177144,163.0111,92.829248,162.86427,92.485274,1],[159.04322,83.534029,123.99015,66.167873,109.34731,65.766512,1],[108.88972,65.75397,108.43158,65.748309,107.97333,65.749136,1],[107.97333,65.749136],null,[518.64567,109.47571],[517.77067,109.50096,516.96429,109.58331,516.23904,109.72891,1],[504.63494,112.05853,495.91858,114.91496,487.25513,113.33576,1],[478.5917,111.75656,458.77982,113.9512,451.17792,117.46391,1],[443.576,120.97663,446.27538,117.01174,440.32136,120.29255,1],[434.36734,123.57335,421.7109,124.42886,418.53627,140.54107,1],[415.36163,156.65328,406.23506,169.14131,415.07711,168.12244,1],[423.91917,167.10357,432.10236,166.87068,431.44076,172.82774,1],[430.77916,178.78481,435.84045,190.23029,446.68487,187.21791,1],[457.52928,184.20554,469.94364,183.29377,473.20876,189.33163,1],[476.47389,195.36949,487.66731,202.67117,496.41128,195.01249,1],[505.15525,187.35381,515.22332,167.7809,526.92803,166.92099,1],[538.63275,166.06109,551.1476,166.61915,549.50499,158.24642,1],[547.86239,149.87369,548.72682,141.68553,554.27607,139.43146,1],[559.82531,137.17738,567.20088,130.35785,563.68169,125.81577,1],[560.38245,121.55757,531.77075,109.09701,518.64567,109.47571,1],[518.64567,109.47571],null,[58.522455,157.46199],[55.812362,157.54703,53.519929,158.43776,51.995125,160.0846,1],[45.024597,167.61299,3.8226582,185.41076,3.8226582,185.41076,1],[-53.561073,213.50307,-60.044215,233.87201,1.4122958,243.93338,1],[1.4122958,243.93338,27.784927,243.84283,37.940058,251.59019,1],[48.095188,259.33753,77.806084,271.55578,98.456004,265.97663,1],[119.10592,260.3975,154.16961,257.08298,157.66871,250.91746,1],[157.66871,250.91746,93.057786,218.36741,87.523739,189.60097,1],[83.20026,167.12718,68.20136,157.15831,58.522455,157.46199,1],[58.522455,157.46199]],"flat":true},{"id":"unova-route-1","type":"line","lineWidth":"4","lineColor":"#000000","points":[[587.84305,361.25442],[587.84305,304.1047]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"unova-route-2","type":"line","lineWidth":"4","lineColor":"#000000","points":[[587.84305,304.1047],[562.29519,278.43575]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"unova-route-3","type":"line","lineWidth":"4","lineColor":"#000000","points":[[492.55315,278.43575],[562.29519,278.43575]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"unova-route-4","type":"line","lineWidth":"4","lineColor":"#000000","points":[[305.72923,215.206],[305.72923,311.85381]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"unova-route-5","type":"line","lineWidth":"4","lineColor":"#000000","points":[[142.82032,215.206],[305.72923,215.206]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"unova-route-6","type":"line","lineWidth":"4","lineColor":"#000000","points":[[55.884931,152.32446],[142.82032,215.206]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"unova-route-7","type":"line","lineWidth":"4","lineColor":"#000000","points":[[55.884931,152.32446],[142.82032,89.843742]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"unova-route-8","type":"line","lineWidth":"4","lineColor":"#000000","points":[[142.82032,89.843742],[249.37066,89.843742]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"unova-route-9","type":"line","lineWidth":"4","lineColor":"#000000","points":[[249.37066,89.843742],[305.72923,89.843742]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"unova-route-10","type":"line","lineWidth":"4","lineColor":"#000000","points":[[305.72923,89.843742],[323.52557,52.258445],[370.02026,52.258445]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"unova-route-11","type":"line","lineWidth":"4","lineColor":"#000000","points":[[305.72923,89.843742],[375.58993,89.843742]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"unova-route-12","type":"line","lineWidth":"4","lineColor":"#000000","points":[[375.58993,89.843742],[468.57932,89.843742]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"unova-route-13","type":"line","lineWidth":"4","lineColor":"#000000","points":[[468.57932,89.843742],[560.35791,152.32446]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"unova-route-14","type":"line","lineWidth":"4","lineColor":"#000000","points":[[468.57932,215.206],[560.35791,152.32446]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"unova-route-15","type":"line","lineWidth":"4","lineColor":"#000000","points":[[425.90519,215.206],[468.57932,215.206]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"unova-route-16","type":"line","lineWidth":"4","lineColor":"#000000","points":[[305.72923,215.206],[425.90519,215.206]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"unova-route-17","type":"line","lineWidth":"4","lineColor":"#000000","points":[[533.236,373.60457],[587.84305,360.7701]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"unova-route-18","type":"line","lineWidth":"4","lineColor":"#000000","points":[[504.66114,373.60457],[533.236,373.60457]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"desert-resort","type":"line","lineWidth":"4","lineColor":"#000000","points":[[270.136,250.33054],[305.72923,250.33054]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"unova-victory-road","type":"line","lineWidth":"4","lineColor":"#000000","points":[[382.5001,10.37696],[382.5001,37.628548]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"unova-victory-road-2","type":"line","lineWidth":"4","lineColor":"#000000","points":[[370.02026,52.258445],[382.5001,37.628548]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"accumula-town","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"587.67749","y":"304.45624","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"anville-town","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"18.514606","y":"63.001785","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"black-city","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"468.82513","y":"215.10475","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"castelia-city","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"306","y":"310.51575","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"driftveil-city","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"143.17485","y":"215.10475","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"icirrus-city","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"143.17485","y":"89.665955","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"lacunosa-town","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"468.82513","y":"89.665955","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"mistralton-city","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"56.528305","y":"152.38535","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"nacrene-city","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"494.44574","y":"277.83292","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"nimbasa-city","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"306","y":"215.10475","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"nuvema-city","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"587.67749","y":"359.93063","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"opelucid-city","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"306","y":"89.665947","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"unova-pokemon-league","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"382.3797","y":"10.112075","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"striaton-city","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"561.28186","y":"277.83292","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"undella-town","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"559.82886","y":"152.38535","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"abundant-shrine","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"478.54367","y":"164.0358","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"abyssal-ruins","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"589.82886","y":"152.38535","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"celestial-tower","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"93.172142","y":"91.426445","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"challengers-cave","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"279.9726","y":"102.04288","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"chargestone-cave","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"51.048851","y":"187.65932","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"cold-storage","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"124.67899","y":"244.85109","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"dragonspiral-tower","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"112.69269","y":"47.933292","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"dreamyard","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"592.84308","y":"261.86838","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"entralink","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"306","y":"162.65932","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"giant-chasm","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"491.13599","y":"48.767708","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"liberty-garden","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"164.06256","y":"346.56342","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"lostlorn-forest","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"366.45984","y":"202.38533","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"mistralton-cave","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"135.98036","y":"158.20726","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"moor-of-icirrus","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"163.03516","y":"59.234661","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"p2-laboratory","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"561.84662","y":"344.20273","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"pinwheel-forest","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"472.73181","y":"299.64532","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"poke-transfer-lab","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"443.67264","y":"199.87546","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"relic-castle","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"269.88449","y":"250.33054","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"twist-mountain","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"135.98036","y":"115.05658","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"undella-bay","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"589.82886","y":"165.2363","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"wellspring-cave","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"538.5993","y":"256.05655","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"white-forest","type":"circle","borderWidth":"0.20791896","borderColor":"#000000","backgroundColor":"#000000","size":"6.3215175","x":"480.48093","y":"226.02872","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1}]
},
"6": {
"name": "Kalos",
"svg":[{"id":"path4319","type":"poly","borderWidth":"1px","borderColor":"none","backgroundColor":"#94ca90","points":[[500.37845,20.426529],[499.87631,20.432555],[500.72593,21.470969],[500.37845,20.426529],[500.37845,20.426529],null,[497.91398,20.454648],[443.88627,21.103406],[449.20423,24.133526,454.29795,26.977799,457.74118,28.412481,1],[463.04252,30.621363,471.51757,39.135573,476.91871,44.954813,1],[487.27843,33.081413,495.8682,22.890677,497.91398,20.454648,1],[497.91398,20.454648],null,[401.75917,21.611567],[383.64817,21.82849],[383.162,23.393487,382.6686,25.366957,382.74633,26.843813,1],[382.8929,29.62885,379.817,28.455183,376.73879,30.214142,1],[373.66059,31.97312,374.24561,30.068888,372.19347,27.870177,1],[370.14133,25.671465,360.61232,33.000792,360.90547,35.78583,1],[361.19863,38.570868,358.41647,40.329588,356.95066,41.942003,1],[355.48485,43.554388,355.24568,39.353351,353.72494,39.889277,1],[349.14954,41.501672,348.15505,45.753276,347.42214,49.417788,1],[346.68923,53.08231,360.02799,66.419452,367.79677,71.256637,1],[375.56557,76.093792,380.98886,88.554178,380.98886,88.554178,1],[386.11918,93.391353,384.65335,105.41005,387.87815,106.14296,1],[391.10292,106.87586,394.62097,104.82469,402.0966,102.47938,1],[406.62513,101.05867,410.8264,103.30154,414.31857,106.26347,1],[414.27438,105.73723],[414.27438,105.73723,416.26983,103.26986,420.11922,99.80803,1],[419.90931,99.668809,419.71127,99.514491,419.53674,99.332007,1],[414.50382,94.070306,407.18173,93.612094,399.86109,94.069629,1],[392.54048,94.527171,390.02467,89.267141,389.33836,82.404031,1],[388.65206,75.540962,375.84156,63.414633,374.24017,58.152925,1],[372.63878,52.891218,389.11054,49.002938,385.90777,43.283708,1],[382.70498,37.564447,388.65309,34.132802,392.77095,34.132802,1],[395.32255,34.132802,399.18515,27.024343,401.75917,21.611567,1],[401.75917,21.611567],null,[307.44819,34.092632],[302.15324,34.104098,300.05824,35.087,299.0505,40.767008,1],[297.43811,49.855021,284.39283,68.325655,272.81294,73.455988,1],[261.23305,78.586321,269.44236,90.753107,275.45216,89.287296,1],[281.46199,87.821485,283.07252,88.553095,282.92594,91.777885,1],[282.77935,95.002654,283.51325,102.62474,279.40899,105.26322,1],[278.79722,105.65649,277.86671,106.03448,276.76976,106.40005,1],[281.46382,112.32915,286.83924,121.11253,285.71178,129.28133,1],[289.65187,130.55522,292.79084,132.3295,295.08564,135.93562,1],[299.43084,142.76382,297.9733,157.07686,293.76201,160.76519,1],[302.1063,162.77455,309.81826,164.67258,311.80271,165.06949,1],[315.46724,165.80239,339.94707,171.95892,349.32825,179.43456,1],[358.70942,186.91019,355.92382,186.02966,361.20072,182.8049,1],[366.47763,179.58012,370.28946,177.38173,377.47191,176.94196,1],[384.65437,176.50224,383.62816,168.14585,383.92132,165.65397,1],[384.21448,163.1621,384.50673,159.64536,394.62082,155.98085,1],[399.99572,154.03342,401.35614,152.59505,402.90202,152.3233,1],[401.32116,149.90059,404.93024,146.23486,403.06472,141.198,1],[400.77702,135.02121,403.52233,132.9617,407.64017,127.01369,1],[410.59981,122.73868,419.98918,121.55324,425.0763,121.21504,1],[423.32917,115.88304,418.14594,116.95912,412.35823,111.56602,1],[405.90866,105.55621,400.04396,106.5816,393.44782,109.22004,1],[386.85168,111.8585,390.51658,116.8434,387.73152,120.06817,1],[384.9465,123.29293,379.23014,132.38286,374.97931,133.5555,1],[370.72846,134.72814,371.90154,143.37383,369.55625,145.42597,1],[367.21094,147.4781,365.15786,150.4098,359.29463,152.60851,1],[353.43139,154.80723,345.80886,158.32671,344.34305,150.99766,1],[342.87725,143.66862,342.43786,141.17566,345.51604,140.29616,1],[348.59425,139.41668,356.6556,140.58882,357.38852,138.53668,1],[358.12141,136.48454,358.4157,132.96701,361.20072,132.96701,1],[363.98575,132.96701,364.86466,136.19084,373.0732,129.74129,1],[381.28173,123.29173,383.03972,120.21517,383.47944,114.64511,1],[383.91918,109.07503,384.50694,105.41041,381.42872,107.31595,1],[378.35053,109.22149,366.33025,120.36123,358.41489,119.77491,1],[350.49952,119.18861,350.64585,119.33505,350.64585,119.33505,1],[350.64585,119.33505,362.81246,117.43022,365.89067,114.93836,1],[368.96886,112.44648,380.40244,103.79764,380.69561,99.10704,1],[380.98877,94.416477,369.70276,75.361029,362.37372,71.696507,1],[355.04467,68.031995,336.72227,52.202966,335.40304,36.079076,1],[335.40304,36.079076,336.72008,34.02443,320.88934,34.317588,1],[314.95282,34.427521,310.62515,34.085762,307.44819,34.092632,1],[307.44819,34.092632],null,[319.76455,40.295001],[320.79403,40.295001,321.85044,40.366451,322.99429,40.538035,1],[327.56969,41.224339,331.5739,48.77453,335.11984,54.951314,1],[338.66576,61.128098,340.38284,66.846691,343.35686,67.761778,1],[346.33086,68.676854,350.22023,70.73587,350.44901,74.624957,1],[350.67777,78.514024,347.47473,83.089993,345.64459,86.521537,1],[343.81442,89.953092,347.70128,102.07732,343.12588,106.19518,1],[338.5505,110.31304,333.97594,118.31989,330.54439,115.11711,1],[327.11283,111.91433,325.96822,102.30504,318.41884,102.76258,1],[310.86944,103.22011,310.64269,102.30648,304.92346,104.36541,1],[299.20421,106.42433,297.14519,108.94068,295.77256,113.28734,1],[294.39998,117.63395,282.27542,114.20338,284.79187,109.85675,1],[287.30835,105.51014,290.18134,101.1074,291.42607,97.502224,1],[292.67078,93.897049,294.85602,93.841583,291.88201,88.122342,1],[288.90802,82.403102,289.36646,82.404818,283.87598,81.032198,1],[278.38551,79.659589,277.01217,80.802378,276.32588,77.599604,1],[275.63957,74.396822,279.07266,73.482079,287.0796,71.194372,1],[295.08653,68.906676,304.23542,42.140223,309.72588,41.453929,1],[313.84376,40.939187,316.67617,40.295001,319.76455,40.295001,1],[319.76455,40.295001],null,[314.58052,54.360803],[312.87192,54.364402,311.38506,54.436178,310.41279,54.493366,1],[306.52371,54.722138,301.94766,65.245331,305.15043,70.049505,1],[308.35321,74.853669,307.8967,76.455544,306.2953,77.370631,1],[304.69392,78.285717,302.17779,83.54689,302.17779,83.54689,1],[300.5764,87.893511,308.81301,100.70534,325.74197,93.384716,1],[342.67093,86.064074,322.30862,83.090074,325.96894,77.599604,1],[329.62926,72.109136,329.63109,62.95727,328.0297,58.381899,1],[326.82866,54.950355,319.70639,54.350077,314.58052,54.360803,1],[314.58052,54.360803],null,[319.29456,105.10655],[320.81544,105.20046,321.90643,107.40406,322.35758,108.92881,1],[322.91832,110.82385,323.23851,113.89808,321.47584,114.79173,1],[319.50705,115.7899,316.28087,113.81851,315.6129,111.71465,1],[314.8657,109.36116,316.53554,105.42657,318.98524,105.1166,1],[319.09041,105.10328,319.19313,105.10027,319.29456,105.10655,1],[319.29456,105.10655],null,[269.04894,108.41863],[268.21524,108.61221,267.40409,108.80397,266.59048,108.99709,1],[267.40294,108.80392,268.21623,108.61226,269.04894,108.41863,1],[269.04894,108.41863],null,[417.19278,108.98303],[417.50899,109.30936,417.81893,109.63115,418.11671,109.95115,1],[417.81606,109.62895,417.51218,109.31161,417.19278,108.98303,1],[417.19278,108.98303],null,[264.29673,109.56149],[263.74287,109.70348,263.1984,109.84782,262.69191,109.99132,1],[263.19803,109.84767,263.74319,109.70364,264.29673,109.56149,1],[264.29673,109.56149],null,[302.44894,110.06363],[303.12508,110.06883,303.75099,110.25623,304.1803,110.68828,1],[305.8121,112.33047,305.35729,116.51481,303.30056,117.57757,1],[301.8247,118.34016,299.67848,116.70119,298.90387,115.2316,1],[298.28492,114.05739,298.40785,112.21601,299.34173,111.27277,1],[300.05595,110.55139,301.32206,110.05497,302.44894,110.06363,1],[302.44894,110.06363],null,[260.90431,110.53965],[260.7874,110.57991,260.68217,110.6217,260.5709,110.66217,1],[260.68199,110.6217,260.78758,110.57992,260.90431,110.53965,1],[260.90431,110.53965],null,[418.79761,110.68427],[419.26168,111.19371,419.71775,111.69749,420.12725,112.15251,1],[419.71401,111.69335,419.26694,111.19814,418.79761,110.68427,1],[418.79761,110.68427],null,[259.82171,110.95341],[259.70536,111.00292,259.59684,111.05414,259.4903,111.10405,1],[259.59702,111.05397,259.70514,111.00311,259.82171,110.95341,1],[259.82171,110.95341],null,[258.93193,111.39931],[258.82919,111.45998,258.71904,111.51873,258.63265,111.58007,1],[258.71866,111.51886,258.82968,111.45985,258.93193,111.39931,1],[258.93193,111.39931],null,[258.49005,111.68452],[258.45905,111.70947,258.42981,111.73576,258.40167,111.76084,1],[258.42981,111.73573,258.45904,111.70954,258.49005,111.68452,1],[258.49005,111.68452],null,[258.24902,111.9155],[258.22806,111.93949,258.20499,111.96373,258.18676,111.98781,1],[258.20492,111.96371,258.22812,111.93952,258.24902,111.9155,1],[258.24902,111.9155],null,[258.09035,112.14648],[258.079,112.1694,258.06296,112.19173,258.05419,112.21477,1],[258.06293,112.19183,258.07907,112.16933,258.09035,112.14648,1],[258.09035,112.14648],null,[310.28827,114.149],[310.66458,114.16269,311.04798,114.21563,311.44117,114.31571,1],[317.73235,115.91711,321.28058,118.20551,320.82306,121.8658,1],[320.36551,125.52612,321.85156,127.92959,324.25365,127.92959,1],[326.65573,127.92959,330.65914,129.30117,328.71461,133.53341,1],[326.77007,137.76564,322.53816,139.2533,315.56068,136.50806,1],[308.58319,133.76281,303.89215,137.87867,302.8627,129.75735,1],[302.8627,129.75735,302.97827,127.35712,301.94882,125.06943,1],[300.98367,122.92471,304.6433,113.94375,310.28827,114.149,1],[310.28827,114.149],null,[327.14995,119.3009],[327.65486,119.30683,328.12507,119.40806,328.51376,119.62829,1],[330.25884,120.61691,330.43992,124.47327,328.807,125.63784,1],[326.87901,127.01285,322.33991,125.36509,322.20895,123.00063,1],[322.10189,121.06768,324.962,119.27531,327.14995,119.3009,1],[327.14995,119.3009],null,[295.31059,121.05637],[295.86357,121.03759,296.39028,121.09497,296.85114,121.24115,1],[298.85113,121.87542,300.35598,124.79227,299.78361,126.81083,1],[299.44298,128.01204,297.80644,128.7211,296.5579,128.71693,1],[293.99378,128.70831,289.87431,127.32273,289.96184,124.76011,1],[290.03337,122.66631,292.91455,121.1378,295.31059,121.05637,1],[295.31059,121.05637],null,[529.9562,124.70588],[526.83951,130.24553,522.94903,134.14141,522.0526,135.00165,1],[521.92829,135.41517,521.83188,135.74019,521.60068,136.52613,1],[521.60068,136.53015],[521.205,139.1292],[521.06844,140.77396,520.972,142.88511,520.972,145.71922,1],[520.972,157.15253,524.05109,161.11065,524.05109,161.11065,1],[528.30193,168.73284,549.99687,164.62852,568.9058,167.70671,1],[587.81473,170.7849,586.6414,181.19313,587.37432,185.00424,1],[588.10724,188.81534,583.12452,196.29106,577.1147,199.22269,1],[571.10488,202.1543,565.24014,202.59525,558.05768,203.32815,1],[550.87523,204.06104,551.17048,210.21684,551.46364,215.054,1],[551.75681,219.89116,558.93857,221.06333,562.89625,220.33043,1],[565.57878,219.83366,563.75304,217.72331,563.29997,216.55036,1],[561.72213,216.04461,560.32452,215.59584,559.53998,214.57597,1],[557.92234,212.47301,556.14263,210.36901,560.18673,208.42783,1],[564.23084,206.48665,572.15839,207.78014,574.74663,205.51545,1],[577.33485,203.25073,581.86462,202.11993,584.61459,198.07582,1],[587.36459,194.03172,591.40747,192.73557,591.40747,187.5591,1],[591.40743,182.3826,593.99693,180.60384,588.82047,173.64796,1],[583.644,166.69208,582.18612,162.97195,578.30375,153.75137,1],[574.42141,144.53077,559.70267,150.19364,555.49679,145.17893,1],[551.2909,140.16422,530.90962,130.29595,530.10082,125.44301,1],[530.06575,125.23271,530.00922,124.96457,529.9562,124.70588,1],[529.9562,124.70588],null,[336.92753,125.46712],[337.64411,125.49191,338.31042,125.70165,338.77338,126.15002,1],[339.81111,127.15509,339.45068,129.40633,338.48013,130.47641,1],[337.28209,131.79727,334.507,132.56909,333.20169,131.35415,1],[332.0522,130.28421,332.53658,127.77807,333.64357,126.66421,1],[334.40075,125.90233,335.73324,125.42583,336.92753,125.46712,1],[336.92753,125.46712],null,[364.50679,136.52613],[363.14436,136.48085,361.15442,137.37523,359.44124,138.68531,1],[356.94938,140.59086,358.41489,143.81512,358.41489,143.81512,1],[358.41489,143.81512,360.32138,150.70346,361.6406,147.33208,1],[362.95983,143.96072,363.69213,146.16041,366.47716,143.81512,1],[369.26221,141.46982,366.77015,138.68486,365.89067,137.21908,1],[365.61585,136.76099,365.12607,136.54671,364.50679,136.52613,1],[364.50679,136.52613],null,[438.1539,152.31526],[438.12814,152.7103,438.08577,153.08401,438.03138,153.44407,1],[438.08572,153.08438,438.12815,152.70987,438.1539,152.31526,1],[438.1539,152.31526],null,[403.98463,152.31929],[403.99609,152.32101,404.00922,152.32349,404.02078,152.3253,1],[404.00932,152.32353,403.996,152.32097,403.98463,152.31929,1],[403.98463,152.31929],null,[437.95706,153.83171],[437.91495,154.05776,437.87413,154.28404,437.82048,154.49653,1],[437.8742,154.28391,437.91491,154.05789,437.95706,153.83171,1],[437.95706,153.83171],null,[437.71403,154.86411],[437.65644,155.05941,437.59687,155.25256,437.52924,155.43654,1],[437.5969,155.25266,437.65642,155.05932,437.71403,154.86411,1],[437.71403,154.86411],null,[403.91834,155.50081],[403.67785,155.49341,403.44552,155.49649,403.22138,155.50684,1],[399.33648,155.68626,397.74432,158.41696,392.86133,160.0843,1],[386.85155,162.13645,388.46459,165.94905,388.31802,172.25203,1],[388.17143,178.55499,381.72178,177.67551,374.09957,179.14132,1],[366.47736,180.60714,358.2691,188.08168,361.20072,189.25431,1],[364.13235,190.42697,367.06476,198.92917,370.87587,197.90309,1],[374.68695,196.87704,387.73138,190.28058,394.18095,189.98743,1],[400.63048,189.69426,420.4192,207.43032,429.65376,209.92219,1],[430.69972,210.20441,431.6007,210.32985,432.40345,210.34197,1],[428.79879,197.48869,426.1281,190.38244,430.77453,181.0896,1],[433.9593,174.72005,437.34867,170.5119,440.62641,168.29722,1],[438.18134,166.63035,435.90228,167.26726,431.6623,166.82094,1],[428.34736,166.47201,428.62016,163.49207,428.93872,162.08279,1],[428.26961,162.34029,427.58062,162.59864,426.86791,162.87014,1],[420.71151,165.21544,416.02292,161.25874,412.94472,159.35319,1],[409.86654,157.44763,412.79624,157.3,406.34667,155.83422,1],[405.4397,155.62807,404.63979,155.523,403.91834,155.50081,1],[403.91834,155.50081],null,[437.3786,155.81013],[437.30814,155.97702,437.23267,156.14056,437.15364,156.2982,1],[437.23268,156.14065,437.30813,155.97693,437.3786,155.81013,1],[437.3786,155.81013],null,[274.27716,156.2741],[275.54325,156.53424,277.00737,156.8518,278.56941,157.20003,1],[277.0027,156.85017,275.54726,156.53509,274.27716,156.2741,1],[274.27716,156.2741],null,[436.97489,156.63563],[436.89072,156.785,436.79991,156.93032,436.70775,157.07149,1],[436.79993,156.93033,436.8907,156.78499,436.97489,156.63563,1],[436.97489,156.63563],null,[436.49284,157.39285],[436.38925,157.53545,436.27752,157.67017,436.16545,157.8046,1],[436.27752,157.67021,436.38925,157.53538,436.49284,157.39285,1],[436.49284,157.39285],null,[435.95656,158.05767],[435.82575,158.20239,435.68566,158.33774,435.54481,158.47344,1],[435.68555,158.33787,435.82581,158.20224,435.95656,158.05767,1],[435.95656,158.05767],null,[435.33391,158.68032],[435.12628,158.86761,434.90988,159.04682,434.68314,159.21861,1],[434.90998,159.04674,435.1262,158.8677,435.33391,158.68032,1],[435.33391,158.68032],null,[268.77779,159.33711],[268.59508,159.35591,268.41268,159.37853,268.23548,159.40741,1],[268.41306,159.37847,268.59466,159.35592,268.77779,159.33711,1],[268.77779,159.33711],null,[434.45216,159.3813],[434.28336,159.50259,434.11419,159.62229,433.93597,159.73682,1],[434.11391,159.62242,434.28362,159.50242,434.45216,159.3813,1],[434.45216,159.3813],null,[271.50338,159.38332],[271.72059,159.40707,271.96507,159.44341,272.19833,159.47571,1],[271.96686,159.44367,271.71905,159.40693,271.50338,159.38332,1],[271.50338,159.38332],null,[267.90206,159.46768],[267.72698,159.50291,267.55154,159.54492,267.37783,159.5902,1],[267.55199,159.54478,267.72653,159.50298,267.90206,159.46768,1],[267.90206,159.46768],null,[273.6987,159.71874],[273.93019,159.76097,274.15438,159.80076,274.4017,159.84929,1],[274.15862,159.80163,273.92643,159.7603,273.6987,159.71874,1],[273.6987,159.71874],null,[433.61259,159.93365],[433.45499,160.02893,433.29665,160.12557,433.13255,160.21685,1],[433.29651,160.1256,433.4551,160.02891,433.61259,159.93365,1],[433.61259,159.93365],null,[432.78306,160.40365],[432.64204,160.478,432.49852,160.55242,432.35324,160.62459,1],[432.49837,160.55247,432.64218,160.47796,432.78306,160.40365,1],[432.78306,160.40365],null,[263.97738,160.94194],[263.33116,161.25178,262.62913,161.59484,261.8182,161.9904,1],[262.63839,161.5903,263.32536,161.25429,263.97738,160.94194,1],[263.97738,160.94194],null,[430.94324,161.27134],[430.51539,161.45464,430.06759,161.63461,429.61359,161.81365,1],[430.06684,161.63489,430.51601,161.4544,430.94324,161.27134,1],[430.94324,161.27134],null,[290.51821,163.1192],[288.96095,166.53382,290.62253,174.37814,269.69167,180.54528,1],[266.79656,181.39831,263.94744,182.1553,261.15136,182.82498,1],[260.32528,184.30654,258.91352,185.76409,256.68839,186.91034,1],[251.85122,189.40221,245.54702,193.21314,245.54702,193.21314,1],[245.54702,193.21314,247.16211,191.45374,254.93091,184.85762,1],[255.28075,184.56055,255.5876,184.27367,255.87693,183.98993,1],[236.94419,187.70873,221.72144,185.84158,218.08225,171.64143,1],[211.6723,171.72357,203.04129,170.70527,196.73549,171.51891,1],[187.64749,172.69156,186.18326,175.9162,174.45678,177.96833,1],[174.33084,177.99038,174.20227,178.0036,174.07515,178.02256,1],[176.76333,178.41339,179.65033,178.67712,182.75806,178.7155,1],[201.28841,178.94426,213.64367,186.72113,204.95042,186.2636,1],[196.25719,185.80605,193.28309,188.32434,184.58985,186.03664,1],[175.8966,183.74895,161.7137,194.49988,156.22325,200.44791,1],[153.23688,203.68314,154.03118,208.52222,154.72287,212.83457,1],[158.2511,212.73972,160.43637,212.05635,162.72891,209.62894,1],[165.22078,206.99048,168.15398,202.4464,168.15398,202.4464,1],[168.15398,202.4464,167.27281,208.16447,162.43566,214.32088,1],[162.43566,214.32088,162.28949,215.93207,163.75528,217.10472,1],[165.2211,218.27737,167.85963,221.94227,164.04852,225.31362,1],[160.23742,228.68497,153.34927,234.98742,154.22877,237.33272,1],[155.10826,239.678,155.40145,240.11839,161.26468,239.53208,1],[167.12792,238.94576,180.7603,235.42856,183.25217,235.282,1],[185.74402,235.13541,190.87346,234.10945,194.09828,235.57525,1],[197.32303,237.04106,200.54821,239.3129,202.30718,242.02467,1],[204.06616,244.7364,208.16921,251.99014,211.98031,262.69053,1],[215.79144,273.39094,227.23003,267.98271,241.44357,263.42365,1],[249.21236,260.93179,255.32709,265.77815,271.3467,261.22631,1],[281.46826,258.35036,278.52929,273.5388,299.49036,253.31065,1],[299.49036,253.31065,303.15574,248.47392,309.31212,247.8876,1],[315.46853,247.30128,325.72666,244.95547,328.36513,246.12812,1],[331.00356,247.30076,335.54834,248.912,344.78293,269.87307,1],[344.78293,269.87307,345.80872,273.83169,350.79248,273.09878,1],[355.77623,272.36586,361.34655,270.9003,365.4508,273.8319,1],[369.55507,276.76354,380.40271,288.34279,381.57535,292.44704,1],[382.748,296.55129,383.92026,299.04492,387.14503,298.45861,1],[390.36981,297.87226,398.87177,295.67301,401.94997,296.5525,1],[405.02816,297.432,410.89046,299.77711,412.50284,302.8553,1],[412.50284,302.8553,414.26427,305.63981,413.97109,307.98511,1],[413.67795,310.33039,407.3719,319.41834,410.45012,328.50636,1],[412.70708,335.16975,414.87561,336.85344,415.87719,337.28568,1],[416.21866,337.38525,416.46167,337.44837,416.46167,337.44837,1],[416.46167,337.44837,416.24161,337.44295,415.87719,337.28568,1],[413.93663,336.71981,407.47567,334.33762,407.22641,327.48199,1],[406.93322,319.42006,407.2268,320.88483,408.54601,317.07375,1],[409.86526,313.26262,412.06391,308.86555,408.3994,304.32153,1],[404.73488,299.77751,401.21774,300.50932,397.26004,300.50932,1],[393.30236,300.50932,383.33425,300.80218,381.28211,306.37225,1],[379.22998,311.94232,377.47016,317.80708,378.34963,325.42927,1],[379.22912,333.05148,378.05628,333.05064,370.72723,336.422,1],[363.89319,339.56566,357.31514,339.90923,356.81408,347.07128,1],[360.9147,346.86125,365.21392,345.2859,366.71617,345.11898,1],[369.62793,344.79544,390.17207,359.1919,396.15735,359.03013,1],[402.14266,358.86838,412.33459,361.62006,417.67282,363.88477,1],[423.01105,366.14948,427.2177,351.10428,426.57065,347.22193,1],[425.92356,343.33959,431.09929,338.16295,428.18752,326.51589,1],[425.27575,314.86884,432.71722,319.07565,423.33489,307.75212,1],[416.71171,299.75864,423.9496,295.22756,428.09915,288.64689,1],[427.94172,288.45816,427.7481,288.22839,427.60103,288.05035,1],[424.81599,284.67899,427.60103,282.33405,427.60103,282.33405,1],[428.33415,284.53139],[428.43504,285.64106,428.69546,286.41136,429.04115,286.99386,1],[430.22471,284.66449,430.91231,282.05677,430.45316,278.9577,1],[428.512,265.85475,417.51028,263.26698,423.49557,254.85522,1],[426.10048,251.19425,429.44099,247.68546,432.00978,243.30411,1],[427.46475,244.58577,425.28935,246.16031,423.93746,248.03221,1],[422.0319,250.67066,412.79712,250.08565,409.42576,252.57753,1],[406.05439,255.06939,408.98589,262.10403,408.98589,262.10403,1],[408.98589,262.10403,407.22791,260.05419,405.46894,256.0965,1],[403.70998,252.13883,407.9612,249.20665,406.78855,247.3011,1],[405.61589,245.39555,405.90775,239.09326,409.13252,235.8685,1],[412.3573,232.64372,422.32553,240.11874,432.4396,240.70506,1],[432.74104,240.72251,433.04942,240.72795,433.36354,240.72716,1],[435.83231,235.4608,437.0069,228.88684,434.81972,219.59129,1],[434.29577,217.36447,433.76452,215.30334,433.24102,213.35678,1],[431.94771,213.48654,430.29418,213.44432,427.74766,213.29452,1],[420.27203,212.85477,408.6924,203.61966,400.92362,197.60984,1],[393.15484,191.60006,388.9053,195.70412,384.65444,197.02334,1],[380.4036,198.34256,372.4866,198.34264,372.04684,204.20588,1],[371.60711,210.06912,370.58262,220.77031,370.58262,220.77031,1],[370.58262,220.77031,370.43399,222.96862,370.43399,212.5614,1],[370.43399,202.15415,368.82264,202.30125,353.28508,186.6171,1],[337.74749,170.93296,314.73317,167.70671,314.73317,167.70671,1],[314.73317,167.70671,301.74433,165.29531,290.51821,163.1192,1],[290.51821,163.1192],null,[235.41594,163.89048],[235.1837,163.89627,234.94401,163.91403,234.70693,163.92664,1],[235.10129,163.90554,235.48903,163.8929,235.86988,163.89048,1],[235.71755,163.89134,235.57052,163.88663,235.41594,163.89048,1],[235.41594,163.89048],null,[235.9924,163.89048],[236.355,163.89005,236.70982,163.89826,237.05893,163.91458,1],[236.71033,163.89797,236.35452,163.8903,235.9924,163.89048,1],[235.9924,163.89048],null,[237.28187,163.92664],[237.6061,163.94522,237.92457,163.97396,238.23594,164.00697,1],[237.92418,163.97356,237.60655,163.94555,237.28187,163.92664,1],[237.28187,163.92664],null,[234.56231,163.93467],[234.13615,163.9597,233.70317,163.99391,233.26279,164.04111,1],[233.7035,163.99389,234.13573,163.95985,234.56231,163.93467,1],[234.56231,163.93467],null,[238.46089,164.03108],[238.75572,164.06598,239.04245,164.10975,239.32456,164.15761,1],[239.0429,164.1095,238.75524,164.06623,238.46089,164.03108,1],[238.46089,164.03108],null,[239.57965,164.19979],[239.84923,164.24994,240.11025,164.30845,240.36699,164.37052,1],[240.11011,164.30815,239.84937,164.25025,239.57965,164.19979,1],[239.57965,164.19979],null,[240.62208,164.42877],[240.89272,164.49948,241.15253,164.58159,241.40742,164.66577,1],[241.1526,164.58138,240.89261,164.49974,240.62208,164.42877,1],[240.62208,164.42877],null,[241.58015,164.718],[241.88932,164.82524,242.18624,164.9423,242.46993,165.06949,1],[242.18661,164.94248,241.88879,164.82528,241.58015,164.718,1],[241.58015,164.718],null,[144.99351,165.06949],[145.01955,165.18668,145.06251,165.31005,145.11603,165.43906,1],[145.06255,165.31013,145.01953,165.18661,144.99351,165.06949,1],[144.99351,165.06949],null,[145.18633,165.58769],[145.22736,165.67395,145.26886,165.76012,145.32089,165.85081,1],[145.26878,165.76001,145.22741,165.67406,145.18633,165.58769,1],[145.18633,165.58769],null,[145.42936,166.02555],[145.48245,166.10987,145.5364,166.19305,145.59808,166.28064,1],[145.53657,166.1933,145.4823,166.10965,145.42936,166.02555,1],[145.42936,166.02555],null,[145.7668,166.5076],[145.81483,166.57061,145.8634,166.634,145.91543,166.69842,1],[145.86349,166.63413,145.81474,166.57049,145.7668,166.5076,1],[145.7668,166.5076],null,[146.32316,167.15234],[146.50401,167.35253,146.68616,167.55289,146.89961,167.76294,1],[146.68655,167.55319,146.50372,167.35226,146.32316,167.15234,1],[146.32316,167.15234],null,[147.37162,168.20281],[147.5983,168.41115,147.83261,168.6209,148.08666,168.8355,1],[147.83303,168.62118,147.59797,168.41086,147.37162,168.20281,1],[147.37162,168.20281],null,[148.65909,169.3055],[148.92972,169.52194,149.2101,169.73851,149.50468,169.95827,1],[149.21136,169.73935,148.92867,169.52115,148.65909,169.3055,1],[148.65909,169.3055],null,[537.05037,169.81567],[535.21133,169.83403,533.76265,169.94279,532.99312,170.19929,1],[529.9149,171.22535,512.17862,170.49255,512.17862,170.49255,1],[511.88538,173.27838],[511.88538,173.27838,506.46292,173.12985,501.62575,173.423,1],[496.78859,173.71617,498.98495,178.11397,500.45076,181.6319,1],[501.91656,185.14984,509.68552,181.92567,507.92655,183.68464,1],[506.16757,185.44361,500.15828,185.59067,495.90745,185.44411,1],[495.85553,185.44231,495.79953,185.43098,495.74676,185.42805,1],[495.80589,185.78664,495.87132,186.14141,495.94561,186.49257,1],[498.46208,198.38857,500.29101,191.52645,510.35688,198.8471,1],[520.42274,206.16772,516.0784,221.0379,515.16331,226.07084,1],[514.24824,231.10375,525.22913,235.90794,526.37297,241.85595,1],[527.51682,247.80396,517.22001,253.752,512.6446,259.92879,1],[508.06921,266.10557,482.90589,261.07236,478.10174,252.83664,1],[476.20931,249.59246,477.17002,246.49943,479.01361,243.93077,1],[478.49215,244.0341,477.96854,244.13375,477.43892,244.22201,1],[472.16203,245.10149,474.50689,248.76724,469.0834,255.36338,1],[463.65989,261.95953,464.68674,272.21884,464.83333,278.37522,1],[464.9799,284.53161,458.82378,289.66321,458.82378,289.66321,1],[462.63487,280.42862,459.40851,280.86795,460.28801,274.41839,1],[461.16747,267.96882,461.31399,269.14213,459.99476,262.83917,1],[458.67552,256.5362,468.20385,248.03336,468.93677,245.10175,1],[469.66967,242.17013,472.89608,239.97168,474.50846,239.0922,1],[476.12086,238.21272,469.66916,230.59051,467.1773,232.20291,1],[466.13724,232.87589,462.6461,234.42361,458.29754,236.09747,1],[458.70954,243.97905,456.66205,260.27562,450.18706,267.63355,1],[443.06942,275.72179,440.32036,282.8402,444.04093,287.04608,1],[447.76152,291.25195,451.64324,299.66481,457.95207,301.60598,1],[463.42048,303.28858,465.23797,311.39012,465.6267,313.52466,1],[470.61405,314.34798,475.45498,315.39094,478.90315,316.7805,1],[488.72405,320.73817,484.03598,326.45451,494.44322,322.49681,1],[504.85047,318.53913,496.64021,322.20319,502.35686,307.10536,1],[508.07353,292.00754,505.87576,293.32762,505.58258,289.22334,1],[505.28943,285.11909,514.37773,280.27993,520.53414,275.44275,1],[526.69052,270.6056,523.1719,262.39908,525.07746,261.66617,1],[526.98302,260.93326,535.04475,251.40547,538.26955,247.59435,1],[541.49432,243.78326,559.23112,239.38652,560.6969,236.16174,1],[562.16272,232.93697,553.36666,223.99509,549.70215,220.77031,1],[546.03761,217.54555,539.73696,202.5941,557.61981,199.36932,1],[575.50266,196.14455,579.31244,190.57358,580.63166,189.40094,1],[581.9509,188.22828,579.89918,179.43547,575.2086,175.62437,1],[570.51801,171.81326,562.89438,170.78575,556.44482,170.63917,1],[551.60764,170.52924,542.5675,169.76056,537.05037,169.81567,1],[537.05037,169.81567],null,[224.31675,170.86413],[224.24234,170.89027,224.163,170.91185,224.08577,170.93643,1],[224.16293,170.91183,224.24237,170.89028,224.31675,170.86413,1],[224.31675,170.86413],null,[223.71018,171.0469],[223.37989,171.13676,223.02979,171.21723,222.6577,171.28391,1],[223.02902,171.21699,223.38047,171.13684,223.71018,171.0469,1],[223.71018,171.0469],null,[222.36044,171.3301],[222.13497,171.36637,221.896,171.39534,221.65745,171.42451,1],[221.89611,171.39553,222.13485,171.36617,222.36044,171.3301,1],[222.36044,171.3301],null,[220.37801,171.54502],[220.23146,171.55536,220.09022,171.56869,219.94015,171.57716,1],[220.09022,171.56876,220.23145,171.55526,220.37801,171.54502,1],[220.37801,171.54502],null,[249.75691,172.69993],[249.96106,172.79175,250.15512,172.8832,250.35546,172.9751,1],[250.1555,172.88343,249.96062,172.7915,249.75691,172.69993,1],[249.75691,172.69993],null,[251.19503,173.36275],[251.43268,173.47564,251.65979,173.59069,251.88998,173.7042,1],[251.65931,173.59054,251.43317,173.47579,251.19503,173.36275,1],[251.19503,173.36275],null,[252.50661,174.0095],[252.78325,174.15137,253.04552,174.29578,253.30802,174.43932,1],[253.04526,174.29576,252.78352,174.1514,252.50661,174.0095,1],[252.50661,174.0095],null,[486.18008,174.42527],[486.18467,174.57966,486.18737,174.73658,486.19616,174.88723,1],[486.18735,174.73659,486.1847,174.57966,486.18008,174.42527,1],[486.18008,174.42527],null,[253.75591,174.68436],[254.00634,174.82715,254.24079,174.97111,254.47497,175.1162,1],[254.24075,174.97124,254.00637,174.82707,253.75591,174.68436,1],[253.75591,174.68436],null,[486.22427,175.24274],[486.2367,175.39458,486.24583,175.54874,486.26244,175.69667,1],[486.24581,175.54874,486.23672,175.39458,486.22427,175.24274,1],[486.22427,175.24274],null,[254.89476,175.37932],[255.10682,175.51839,255.30211,175.6594,255.49732,175.80112,1],[255.30223,175.65964,255.10666,175.51814,254.89476,175.37932,1],[254.89476,175.37932],null,[255.90706,176.10641],[256.08284,176.24503,256.24317,176.38655,256.40116,176.52821,1],[256.2429,176.38655,256.0831,176.24504,255.90706,176.10641,1],[255.90706,176.10641],null,[486.32068,176.11243],[486.338,176.23403,486.35278,176.35713,486.3729,176.47598,1],[486.3528,176.35729,486.33798,176.23384,486.32068,176.11243,1],[486.32068,176.11243],null,[486.45928,176.90983],[486.48001,177.01161,486.49672,177.11544,486.51953,177.21513,1],[486.49667,177.11528,486.48006,177.01176,486.45928,176.90983,1],[486.45928,176.90983],null,[486.59385,177.50838],[486.63228,177.65948,486.67123,177.81212,486.71435,177.95829,1],[486.67133,177.81235,486.6322,177.65923,486.59385,177.50838,1],[486.59385,177.50838],null,[486.74649,178.06273],[486.80431,178.25224,486.86591,178.4399,486.93128,178.62111,1],[486.86598,178.43995,486.80426,178.25215,486.74649,178.06273,1],[486.74649,178.06273],null,[262.05721,178.46243],[262.067,178.53275,262.06996,178.60729,262.0773,178.67935,1],[262.07008,178.60719,262.06694,178.53284,262.05721,178.46243,1],[262.05721,178.46243],null,[486.9835,178.75568],[487.04864,178.92931,487.11465,179.10189,487.18637,179.26785,1],[487.11472,179.10195,487.04859,178.92923,486.9835,178.75568,1],[486.9835,178.75568],null,[262.10341,179.0188],[262.10543,179.06441,262.10439,179.11323,262.10541,179.1594,1],[262.1045,179.11305,262.10534,179.06456,262.10341,179.0188,1],[262.10341,179.0188],null,[487.23056,179.36628],[487.29999,179.52274,487.37248,179.6766,487.44747,179.82623,1],[487.37242,179.67644,487.30002,179.52291,487.23056,179.36628,1],[487.23056,179.36628],null,[262.10341,179.60529],[262.10147,179.64545,262.09603,179.68732,262.09337,179.72781,1],[262.09614,179.68722,262.10137,179.64556,262.10341,179.60529,1],[262.10341,179.60529],null,[262.04315,180.21187],[262.03834,180.24641,262.03242,180.28159,262.02708,180.31632,1],[262.03254,180.28156,262.03825,180.24644,262.04315,180.21187,1],[262.04315,180.21187],null,[487.73269,180.32233],[487.85051,180.52831,487.96236,180.74092,488.0902,180.93293,1],[487.96242,180.74083,487.85048,180.52836,487.73269,180.32233,1],[487.73269,180.32233],null,[258.13252,180.35849],[258.08977,180.61989,258.01496,180.88746,257.90958,181.16191,1],[258.01504,180.88744,258.08966,180.6199,258.13252,180.35849,1],[258.13252,180.35849],null,[261.92666,180.84054],[261.92011,180.86834,261.91146,180.89504,261.90456,180.92289,1],[261.91139,180.89511,261.9202,180.86825,261.92666,180.84054,1],[261.92666,180.84054],null,[488.44973,181.41498],[488.57086,181.57535,488.68767,181.74332,488.81529,181.89302,1],[488.68767,181.74319,488.57086,181.57547,488.44973,181.41498,1],[488.44973,181.41498],null,[489.21901,182.32083],[489.35194,182.45932,489.4808,182.60431,489.6187,182.73258,1],[489.4812,182.60447,489.35154,182.45906,489.21901,182.32083,1],[489.21901,182.32083],null,[490.11281,183.14835],[490.22865,183.24298,490.34014,183.34536,490.45828,183.43356,1],[490.34025,183.34527,490.22853,183.24306,490.11281,183.14835,1],[490.11281,183.14835],null,[465.78538,183.66856],[466.42846,186.02378,466.72488,188.65649,466.52452,191.60431,1],[465.41434,207.94001,460.11972,211.21882,459.9124,216.3716,1],[459.9124,216.3716,459.9124,216.37362,459.9124,216.37362,1],[461.85436,219.15883,463.44092,221.86282,464.83333,223.70077,1],[468.49784,228.53794,470.25549,226.48631,474.06659,232.34953,1],[477.8777,238.21279,479.63827,238.21246,479.63827,238.21246,1],[483.74252,239.82484,488.43254,232.3507,491.51075,229.41907,1],[493.73799,227.29789,493.8886,222.29286,493.80451,219.66962,1],[492.20144,215.22265,490.36367,208.23661,494.57177,207.76903,1],[500.7486,207.08273,502.80878,202.27969,502.80878,202.27969,1],[502.80878,202.27969,495.48872,198.39008,485.42286,192.67084,1],[478.52374,188.75089,470.32256,185.40886,465.78538,183.66856,1],[465.78538,183.66856],null,[491.0769,183.85335],[491.16704,183.91093,491.25519,183.97594,491.34605,184.0301,1],[491.25519,183.97582,491.16704,183.911,491.0769,183.85335,1],[491.0769,183.85335],null,[492.03297,184.39565],[492.10705,184.4326,492.1797,184.47732,492.25391,184.51215,1],[492.17975,184.4773,492.107,184.43263,492.03297,184.39565,1],[492.03297,184.39565],null,[492.96493,184.8074],[493.03327,184.83344,493.10164,184.86343,493.16981,184.88775,1],[493.10187,184.86343,493.03305,184.83343,492.96493,184.8074,1],[492.96493,184.8074],null,[493.95514,185.13079],[493.98919,185.13991,494.02366,185.15225,494.05758,185.16091,1],[494.02366,185.15223,493.9892,185.13992,493.95514,185.13079,1],[493.95514,185.13079],null,[223.38279,189.56162],[228.85422,189.59003,243.88685,197.29548,245.55505,197.75043,1],[247.33446,198.23572,251.53943,194.19301,262.21589,194.84006,1],[272.89235,195.48713,272.24716,199.36901,270.95303,202.11901,1],[269.65894,204.869,264.80553,206.16282,259.30551,209.07458,1],[253.80551,211.98632,252.99669,218.61916,252.99669,218.61916,1],[251.37904,224.60446,248.9518,226.05971,241.99592,228.32442,1],[235.04003,230.58913,237.46574,225.89795,233.09809,224.11854,1],[228.73045,222.33912,221.45196,215.3837,216.43725,206.32489,1],[211.42253,197.26607,218.05505,190.79439,222.4227,189.66205,1],[222.69567,189.59128,223.01804,189.55972,223.38279,189.56162,1],[223.38279,189.56162],null,[479.03973,200.88577],[479.8874,200.90821,480.64763,201.15194,481.06433,201.67713,1],[481.79447,202.59736,480.49337,204.34567,479.40528,204.78836,1],[477.92764,205.38953,474.80604,204.93101,474.84389,203.33618,1],[474.87886,201.86166,477.17482,200.83643,479.03973,200.88577,1],[479.03973,200.88577],null,[444.05499,205.10169],[444.00095,205.10055,443.95144,205.10382,443.89832,205.1037,1],[444.0213,205.10393,444.1459,205.10799,444.27392,205.11374,1],[444.20143,205.11046,444.12583,205.10318,444.05499,205.10169,1],[444.05499,205.10169],null,[443.61512,205.10772],[443.49609,205.11154,443.38001,205.11889,443.26563,205.1278,1],[443.37965,205.11889,443.49648,205.11157,443.61512,205.10772,1],[443.61512,205.10772],null,[444.53303,205.1278],[444.68865,205.13916,444.84781,205.15631,445.01105,205.176,1],[444.84804,205.15631,444.68843,205.13918,444.53303,205.1278,1],[444.53303,205.1278],null,[443.04067,205.14789],[442.9638,205.15624,442.89256,205.1674,442.81773,205.17802,1],[442.89241,205.1674,442.96396,205.15625,443.04067,205.14789,1],[443.04067,205.14789],null,[445.22998,205.20211],[445.40814,205.22727,445.59483,205.26113,445.78233,205.29652,1],[445.59474,205.2611,445.40822,205.2273,445.22998,205.20211,1],[445.22998,205.20211],null,[445.99926,205.33668],[446.25897,205.39032,446.52643,205.4516,446.80468,205.52549,1],[446.52643,205.4516,446.25897,205.39032,445.99926,205.33668,1],[445.99926,205.33668],null,[441.95607,205.35276],[441.92208,205.36227,441.88918,205.37491,441.85564,205.3849,1],[441.88927,205.37486,441.92202,205.3623,441.95607,205.35276,1],[441.95607,205.35276],null,[441.1165,205.65605],[441.08246,205.67092,441.04566,205.6829,441.01205,205.69823,1],[441.04563,205.68287,441.08248,205.67094,441.1165,205.65605,1],[441.1165,205.65605],null,[447.79288,205.82678],[447.88705,205.85867,447.9788,205.89362,448.07207,205.9272,1],[447.97896,205.89369,447.88689,205.85861,447.79288,205.82678,1],[447.79288,205.82678],null,[440.43359,206.00553],[440.21401,206.13152,440.0031,206.26667,439.79889,206.40925,1],[440.00298,206.26649,440.21411,206.13167,440.43359,206.00553,1],[440.43359,206.00553],null,[448.75096,206.18831],[448.86011,206.23332,448.96845,206.27963,449.07633,206.32689,1],[448.96864,206.2797,448.85992,206.23324,448.75096,206.18831,1],[448.75096,206.18831],null,[449.69095,206.61211],[449.79798,206.66432,449.90455,206.71441,450.01031,206.76878,1],[449.90454,206.7144,449.798,206.66434,449.69095,206.61211,1],[449.69095,206.61211],null,[451.69145,207.75296],[452.11437,208.03126,452.52361,208.32781,452.9247,208.63672,1],[452.52384,208.32787,452.11413,208.03122,451.69145,207.75296,1],[451.69145,207.75296],null,[444.94276,208.75924],[445.01886,208.76353,445.09384,208.7704,445.16973,208.77732,1],[445.09389,208.7704,445.0188,208.76353,444.94276,208.75924,1],[444.94276,208.75924],null,[436.84232,208.82954],[436.67679,208.95462,436.50226,209.06973,436.32814,209.18505,1],[436.50213,209.06966,436.67692,208.95467,436.84232,208.82954,1],[436.84232,208.82954],null,[445.82853,208.86971],[445.87552,208.8787,445.92217,208.88582,445.96913,208.89582,1],[445.92216,208.88582,445.87554,208.8787,445.82853,208.86971,1],[445.82853,208.86971],null,[446.77857,209.11675],[446.82349,209.13173,446.86823,209.15111,446.91314,209.16697,1],[446.86813,209.15107,446.82358,209.13175,446.77857,209.11675,1],[446.77857,209.11675],null,[436.04293,209.36783],[435.88277,209.46473,435.71494,209.5533,435.54481,209.63898,1],[435.715,209.55319,435.88273,209.46487,436.04293,209.36783,1],[436.04293,209.36783],null,[447.57796,209.43211],[447.64998,209.46433,447.72285,209.49609,447.79489,209.53052,1],[447.72287,209.49611,447.64994,209.46433,447.57796,209.43211,1],[447.57796,209.43211],null,[448.5742,209.94027],[448.94546,210.15651,449.31974,210.40729,449.69497,210.67739,1],[449.32005,210.40756,448.94517,210.15635,448.5742,209.94027,1],[448.5742,209.94027],null,[454.56969,210.03065],[454.88783,210.32564,455.19984,210.62888,455.50366,210.93851,1],[455.19984,210.62906,454.88782,210.32547,454.56969,210.03065,1],[454.56969,210.03065],null,[440.35526,210.06881],[439.15783,210.80058,438.29247,211.35098,437.50113,211.81825,1],[438.28381,211.35603,439.18013,210.78695,440.35526,210.06881,1],[440.35526,210.06881],null,[432.96384,210.32992],[432.7846,210.33999,432.60026,210.34473,432.40947,210.34197,1],[432.60029,210.34473,432.78457,210.34,432.96384,210.32992,1],[432.96384,210.32992],null,[450.01634,210.91842],[450.32096,211.14869,450.62719,211.3963,450.93625,211.65957,1],[450.62685,211.396,450.32125,211.14892,450.01634,210.91842,1],[450.01634,210.91842],null,[451.17326,211.86042],[451.55791,212.19689,451.94804,212.55499,452.34223,212.93901,1],[451.94804,212.55505,451.55791,212.19687,451.17326,211.86042,1],[451.17326,211.86042],null,[436.92468,212.14564],[436.69695,212.27233,436.47472,212.38972,436.25984,212.49512,1],[436.47423,212.39017,436.69747,212.27167,436.92468,212.14564,1],[436.92468,212.14564],null,[457.18079,212.79038],[457.30552,212.93832,457.42619,213.08491,457.54836,213.23426,1],[457.42642,213.08529,457.30526,212.93796,457.18079,212.79038,1],[457.18079,212.79038],null,[452.61538,213.21418],[452.8748,213.47219,453.13817,213.74454,453.40274,214.02162,1],[453.13846,213.74486,452.87453,213.4719,452.61538,213.21418,1],[452.61538,213.21418],null,[458.53857,214.48759],[458.61374,214.58657,458.68936,214.68569,458.76353,214.78485,1],[458.68921,214.68546,458.61389,214.58678,458.53857,214.48759,1],[458.53857,214.48759],null,[563.86838,215.75498],[563.82738,215.75381,563.79858,215.75992,563.76193,215.76101,1],[563.88929,215.75749,564.03424,215.76034,564.21586,215.78511,1],[564.08599,215.76739,563.96989,215.75792,563.86838,215.75498,1],[563.86838,215.75498],null,[563.6836,215.76301],[563.57221,215.77206,563.47538,215.78943,563.40642,215.82127,1],[563.476,215.78949,563.57111,215.77182,563.6836,215.76301,1],[563.6836,215.76301],null,[128.02738,215.82127],[122.14028,215.77882,118.01409,216.68781,114.35525,218.31988,1],[115.48404,222.6503],[120.83501,221.26005,124.84816,222.75152,129.01558,224.14064,1],[136.05147,226.48594,143.37953,229.71097,146.45773,231.90967,1],[149.53591,234.10838,151.44378,233.66825,154.37539,230.59005,1],[157.307,227.51182,163.3172,224.57979,162.58429,222.08791,1],[161.91243,219.80358,162.97384,218.84942,155.15672,215.88755,1],[155.39595,218.21122,155.26523,220.1583,153.93553,221.26642,1],[149.81768,224.69796,145.01244,216.92113,132.43009,216.00605,1],[130.85731,215.89167,129.39464,215.83113,128.02738,215.82127,1],[128.02738,215.82127],null,[563.37227,215.84536],[563.32195,215.87533,563.28569,215.91428,563.2598,215.95785,1],[563.28595,215.91448,563.32167,215.87512,563.37227,215.84536,1],[563.37227,215.84536],null,[563.23167,216.00806],[563.21216,216.06133,563.20319,216.11959,563.20758,216.18681,1],[563.2033,216.11968,563.21194,216.06117,563.23167,216.00806,1],[563.23167,216.00806],null,[570.66528,219.15745],[570.60672,219.37493,570.5303,219.58175,570.44635,219.78211,1],[570.53026,219.58179,570.60672,219.37494,570.66528,219.15745,1],[570.66528,219.15745],null,[458.00228,219.17754],[458.48865,219.7377,458.98073,220.30123,459.42835,220.83458,1],[458.98618,220.30781,458.48601,219.73282,458.00228,219.17754,1],[458.00228,219.17754],null,[570.37405,219.93877],[570.30581,220.08699,570.23208,220.23086,570.1511,220.3706,1],[570.23215,220.23077,570.30577,220.08707,570.37405,219.93877,1],[570.37405,219.93877],null,[570.05871,220.52928],[569.95719,220.69162,569.84842,220.84907,569.73131,221.00129,1],[569.84825,220.84928,569.95736,220.69133,570.05871,220.52928,1],[570.05871,220.52928],null,[459.44643,220.85667],[458.80179,224.38429,457.71787,228.05602,457.94604,232.22299,1],[460.32026,230.91459,462.08284,229.81314,462.78061,229.27044,1],[464.67129,227.79991,462.69804,224.73339,459.44643,220.85667,1],[459.44643,220.85667],null,[569.69516,221.0515],[567.81375,223.448,564.1215,224.6862,562.45638,227.65959,1],[560.40426,231.32409,566.70572,232.20367,571.10314,234.84213,1],[575.50055,237.48058,570.37099,238.9453,566.85308,244.95512,1],[563.33514,250.96494,559.81717,250.52506,552.92787,251.40455,1],[546.05551,252.28187,535.6838,256.22353,531.26778,262.20849,1],[532.71385,261.81651,534.67067,261.51045,537.21708,261.6481,1],[543.20236,261.97164,547.57049,255.50074,555.17342,255.98603,1],[562.77637,256.47132,571.0251,251.94207,572.481,249.35383,1],[573.93685,246.76565,579.75964,243.20709,578.30375,236.08944,1],[576.84789,228.97179,579.27559,230.1052,573.61382,227.51699,1],[569.26029,225.52678,570.35224,223.24794,569.69516,221.0515,1],[569.69516,221.0515],null,[114.21866,223.02991],[114.13018,223.05936,114.04074,223.08926,113.95153,223.12029,1],[114.04075,223.08926,114.13018,223.05937,114.21866,223.02991,1],[114.21866,223.02991],null,[112.65602,223.6164],[112.5958,223.64163,112.53382,223.66882,112.47325,223.69474,1],[112.53376,223.66884,112.59586,223.64159,112.65602,223.6164,1],[112.65602,223.6164],null,[111.14761,224.30734],[111.10017,224.33088,111.05464,224.35169,111.00701,224.37563,1],[111.05466,224.35168,111.10016,224.33088,111.14761,224.30734,1],[111.14761,224.30734],null,[109.56287,225.15695],[109.46848,225.21089,109.37284,225.26399,109.27766,225.31964,1],[109.37287,225.26398,109.46845,225.2109,109.56287,225.15695,1],[109.56287,225.15695],null,[530.58688,225.3076],[531.68599,225.3416,532.86023,225.68707,533.71619,226.13913,1],[535.0893,226.86427,536.89186,228.6854,536.20477,230.07788,1],[535.19151,232.13116,531.27991,231.95177,529.36368,230.69851,1],[528.08358,229.86131,527.04145,227.60263,527.91352,226.34601,1],[528.46541,225.55076,529.48778,225.27363,530.58688,225.3076,1],[530.58688,225.3076],null,[108.44211,225.83584],[108.01041,226.104,107.57294,226.38818,107.12451,226.69148,1],[107.57332,226.38793,108.01005,226.1042,108.44211,225.83584,1],[108.44211,225.83584],null,[119.40271,226.9546],[111.52613,227.09701,103.4988,231.62525,95.294206,243.7259,1],[97.022283,244.84128,99.229242,246.51083,101.08885,248.71913,1],[104.74917,253.06575,116.41608,265.64833,120.99146,267.02095,1],[125.56685,268.39357,133.11704,267.01972,135.40474,265.6471,1],[135.54772,265.56133,135.75729,265.58136,136.02538,265.6953,1],[135.57099,263.70904,133.31744,263.05129,132.88804,258.32798,1],[132.4305,253.29506,125.7956,245.74579,118.70373,238.1964,1],[113.38485,232.53434,116.94613,230.34691,123.40171,230.47557,1],[125.55357,230.5185,128.02665,230.81849,130.60031,231.33321,1],[140.89494,233.39216,157.32383,249.58558,159.19589,251.92074,1],[161.06794,254.2559,162.0854,262.29609,163.70305,266.01667,1],[165.32069,269.73725,168.07085,266.66405,184.40908,275.88463,1],[200.7473,285.1052,216.76142,280.57486,234.07023,277.82487,1],[251.37906,275.07487,263.02534,283.32457,258.81944,286.88339,1],[254.61358,290.44222,257.68785,291.57503,250.89375,296.42797,1],[244.09964,301.28091,242.64236,319.07426,234.87765,316.97131,1],[227.11296,314.86838,214.57818,313.494,209.64437,319.88369,1],[204.71055,326.2734,196.86297,319.39902,194.92178,327.00196,1],[191.44691,340.61186,181.33355,340.42813,186.51002,344.47224,1],[191.68648,348.51636,176.64374,356.92704,166.77612,363.55939,1],[156.90848,370.19173,157.23232,362.26616,159.82054,349.00148,1],[162.40877,335.73677,158.85042,327.80954,158.85042,321.17719,1],[158.85042,314.54485,144.2899,308.39917,141.37814,305.64918,1],[139.90467,304.25759,140.71423,301.47722,142.08916,298.64138,1],[139.96248,299.66301,137.89764,300.54693,136.12982,301.09984,1],[136.21159,302.14251,136.01972,303.33554,135.17174,304.46614,1],[132.97305,307.39774,123.44615,317.0736,131.21493,323.52316,1],[138.9837,329.97274,142.20688,324.40333,146.45773,325.86914,1],[150.70857,327.33495,153.34827,330.56679,153.20241,332.02531,1],[152.46951,339.35438,138.15633,363.25656,130.92168,373.50567,1],[125.64476,380.9813,135.94644,381.66044,144.55364,397.39925,1],[149.68395,406.78044,162.29033,379.07651,187.50223,369.2556,1],[187.50223,369.2556,192.04712,368.08284,197.47061,361.92644,1],[202.8941,355.77005,218.43054,350.93306,221.21557,348.73435,1],[224.00062,346.53564,227.37303,343.01864,231.77045,345.07078,1],[235.70659,346.90764,239.16465,350.9754,239.77849,355.2822,1],[239.97872,354.81233,240.17746,354.34371,240.37904,353.85413,1],[242.64376,348.35412,247.01171,344.47163,250.24699,341.55985,1],[253.48229,338.64811,252.83631,339.45662,258.49808,342.2066,1],[261.46795,343.64913,265.85569,344.37298,269.61937,344.43808,1],[269.24629,344.08795,268.8435,343.70524,268.56086,343.45792,1],[265.04294,340.37973,262.55291,338.62052,261.08709,335.68889,1],[259.62129,332.75727,249.35905,338.62087,248.77273,329.97259,1],[248.18639,321.32433,251.119,313.26187,259.03436,307.54523,1],[266.94973,301.82857,272.37297,290.10237,272.07982,287.61048,1],[271.78666,285.11862,262.40406,277.93591,260.20534,272.95216,1],[258.00662,267.96841,253.61084,267.08978,245.10915,268.99534,1],[236.60747,270.90089,225.46581,277.20331,219.16284,273.97852,1],[212.85987,270.75374,210.66085,273.24557,204.21128,259.9067,1],[197.76173,246.56785,198.34873,241.72944,192.77867,241.87603,1],[187.20858,242.02261,169.03385,248.47351,162.58429,246.42136,1],[156.13473,244.36924,151.44291,241.73093,137.51772,233.08265,1],[131.56373,229.38491,125.52894,226.84386,119.40271,226.9546,1],[119.40271,226.9546],null,[106.42955,227.1675],[105.93581,227.5151,105.42982,227.8907,104.91511,228.28224,1],[105.42974,227.89077,105.93588,227.51504,106.42955,227.1675,1],[106.42955,227.1675],null,[104.29046,228.75626],[103.56228,229.32649,102.81888,229.92833,102.04692,230.59005,1],[102.81871,229.92848,103.56242,229.32638,104.29046,228.75626,1],[104.29046,228.75626],null,[457.85767,232.2712],[457.17418,232.64697,456.4302,233.04454,455.6543,233.4462,1],[456.434,233.04274,457.17141,232.64844,457.85767,232.2712,1],[457.85767,232.2712],null,[448.96386,236.5996],[448.11838,236.95992,447.26026,237.31142,446.39493,237.64605,1],[447.2611,237.31113,448.11753,236.96023,448.96386,236.5996,1],[448.96386,236.5996],null,[490.19114,236.5996],[490.0446,236.90991,489.88848,237.20677,489.72516,237.49139,1],[489.88837,237.20699,490.04471,236.90971,490.19114,236.5996,1],[490.19114,236.5996],null,[454.25435,237.58981],[453.70271,237.78605,453.14891,237.97951,452.58727,238.17229,1],[453.1494,237.97985,453.70242,237.78568,454.25435,237.58981,1],[454.25435,237.58981],null,[489.52431,237.81477],[489.41684,237.98884,489.30867,238.16256,489.1949,238.32695,1],[489.30885,238.16243,489.4167,237.98899,489.52431,237.81477,1],[489.52431,237.81477],null,[445.94101,237.82481],[445.76657,237.89095,445.59155,237.95291,445.41678,238.01763,1],[445.59179,237.95283,445.76633,237.89104,445.94101,237.82481,1],[445.94101,237.82481],null,[565.44307,238.53182],[565.06636,238.50856,564.65187,238.60396,564.39663,238.78489,1],[563.64455,239.31804,562.96766,241.0314,563.77398,241.47834,1],[564.79964,242.04679,566.65072,240.09832,566.26256,238.99178,1],[566.15901,238.69658,565.81979,238.55506,565.44307,238.53182,1],[565.44307,238.53182],null,[443.81195,238.59007],[443.58654,238.66701,443.36021,238.74315,443.13508,238.81703,1],[443.36078,238.74293,443.58595,238.66723,443.81195,238.59007,1],[443.81195,238.59007],null,[488.95789,238.64831],[488.85198,238.79035,488.74722,238.93143,488.63653,239.06609,1],[488.74719,238.93162,488.85202,238.79017,488.95789,238.64831,1],[488.95789,238.64831],null,[488.34931,239.39549],[488.23941,239.51891,488.12994,239.64,488.01589,239.75703,1],[488.13011,239.63997,488.23924,239.51895,488.34931,239.39549,1],[488.34931,239.39549],null,[414.52142,239.63451],[413.48363,239.67601,412.49983,239.96607,411.76972,240.55643,1],[410.08723,241.91688,409.44321,245.5463,411.03861,247.00786,1],[413.20776,248.99505,417.95286,247.62587,419.68538,245.24838,1],[420.46712,244.17565,420.19012,242.22405,419.24551,241.29155,1],[418.13183,240.19219,416.25103,239.56539,414.52142,239.63451,1],[414.52142,239.63451],null,[439.05172,239.96994],[438.85002,240.01679,438.64906,240.06157,438.44915,240.10451,1],[438.64935,240.06147,438.84973,240.01688,439.05172,239.96994,1],[439.05172,239.96994],null,[487.71662,240.04827],[487.60284,240.15651,487.48857,240.26296,487.37115,240.36561,1],[487.48862,240.26306,487.60279,240.15641,487.71662,240.04827,1],[487.71662,240.04827],null,[446.18002,240.1969],[445.97356,240.25549,445.76841,240.31291,445.5634,240.36963,1],[445.76905,240.31258,445.97294,240.25585,446.18002,240.1969,1],[446.18002,240.1969],null,[436.92065,240.39374],[436.72981,240.42524,436.53461,240.46499,436.34622,240.49215,1],[436.53476,240.46494,436.72965,240.42529,436.92065,240.39374,1],[436.92065,240.39374],null,[436.19959,240.51023],[435.76214,240.57082,435.33234,240.61746,434.9101,240.65284,1],[435.33274,240.6174,435.76166,240.57095,436.19959,240.51023,1],[436.19959,240.51023],null,[487.02367,240.66087],[486.91684,240.74695,486.80773,240.82795,486.69829,240.90993,1],[486.80767,240.82813,486.91691,240.74676,487.02367,240.66087,1],[487.02367,240.66087],null,[443.91841,240.80749],[443.6579,240.87403,443.39559,240.93971,443.1391,241.00232,1],[443.39625,240.93943,443.65728,240.87435,443.91841,240.80749,1],[443.91841,240.80749],null,[486.30462,241.19514],[486.2011,241.26627,486.09486,241.33211,485.98928,241.40001,1],[486.09499,241.33214,486.20098,241.26624,486.30462,241.19514,1],[486.30462,241.19514],null,[441.61863,241.35181],[441.39392,241.40082,441.16385,241.45735,440.94376,241.50245,1],[441.16421,241.45725,441.39363,241.40096,441.61863,241.35181,1],[441.61863,241.35181],null,[485.55744,241.67116],[485.48171,241.71572,485.40312,241.75662,485.32645,241.79971,1],[485.40324,241.75663,485.48158,241.71571,485.55744,241.67116,1],[485.55744,241.67116],null,[435.95053,242.39224],[435.76269,242.42863,435.5683,242.46371,435.38613,242.50069,1],[435.56784,242.46367,435.76313,242.42866,435.95053,242.39224,1],[435.95053,242.39224],null,[433.11648,243.01287],[432.745,243.10615,432.3775,243.20144,432.03388,243.29809,1],[432.3775,243.20142,432.74568,243.10621,433.11648,243.01287,1],[433.11648,243.01287],null,[480.87151,243.50697],[480.69105,243.55341,480.50756,243.59428,480.32519,243.63752,1],[480.50757,243.5943,480.69102,243.55336,480.87151,243.50697,1],[480.87151,243.50697],null,[559.21459,243.55317],[557.85339,243.38489,555.53807,244.99696,556.10337,246.24662,1],[556.7357,247.6445,560.05001,247.03168,560.66476,245.62598,1],[561.00275,244.8532,560.05169,243.65664,559.21459,243.55317,1],[559.21459,243.55317],null,[552.68082,245.99957],[551.36482,245.969,549.48255,246.39567,549.67806,247.48991,1],[550.0064,249.32776,554.62536,249.44874,555.27586,247.69879,1],[555.58415,246.86935,554.07903,246.16505,553.20304,246.03974,1],[553.04585,246.01726,552.86883,246.00396,552.68082,245.99957,1],[552.68082,245.99957],null,[324.55894,251.09322],[324.26914,251.08232,323.97493,251.08841,323.67719,251.1113,1],[314.14944,251.84421,309.31186,250.08705,301.54308,257.41611,1],[293.77431,264.74515,293.18823,269.43484,281.60834,268.1156,1],[270.02845,266.79638,260.93861,268.40689,268.41424,275.44275,1],[275.88986,282.47865,280.43316,285.41189,279.84685,288.05035,1],[279.26052,290.68881,280.14104,299.19015,283.3658,300.65595,1],[286.59058,302.12175,292.30849,301.9764,294.65379,304.90802,1],[296.99908,307.83963,303.88705,313.11692,303.88705,313.11692,1],[303.88705,313.11692,293.47996,306.51887,290.40172,306.51887,1],[287.32354,306.51887,281.02138,308.7172,279.40899,305.19927,1],[277.79659,301.68132,277.06305,295.37885,277.20963,293.03354,1],[277.20963,293.03354,277.0627,288.05107,276.03665,290.54295,1],[275.01057,293.03483,273.6923,298.45861,272.37307,298.45861,1],[271.05385,298.45861,269.58768,301.09441,271.20008,303.14653,1],[272.81244,305.19867,267.2419,304.32139,262.55131,310.77095,1],[257.86073,317.22051,253.16982,310.47702,254.48903,328.7996,1],[254.48903,328.7996,255.22265,331.73207,256.98163,331.73207,1],[258.7406,331.73207,263.72475,331.43756,265.33715,333.92941,1],[266.61591,335.90566,270.36333,341.16301,273.03789,344.29347,1],[273.03789,344.29347,273.03991,344.29347,273.03991,344.29347,1],[274.85219,344.08171,276.23543,343.65463,276.77579,343.01604,1],[278.5552,340.9131,280.98182,338.00118,278.55536,337.03059,1],[276.12888,336.06001,280.65831,333.63321,289.07006,333.47146,1],[297.48184,333.30969,301.36496,323.44312,314.79142,324.89901,1],[328.21788,326.3549,346.17284,332.34021,348.27577,341.72254,1],[349.04728,345.1646,351.34536,346.57824,354.08648,346.97689,1],[354.48098,341.02322,354.10347,340.95935,360.61423,337.88824,1],[368.38303,334.2237,376.29884,332.757,376.00567,327.77324,1],[375.71252,322.78949,372.63426,317.80588,375.85905,307.39862,1],[379.08382,296.99139,383.33451,298.31009,375.41917,291.86055,1],[367.50378,285.41097,365.74363,273.97739,357.38852,277.05561,1],[349.03341,280.13379,346.24806,280.86786,342.43695,274.12515,1],[338.74496,267.59312,333.54272,251.43067,324.55894,251.09322,1],[324.55894,251.09322],null,[317.81829,255.21876],[319.43088,255.23899,321.21957,255.34021,323.20117,255.50197,1],[331.12764,256.14904,335.01137,265.85306,332.90844,269.89717,1],[330.8055,273.94129,332.586,278.3111,330.64481,282.19345,1],[328.70366,286.07579,329.99683,289.63386,330.48213,296.42797,1],[330.96742,303.22209,334.36369,311.47271,327.89312,314.06093,1],[321.42252,316.64916,320.45209,315.19391,314.9521,312.76744,1],[309.4521,310.34096,309.29033,303.86961,300.23151,299.66372,1],[291.1727,295.45785,287.45102,292.86928,287.77455,289.79577,1],[288.0981,286.72224,285.83351,283.00213,283.2453,280.41388,1],[280.65705,277.82567,285.18648,273.78138,289.55412,272.3255,1],[293.92177,270.86962,301.52702,263.42766,301.52702,263.42766,1],[304.60054,260.83943,304.92314,260.35382,307.67315,257.7656,1],[309.73564,255.82441,312.98051,255.15812,317.81829,255.21876,1],[317.81829,255.21876],null,[390.40891,262.34908],[391.02044,262.31473,392.31168,262.50987,392.86133,264.59865,1],[393.59424,267.38369,386.11975,268.99459,382.89497,266.35612,1],[379.67019,263.71768,390.0775,262.39728,390.0775,262.39728,1],[390.0775,262.39728,390.20508,262.36054,390.40891,262.34908,1],[390.40891,262.34908],null,[429.04517,286.99989],[429.11618,287.11897,429.19008,287.2314,429.26813,287.33531,1],[429.19022,287.23146,429.1161,287.11881,429.04517,286.99989,1],[429.04517,286.99989],null,[430.26637,288.27129],[430.64982,288.54474,431.04593,288.79369,431.43132,289.06065,1],[431.04624,288.79247,430.64956,288.5458,430.26637,288.27129,1],[430.26637,288.27129],null,[428.42855,289.04458],[428.95351,289.67212,429.50866,290.33788,430.07756,291.03102,1],[429.49296,290.31801,428.96639,289.68749,428.42855,289.04458,1],[428.42855,289.04458],null,[431.72657,289.27556],[431.78682,289.32258,431.84462,289.37196,431.90333,289.42219,1],[431.84444,289.37202,431.78699,289.32249,431.72657,289.27556,1],[431.72657,289.27556],null,[432.28897,289.79778],[432.31765,289.82958,432.34933,289.85488,432.37734,289.88816,1],[432.34929,289.85495,432.31769,289.82954,432.28897,289.79778,1],[432.28897,289.79778],null,[432.39944,289.91829],[432.48639,290.02365,432.56933,290.13789,432.64849,290.25974,1],[432.56944,290.13834,432.48628,290.02324,432.39944,289.91829,1],[432.39944,289.91829],null,[432.73286,290.39834],[432.79049,290.49599,432.84538,290.60037,432.89755,290.70966,1],[432.84532,290.60038,432.79059,290.49594,432.73286,290.39834,1],[432.73286,290.39834],null,[432.97387,290.87637],[433.04569,291.0452,433.11484,291.22227,433.17272,291.42068,1],[433.11485,291.22233,433.0457,291.04506,432.97387,290.87637,1],[432.97387,290.87637],null,[431.02559,292.20602],[431.10679,292.30834,431.18822,292.40882,431.26863,292.51131,1],[431.18787,292.4083,431.10711,292.30884,431.02559,292.20602,1],[431.02559,292.20602],null,[432.20059,293.74055],[432.28369,293.85314,432.36883,293.96809,432.44965,294.07999,1],[432.36865,293.96781,432.2839,293.85342,432.20059,293.74055,1],[432.20059,293.74055],null,[433.23699,295.23088],[433.31897,295.35633,433.41301,295.48521,433.49007,295.60848,1],[433.41287,295.48512,433.31911,295.35646,433.23699,295.23088,1],[433.23699,295.23088],null,[434.20712,296.87788],[434.21963,296.90318,434.23311,296.9291,434.24528,296.95421,1],[434.23305,296.92901,434.2197,296.90324,434.20712,296.87788,1],[434.20712,296.87788],null,[434.49434,297.5186],[434.50412,297.54335,434.51711,297.56841,434.52648,297.59292,1],[434.51707,297.56841,434.50419,297.54335,434.49434,297.5186,1],[434.49434,297.5186],null,[135.17174,298.16535],[135.17174,298.16535,135.28835,298.37751,135.38465,298.55702,1],[135.26643,298.32786,135.17174,298.16535,135.17174,298.16535,1],[135.17174,298.16535],null,[434.78558,298.59518],[434.79055,298.63857,434.80301,298.68766,434.80566,298.72976,1],[434.80294,298.68749,434.79066,298.63879,434.78558,298.59518,1],[434.78558,298.59518],null,[135.55136,298.9065],[135.57814,298.96641,135.60636,299.03522,135.63371,299.10134,1],[135.60414,299.02926,135.58024,298.97132,135.55136,298.9065,1],[135.55136,298.9065],null,[135.86671,299.77419],[135.89679,299.87376,135.92827,299.96722,135.95508,300.07347,1],[135.92797,299.96536,135.89721,299.87543,135.86671,299.77419,1],[135.86671,299.77419],null,[444.31208,310.47771],[444.58396,310.56472,444.97864,310.65267,445.43084,310.74082,1],[444.97705,310.65233,444.58469,310.56494,444.31208,310.47771,1],[444.31208,310.47771],null,[445.87272,310.82116],[446.1624,310.87253,446.49547,310.92528,446.83682,310.97783,1],[446.49438,310.92502,446.16323,310.87273,445.87272,310.82116,1],[445.87272,310.82116],null,[448.65655,311.23091],[449.57296,311.35383,450.56434,311.48489,451.66534,311.62057,1],[450.55003,311.48274,449.58202,311.3556,448.65655,311.23091,1],[448.65655,311.23091],null,[460.33621,312.7353],[461.33341,312.87276,462.34014,313.01996,463.35102,313.17316,1],[462.33744,313.01942,461.33605,312.87332,460.33621,312.7353,1],[460.33621,312.7353],null,[447.79087,314.08705],[444.88236,314.09171,443.30373,315.34234,442.11273,317.367,1],[440.64692,319.85888,446.80468,331.87668,446.80468,331.87668,1],[445.61641,331.20225,444.66935,330.48477,443.88225,329.75366,1],[444.51385,330.48611,445.2574,331.20681,446.14387,331.85459,1],[450.34976,334.92814,461.99743,334.44234,463.77684,328.61883,1],[463.77684,328.61883,463.77638,320.69251,468.95284,319.88369,1],[470.21856,319.68594,471.83438,319.85037,473.55039,320.20506,1],[473.18658,319.86858,472.8228,319.5484,472.45574,319.2731,1],[468.35148,316.19491,454.42583,315.02083,450.02839,314.28791,1],[449.20388,314.15052,448.46208,314.08598,447.79087,314.08705,1],[447.79087,314.08705],null,[475.16727,321.84403],[475.7551,322.47855,476.34812,323.13705,476.94884,323.79833,1],[476.34712,323.13535,475.75606,322.47996,475.16727,321.84403,1],[475.16727,321.84403],null,[439.62013,323.50107],[439.6592,323.56527,439.696,323.63396,439.73462,323.69992,1],[439.69634,323.63437,439.65887,323.56489,439.62013,323.50107,1],[439.62013,323.50107],null,[477.09546,323.95902],[477.48918,324.39053,477.88853,324.80509,478.29255,325.21837,1],[477.8897,324.80577,477.48807,324.38971,477.09546,323.95902,1],[477.09546,323.95902],null,[478.99956,325.92738],[479.13848,326.06003,479.27675,326.19554,479.41733,326.32307,1],[479.27681,326.19544,479.13842,326.06013,478.99956,325.92738,1],[478.99956,325.92738],null,[479.56195,326.44961],[479.77991,326.64353,480.00034,326.8314,480.22275,327.00999,1],[480.00036,326.8312,479.77988,326.64375,479.56195,326.44961,1],[479.56195,326.44961],null,[480.42562,327.16867],[480.62516,327.32316,480.82664,327.46924,481.03019,327.60854,1],[480.82655,327.46899,480.62525,327.32344,480.42562,327.16867,1],[480.42562,327.16867],null,[481.30536,327.79131],[481.48713,327.90784,481.67242,328.01433,481.85771,328.1167,1],[481.67264,328.01428,481.48691,327.90788,481.30536,327.79131,1],[481.30536,327.79131],null,[482.19916,328.29948],[482.3767,328.38741,482.55643,328.46536,482.73745,328.53849,1],[482.55643,328.46524,482.37667,328.38755,482.19916,328.29948,1],[482.19916,328.29948],null,[483.08493,328.67306],[483.27521,328.73844,483.469,328.78658,483.66339,328.83375,1],[483.4691,328.78649,483.27509,328.73853,483.08493,328.67306,1],[483.08493,328.67306],null,[484.03898,328.92614],[484.09059,328.93523,484.14374,328.94253,484.19564,328.95024,1],[484.14379,328.94251,484.09054,328.93524,484.03898,328.92614,1],[484.03898,328.92614],null,[485.08141,329.0125],[485.04464,329.01276,485.00757,329.01495,484.97094,329.01452,1],[485.00753,329.01495,485.04469,329.01278,485.08141,329.0125,1],[485.08141,329.0125],null,[273.09012,344.35172],[273.40262,344.71613,273.70603,345.0632,273.98191,345.358,1],[273.70229,345.05555,273.40227,344.71597,273.09012,344.35172,1],[273.09012,344.35172],null,[356.81408,347.08534],[356.79716,347.33129,356.78832,347.58417,356.78595,347.84658,1],[356.78875,347.58461,356.79712,347.33154,356.81408,347.08534,1],[356.81408,347.08534],null,[356.78395,347.87872],[356.78213,348.15502,356.78725,348.43896,356.80203,348.73435,1],[356.78726,348.43902,356.78166,348.1542,356.78395,347.87872,1],[356.78395,347.87872],null,[230.50707,348.49534],[229.66318,348.46096,228.67268,348.7162,227.51837,349.32085,1],[221.36196,352.54564,203.77211,361.63455,199.37471,366.32514,1],[194.97729,371.01575,189.99424,372.4805,187.94211,376.58476,1],[186.56735,379.33432,186.52303,380.91569,189.36616,385.26366,1],[196.95649,378.52602,204.41949,369.65536,213.20351,366.30907,1],[223.39469,362.42672,222.26172,358.70752,229.2176,361.29576,1],[231.65358,362.20216,233.46653,362.2206,234.90176,361.64525,1],[234.84978,361.1527,234.82782,360.65927,234.84753,360.16696,1],[235.08572,354.21212,234.16394,348.64432,230.50707,348.49534,1],[230.50707,348.49534],null,[275.1328,349.90734],[276.05522,350.845,276.98031,351.7809,277.86441,352.69118,1],[276.87378,351.66911,276.18135,350.97401,275.1328,349.90734,1],[275.1328,349.90734],null,[239.85683,356.01531],[239.87399,356.27744,239.88622,356.54006,239.88093,356.80265,1],[239.88622,356.54,239.87612,356.27723,239.85683,356.01531,1],[239.85683,356.01531],null,[235.17693,363.17776],[235.25933,363.52449,235.34722,363.87194,235.45611,364.21416,1],[235.34717,363.87178,235.25935,363.52463,235.17693,363.17776,1],[235.17693,363.17776],null,[235.70317,364.9031],[235.77459,365.09678,235.83974,365.29019,235.91808,365.48156,1],[235.83974,365.29028,235.77456,365.09667,235.70317,364.9031,1],[235.70317,364.9031],null,[236.23542,366.19057],[236.31926,366.37376,236.39752,366.55855,236.48649,366.7389,1],[236.39759,366.55881,236.31919,366.37351,236.23542,366.19057,1],[236.23542,366.19057],null,[236.82795,367.38966],[236.9279,367.57646,237.02712,367.76323,237.13124,367.94603,1],[237.02724,367.76352,236.92778,367.57614,236.82795,367.38966,1],[236.82795,367.38966],null,[237.48274,368.54056],[237.59457,368.7252,237.70553,368.90934,237.82017,369.08889,1],[237.70575,368.90969,237.59438,368.72481,237.48274,368.54056,1],[237.48274,368.54056],null,[238.21786,369.69346],[238.32261,369.8489,238.42562,370.00271,238.53119,370.15341,1],[238.42584,370.00308,238.3224,369.84851,238.21786,369.69346,1],[238.21786,369.69346],null,[238.92687,370.70175],[239.02021,370.82918,239.1091,370.95008,239.20204,371.07333,1],[239.11007,370.95137,239.01924,370.8278,238.92687,370.70175,1],[238.92687,370.70175],null,[240.3449,372.50944],[240.62597,372.84454,240.86689,373.11325,241.11618,373.39118,1],[240.87053,373.11733,240.62137,372.8387,240.3449,372.50944,1],[240.3449,372.50944],null,[241.57613,373.90939],[241.70528,374.04826,241.7053,374.04391,241.81716,374.16046,1],[241.73038,374.06943,241.67251,374.01285,241.57613,373.90939,1],[241.57613,373.90939],null,[178.73898,382.55615],[176.44577,382.42555,173.88775,383.50033,170.93781,386.25789,1],[160.70091,395.82717,159.59093,402.84018,159.64782,405.67444,1],[173.86224,405.67444],[174.4963,403.67785,177.78843,394.35417,185.70258,388.31061,1],[185.92405,388.14149,186.14447,387.95893,186.3654,387.78438,1],[184.06818,384.78227,181.61087,382.7197,178.73898,382.55615,1],[178.73898,382.55615],null,[189.37218,385.2717],[189.78066,385.89606,190.27157,386.60582,190.80427,387.35656,1],[190.27054,386.60389,189.78235,385.89869,189.37218,385.2717,1],[189.37218,385.2717],null,[192.40307,389.55791],[193.40369,390.91448,194.51655,392.40169,195.85776,394.17555,1],[194.51044,392.39361,193.40354,390.91562,192.40307,389.55791,1],[192.40307,389.55791],null,[194.25495,400.8439],[194.73944,401.68238,195.22966,402.51582,195.72921,403.33047,1],[195.22982,402.51566,194.7393,401.6826,194.25495,400.8439,1],[194.25495,400.8439]],"flat":true},{"id":"path4242","type":"poly","borderWidth":"1px","borderColor":"none","backgroundColor":"#679363","points":[[276.77067,106.39924],[270.50823,108.48622,258.00811,110.20143,258.00811,112.44663,1],[258.00811,115.08507,256.54138,111.71372,247.59994,114.49874,1],[238.65852,117.28379,221.94808,126.81177,217.55065,125.05279,1],[213.15323,123.29384,193.80455,125.34482,194.9772,132.82042,1],[196.14986,140.29607,201.86627,150.11743,197.76199,153.92852,1],[193.65773,157.73964,183.25188,164.62985,175.92285,149.97176,1],[175.92285,149.97176,171.96445,137.51172,165.80806,134.72669,1],[159.65168,131.94164,156.42734,131.79436,148.95173,133.8465,1],[141.47609,135.89863,139.5701,143.814,139.13037,145.13322,1],[138.69061,146.45246,137.81182,150.70353,141.0366,151.583,1],[144.26137,152.46249,151.58929,161.69777,154.96063,165.80205,1],[158.33201,169.9063,176.36165,175.18276,186.03599,171.37164,1],[195.71034,167.56056,198.93488,163.60333,205.23786,165.80205,1],[211.54083,168.00076,215.79145,169.90538,223.41365,166.68062,1],[226.86501,165.22041,230.22248,164.36753,233.26227,164.04169,1],[249.17758,157.67434,271.79448,147.5603,281.13145,138.22332,1],[291.07395,128.28082,283.26724,114.60512,276.77067,106.39924,1],[276.77067,106.39924],null,[161.58838,109.84937],[159.89444,109.82952,158.2537,110.22493,157.05926,111.08868,1],[155.07963,112.52026,154.71205,116.28276,156.02196,118.34489,1],[157.92058,121.33379,163.05764,123.12354,166.18003,121.45356,1],[168.72458,120.09259,170.17976,115.61977,168.66823,113.16166,1],[167.38137,111.06894,164.41155,109.88251,161.58838,109.84937,1],[161.58838,109.84937],null,[148.20784,120.42268],[145.36311,120.39273,142.50715,121.32734,141.51116,123.52652,1],[140.68002,125.36165,142.75845,127.94311,144.62142,128.70977,1],[147.9845,130.09374,153.68109,129.32225,155.19309,126.01474,1],[155.89974,124.46899,154.4335,122.21364,152.91332,121.45356,1],[151.61772,120.80574,149.91467,120.44064,148.20784,120.42268,1],[148.20784,120.42268],null,[97.922602,128.05724],[96.694983,128.02071,96.035601,128.57028,96.035601,128.57028,1],[96.035601,128.57028,93.690995,134.28762,89.733314,137.65898,1],[85.775629,141.03034,88.706104,143.22767,86.214235,152.3157,1],[83.72236,161.4037,96.32807,158.61959,101.31182,161.69777,1],[106.29557,164.77599,110.54733,168.29393,109.66785,175.03663,1],[108.78836,181.77936,104.09823,191.16099,93.837579,188.96226,1],[83.576919,186.76355,76.68693,187.93575,75.514283,176.06271,1],[74.341639,164.18966,76.834199,166.09544,69.211999,163.01723,1],[61.589781,159.93905,44.585272,165.21572,47.223724,171.95844,1],[49.86218,178.70116,40.481238,180.60625,26.9958,178.55411,1],[26.9958,178.55411,20.252853,177.67509,15.415687,186.32336,1],[10.578518,194.97164,3.2503942,188.96135,4.2764587,197.0233,1],[5.3025253,205.08524,7.5000909,195.41091,11.018031,195.99723,1],[11.018031,195.99723,8.8193196,198.78181,11.018031,198.48865,1],[13.216743,198.19548,15.709763,193.94487,16.589247,194.67778,1],[17.468733,195.41067,18.640234,200.54078,16.148361,200.54078,1],[13.656486,200.54078,7.5010071,205.52522,7.0612649,207.57733,1],[6.6215227,209.62948,13.510364,209.04249,14.683012,207.72325,1],[15.855656,206.40401,17.321694,209.62923,20.10673,209.3361,1],[22.891766,209.04292,24.21168,205.67156,25.091167,206.25788,1],[25.97065,206.84421,27.14261,213.29424,24.210993,213.00108,1],[21.279376,212.70789,9.2590619,211.38777,11.018031,213.87963,1],[12.777001,216.37152,15.269106,218.13116,15.415687,220.9162,1],[15.562267,223.70125,19.080206,220.03604,20.546014,221.06211,1],[22.011824,222.08817,21.865013,226.63217,25.382952,227.21848,1],[28.900893,227.80483,28.608188,228.39182,28.021866,233.22899,1],[27.435544,238.06616,34.911852,229.41766,37.110564,229.8574,1],[39.309276,230.29713,40.628733,230.00422,40.482154,231.17685,1],[40.335572,232.34951,41.361408,232.64313,43.266958,231.76365,1],[45.17251,230.88414,46.490821,232.05659,46.197659,233.52239,1],[45.904498,234.98821,47.076916,234.54753,46.930334,235.42703,1],[46.783754,236.30649,46.490592,238.36,47.956401,239.23948,1],[49.422207,240.11899,45.612024,244.36959,48.103898,246.12857,1],[50.595772,247.88753,62.029077,255.06906,63.494885,253.16353,1],[64.960692,251.25797,62.175892,246.86147,69.944666,246.12857,1],[77.713448,245.39566,88.707246,242.02338,102.04611,230.59009,1],[107.48423,225.92882,111.80124,223.60622,115.48436,222.64929,1],[113.21418,213.94537],[170.87267,178.20943],[159.57244,177.92495,145.7865,168.63853,144.99337,165.06937,1],[144.11388,161.11167,141.62291,159.64585,137.95842,158.91297,1],[134.29389,158.18007,133.70732,154.51462,134.58681,151.583,1],[135.4663,148.65139,134.14661,148.21211,127.84364,149.0916,1],[121.54067,149.97109,118.60904,143.96126,118.60904,143.96126,1],[115.53084,130.62241,110.25439,132.52729,106.88304,132.82042,1],[103.51166,133.1136,103.21805,131.06169,103.21805,131.06169,1],[100.94607,128.71641,99.150211,128.09378,97.922602,128.05724,1],[97.922602,128.05724],null,[91.067195,165.32589],[85.950221,165.41533,82.295579,167.39335,80.957243,171.62335,1],[79.529682,176.13536,79.212373,183.06261,92.280839,184.66403,1],[105.34931,186.2654,105.37518,174.69274,103.8337,170.53636,1],[102.29222,166.37999,97.771349,165.50387,92.109296,165.33229,1],[91.755423,165.32157,91.408327,165.3199,91.067195,165.32589,1],[91.067195,165.32589],null,[75.810881,250.04204],[69.370868,250.06886,69.074801,254.11608,67.573496,256.15355,1],[65.97211,258.32687,68.660385,259.30008,69.175118,259.58605,1],[69.68985,259.872,75.238444,261.5296,78.555609,262.10151,1],[81.872763,262.67343,86.562617,255.12374,86.791388,252.26411,1],[87.02016,249.4045,84.961414,250.66367,77.183241,250.09173,1],[76.697108,250.056,76.240212,250.04026,75.810881,250.04204,1],[75.810881,250.04204]],"flat":true},{"id":"path4220","type":"poly","borderWidth":"1px","borderColor":"none","backgroundColor":"#deeff0","points":[[498.91874,19.262209],[498.91874,19.262209,446.07334,82.403943,433.49101,89.953326,1],[420.90867,97.502728,414.27473,105.73711,414.27473,105.73711,1],[414.31799,106.26296],[416.59066,108.19056,418.56627,110.41965,420.12649,112.15323,1],[424.08417,116.55064,427.74733,115.96456,430.67895,114.49874,1],[433.61056,113.03294,433.46419,109.95497,437.12872,108.63575,1],[440.79325,107.31652,447.68279,98.96026,447.68279,98.96026,1],[447.68279,98.96026,445.19091,102.18551,444.60458,104.67738,1],[444.01827,107.16925,439.72717,109.92135,438.74157,111.27305,1],[436.17639,114.791,429.65286,113.17906,433.75713,127.25082,1],[437.8614,141.32258,487.4071,136.92607,491.9511,136.63292,1],[496.49511,136.33975,501.03913,140.29721,502.21177,148.65232,1],[503.38441,157.00742,517.30822,161.84437,516.86848,157.59352,1],[516.54461,154.46291,519.70845,143.02651,521.404,137.19403,1],[521.83669,133.98535,522.43968,133.70061,522.43968,133.70061,1],[522.43968,133.70061,522.15945,134.64933,522.0533,135.00242,1],[523.29603,133.80983,530.29844,126.80059,533.00656,117.63466,1],[535.98055,107.56879,555.88349,112.3721,559.08626,99.332202,1],[562.28904,86.292352,523.16917,43.283379,523.16917,43.283379,1],[503.03742,24.296337],[498.91874,19.262209],[498.91874,19.262209],null,[521.404,137.19403],[521.33035,137.74017,521.26548,138.40328,521.20522,139.12916,1],[521.60119,136.52711],[521.50009,136.87081,521.51982,136.79567,521.404,137.19403,1],[521.404,137.19403],null,[425.07727,121.21468],[419.99016,121.55288,410.60019,122.73853,407.64055,127.01353,1],[403.52271,132.96155,400.77725,135.02051,403.06494,141.1973,1],[404.93046,146.23416,401.32217,149.901,402.90303,152.3237,1],[404.26605,152.08411,405.77199,152.7482,410.30511,154.8087,1],[419.97946,159.20614,425.54907,161.99139,429.21359,159.20637,1],[432.87811,156.42132,434.7832,154.66166,434.7832,149.0916,1],[434.7832,143.52151,436.83648,141.47009,434.19803,138.68504,1],[431.55956,135.90001,426.57467,131.06283,425.54862,123.29407,1],[425.44332,122.49684,425.27703,121.82438,425.07727,121.21468,1],[425.07727,121.21468],null,[443.43262,139.06822],[441.71029,139.04989,440.42794,139.34328,439.62176,140.00288,1],[438.00935,141.32214,438.59454,145.57298,438.1548,152.3157,1],[437.76596,158.27782,434.0484,160.11583,428.93783,162.08256,1],[428.61927,163.49183,428.34679,166.47116,431.66172,166.82008,1],[436.00834,167.27764,438.29487,166.58995,440.81133,168.42011,1],[443.32778,170.25027,462.31705,182.37621,462.31705,182.37621,1],[462.31705,182.37621,475.35689,186.95129,485.42277,192.67053,1],[495.48863,198.38977,502.80817,202.2787,502.80817,202.2787,1],[502.80817,202.2787,500.74918,207.08343,494.57236,207.76973,1],[490.36424,208.23731,492.20138,215.22191,493.80444,219.66888,1],[493.77231,218.66664,493.70985,217.98391,493.70985,217.98391,1],[493.70985,217.98391,493.70985,217.83777,495.76198,222.67493,1],[497.81411,227.51211,492.68263,231.32367,490.19075,236.60059,1],[487.94898,241.34788,483.68742,243.00429,479.01304,243.93054,1],[477.16945,246.49919,476.20839,249.59227,478.10082,252.83646,1],[482.90498,261.07218,508.07017,266.10594,512.64556,259.92916,1],[517.22096,253.75237,527.51625,247.80397,526.37241,241.85596,1],[525.22857,235.90795,514.24755,231.10351,515.16263,226.07059,1],[516.07771,221.03766,520.42362,206.1684,510.35776,198.84778,1],[500.29189,191.52713,498.46122,198.38931,495.94476,186.49331,1],[495.87047,186.14215,495.80507,185.78734,495.74594,185.42875,1],[491.47811,185.19154,484.50031,181.20382,486.52739,170.1997,1],[488.57951,159.05955,488.4327,157.15422,486.23399,152.0239,1],[484.03528,146.89357,479.49149,142.64227,474.21457,142.20253,1],[468.93768,141.7628,455.01275,141.17555,449.88241,140.00288,1],[447.31725,139.41657,445.15495,139.08653,443.43262,139.06822,1],[443.43262,139.06822]],"flat":true},{"id":"path4214","type":"poly","borderWidth":"1px","borderColor":"none","backgroundColor":"#c9b293","points":[[155.60353,88.01503],[155.39384,88.01866,155.1878,88.039978,154.9863,88.079149,1],[151.2929,88.797312,145.61873,92.418571,146.9012,95.955801,1],[148.43664,100.19076,157.25591,100.242,160.37632,96.99312,1],[162.01497,95.287009,160.97706,91.828799,159.54585,89.945325,1],[158.67635,88.801035,157.07132,87.989691,155.60353,88.01503,1],[155.60353,88.01503],null,[172.66026,103.00359],[170.80479,103.12819,168.20162,105.12821,168.87505,106.73591,1],[169.75766,108.84297,174.7971,108.41215,175.71601,106.32067,1],[176.28903,105.01652,174.44119,103.11596,173.02099,103.00521,1],[172.90514,102.99616,172.78396,102.99528,172.66026,103.00359,1],[172.66026,103.00359],null,[263.07591,124.06041],[257.9393,124.29631,256.82462,127.81362,249.78996,127.47046,1],[240.4104,127.01293,236.06256,132.96195,224.62408,142.11274,1],[215.39921,149.49265,216.5905,163.25647,217.39674,168.31269,1],[219.20237,168.13148,221.15806,167.63489,223.41365,166.68062,1],[231.03586,163.45583,238.21878,163.16381,242.46961,165.06937,1],[246.72046,166.97492,248.9194,167.1208,255.07579,162.13706,1],[261.2322,157.15331,263.57725,154.07533,274.27766,156.27406,1],[279.18337,157.28208,286.6975,159.06358,293.76168,160.76471,1],[297.97297,157.07638,299.43116,142.76369,295.08596,135.9355,1],[290.28181,128.3861,281.81771,128.84297,269.92169,125.18265,1],[266.94769,124.2676,264.7881,123.98176,263.07591,124.06041,1],[263.07591,124.06041],null,[139.34198,144.45346],[139.25382,144.73813,139.17832,144.98934,139.13037,145.13322,1],[138.69061,146.45246,137.81182,150.70353,141.0366,151.583,1],[144.26137,152.46249,151.58929,161.69777,154.96063,165.80205,1],[156.00002,167.06737,158.43849,168.44301,161.58998,169.63054,1],[158.02639,164.75226,152.07138,156.69119,149.47438,153.77944,1],[145.69968,149.54719,139.63648,152.06421,139.40771,145.08673,1],[139.40068,144.87249,139.37849,144.661,139.34198,144.45346,1],[139.34198,144.45346],null,[132.37755,148.68918],[131.29622,148.67062,129.8133,148.81674,127.84364,149.0916,1],[127.76682,149.10231,127.6966,149.10052,127.62079,149.10923,1],[127.97345,151.8208,128.47612,155.91455,128.31177,156.98269,1],[128.083,158.4697,131.17279,161.67256,135.29063,162.24448,1],[138.51167,162.69184,140.98582,163.15511,144.91161,164.75193,1],[143.96977,161.03766,141.52104,159.62549,137.95842,158.91297,1],[134.29389,158.18007,133.70732,154.51462,134.58681,151.583,1],[135.19144,149.56752,134.75653,148.72997,132.37755,148.68918,1],[132.37755,148.68918],null,[269.98742,159.27851],[267.2119,159.24285,265.57512,160.1589,261.81897,161.99117,1],[255.80915,164.92279,252.29007,170.49264,254.19562,170.93237,1],[256.10118,171.37213,261.37855,175.47547,261.96486,177.96733,1],[262.28149,179.31294,262.12015,181.08592,261.15042,182.82511,1],[263.947,182.15538,266.79678,181.39848,269.69243,180.54533,1],[290.62329,174.37818,288.96108,166.53446,290.51835,163.11985,1],[284.95252,162.04093,279.73454,161.00994,276.91658,160.37831,1],[273.72843,159.66373,271.65273,159.2999,269.98742,159.27851,1],[269.98742,159.27851],null,[234.53684,168.75198],[230.78064,168.73372,227.44577,169.46633,224.8806,170.63897,1],[223.31,171.35696,220.90949,171.60474,218.08132,171.64099,1],[221.72052,185.84113,236.94466,187.70787,255.8774,183.98907,1],[262.01263,177.97251,254.84018,174.87112,246.72139,171.37164,1],[242.47056,169.53939,238.29303,168.77026,234.53684,168.75198,1],[234.53684,168.75198],null,[95.293301,243.72532],[94.954566,244.22491,94.6162,244.72274,94.276858,245.24839,1],[94.276858,245.24839,90.611421,256.38899,97.207554,259.17403,1],[103.8037,261.95906,112.45287,265.32995,115.82424,268.84791,1],[117.58894,270.6893,125.63904,281.20205,126.9795,283.67455,1],[131.05811,291.1969],[133.21092,295.16775,135.17197,298.16453,135.17197,298.16453,1],[135.17197,298.16453,135.99886,299.43909,136.12912,301.10003,1],[143.84377,298.68717,157.13783,290.12594,157.13783,290.12594,1],[157.13783,290.12594,137.69215,264.27525,135.40446,265.64786,1],[133.11675,267.02048,125.56683,268.39285,120.99144,267.02022,1],[116.41606,265.6476,104.7493,253.066,101.08897,248.71938,1],[99.229365,246.51107,97.021378,244.8407,95.293301,243.72532,1],[95.293301,243.72532],null,[98.00116,269.76493],[95.141534,269.76493,94.22654,271.02371,94.684083,272.6251,1],[95.141627,274.2265,95.175501,274.26578,96.284097,274.56984,1],[97.392692,274.87384,99.83086,275.25694,100.40279,273.08363,1],[100.97472,270.91031,100.86078,269.76493,98.00116,269.76493,1],[98.00116,269.76493],null,[110.92158,276.60432],[109.90945,276.66295,108.47865,277.09196,105.77841,277.88689,1],[100.37794,279.4768,106.23556,284.63561,107.83695,286.46577,1],[109.43834,288.29592,116.98903,286.92296,118.13288,285.55032,1],[119.27674,284.1777,115.6162,278.91644,113.55727,277.54381,1],[112.52781,276.8575,111.93368,276.54569,110.92158,276.60432,1],[110.92158,276.60432],null,[118.69721,292.0851],[116.73864,292.05323,114.2913,293.36024,112.18492,294.24463,1],[109.29204,295.45924,106.87393,297.9156,106.58003,299.62025,1],[106.28612,301.32489,105.66369,302.36499,110.46786,302.36499,1],[115.27202,302.36499,122.13553,303.05186,122.59307,299.27715,1],[123.05061,295.50247,121.56419,292.69921,119.50526,292.18451,1],[119.24788,292.12015,118.97701,292.08964,118.69721,292.0851,1],[118.69721,292.0851]],"flat":true},{"id":"path4236","type":"poly","borderWidth":"1px","borderColor":"none","backgroundColor":"#986749","points":[[420.22568,9.9077924],[412.90697,9.9026917,404.43655,15.602001,404.43655,15.602001,1],[404.43655,15.602001,396.8888,34.132786,392.77095,34.132786,1],[388.65309,34.132786,382.70498,37.564431,385.90777,43.283692,1],[389.11054,49.002923,372.63878,52.891202,374.24017,58.15291,1],[375.84156,63.414617,388.65206,75.540948,389.33836,82.404016,1],[390.02467,89.267125,392.54048,94.527155,399.86109,94.069613,1],[407.18173,93.612079,414.50382,94.070291,419.53674,99.331991,1],[424.56967,104.5937,444.93071,91.325948,444.93071,91.325948,1],[481.99027,50.60281],[481.99027,50.60281,465.97691,31.844,457.74118,28.412466,1],[449.50549,24.980921,431.89037,13.542592,424.1122,10.568602,1],[422.89686,10.103911,421.581,9.9087283,420.22568,9.9077924,1],[420.22568,9.9077924],null,[572.6437,10.104629],[498.5547,14.95726],[518.2906,74.162978],[523.46661,102.14997],[523.46661,102.14997,529.29197,120.59006,530.10082,125.443,1],[530.90962,130.29594,551.2909,140.16421,555.49679,145.17891,1],[559.70267,150.19362,574.42141,144.53076,578.30375,153.75135,1],[582.18612,162.97193,583.644,166.69207,588.82047,173.64795,1],[593.99693,180.60382,591.40744,182.38259,591.40747,187.55909,1],[591.40747,192.73555,587.36459,194.0317,584.61459,198.07581,1],[581.86462,202.11991,577.33485,203.25072,574.74663,205.51543,1],[572.15839,207.78012,564.23084,206.48664,560.18673,208.42781,1],[556.14263,210.369,557.92234,212.473,559.53998,214.57596,1],[560.32452,215.59582,561.72213,216.04459,563.29997,216.55035,1],[563.08462,215.9928,563.17686,215.64342,564.21586,215.7851,1],[567.44066,216.22485,572.86385,210.80178,577.1147,210.36204,1],[581.36553,209.92227,581.07298,205.23235,586.05672,205.67209,1],[591.04047,206.11184,594.99673,206.25859,594.99673,206.25859,1],[594.70348,210.94853],[594.70348,210.94853,589.86602,211.38801,586.78782,210.0688,1],[583.70964,208.74956,579.75319,214.75856,577.26132,214.17224,1],[574.76945,213.58591,571.69136,215.34634,570.66528,219.15744,1],[570.47177,219.87622,570.13249,220.4944,569.69516,221.05148,1],[570.35224,223.24792,569.26029,225.52676,573.61382,227.51697,1],[579.27559,230.10519,576.84789,228.97178,578.30375,236.08942,1],[579.75964,243.20707,573.93685,246.76562,572.481,249.35382,1],[571.0251,251.94206,562.77637,256.4713,555.17342,255.98602,1],[547.57049,255.50073,543.20236,261.97163,537.21708,261.64809,1],[534.67067,261.51043,532.71385,261.8165,531.26778,262.20847,1],[531.25689,262.22324,531.24446,262.23788,531.23364,262.25266,1],[526.83622,268.26249,527.1312,270.01924,523.75986,275.44274,1],[520.38849,280.86625,509.68637,284.97192,510.85901,287.31722,1],[512.03167,289.6625,510.27371,300.51042,507.48869,304.32151,1],[504.70364,308.13262,506.02139,315.60619,502.35686,331.87667,1],[498.69237,348.14714,499.86506,366.03041,502.65011,360.90006,1],[505.43515,355.76974,505.143,351.07991,506.16907,342.72479,1],[507.19514,334.3697,510.85973,329.23783,513.35161,323.66777,1],[515.84347,318.09768,520.38752,309.89119,520.38752,309.8912,1],[525.0781,303.29505,531.96633,310.91678,537.38981,315.16762,1],[542.81332,319.41848,545.16007,318.5392,549.41092,315.90074,1],[553.66174,313.2623,570.37099,306.08066,573.74237,304.90801,1],[577.11371,303.73536,579.45844,304.90773,585.61484,303.88164,1],[591.77122,302.85558,595.58322,296.99034,595.58322,296.99034,1],[595.58322,296.99034,595.58464,300.07029,593.53251,303.00191,1],[591.48038,305.93353,583.85718,307.69191,576.23496,307.98509,1],[568.61274,308.27825,552.19454,319.41838,544.57234,321.76367,1],[536.95014,324.10897,534.16528,316.34003,531.38026,314.28789,1],[528.59522,312.23577,522.14632,311.79557,519.80103,319.56431,1],[517.45575,327.33312,516.57622,325.86871,512.76512,331.29218,1],[508.95401,336.71566,509.24812,356.50373,509.10154,357.82298,1],[508.95494,359.1422,485.35583,382.74101,482.71736,383.03417,1],[480.07892,383.32733,454.57272,372.62719,444.31208,370.13533,1],[434.05143,367.64344,425.40369,364.8589,425.40369,364.8589,1],[425.40369,364.8589,432.43791,366.61705,447.38916,368.96234,1],[462.34041,371.30762,477.11507,379.68342,481.54237,379.3706,1],[485.49292,379.09147,491.80301,371.74887,495.32094,367.20487,1],[498.83891,362.66086,498.91255,366.98471,496.64056,359.28921,1],[494.36856,351.59372,500.74555,329.53185,499.13316,326.60023,1],[497.52077,323.6686,491.51114,328.06673,485.94107,328.94621,1],[480.86915,329.74703,477.25472,323.63123,473.55039,320.20504,1],[471.83438,319.85036,470.21856,319.68592,468.95284,319.88368,1],[463.77638,320.69249,463.77684,328.61881,463.77684,328.61881,1],[461.99743,334.44232,450.34976,334.92812,446.14387,331.85458,1],[445.2574,331.20679,444.51385,330.48609,443.88225,329.75364,1],[441.07682,327.14784,440.40923,324.36039,439.03565,322.64342,1],[437.27667,320.4447,439.76628,308.86432,438.1539,307.10535,1],[436.54149,305.34638,434.34383,301.535,434.78357,299.18969,1],[435.2001,296.96824,430.92306,292.03199,428.09915,288.64687,1],[423.9496,295.22755,416.71171,299.75863,423.33489,307.7521,1],[432.71722,319.07563,425.27575,314.86883,428.18752,326.51587,1],[431.09929,338.16293,425.92356,343.33957,426.57065,347.22191,1],[427.2177,351.10426,423.01105,366.14946,417.67282,363.88475,1],[412.33458,361.62005,402.14266,358.86836,396.15735,359.03011,1],[390.17207,359.19189,369.62793,344.79543,366.71617,345.11896,1],[365.21392,345.28589,360.9147,346.86123,356.81408,347.07127,1],[356.77779,347.59002,356.77232,348.14034,356.80203,348.73434,1],[357.24176,357.52918,360.76086,375.11851,360.76086,375.11851,1],[360.76086,375.11851,352.5523,361.34097,353.72494,351.08031,1],[353.91482,349.41879,354.01026,348.12722,354.08648,346.97687,1],[351.34536,346.57821,349.04728,345.16458,348.27577,341.72253,1],[346.17284,332.34019,328.21788,326.35487,314.79142,324.899,1],[301.36496,323.44312,297.48184,333.30967,289.07006,333.47144,1],[280.65831,333.6332,276.12888,336.05999,278.55536,337.03058,1],[280.98182,338.00117,278.5552,340.91308,276.77579,343.01602,1],[276.23527,343.65483,274.85103,344.08176,273.03789,344.29346,1],[273.73573,345.11021,274.37833,345.8171,274.86365,346.24174,1],[277.20894,348.29388,277.94327,350.93433,279.70223,353.13304,1],[281.46121,355.33175,283.3658,358.40947,283.3658,358.40947,1],[283.3658,358.40947,273.88974,348.446,269.61937,344.43807,1],[265.85569,344.37296,261.46795,343.64911,258.49808,342.20658,1],[252.83631,339.4566,253.48229,338.6481,250.24699,341.55984,1],[247.01171,344.47161,242.64376,348.35411,240.37904,353.85411,1],[240.17746,354.3437,239.97872,354.81232,239.77849,355.28218,1],[239.85045,355.78692,239.89116,356.29457,239.88093,356.80264,1],[239.85128,357.86032,239.96193,359.0668,240.12396,360.46019,1],[241.58976,373.06612,251.84967,371.60104,258.29923,369.84208,1],[264.74879,368.0831,262.40474,372.77313,269.44061,374.82526,1],[276.4765,376.87739,282.33945,384.20715,282.33945,384.20715,1],[282.33945,384.20715,278.23502,380.68994,274.71704,379.81046,1],[271.19912,378.93096,265.04339,377.75906,263.28443,375.41377,1],[261.52545,373.06847,258.00759,373.94796,256.54176,375.41377,1],[255.07596,376.87957,242.76318,375.11851,242.76318,375.11851,1],[242.76318,375.11851,235.62334,368.48546,234.90176,361.64523,1],[233.46653,362.22059,231.65358,362.20215,229.2176,361.29574,1],[222.26172,358.7075,223.39469,362.4267,213.20351,366.30906,1],[204.41949,369.65535,196.95649,378.526,189.36616,385.26364,1],[190.76699,387.40589,192.85802,390.20815,195.85776,394.17554,1],[199.23448,398.64153,201.47379,402.53724,202.95995,405.67442,1],[600,405.67442],[600,12.818166],[572.6437,10.104629],[572.6437,10.104629],null,[319.76455,40.294986],[316.67617,40.294986,313.84377,40.939171,309.72588,41.453913,1],[304.23542,42.140207,295.08653,68.90666,287.0796,71.194357,1],[279.07266,73.482063,275.63957,74.396805,276.32588,77.599588,1],[277.01217,80.802362,278.38551,79.659573,283.87598,81.032183,1],[289.36646,82.404802,288.90802,82.403086,291.88201,88.122327,1],[294.85602,93.841567,292.67078,93.897033,291.42607,97.502208,1],[290.18134,101.10738,287.30835,105.51012,284.79187,109.85673,1],[282.27542,114.20336,294.39998,117.63393,295.77256,113.28732,1],[297.14519,108.94067,299.20421,106.42431,304.92346,104.36539,1],[310.64269,102.30646,310.86944,103.22009,318.41884,102.76257,1],[325.96822,102.30503,327.11283,111.91431,330.54439,115.11709,1],[333.97594,118.31988,338.5505,110.31302,343.12588,106.19516,1],[347.70128,102.0773,343.81442,89.953076,345.64459,86.521521,1],[347.47473,83.089977,350.67777,78.514009,350.44901,74.624942,1],[350.22023,70.735854,346.33086,68.676839,343.35686,67.761762,1],[340.38284,66.846676,338.66576,61.128082,335.11984,54.951298,1],[331.5739,48.774514,327.56969,41.224324,322.99429,40.538019,1],[321.85044,40.366435,320.79403,40.294986,319.76455,40.294986,1],[319.76455,40.294986],null,[314.58052,54.360787],[319.70639,54.350061,326.82866,54.95034,328.0297,58.381883,1],[329.63109,62.957255,329.62926,72.10912,325.96894,77.599588,1],[322.30862,83.090057,342.67093,86.064058,325.74197,93.384701,1],[308.81301,100.70532,300.5764,87.893495,302.17779,83.546875,1],[302.17779,83.546875,304.69392,78.285702,306.2953,77.370615,1],[307.8967,76.455528,308.35321,74.853654,305.15043,70.049489,1],[301.94766,65.245315,306.52371,54.722122,310.41279,54.49335,1],[311.38506,54.436163,312.87192,54.364386,314.58052,54.360787,1],[314.58052,54.360787],null,[310.28827,114.14898],[304.6433,113.94373,300.98368,122.92469,301.94882,125.06941,1],[302.97826,127.35711,302.8627,129.75734,302.8627,129.75734,1],[303.89215,137.87865,308.58319,133.7628,315.56068,136.50805,1],[322.53816,139.25329,326.77007,137.76562,328.71461,133.5334,1],[330.65914,129.30115,326.65573,127.92957,324.25365,127.92957,1],[321.85156,127.92957,320.36551,125.52609,320.82306,121.86579,1],[321.28058,118.20548,317.73235,115.91709,311.44117,114.31569,1],[311.04798,114.21561,310.66458,114.16267,310.28827,114.14898,1],[310.28827,114.14898],null,[445.93297,166.42725],[441.17998,166.47399,435.72858,171.18149,430.77453,181.08959,1],[426.1281,190.38242,428.79879,197.48868,432.40345,210.34195,1],[438.68809,210.43675,438.48604,203.31586,446.80468,205.52548,1],[452.62134,207.07052,456.74343,211.82862,459.9124,216.3736,1],[460.11869,211.21987,465.41422,207.94169,466.52452,191.60429,1],[467.65689,174.94252,453.0999,168.14825,447.92343,166.69238,1],[447.27637,166.51039,446.61196,166.42058,445.93297,166.42725,1],[445.93297,166.42725],null,[121.04167,169.08454],[120.60557,169.08855,120.27774,169.16403,120.07758,169.33561,1],[118.47616,170.70823,118.47613,174.13992,115.50212,180.77425,1],[112.52813,187.40856,115.50125,192.44129,110.01078,196.33038,1],[104.52031,200.21947,94.22619,198.61844,72.264293,194.5006,1],[72.264293,194.5006,65.859409,195.64474,61.741555,201.59276,1],[57.6237,207.54078,71.57682,200.67772,75.465905,203.88048,1],[79.35499,207.08327,81.414263,209.5994,87.133507,210.28571,1],[87.133507,210.28571,97.200695,211.42969,95.370532,219.43662,1],[93.540379,227.44356,101.08872,226.75568,107.72305,222.18028,1],[114.35737,217.60487,119.84776,215.09097,132.43009,216.00603,1],[145.01244,216.92112,149.81768,224.69795,153.93553,221.2664,1],[155.26523,220.15829,155.39595,218.2112,155.15672,215.88753,1],[154.44652,215.61842,153.77597,215.35918,152.90916,215.05398,1],[142.50195,211.38946,138.10422,208.45794,138.10422,208.45794,1],[138.10422,208.45794,149.68464,212.85263,153.7889,212.85263,1],[154.11722,212.85263,154.41608,212.84278,154.72287,212.83455,1],[154.03118,208.52221,153.23688,203.68313,156.22325,200.44789,1],[161.7137,194.49987,175.8966,183.74894,184.58985,186.03662,1],[193.28309,188.32434,196.25719,185.80603,204.95042,186.26358,1],[213.64367,186.72112,201.28841,178.94425,182.75806,178.71549,1],[179.64727,178.67708,176.75755,178.41402,174.06712,178.02255,1],[165.98118,179.23138,155.62088,174.46325,149.69148,170.10287,1],[146.96443,169.71712,142.80583,169.48882,138.60836,170.70744,1],[132.403,172.509,124.09433,169.05642,121.04167,169.08454,1],[121.04167,169.08454],null,[223.38279,189.5616],[223.01804,189.5597,222.69567,189.59126,222.4227,189.66204,1],[218.05505,190.79438,211.42253,197.26606,216.43725,206.32487,1],[221.45196,215.38368,228.73045,222.33912,233.09809,224.11852,1],[237.46574,225.89793,235.04003,230.58911,241.99592,228.32441,1],[248.9518,226.0597,251.37904,224.60445,252.99669,218.61915,1],[252.99669,218.61915,253.80551,211.98631,259.30551,209.07457,1],[264.80553,206.1628,269.65894,204.86899,270.95303,202.119,1],[272.24716,199.36899,272.89235,195.48712,262.21589,194.84004,1],[251.53943,194.19299,247.33446,198.23571,245.55505,197.75042,1],[243.88685,197.29547,228.85422,189.59002,223.38279,189.5616,1],[223.38279,189.5616],null,[444.8102,208.74717],[444.58519,208.7391,444.35848,208.74377,444.13131,208.75923,1],[442.91978,208.8417,441.67451,209.2626,440.35526,210.0688,1],[436.87589,212.19508,435.74434,213.10556,433.24102,213.35677,1],[433.76452,215.30332,434.29577,217.36446,434.81972,219.59128,1],[437.0069,228.88682,435.83231,235.46079,433.36354,240.72714,1],[440.80149,240.70852,451.61019,235.71651,457.94604,232.22499,1],[457.71751,228.05735,458.80171,224.38472,459.44643,220.85666,1],[458.16044,219.32342,456.69526,217.67652,455.1582,215.93172,1],[451.3448,211.603,448.1852,208.86815,444.8102,208.74717,1],[444.8102,208.74717],null,[123.40171,230.47556],[116.94613,230.3469,113.38485,232.53433,118.70373,238.19638,1],[125.7956,245.74577,132.4305,253.29504,132.88804,258.32797,1],[133.3456,263.3609,135.87353,263.77835,136.08965,266.10503,1],[136.30572,268.43172,132.88785,269.30866,134.94679,271.59638,1],[137.00572,273.88407,140.89524,279.37467,137.69247,280.74728,1],[135.05143,281.87916,130.91447,283.71578,127.1858,284.05535,1],[129.98369,289.2173],[133.03948,285.94581,135.20603,282.20302,138.46575,283.971,1],[143.23781,286.55924,147.84896,288.09643,146.15043,291.41263,1],[144.4519,294.72881,138.46637,302.89916,141.37814,305.64916,1],[144.2899,308.39915,158.85042,314.54483,158.85042,321.17717,1],[158.85042,327.80953,162.40877,335.73676,159.82054,349.00147,1],[157.23232,362.26613,156.90848,370.19172,166.77612,363.55937,1],[176.64374,356.92702,191.68648,348.51634,186.51002,344.47222,1],[181.33355,340.42811,191.44691,340.61184,194.92178,327.00194,1],[196.86297,319.399,204.71055,326.27338,209.64437,319.88368,1],[214.57818,313.49399,227.11296,314.86837,234.87765,316.97129,1],[242.64236,319.07424,244.09964,301.2809,250.89375,296.42796,1],[257.68785,291.57502,254.61358,290.4422,258.81944,286.88338,1],[263.02534,283.32455,251.37906,275.07486,234.07023,277.82486,1],[216.76142,280.57485,200.7473,285.10519,184.40908,275.88462,1],[168.07085,266.66404,165.32069,269.73723,163.70305,266.01666,1],[162.0854,262.29608,161.06794,254.25588,159.19589,251.92073,1],[157.32383,249.58556,140.89494,233.39214,130.60031,231.3332,1],[128.02665,230.81848,125.55357,230.51848,123.40171,230.47556,1],[123.40171,230.47556],null,[458.29754,236.09745],[452.22718,238.43407,444.43816,241.02199,438.88702,241.87602,1],[436.11885,242.30188,433.87106,242.77924,432.00978,243.3041,1],[429.44099,247.68544,426.10048,251.19423,423.49557,254.85521,1],[417.51028,263.26696,428.512,265.85474,430.45316,278.95768,1],[430.91231,282.05675,430.22471,284.66448,429.04115,286.99384,1],[430.20245,288.95056,432.38205,288.70975,433.17272,291.42067,1],[434.19879,294.93863,436.39665,294.5006,437.12955,297.43222,1],[437.86246,300.36384,437.3483,301.82767,440.20662,304.46612,1],[443.06496,307.10459,440.64756,309.30504,444.31208,310.47769,1],[446.68997,311.23861,456.40924,312.00294,465.6267,313.52464,1],[465.23797,311.3901,463.42048,303.28857,457.95207,301.60596,1],[451.64324,299.6648,447.76152,291.25193,444.04093,287.04606,1],[440.32036,282.84019,443.06942,275.72177,450.18706,267.63353,1],[456.66205,260.2756,458.70954,243.97903,458.29754,236.09745,1],[458.29754,236.09745],null,[317.81829,255.21875],[312.98051,255.1581,309.73564,255.82439,307.67315,257.76558,1],[304.92314,260.3538,304.60054,260.83942,301.52702,263.42765,1],[301.52702,263.42765,293.92177,270.86961,289.55412,272.32548,1],[285.18648,273.78137,280.65705,277.82566,283.2453,280.41387,1],[285.83351,283.00211,288.0981,286.72222,287.77455,289.79576,1],[287.45102,292.86926,291.1727,295.45783,300.23151,299.66371,1],[309.29033,303.8696,309.4521,310.34095,314.9521,312.76742,1],[320.45209,315.1939,321.42252,316.64915,327.89312,314.06092,1],[334.36369,311.47269,330.96742,303.22207,330.48213,296.42796,1],[329.99683,289.63384,328.70366,286.07577,330.64481,282.19343,1],[332.586,278.31108,330.8055,273.94127,332.90844,269.89716,1],[335.01137,265.85304,331.12764,256.14902,323.20117,255.50195,1],[321.21957,255.3402,319.43088,255.23898,317.81829,255.21875,1],[317.81829,255.21875],null,[186.3654,387.78437],[186.14447,387.95891,185.92405,388.14148,185.70258,388.3106,1],[177.78843,394.35415,174.4963,403.67784,173.86224,405.67442,1],[197.23361,405.67442],[193.32788,399.85531,190.0524,392.60273,186.3654,387.78437,1],[186.3654,387.78437]],"flat":true},{"id":"kalos-route-1","type":"line","lineWidth":"4","lineColor":"#000000","points":[[395.83449,332.9866],[395.99625,307.10427]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kalos-route-2","type":"line","lineWidth":"4","lineColor":"#000000","points":[[394.46068,278.96989],[395.99625,307.10427]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kalos-route-3","type":"line","lineWidth":"4","lineColor":"#000000","points":[[370.43744,239.16314],[394.46068,278.96989]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kalos-route-4","type":"line","lineWidth":"4","lineColor":"#000000","points":[[370.43744,239.16314],[316.24632,165.56026]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kalos-route-5","type":"line","lineWidth":"4","lineColor":"#000000","points":[[255.0993,243.36904],[316.24632,165.56026]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kalos-route-6","type":"line","lineWidth":"4","lineColor":"#000000","points":[[189.09935,208.42786],[255.0993,243.36904]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kalos-route-7","type":"line","lineWidth":"4","lineColor":"#000000","points":[[162.73172,264.07489],[255.0993,243.36904]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kalos-route-8","type":"line","lineWidth":"4","lineColor":"#000000","points":[[112.30041,245.99652],[141.20383,312.08394],[162.73172,264.07489]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kalos-route-9","type":"line","lineWidth":"4","lineColor":"#000000","points":[[141.20383,312.08394],[234.00412,307.28395]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kalos-route-10","type":"line","lineWidth":"4","lineColor":"#000000","points":[[56.614156,217.81022],[112.30041,245.99652]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kalos-route-11","type":"line","lineWidth":"4","lineColor":"#000000","points":[[73.92297,203.2514],[56.614156,217.81022]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kalos-route-12","type":"line","lineWidth":"4","lineColor":"#000000","points":[[211.90816,133.69265],[93.011189,175.91319]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kalos-route-13","type":"line","lineWidth":"4","lineColor":"#000000","points":[[211.90816,133.69265],[316.24632,165.56026]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kalos-route-14","type":"line","lineWidth":"4","lineColor":"#000000","points":[[316.56984,72.707391],[316.24632,165.56026]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kalos-route-15","type":"line","lineWidth":"4","lineColor":"#000000","points":[[417.34918,132.88381],[316.56984,72.707391]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kalos-route-16","type":"line","lineWidth":"4","lineColor":"#000000","points":[[417.34918,132.88381],[316.24632,165.56026]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kalos-route-17","type":"line","lineWidth":"4","lineColor":"#000000","points":[[417.34918,132.88381],[521.68735,184.97201]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kalos-route-18","type":"line","lineWidth":"4","lineColor":"#000000","points":[[564.06966,206.64847],[521.68735,184.97201]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kalos-route-19","type":"line","lineWidth":"4","lineColor":"#000000","points":[[505.67265,242.23668],[564.06966,206.64847]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kalos-route-20","type":"line","lineWidth":"4","lineColor":"#000000","points":[[487.39325,303.22191],[505.67265,242.23668]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kalos-route-21","type":"line","lineWidth":"4","lineColor":"#000000","points":[[505.67265,242.23668],[447.27564,221.36905]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"kalos-route-22","type":"line","lineWidth":"4","lineColor":"#000000","points":[[370.43744,239.16314],[447.27564,221.36905]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"victory-road","type":"line","lineWidth":"4","lineColor":"#000000","points":[[447.92,182.22],[447.28,221.37]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"azure-bay","type":"line","lineWidth":"4","lineColor":"#000000","points":[[153.1876,91.957356],[211.90816,133.69265]],"hover-state":{"lineColor":"#FFD700"},"cursor":"pointer","zIndex":2},{"id":"path5501","type":"poly","borderWidth":"1px","borderColor":"none","backgroundColor":"#ffffff","points":[[356.6534,-5.6744412],[352.75253,9.760066,346.99913,39.81483,359.22433,46.800661,1],[375.84397,56.297596,449.44513,56.297817,462.50343,76.47884,1],[475.56173,96.659842,514.73701,84.788811,556.28615,107.34406,1],[597.83529,129.89931,600.20946,202.31441,590.71251,226.05678,1],[581.21558,249.79914,556.28572,292.534,563.40843,316.27636,1],[566.90583,327.93432,547.25328,353.51932,528.67274,357.60206,1],[509.4126,361.83413,490.7734,344.55557,469.62571,356.63997,1],[461.66669,361.18797,463.87875,366.3501,451.05877,371.27619,1],[428.98679,379.75737,388.01056,387.53673,358.92706,390.27095,1],[337.92255,392.24563,322.19935,379.30186,302.16775,378.2157,1],[281.94516,377.11919,257.44569,387.88114,242.88771,389.87928,1],[182.34467,398.1891,169.286,394.62705,149.10498,401.74975,1],[147.3578,402.3664,145.45659,403.72719,143.44693,405.67444,1],[600,405.67444],[600,-5.6744412],[356.6534,-5.6744412],[356.6534,-5.6744412]],"flat":true},{"id":"geosenge-town","type":"circle","borderWidth":"0.16445","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"57.207","y":"217.62","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"shalour-city","type":"circle","borderWidth":"0.16445","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"93.352","y":"175.75","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"cyllage-city","type":"circle","borderWidth":"0.16445","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"112.8","y":"246.21","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"ambrette-town","type":"circle","borderWidth":"0.16445","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"140.59","y":"312.31","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"connecting-cave","type":"circle","borderWidth":"0.16445","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"162.9","y":"264.06","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"battle-chateau","type":"circle","borderWidth":"0.16445","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"169.08","y":"237.52","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"parfum-palace","type":"circle","borderWidth":"0.16445","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"189.21","y":"208.47","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"camphrier-town","type":"circle","borderWidth":"0.16445","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"254.86","y":"243.01","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"lumiose-city","type":"circle","borderWidth":"0.16445","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"316.29","y":"165.46","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"santalune-city","type":"circle","borderWidth":"0.16445","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"370.28","y":"238.89","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"aquacorde-town","type":"circle","borderWidth":"0.16445","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"395.87","y":"307.98","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"pokemon-village","type":"circle","borderWidth":"0.16445337","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"487.83081","y":"302.26083","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"snowbelle-city","type":"circle","borderWidth":"0.16445","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"505.9","y":"241.87","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"anistar-city","type":"circle","borderWidth":"0.16445","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"522.38","y":"185.13","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"couriway-town","type":"circle","borderWidth":"0.16445","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"564.24","y":"206.86","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"terminus-cave","type":"circle","borderWidth":"0.16445","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"565.61","y":"148.53","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"dendemille-town","type":"circle","borderWidth":"0.16445","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"416.91","y":"132.74","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"frost-cavern","type":"circle","borderWidth":"0.16445","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"458.09","y":"93.852","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"laverre-city","type":"circle","borderWidth":"0.16445","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"316.75","y":"72.576","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"santalune-forest","type":"circle","borderWidth":"0.16445337","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"394.7215","y":"278.69751","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"vaniville-town","type":"circle","borderWidth":"0.16445","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"395.87","y":"333.37","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"glittering-cave","type":"circle","borderWidth":"0.16445","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"234.16","y":"307.18","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"reflection-cave","type":"circle","borderWidth":"0.16445","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"74.136","y":"203.2","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"kalos-power-plant","type":"circle","borderWidth":"0.16445","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"249.03","y":"152.42","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"poke-ball-factory","type":"circle","borderWidth":"0.16445","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"316.8","y":"59.536","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"lost-hotel","type":"circle","borderWidth":"0.16445","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"403.45","y":"113.98","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"coumarine-city","type":"circle","borderWidth":"0.16445","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"212.1","y":"133.53","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1},{"id":"kalos-elite-four","type":"circle","borderWidth":"0.16445","borderColor":"#000000","backgroundColor":"#000000","size":"5","x":"447.6","y":"181.27","hover-state":{"borderColor":"#FFD700","backgroundColor":"#FFD700"},"cursor":"pointer","zIndex":1}]
}
};
var defaultArea = [{
name:"kanto-route-1",
id:88
},{
name:"johto-route-29",
id:108
},{
name:"hoenn-route-101",
id:449
},{
name:"sinnoh-route-201",
id:31
},{
name:"unova-route-1",
id:356
},{
name:"kalos-route-2",
id:591
}]//[295,185,449,393,141,623,379]
var stats = {
"1": {
text:'HP',
color: '#b20000'
},
"2": {
text:'Attack',
color: '#d8732b'
},
"3": {
text:'Defense',
color: '#dfbb2b'
},
"4": {
text:'S. Attack',
color: '#6890F0'
},
"5": {
text:'S. Defense',
color: '#78C850'
},
"6": {
text:'Speed',
color: '#F85888'
},
"7": {
text:'Accuracy',
color: '#1A8B55'
},
"8": {
text:'Evasion',
color: '#47A0A2'
}
};
var types = {
"1": {
"identifier": "normal",
"generation_id": 1,
"damage_class_id": 2
},
"2": {
"identifier": "fighting",
"generation_id": 1,
"damage_class_id": 2
},
"3": {
"identifier": "flying",
"generation_id": 1,
"damage_class_id": 2
},
"4": {
"identifier": "poison",
"generation_id": 1,
"damage_class_id": 2
},
"5": {
"identifier": "ground",
"generation_id": 1,
"damage_class_id": 2
},
"6": {
"identifier": "rock",
"generation_id": 1,
"damage_class_id": 2
},
"7": {
"identifier": "bug",
"generation_id": 1,
"damage_class_id": 2
},
"8": {
"identifier": "ghost",
"generation_id": 1,
"damage_class_id": 2
},
"9": {
"identifier": "steel",
"generation_id": 2,
"damage_class_id": 2
},
"10": {
"identifier": "fire",
"generation_id": 1,
"damage_class_id": 3
},
"11": {
"identifier": "water",
"generation_id": 1,
"damage_class_id": 3
},
"12": {
"identifier": "grass",
"generation_id": 1,
"damage_class_id": 3
},
"13": {
"identifier": "electric",
"generation_id": 1,
"damage_class_id": 3
},
"14": {
"identifier": "psychic",
"generation_id": 1,
"damage_class_id": 3
},
"15": {
"identifier": "ice",
"generation_id": 1,
"damage_class_id": 3
},
"16": {
"identifier": "dragon",
"generation_id": 1,
"damage_class_id": 3
},
"17": {
"identifier": "dark",
"generation_id": 2,
"damage_class_id": 3
},
"18": {
"identifier": "fairy",
"generation_id": 6,
"damage_class_id": ""
},
"10001": {
"identifier": "unknown",
"generation_id": 2,
"damage_class_id": ""
},
"10002": {
"identifier": "shadow",
"generation_id": 3,
"damage_class_id": ""
}
};
var method_names = ["walk", "old-rod","good-rod","super-rod","surf","rock-smash","headbutt","dark-grass","grass-spots","cave-spots","bridge-spots","super-rod-spots","surf-spots","yellow-flowers","purple-flowers","red-flowers","rough-terrain"]
var currentPokeID = null;
var pokedex = [];
var individual_flag = false;
var title_str ="";
var current_region;
var resize_flag = false;
var colorOptions = [[255,153,153],[255,204,153],[255,255,153],[204,255,153],[153,255,153],[153,255,204],[153,255,255],[153,204,255],[153,153,255],[204,153,255],[255,153,255],[255,153,204],[185,83,83],[185,134,83],[185,185,83],[134,185,83],[83,185,83],[83,185,134],[83,185,185],[83,134,185],[83,83,185],[134,83,185],[185,83,185],[185,83,134],[255,183,183],[255,234,183],[255,255,183],[234,255,183],[183,255,183],[183,255,234],[183,255,255],[183,234,255],[183,183,255],[234,183,255],[255,183,255],[255,183,234],[185,113,113],[185,134,113],[185,185,113],[134,185,113],[113,185,113],[113,185,134],[113,185,185],[113,134,185],[113,113,185],[134,113,185],[185,113,185],[185,113,134]];
var prevMultiple = 1;
module.exports = {
createDropDown:initialFunction,
setUp:handleRegionOptions
};
function initialFunction(region,render_obj) {
svg_stored = render_obj;
region_stored = parseInt(region);
shapes_stored = regions[region_stored].svg
prevMultiple = 1;
createPokedex();
renderShape();
}
function createPokedex() {
firebase.database().ref("pokemon").orderByKey().once("value").then(function(snapshot) {
snapshot.forEach(function (snap_child) {
pokedex.push(snap_child.val());
})
});
}
function renderShape() {
title_str = "Likelyhood of Encountering Pokemon"
zingchart.render({
id: "pokemap",
width: "100%",
height: "100%",
margins: 0,
backgroundColor: "transparent",
data: {
backgroundColor: "transparent",
"shapes": setHeightWidth()
}
});
zingchart.render({
id: "CHART",
width: "100%",
height: "100%",
backgroundColor: "transparent",
data: {
id: "pokemonRoute",
"type": "bar",
"background-color": "transparent",
"fill-angle": 45,
"stacked": true,
width: "100%",
height: "100%",
"title": {
"title": {
"text": title_str
},
"text-align": "left",
"font-family": 'Exo 2, sans-serif',
"font-size": "15px",
"font-color": "#fff",
"background-color": "none",
"background-color": "none",
"padding": "10px 0 0 12.5%",
"wrap-text":"1",
width:":70%",
height:"40px"
},
"legend": {
"layout":"12x1",
"toggle-action": "none",
"background-color": "#fff",
"border-width": 0,
"border-color": "none",
"y": "0",
"x": "75%",
"width":"25%",
height:"100%",
"padding-bottom":"10px",
"shadow": 0,
"max-items":12,
"overflow":"scroll",
"scroll":{
"bar":{
"background-color":"#0D4A61",
"border-left":"1px solid #0D4A61",
"border-right":"1px solid #0D4A61",
"border-top":"1px solid #0D4A61",
"border-bottom":"1px solid #0D4A61",
},
"handle":{
"background-color":"#116381",
"border-left":"2px solid #116381",
"border-right":"2px solid #116381",
"border-top":"2px solid #116381",
"border-bottom":"2px solid #116381",
"border-radius":"15px"
}
},
"item": {
"wrap-text":"1",
"font-color": "#306CB4",
"font-family": 'Exo 2, sans-serif',
"font-size": "15px",
"font-weight": "normal",
cursor: "pointer"
},
"header": {
"wrap-text":"1",
"text": "AREA POKEMON",
"font-family": 'Exo 2, sans-serif',
"font-size": "15px",
"font-color": "#306CB4",
"background-color": "#FFCC00",
"border-radius":"0 0 0 10px",
"border-width": 0,
"border-color": "none",
width:"100%",
height:"10%",
"padding": "0 0 0 20px",
}
},
"plotarea":{
// "margin-left":"10%",
// "margin-right":"25%",
// "margin-top":"15%",
// "margin-bottom":"30%"
height:"100%",
width:"65%",
"x":"12.5%",
"y":"50px",
},
"plot": {
"alpha": 0.8,
"bar-width": "10px",
"hover-state": {
"background-color": "#212339",
"alpha": 1
},
"animation": {
"delay": 0,
"effect": 1,
"speed": 1000,
"method": 0,
"sequence": 1
}
},
"scale-x": {
"values": [],
"items-overlap": false,
"line-color": "#fff",
"line-width": "1px",
"tick": {
"line-color": "#fff",
"line-width": ".75px",
},
"label": {
"text": "Pokemon Level",
"font-family": 'Exo 2, sans-serif',
"font-weight": "normal",
"font-size": "15px",
"font-color": "#fff",
"padding-top": "10px"
},
"guide": {
"visible": false
},
"item": {
"font-color": "#fff",
"font-family": "Exo 2, sans-serif",
"font-size": "10px",
"font-angle": -48,
"offset-x": "5px"
}
},
"scale-y": {
"line-color": "#fff",
"line-width": "1px",
"tick": {
"line-color": "#fff",
"line-width": ".75px",
},
"label": {
"text": "Encounter Chance",
"font-family": 'Exo 2, sans-serif',
"font-weight": "normal",
"font-size": "15px",
"font-color": "#fff",
"padding-bottom": "10px"
},
"guide": {
"visible":false
},
"item": {
"font-color": "#fff",
"font-family": "Exo 2, sans-serif",
"font-size": "10px",
"padding": "3px"
}
},
"tooltip": {
"text": "Chance of encountering a level %k %t: %v%",
"font-family": 'Exo 2, sans-serif',
"font-size": "15px",
"font-weight": "normal",
"font-color": "#fff",
"decimals": 2,
"text-align": "left",
"border-radius": "8px",
"padding": "10px 10px",
"background-color": "#0B4153",
"alpha": 0.95,
"shadow": 0,
"border-width": 0,
"border-color": "none"
},
"series": pokeJSON
}
});
zingchart.shape_click = function(p) {
if (svg_stored.getElementById(p.shapeid).getAttribute("class") == "ROUTE"){
if (selectedShapeID != null)
{
zingchart.exec('pokemap', 'updateobject', {
'type':'shape',
'data' : {
'id' : selectedShapeID,
'line-color' : 'black',
'border-color' : 'black',
'background-color': 'black',
zIndex : 2
}
});
}
selectedShapeID = p.shapeid;
zingchart.exec('pokemap', 'updateobject', {
'type':'shape',
'data' : {
'id' : selectedShapeID,
'line-color' : '#b81c19',
zIndex : 3
}
});
handleAreaOptions(JSON.parse(svg_stored.getElementById(p.shapeid).getAttribute("locationid")));
}
else if (svg_stored.getElementById(p.shapeid).getAttribute("class") == "LANDMARK"){
if (selectedShapeID != null)
{
zingchart.exec('pokemap', 'updateobject', {
'type':'shape',
'data' : {
'id' : selectedShapeID,
'border-color' : 'black',
'background-color': 'black',
'line-color' : 'black',
zIndex : 1
}
});
}
selectedShapeID = p.shapeid;
zingchart.exec('pokemap', 'updateobject', {
'type':'shape',
'data' : {
'id' : selectedShapeID,
'border-color' : '#b81c19',
'background-color': '#b81c19',
zIndex : 3
}
});
handleAreaOptions(JSON.parse(svg_stored.getElementById(p.shapeid).getAttribute("locationid")));
}
};
zingchart.legend_item_click = function(p) {
document.querySelector(".p1").style.display = "none";
document.querySelector(".p2").style.display = "flex";
document.getElementById("pokemon_image").src = "UI_images/holder.png";
// document.getElementById("radar").style.visibility = "hidden";
var pokeText = zingchart.exec('CHART', 'getseriesdata', {'plotindex' : p.plotindex}).text;
infoAboutSelectedPokemon(pokeText.slice(),zingchart.exec('CHART', 'getseriesdata', {'plotindex' : p.plotindex})["value-box"].text);
};
window.onresize = function(){
if (resize_flag) return;
else{
resize_flag = true;
title_str = "Likelyhood of Encountering Pokemon in " + selected_areaName + " with method " + method_names[selected_method-1];
zingchart.exec('CHART', 'reload');
if (individual_flag)
{
// zingchart.exec('radar', 'reload');
zingchart.exec('stats_progression', 'reload');
}
zingchart.exec('pokemap', 'setdata', {
data : {
backgroundColor: "transparent",
shapes : setHeightWidth()
}
});
resize_flag = false
}
};
}
function setHeightWidth(){
var temp_shapes = JSON.parse(JSON.stringify(shapes_stored));
temp_shapes.forEach(function(shape){
if (shape.type == "circle") {
shape.size *= document.getElementById("pokemap").offsetWidth/600;
shape.x *= document.getElementById("pokemap").offsetWidth/600;
shape.y *= document.getElementById("pokemap").offsetWidth/600;
}
else {
shape.points.forEach(function(point_array){
if (point_array != null)
{
if (point_array.length == 2)
{
point_array[0] *= document.getElementById("pokemap").offsetWidth/600;
point_array[1] *= document.getElementById("pokemap").offsetWidth/600;
}
else if (point_array.length == 7)
{
point_array[0] *= document.getElementById("pokemap").offsetWidth/600;
point_array[1] *= document.getElementById("pokemap").offsetWidth/600;
point_array[2] *= document.getElementById("pokemap").offsetWidth/600;
point_array[3] *= document.getElementById("pokemap").offsetWidth/600;
point_array[4] *= document.getElementById("pokemap").offsetWidth/600;
point_array[5] *= document.getElementById("pokemap").offsetWidth/600;
}
}
})
}
});
return temp_shapes;
}
function beginRoute(inVal) {
methodIndex = [];
pokemonSERIES = [];
levelsINDEX = [];
pokeJSON = [];
locationName = "";
responseArray = [];
min = null;
max = null;
document.getElementById("select_Method").options.length = 0;
var tempOptionMethod = document.createElement("option");
tempOptionMethod.text = "Select Method";
tempOptionMethod.selected = true;
tempOptionMethod.disabled = true;
document.getElementById("select_Method").add(tempOptionMethod)
document.getElementById("select_Location_Area").options.length = 0;
var tempOptionArea = document.createElement("option");
tempOptionArea.text = "Select Area";
tempOptionArea.selected = true;
tempOptionArea.disabled = true;
document.getElementById("select_Location_Area").add(tempOptionArea)
document.getElementById("select_Version").options.length = 0;
var tempOptionVersion = document.createElement("option");
tempOptionVersion.text = "Select Version";
tempOptionVersion.selected = true;
tempOptionVersion.disabled = true;
document.getElementById("select_Version").add(tempOptionVersion)
handleRegionOptions(inVal);
}
function formatLocationArea(name) {
function hyphenLowerToSpaceUpper(match) {
return ' ' + match.slice(1).toUpperCase();
}
return name.replace(/\-([a-z])|\-\d/g, hyphenLowerToSpaceUpper);
}
function pokeLocationFunction (inVal) {
firebase.database().ref("locations/"+inVal.toString()).once("value").then(function (locationName_accessed) {
getAllAreasInLocation(locationName_accessed.val()["identifier"],inVal)
});
}
function getAllAreasInLocation(location_in,location_id){
locationName = location_in;
accessDatabaseCHILD(firebase.database().ref("location-areas"), "location_id", location_id, function (areas) {
if (areas.length != 0){
document.getElementById("select_Location_Area").options.length = 0;
var tempOptionArea = document.createElement("option");
tempOptionArea.text = "Select Area";
tempOptionArea.selected = true;
tempOptionArea.disabled = true;
document.getElementById("select_Location_Area").add(tempOptionArea)
selectLocationArea(areas)
}
else
{
alert("We're sorry, we don't detect any wild pokemon in this area!")
}
},1)
}
function selectLocationArea(areas_in){
for (var i = 0; i < areas_in.length; i++){
var newoptions = document.createElement("option");
if (areas_in[i].identifier != "")
{
newoptions.text = formatLocationArea(locationName[0].toUpperCase() + locationName.slice(1)) + " " + formatLocationArea(areas_in[i].identifier[0].toUpperCase() + areas_in[i].identifier.slice(1));
}
else
{
newoptions.text = formatLocationArea(locationName[0].toUpperCase() + locationName.slice(1));
}
newoptions.value = areas_in[i].id;
document.getElementById("select_Location_Area").options.add(newoptions);
if (i == areas_in.length - 1)
{
document.getElementById("select_Location_Area").disabled = false;
document.getElementById("select_Location_Area").onchange = function () {
if (document.getElementById("select_Location_Area").value != "")
{
document.getElementById("select_Method").options.length = 0;
var tempOptionMethod = document.createElement("option");
tempOptionMethod.text = "Select Method";
tempOptionMethod.selected = true;
tempOptionMethod.disabled = true;
document.getElementById("select_Method").add(tempOptionMethod)
document.getElementById("select_Version").options.length = 0;
var tempOptionVersion = document.createElement("option");
tempOptionVersion.text = "Select Version";
tempOptionVersion.selected = true;
tempOptionVersion.disabled = true;
document.getElementById("select_Version").add(tempOptionVersion)
setMethodOptions()
}
}
}
}
}
function setMethodOptions(){
selected_areaName = document.getElementById("select_Location_Area").options[document.getElementById("select_Location_Area").selectedIndex].text;
selected_areaID = document.getElementById("select_Location_Area").value;
firebase.database().ref("location-area-methods/"+selected_areaID).once("value").then(function (snapMethods) {
snapMethods.val().forEach(function (method_indiv) {
var newoptions = document.createElement("option");
newoptions.text = method_names[method_indiv-1];
newoptions.value = method_indiv;
document.getElementById("select_Method").options.add(newoptions);
if (snapMethods.numChildren() == document.getElementById("select_Method").options.length-1)
{
document.getElementById("select_Method").disabled = false;
document.getElementById("select_Method").onchange = function () {
if (document.getElementById("select_Method").value != "")
{
document.getElementById("select_Version").options.length = 0;
var tempOptionVersion = document.createElement("option");
tempOptionVersion.text = "Select Version";
tempOptionVersion.selected = true;
tempOptionVersion.disabled = true;
document.getElementById("select_Version").add(tempOptionVersion)
selectRegion();
}
}
}
})
});
}
var version_iterator; // the index of the current item to show
var area_iterator; // the index of the current item to show
var method_iterator;
var locationArray;
var methodArray;
function handleRegionOptions(region_in) {
version_iterator = 0;
pokeVersionArray = [];
accessDatabaseCHILD(firebase.database().ref("version-groups-regions"), "region_id", region_in, function (version_groups) {
for (var group = 0; group < version_groups.length; group++) {
accessDatabaseCHILD(firebase.database().ref("version"), "version_group_id", version_groups[group]["version_group_id"], function (versions_in_group) {
for (var individual = 0; individual < versions_in_group.length; individual++) {
var temp = versions_in_group[individual];
pokeVersionArray.push(temp);
if (individual == versions_in_group.length - 1) {
var holdName = [];
pokeVersionArray[0].identifier.split("-").forEach(function (val) {
holdName.push(val.charAt(0).toUpperCase() + val.slice(1));
});
document.getElementById("subtext_version").innerHTML = "Version: " + holdName.join(" ");
locationName = defaultArea[region_in-1].name;
handleAreaOptions(defaultArea[region_in-1].id);
pokeVersion = pokeVersionArray[version_iterator].id;
selectedShapeID = locationName;
console.log(locationName)
zingchart.exec('pokemap', 'updateobject', {
'type':'shape',
'data' : {
'id' : locationName,
'line-color' : '#b81c19',
zIndex : 3
}
});
document.getElementById("back_version").onclick = function () {
version_iterator+=(pokeVersionArray.length-1);
version_iterator%=(pokeVersionArray.length);
var holdName = [];
pokeVersionArray[version_iterator].identifier.split("-").forEach(function (val) {
holdName.push(val.charAt(0).toUpperCase() + val.slice(1));
});
document.getElementById("subtext_version").innerHTML = "Version: " + holdName.join(" ");
handleAreaOptions(defaultArea[region_in-1].id);
pokeVersion =pokeVersionArray[version_iterator].id;
}
document.getElementById("next_version").onclick = function () {
version_iterator++;
version_iterator%=(pokeVersionArray.length);
var holdName = [];
pokeVersionArray[version_iterator].identifier.split("-").forEach(function (val) {
holdName.push(val.charAt(0).toUpperCase() + val.slice(1));
});
document.getElementById("subtext_version").innerHTML = "Version: " + holdName.join(" ");
handleAreaOptions(defaultArea[region_in-1].id);
pokeVersion =pokeVersionArray[version_iterator].id;
}
}
}
}, 1);
}
},1);
}
function handleAreaOptions (locationid_in) {
area_iterator=0;
locationArray = []
firebase.database().ref("locations/"+locationid_in.toString()).once("value").then(function (locationName_accessed) {
locationName = locationName_accessed.val()["identifier"]
accessDatabaseCHILD(firebase.database().ref("location-areas"), "location_id", locationid_in, function (areas) {
areas.forEach(function (a,a_index) {
if (a.identifier != "")
{
locationArray.push({
name:formatLocationArea(locationName[0].toUpperCase() + locationName.slice(1)) + " " + formatLocationArea(a.identifier[0].toUpperCase() + a.identifier.slice(1)),
id: a.id
});
}
else
{
locationArray.push({
name:formatLocationArea(locationName[0].toUpperCase() + locationName.slice(1)),
id: a.id
});
}
if (a_index == areas.length-1)
{
document.getElementById("subtext_area").innerHTML = "Location: " +locationArray[0].name;
handleMethodOptions(locationArray[0].id)
selected_areaName = locationArray[0].name;
document.getElementById("back_area").onclick = function () {
area_iterator+=(locationArray.length-1);
area_iterator%=(locationArray.length);
document.getElementById("subtext_area").innerHTML = "Location: " + locationArray[area_iterator].name;
handleMethodOptions(locationArray[area_iterator].id)
selected_areaName = locationArray[area_iterator].name;
}
document.getElementById("next_area").onclick = function () {
area_iterator++;
area_iterator%=(locationArray.length);
document.getElementById("subtext_area").innerHTML = "Location: " + locationArray[area_iterator].name;
handleMethodOptions(locationArray[area_iterator].id)
selected_areaName = locationArray[area_iterator].name;
}
}
})
},1)
});
}
function handleMethodOptions(locationareaid_in) {
method_iterator = 0;
methodArray = [];
firebase.database().ref("location-area-methods/"+locationareaid_in).once("value").then(function (snapMethods) {
snapMethods.val().forEach(function (m,m_index) {
methodArray.push(m);
if (m_index == snapMethods.val().length-1)
{
console.log(methodArray)
document.getElementById("subtext_method").innerHTML = "Encounter Method: " + method_names[methodArray[0]-1];
selected_method = method_names[methodArray[0]-1];
getEncountersAtAreaGivenMethod(locationareaid_in,methodArray[0]);
document.getElementById("back_method").onclick = function () {
method_iterator+=(methodArray.length-1);
method_iterator%=(methodArray.length);
getEncountersAtAreaGivenMethod(locationareaid_in,methodArray[method_iterator]);
selected_method = method_names[methodArray[method_iterator]-1];
document.getElementById("subtext_method").innerHTML = "Encounter Method: " + method_names[methodArray[method_iterator]-1];
}
document.getElementById("next_method").onclick = function () {
method_iterator++;
method_iterator%=(methodArray.length);
getEncountersAtAreaGivenMethod(locationareaid_in,methodArray[method_iterator]);
selected_method = method_names[methodArray[method_iterator]-1];
document.getElementById("subtext_method").innerHTML = "Encounter Method: " + method_names[methodArray[method_iterator]-1];
}
}
})
})
}
function selectRegion() {
selected_method = document.getElementById("select_Method").value;
var tempcount = 0;
var gameSelect = document.getElementById("select_Version");
accessDatabaseCHILD(firebase.database().ref("version-groups-regions"), "region_id", region_stored, function (version_groups) {
for (var group = 0; group < version_groups.length; group++)
{
accessDatabaseCHILD(firebase.database().ref("version"), "version_group_id", version_groups[group]["version_group_id"], function (versions_in_group){
for (var individual = 0; individual < versions_in_group.length; individual++) {
var temp = versions_in_group[individual];
pokeVersionArray.push(temp);
var newoptions = document.createElement("option");
newoptions.text = "";
var holdName = [];
temp.identifier.split("-").forEach(function (val) {
holdName.push(val.charAt(0).toUpperCase() + val.slice(1));
});
newoptions.text = holdName.join(" ");
newoptions.value = temp.id;
gameSelect.options.add(newoptions);
if (individual == versions_in_group.length - 1) {
if (tempcount == version_groups.length - 1) {
document.getElementById("select_Version").disabled = false;
}
else
{
tempcount++;
}
}
}
},1);
}
},1);
document.getElementById("select_Version").onchange = versionSelect;
}
function versionSelect() {
if (document.getElementById("select_Version").value != "Select Version")
{
pokeVersion = document.getElementById("select_Version").value;
getEncountersAtAreaGivenMethod(document.getElementById("select_Location_Area").value,document.getElementById("select_Method").value);
}
}
function getEncountersAtAreaGivenMethod(a_in, m_in) {
methodIndex = [];
pokemonSERIES = [];
levelsINDEX = [];
pokeJSON = [];
locationName = "";
responseArray = [];
min = null;
max = null;
if (pokeVersion == 25 || pokeVersion == 26) {
getfxn((pokeVersion%25)+7);
}
else
{
getfxn(pokeVersion);
}
function getfxn(version_IN) {
console.log(version_IN)
firebase.database().ref("encounters/"+ a_in + "/"+version_IN+","+ m_in).once("value").then(postFirebase);
function postFirebase(snapshot){
var snaparray = [];
if (snapshot.numChildren() > 0) {
snapshot.forEach(function (snap_child) {
snaparray.push(snap_child.val())
if (snaparray.length == snapshot.numChildren())
{
pokemonOnRoute(snaparray,handlePokemon);
}
})
}
else
{
if (pokeVersion == 10 || pokeVersion == 11) {
firebase.database().ref("encounters/"+ a_in + "/"+(pokeVersion%10+1)+","+ m_in).once("value").then(function (snaptwo) {
var snaparray = [];
if (snaptwo.numChildren() > 0) {