-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathua-states.js
1572 lines (1563 loc) · 337 KB
/
ua-states.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
var citiesData = [
{
"title":'Николаев',
"coordinates":[46.967,32],
"filial":[47.5,32.0]
},
{
"title":'Херсон',
"coordinates":[46.633,32.60],
"filial":[46.9,33.9]
},
{
"title":'Одесса',
"coordinates":[46.467, 30.733],
"filial":[47.2,30.3]
},
{
"title":'Симферополь',
"coordinates":[44.948, 34.104],
"diler":[45.2, 34.2]
},
{
"title":'Запорожье',
"coordinates":[47.837778, 35.138333],
"filial":[47.5,35.7]
},
{
"title":'Донецк',
"coordinates":[48.008889, 37.804167],
"diler":[48.2, 38.0]
},
{
"title":'Луганск',
"coordinates":[48.583333, 39.333333],
"representative":[48.9, 39.0]
},
{
"title":'Харьков',
"coordinates":[50, 36.229167],
"representative":[49.7, 36.5]
},
{
"title":'Днепропетровск',
"coordinates":[48.466601, 35.018155]
},
{
"title":'Кировоград',
"coordinates":[48.51, 32.266667]
},
{
"title":'Винница',
"coordinates":[49.237222, 28.467222],
"diler":[49.0, 28.5]
},
{
"title":'Полтава',
"coordinates":[49.574444, 34.568611]
},
{
"title":'Черкассы',
"coordinates":[49.444444, 32.059722]
},
{
"title":'Киев',
"coordinates":[50.45, 30.5],
"diler":[50.2, 30.6]
},
{
"title":'Сумы',
"coordinates":[50.906799, 34.799235]
},
{
"title":'Чернигов',
"coordinates":[51.5, 31.3]
},
{
"title":'Житомир',
"coordinates":[50.254444, 28.657778]
},
{
"title":'Хмельницкий',
"coordinates":[49.42, 27]
},
{
"title":'Ровно',
"coordinates":[50.619722, 26.251389]
},
{
"title":'Тернополь',
"coordinates":[49.566667, 25.6],
"diler":[49.3, 25.6]
},
{
"title":'Львов',
"coordinates":[49.833333, 24]
},
{
"title":'Ивано-Франковск',
"coordinates":[48.922778, 24.710556]
},
{
"title":'Ужгород',
"coordinates":[48.623889, 22.295],
"diler":[48.4, 22.8]
},
{
"title":'Черновцы',
"coordinates":[48.290833, 25.934444],
"diler":[48.1, 25.8]
},
{
"title":'Луцк',
"coordinates":[50.747778, 25.324444]
},
{
"title":'Кривой Рог',
"coordinates":[47.954456, 33.422856],
"representative":[48.2, 34.05]
}
]
var statesData = {
"type":"FeatureCollection",
"features":[
{
"type":"Feature",
"id":"01",
"properties":{
"name":"Черкасская область",
"Manager":"Региональный менеджер<br />Серый Павел",
"Phone":"(0512) 50-02-26 (многоканальный)",
"Email":"[email protected]",
"ICQ":"579 493 488",
"Mobile":"067-512-17-01"
},
"geometry":{
"type":"Polygon",
"coordinates":[[[32.069,50.239],[32.079,50.237],[32.089,50.238],[32.095,50.237],[32.1,50.233],[32.106,50.227],[32.112,50.217],[32.125,50.205],[32.129,50.202],[32.132,50.199],[32.135,50.195],[32.137,50.187],[32.141,50.182],[32.148,50.177],[32.155,50.175],[32.175,50.172],[32.186,50.169],[32.19,50.168],[32.192,50.166],[32.209,50.15],[32.216,50.148],[32.221,50.147],[32.23,50.15],[32.238,50.154],[32.245,50.158],[32.251,50.161],[32.254,50.162],[32.258,50.162],[32.263,50.161],[32.27,50.157],[32.272,50.153],[32.274,50.148],[32.275,50.136],[32.272,50.131],[32.268,50.128],[32.234,50.12],[32.231,50.119],[32.232,50.112],[32.252,50.067],[32.255,50.063],[32.263,50.059],[32.27,50.056],[32.293,50.05],[32.299,50.05],[32.304,50.05],[32.319,50.053],[32.324,50.053],[32.329,50.052],[32.374,49.994],[32.381,49.987],[32.385,49.985],[32.409,49.976],[32.413,49.972],[32.416,49.967],[32.417,49.958],[32.416,49.952],[32.415,49.947],[32.407,49.926],[32.406,49.922],[32.407,49.916],[32.409,49.899],[32.407,49.893],[32.404,49.89],[32.4,49.888],[32.396,49.887],[32.392,49.887],[32.383,49.89],[32.377,49.89],[32.373,49.889],[32.369,49.887],[32.366,49.885],[32.364,49.881],[32.366,49.874],[32.373,49.864],[32.408,49.822],[32.427,49.807],[32.431,49.805],[32.435,49.804],[32.44,49.803],[32.445,49.804],[32.454,49.807],[32.459,49.808],[32.464,49.808],[32.469,49.807],[32.473,49.805],[32.487,49.795],[32.494,49.789],[32.498,49.784],[32.5,49.782],[32.504,49.78],[32.507,49.78],[32.512,49.781],[32.52,49.784],[32.525,49.784],[32.53,49.783],[32.562,49.767],[32.566,49.763],[32.568,49.757],[32.57,49.746],[32.57,49.74],[32.568,49.714],[32.569,49.71],[32.571,49.706],[32.579,49.702],[32.584,49.699],[32.693,49.672],[32.697,49.667],[32.701,49.661],[32.704,49.632],[32.706,49.627],[32.711,49.62],[32.715,49.616],[32.719,49.613],[32.745,49.601],[32.749,49.598],[32.752,49.594],[32.759,49.576],[32.76,49.571],[32.76,49.564],[32.757,49.553],[32.754,49.547],[32.751,49.543],[32.748,49.541],[32.726,49.532],[32.722,49.53],[32.719,49.528],[32.715,49.525],[32.676,49.482],[32.676,49.477],[32.679,49.471],[32.687,49.46],[32.697,49.45],[32.704,49.446],[32.743,49.412],[32.748,49.406],[32.789,49.334],[32.792,49.326],[32.793,49.309],[32.789,49.262],[32.777,49.234],[32.775,49.23],[32.753,49.188],[32.752,49.185],[32.753,49.181],[32.759,49.176],[32.771,49.17],[32.774,49.167],[32.777,49.165],[32.78,49.162],[32.782,49.159],[32.79,49.147],[32.798,49.123],[32.799,49.112],[32.799,49.085],[32.8,49.078],[32.8,49.076],[32.801,49.074],[32.806,49.065],[32.808,49.062],[32.825,49.03],[32.827,49.028],[32.831,49.026],[32.849,49.023],[32.854,49.021],[32.855,49.018],[32.855,49.014],[32.854,49.01],[32.851,49.006],[32.845,49.001],[32.799,48.976],[32.792,48.971],[32.787,48.967],[32.782,48.964],[32.775,48.962],[32.759,48.962],[32.744,48.966],[32.74,48.968],[32.736,48.97],[32.732,48.972],[32.706,48.984],[32.695,48.987],[32.689,48.987],[32.683,48.986],[32.676,48.982],[32.673,48.978],[32.67,48.974],[32.668,48.97],[32.662,48.964],[32.652,48.956],[32.634,48.946],[32.628,48.944],[32.621,48.944],[32.608,48.944],[32.6,48.946],[32.595,48.948],[32.583,48.954],[32.574,48.958],[32.568,48.958],[32.562,48.957],[32.556,48.952],[32.553,48.949],[32.552,48.944],[32.552,48.94],[32.552,48.937],[32.551,48.933],[32.547,48.93],[32.541,48.928],[32.527,48.928],[32.52,48.929],[32.515,48.931],[32.514,48.934],[32.513,48.938],[32.511,48.957],[32.507,48.967],[32.504,48.973],[32.502,48.975],[32.463,49.01],[32.456,49.018],[32.454,49.022],[32.454,49.025],[32.455,49.049],[32.455,49.053],[32.453,49.056],[32.449,49.057],[32.443,49.057],[32.434,49.052],[32.421,49.044],[32.416,49.042],[32.408,49.041],[32.397,49.041],[32.38,49.043],[32.369,49.046],[32.365,49.048],[32.362,49.05],[32.361,49.054],[32.36,49.058],[32.359,49.061],[32.355,49.063],[32.346,49.067],[32.343,49.07],[32.342,49.073],[32.344,49.081],[32.343,49.084],[32.341,49.087],[32.337,49.089],[32.332,49.09],[32.327,49.088],[32.312,49.08],[32.301,49.078],[32.289,49.07],[32.286,49.067],[32.285,49.063],[32.286,49.06],[32.287,49.057],[32.288,49.053],[32.288,49.05],[32.285,49.048],[32.279,49.047],[32.265,49.049],[32.254,49.052],[32.248,49.053],[32.241,49.052],[32.234,49.048],[32.23,49.044],[32.214,49.025],[32.205,49.015],[32.193,49],[32.189,48.997],[32.185,48.995],[32.149,48.98],[32.143,48.976],[32.138,48.972],[32.134,48.965],[32.133,48.961],[32.134,48.958],[32.137,48.956],[32.141,48.954],[32.144,48.951],[32.146,48.948],[32.146,48.944],[32.145,48.94],[32.144,48.936],[32.137,48.919],[32.134,48.916],[32.129,48.913],[32.121,48.91],[32.104,48.91],[32.096,48.911],[32.091,48.913],[32.089,48.917],[32.087,48.919],[32.08,48.92],[32.052,48.916],[32.045,48.917],[32.043,48.919],[32.042,48.922],[32.04,48.924],[32.036,48.926],[32.032,48.928],[32.026,48.928],[32.021,48.927],[32.003,48.915],[31.998,48.912],[31.953,48.902],[31.939,48.896],[31.931,48.891],[31.926,48.884],[31.92,48.879],[31.907,48.871],[31.901,48.866],[31.895,48.862],[31.887,48.86],[31.875,48.862],[31.868,48.866],[31.864,48.871],[31.859,48.888],[31.857,48.893],[31.854,48.898],[31.851,48.903],[31.846,48.906],[31.842,48.91],[31.81,48.924],[31.732,48.943],[31.724,48.944],[31.689,48.945],[31.684,48.943],[31.676,48.94],[31.67,48.932],[31.667,48.925],[31.66,48.92],[31.651,48.917],[31.592,48.918],[31.561,48.926],[31.553,48.926],[31.544,48.924],[31.535,48.917],[31.531,48.911],[31.529,48.904],[31.529,48.891],[31.532,48.872],[31.532,48.853],[31.531,48.847],[31.527,48.835],[31.523,48.83],[31.517,48.826],[31.491,48.811],[31.481,48.803],[31.478,48.799],[31.476,48.793],[31.474,48.787],[31.47,48.776],[31.462,48.761],[31.455,48.756],[31.442,48.751],[31.41,48.745],[31.389,48.738],[31.367,48.733],[31.354,48.734],[31.346,48.732],[31.337,48.725],[31.333,48.724],[31.328,48.726],[31.325,48.728],[31.318,48.737],[31.315,48.74],[31.313,48.741],[31.309,48.743],[31.294,48.747],[31.281,48.748],[31.264,48.747],[31.258,48.748],[31.236,48.752],[31.224,48.754],[31.189,48.753],[31.18,48.751],[31.132,48.732],[31.116,48.728],[31.075,48.728],[31.067,48.727],[31.061,48.728],[31.055,48.728],[31.05,48.73],[31.039,48.736],[31.021,48.743],[30.991,48.749],[30.966,48.751],[30.95,48.755],[30.938,48.756],[30.888,48.754],[30.877,48.757],[30.868,48.756],[30.832,48.75],[30.82,48.75],[30.812,48.751],[30.809,48.753],[30.804,48.759],[30.799,48.76],[30.791,48.761],[30.777,48.76],[30.77,48.761],[30.764,48.762],[30.759,48.764],[30.754,48.765],[30.747,48.766],[30.733,48.765],[30.721,48.767],[30.713,48.767],[30.702,48.765],[30.668,48.752],[30.638,48.733],[30.615,48.722],[30.607,48.715],[30.604,48.71],[30.609,48.704],[30.61,48.7],[30.611,48.697],[30.611,48.694],[30.611,48.692],[30.601,48.664],[30.599,48.66],[30.592,48.654],[30.554,48.632],[30.544,48.625],[30.541,48.619],[30.544,48.617],[30.548,48.615],[30.569,48.609],[30.573,48.607],[30.576,48.604],[30.577,48.601],[30.578,48.581],[30.577,48.573],[30.574,48.565],[30.568,48.562],[30.557,48.559],[30.484,48.554],[30.479,48.554],[30.475,48.556],[30.472,48.558],[30.47,48.561],[30.465,48.567],[30.461,48.569],[30.456,48.571],[30.438,48.573],[30.415,48.572],[30.409,48.57],[30.403,48.567],[30.396,48.561],[30.393,48.556],[30.392,48.551],[30.39,48.542],[30.389,48.538],[30.387,48.534],[30.385,48.531],[30.255,48.485],[30.25,48.48],[30.247,48.478],[30.242,48.477],[30.236,48.477],[30.221,48.479],[30.213,48.482],[30.209,48.485],[30.206,48.488],[30.203,48.49],[30.199,48.492],[30.194,48.493],[30.185,48.492],[30.174,48.489],[30.146,48.474],[30.121,48.456],[30.108,48.453],[30.076,48.455],[30.061,48.466],[30.052,48.471],[30.047,48.472],[30.042,48.473],[30.037,48.474],[30.032,48.473],[30.021,48.472],[29.973,48.458],[29.966,48.457],[29.961,48.457],[29.958,48.459],[29.956,48.463],[29.957,48.47],[29.959,48.474],[29.961,48.476],[29.979,48.487],[29.983,48.489],[29.988,48.495],[29.991,48.5],[29.993,48.506],[29.995,48.509],[29.996,48.51],[30.001,48.51],[30.003,48.51],[30.006,48.511],[30.012,48.515],[30.017,48.52],[30.018,48.522],[30.02,48.525],[30.021,48.529],[30.022,48.534],[30.021,48.538],[30.015,48.551],[30.001,48.571],[29.982,48.587],[29.972,48.598],[29.964,48.61],[29.961,48.615],[29.959,48.623],[29.959,48.652],[29.958,48.655],[29.955,48.659],[29.949,48.661],[29.905,48.673],[29.872,48.689],[29.865,48.693],[29.859,48.698],[29.857,48.703],[29.856,48.708],[29.858,48.718],[29.86,48.722],[29.865,48.726],[29.882,48.732],[29.886,48.734],[29.888,48.736],[29.888,48.74],[29.884,48.743],[29.879,48.746],[29.874,48.747],[29.868,48.75],[29.861,48.754],[29.853,48.762],[29.846,48.765],[29.84,48.766],[29.813,48.765],[29.778,48.768],[29.772,48.769],[29.768,48.778],[29.75,48.84],[29.745,48.849],[29.74,48.85],[29.716,48.854],[29.712,48.857],[29.709,48.859],[29.706,48.863],[29.704,48.867],[29.701,48.875],[29.7,48.88],[29.704,48.885],[29.708,48.887],[29.72,48.893],[29.722,48.897],[29.722,48.902],[29.719,48.91],[29.716,48.914],[29.713,48.918],[29.707,48.923],[29.703,48.925],[29.698,48.927],[29.693,48.928],[29.677,48.928],[29.672,48.929],[29.668,48.931],[29.661,48.936],[29.657,48.938],[29.639,48.945],[29.636,48.947],[29.635,48.95],[29.639,48.953],[29.642,48.956],[29.646,48.96],[29.653,48.975],[29.658,48.979],[29.663,48.981],[29.669,48.981],[29.673,48.984],[29.675,48.987],[29.672,48.999],[29.671,49.001],[29.671,49.001],[29.667,49.006],[29.664,49.008],[29.66,49.01],[29.655,49.012],[29.649,49.013],[29.618,49.013],[29.612,49.015],[29.603,49.018],[29.6,49.021],[29.597,49.023],[29.595,49.027],[29.593,49.031],[29.593,49.039],[29.595,49.045],[29.598,49.051],[29.61,49.062],[29.614,49.065],[29.618,49.067],[29.652,49.08],[29.671,49.085],[29.674,49.088],[29.676,49.093],[29.674,49.103],[29.674,49.109],[29.675,49.115],[29.68,49.119],[29.685,49.122],[29.704,49.128],[29.707,49.132],[29.709,49.136],[29.705,49.147],[29.703,49.152],[29.701,49.157],[29.701,49.161],[29.704,49.167],[29.711,49.174],[29.712,49.178],[29.711,49.183],[29.704,49.189],[29.699,49.193],[29.694,49.195],[29.679,49.2],[29.675,49.202],[29.675,49.21],[29.697,49.227],[29.736,49.22],[29.741,49.217],[29.745,49.213],[29.743,49.211],[29.739,49.209],[29.735,49.208],[29.731,49.205],[29.728,49.202],[29.729,49.195],[29.734,49.19],[29.741,49.184],[29.761,49.175],[29.778,49.171],[29.837,49.175],[29.862,49.174],[29.869,49.176],[29.872,49.179],[29.87,49.19],[29.87,49.193],[29.871,49.197],[29.874,49.2],[29.877,49.203],[29.891,49.212],[29.898,49.217],[29.906,49.225],[29.909,49.23],[29.914,49.24],[29.917,49.244],[29.92,49.246],[29.932,49.251],[29.954,49.261],[29.964,49.263],[29.997,49.264],[30.007,49.265],[30.014,49.267],[30.024,49.278],[30.032,49.283],[30.039,49.285],[30.045,49.285],[30.053,49.283],[30.083,49.282],[30.088,49.281],[30.098,49.277],[30.103,49.276],[30.112,49.275],[30.116,49.277],[30.117,49.279],[30.116,49.283],[30.114,49.286],[30.107,49.294],[30.105,49.296],[30.104,49.298],[30.104,49.301],[30.108,49.305],[30.115,49.309],[30.129,49.314],[30.136,49.319],[30.146,49.329],[30.152,49.33],[30.158,49.329],[30.179,49.323],[30.183,49.321],[30.183,49.319],[30.182,49.315],[30.171,49.304],[30.166,49.297],[30.164,49.293],[30.164,49.29],[30.166,49.287],[30.169,49.284],[30.174,49.282],[30.35,49.258],[30.354,49.257],[30.357,49.255],[30.358,49.252],[30.358,49.249],[30.358,49.245],[30.36,49.241],[30.363,49.237],[30.373,49.233],[30.382,49.233],[30.387,49.235],[30.39,49.239],[30.409,49.293],[30.415,49.304],[30.416,49.308],[30.417,49.312],[30.416,49.32],[30.417,49.328],[30.42,49.336],[30.423,49.34],[30.428,49.344],[30.438,49.349],[30.445,49.35],[30.452,49.35],[30.458,49.349],[30.463,49.347],[30.467,49.346],[30.475,49.341],[30.479,49.339],[30.484,49.333],[30.486,49.33],[30.489,49.327],[30.494,49.324],[30.498,49.324],[30.501,49.324],[30.534,49.332],[30.539,49.334],[30.55,49.341],[30.555,49.341],[30.56,49.34],[30.588,49.33],[30.593,49.33],[30.596,49.332],[30.602,49.338],[30.615,49.355],[30.619,49.359],[30.623,49.359],[30.627,49.358],[30.635,49.353],[30.642,49.352],[30.655,49.351],[30.669,49.354],[30.678,49.354],[30.685,49.354],[30.689,49.352],[30.692,49.349],[30.712,49.327],[30.715,49.324],[30.72,49.321],[30.725,49.321],[30.73,49.322],[30.748,49.329],[30.781,49.335],[30.785,49.337],[30.796,49.346],[30.801,49.349],[30.81,49.352],[30.816,49.352],[30.832,49.347],[30.842,49.348],[30.848,49.35],[30.859,49.357],[30.868,49.361],[30.875,49.361],[30.879,49.359],[30.882,49.356],[30.884,49.353],[30.888,49.35],[30.894,49.348],[30.908,49.346],[30.915,49.35],[30.919,49.355],[30.919,49.359],[30.919,49.37],[30.919,49.374],[30.92,49.379],[30.922,49.382],[30.946,49.41],[30.95,49.414],[30.956,49.419],[30.974,49.428],[30.979,49.431],[30.988,49.439],[30.998,49.447],[31.023,49.462],[31.029,49.468],[31.035,49.472],[31.077,49.491],[31.081,49.493],[31.083,49.496],[31.088,49.501],[31.104,49.528],[31.11,49.533],[31.119,49.538],[31.15,49.553],[31.156,49.556],[31.157,49.559],[31.158,49.562],[31.159,49.574],[31.159,49.578],[31.158,49.582],[31.157,49.585],[31.154,49.588],[31.149,49.59],[31.138,49.592],[31.133,49.593],[31.13,49.596],[31.128,49.599],[31.127,49.603],[31.128,49.614],[31.131,49.618],[31.135,49.622],[31.147,49.629],[31.15,49.633],[31.163,49.655],[31.173,49.668],[31.175,49.672],[31.176,49.676],[31.175,49.679],[31.174,49.683],[31.169,49.689],[31.169,49.692],[31.17,49.696],[31.172,49.699],[31.186,49.714],[31.188,49.718],[31.197,49.753],[31.197,49.757],[31.195,49.76],[31.192,49.763],[31.188,49.765],[31.185,49.768],[31.182,49.77],[31.182,49.774],[31.183,49.777],[31.184,49.781],[31.185,49.782],[31.197,49.797],[31.198,49.801],[31.199,49.804],[31.196,49.807],[31.192,49.809],[31.184,49.813],[31.181,49.815],[31.179,49.818],[31.18,49.821],[31.182,49.825],[31.192,49.832],[31.195,49.835],[31.205,49.847],[31.212,49.854],[31.218,49.857],[31.224,49.859],[31.259,49.862],[31.336,49.897],[31.346,49.899],[31.357,49.9],[31.394,49.9],[31.405,49.901],[31.423,49.905],[31.43,49.906],[31.435,49.906],[31.441,49.905],[31.444,49.903],[31.447,49.901],[31.448,49.897],[31.449,49.894],[31.451,49.89],[31.452,49.887],[31.454,49.884],[31.457,49.882],[31.461,49.879],[31.465,49.877],[31.468,49.875],[31.47,49.872],[31.471,49.868],[31.472,49.861],[31.474,49.857],[31.476,49.855],[31.483,49.849],[31.489,49.844],[31.492,49.842],[31.497,49.84],[31.5,49.84],[31.502,49.842],[31.504,49.845],[31.507,49.854],[31.509,49.859],[31.514,49.865],[31.519,49.866],[31.525,49.866],[31.529,49.864],[31.532,49.862],[31.538,49.86],[31.545,49.859],[31.558,49.859],[31.565,49.861],[31.571,49.863],[31.574,49.865],[31.576,49.869],[31.578,49.873],[31.581,49.881],[31.582,49.888],[31.583,49.891],[31.586,49.896],[31.591,49.897],[31.597,49.898],[31.601,49.896],[31.604,49.894],[31.606,49.89],[31.607,49.887],[31.605,49.866],[31.606,49.863],[31.609,49.86],[31.613,49.858],[31.707,49.847],[31.713,49.848],[31.717,49.849],[31.721,49.854],[31.731,49.867],[31.742,49.879],[31.76,49.891],[31.763,49.893],[31.764,49.897],[31.765,49.901],[31.764,49.911],[31.765,49.915],[31.767,49.918],[31.793,49.939],[31.802,49.953],[31.807,49.96],[31.809,49.969],[31.81,49.977],[31.809,49.984],[31.808,49.992],[31.807,49.995],[31.806,49.998],[31.807,50.001],[31.81,50.006],[31.814,50.008],[31.819,50.01],[31.858,50.017],[31.866,50.02],[31.872,50.023],[31.873,50.027],[31.874,50.031],[31.871,50.037],[31.864,50.05],[31.862,50.057],[31.86,50.064],[31.86,50.072],[31.859,50.076],[31.858,50.079],[31.851,50.092],[31.85,50.095],[31.853,50.1],[31.862,50.106],[31.893,50.121],[31.9,50.125],[31.905,50.132],[31.91,50.141],[31.914,50.147],[31.918,50.148],[31.928,50.145],[31.936,50.145],[31.948,50.146],[31.954,50.148],[31.96,50.15],[31.981,50.164],[31.988,50.169],[31.993,50.176],[31.995,50.179],[31.996,50.183],[31.995,50.186],[31.994,50.19],[31.992,50.193],[31.986,50.198],[31.982,50.2],[31.977,50.205],[31.975,50.208],[31.974,50.21],[31.974,50.212],[31.973,50.216],[31.974,50.22],[31.975,50.224],[31.979,50.229],[31.984,50.235],[31.994,50.243],[31.999,50.247],[32.004,50.249],[32.014,50.251],[32.019,50.251],[32.032,50.251],[32.038,50.249],[32.048,50.246],[32.057,50.242],[32.069,50.239]]]
}
},
{
"type":"Feature",
"id":"02",
"properties":{
"name":"Черниговская область",
"Manager":"Региональный менеджер<br />Рыбалов Дмитрий",
"Phone":"(0512) 50-02-26 (многоканальный)",
"Email":"[email protected]",
"ICQ":"350 079 086",
"Mobile":"067-512-15-40"
},
"geometry":{
"type":"Polygon",
"coordinates":[[[33.196,52.369],[33.294,52.358],[33.359,52.358],[33.376,52.356],[33.401,52.345],[33.401,52.344],[33.397,52.34],[33.39,52.323],[33.387,52.307],[33.384,52.3],[33.371,52.289],[33.366,52.282],[33.364,52.274],[33.362,52.256],[33.359,52.248],[33.349,52.238],[33.323,52.222],[33.318,52.21],[33.324,52.162],[33.326,52.153],[33.33,52.151],[33.374,52.142],[33.379,52.14],[33.402,52.126],[33.42,52.11],[33.431,52.103],[33.434,52.1],[33.436,52.097],[33.438,52.094],[33.44,52.091],[33.444,52.089],[33.449,52.088],[33.48,52.086],[33.485,52.085],[33.486,52.082],[33.487,52.078],[33.486,52.073],[33.483,52.067],[33.476,52.056],[33.471,52.052],[33.465,52.049],[33.444,52.045],[33.42,52.044],[33.407,52.044],[33.402,52.045],[33.398,52.048],[33.396,52.05],[33.394,52.054],[33.391,52.056],[33.388,52.058],[33.384,52.058],[33.379,52.057],[33.376,52.053],[33.373,52.047],[33.374,52.014],[33.373,52.01],[33.371,52.005],[33.366,51.999],[33.361,51.996],[33.356,51.993],[33.354,51.991],[33.353,51.988],[33.36,51.986],[33.375,51.969],[33.377,51.958],[33.366,51.947],[33.31,51.935],[33.287,51.933],[33.272,51.929],[33.237,51.91],[33.225,51.906],[33.18,51.908],[33.161,51.904],[33.168,51.892],[33.168,51.885],[33.143,51.881],[33.131,51.866],[33.121,51.851],[33.102,51.844],[33.089,51.836],[33.072,51.816],[33.062,51.793],[33.068,51.772],[33.074,51.765],[33.085,51.741],[33.092,51.734],[33.099,51.727],[33.153,51.693],[33.153,51.682],[33.137,51.668],[33.135,51.658],[33.138,51.649],[33.143,51.645],[33.148,51.643],[33.154,51.642],[33.156,51.639],[33.158,51.635],[33.162,51.594],[33.166,51.59],[33.171,51.587],[33.175,51.585],[33.179,51.582],[33.182,51.58],[33.182,51.577],[33.181,51.574],[33.174,51.572],[33.158,51.569],[33.154,51.565],[33.151,51.559],[33.153,51.546],[33.156,51.54],[33.159,51.535],[33.179,51.524],[33.183,51.522],[33.185,51.519],[33.187,51.516],[33.184,51.512],[33.17,51.5],[33.169,51.5],[33.166,51.499],[33.163,51.499],[33.156,51.501],[33.126,51.51],[33.123,51.51],[33.122,51.508],[33.131,51.488],[33.132,51.484],[33.131,51.48],[33.126,51.474],[33.121,51.471],[33.116,51.469],[33.112,51.468],[33.109,51.463],[33.108,51.456],[33.113,51.44],[33.118,51.433],[33.123,51.428],[33.13,51.424],[33.131,51.422],[33.13,51.419],[33.127,51.416],[33.123,51.413],[33.121,51.409],[33.12,51.403],[33.122,51.395],[33.123,51.39],[33.123,51.384],[33.119,51.378],[33.115,51.375],[33.111,51.372],[33.101,51.369],[33.08,51.367],[33.067,51.367],[33.061,51.368],[33.056,51.369],[33.052,51.371],[33.048,51.374],[33.046,51.377],[33.039,51.389],[33.037,51.391],[33.036,51.393],[33.032,51.395],[33.027,51.396],[33.021,51.397],[33.015,51.396],[33.012,51.394],[33.008,51.391],[33.002,51.381],[33,51.379],[33.001,51.376],[33.002,51.373],[33.007,51.366],[33.016,51.355],[33.02,51.348],[33.023,51.344],[33.027,51.342],[33.033,51.342],[33.044,51.342],[33.049,51.341],[33.053,51.339],[33.055,51.336],[33.056,51.332],[33.056,51.327],[33.052,51.318],[33.05,51.313],[33.049,51.307],[33.054,51.302],[33.058,51.298],[33.071,51.291],[33.073,51.288],[33.074,51.285],[33.071,51.281],[33.067,51.278],[33.065,51.274],[33.064,51.269],[33.07,51.257],[33.071,51.252],[33.07,51.249],[33.066,51.245],[33.062,51.243],[33.033,51.234],[33.031,51.23],[33.029,51.224],[33.031,51.212],[33.031,51.206],[33.028,51.198],[33.023,51.195],[33.019,51.192],[32.967,51.182],[32.963,51.178],[32.962,51.172],[32.962,51.159],[32.967,51.15],[32.969,51.144],[32.97,51.14],[32.967,51.133],[32.965,51.129],[32.941,51.104],[32.94,51.1],[32.94,51.097],[32.945,51.095],[32.983,51.087],[33.021,51.076],[33.027,51.075],[33.033,51.075],[33.054,51.078],[33.059,51.078],[33.062,51.076],[33.065,51.074],[33.066,51.07],[33.065,51.066],[33.059,51.062],[33.045,51.055],[33.043,51.053],[33.044,51.049],[33.049,51.046],[33.053,51.043],[33.063,51.039],[33.084,51.032],[33.136,51.025],[33.142,51.026],[33.146,51.027],[33.149,51.03],[33.17,51.058],[33.173,51.06],[33.179,51.06],[33.191,51.058],[33.202,51.055],[33.206,51.052],[33.207,51.048],[33.199,51.036],[33.184,51.019],[33.177,51.014],[33.173,51.012],[33.157,51],[33.156,50.997],[33.155,50.994],[33.155,50.989],[33.158,50.985],[33.162,50.982],[33.182,50.971],[33.185,50.968],[33.187,50.962],[33.183,50.951],[33.183,50.929],[33.183,50.925],[33.184,50.918],[33.182,50.912],[33.179,50.904],[33.171,50.896],[33.164,50.893],[33.158,50.891],[33.154,50.889],[33.151,50.886],[33.147,50.881],[33.124,50.824],[33.123,50.813],[33.122,50.795],[33.123,50.785],[33.125,50.777],[33.129,50.773],[33.138,50.765],[33.151,50.759],[33.158,50.757],[33.164,50.754],[33.167,50.749],[33.167,50.743],[33.164,50.736],[33.156,50.729],[33.148,50.724],[33.141,50.721],[33.135,50.716],[33.131,50.71],[33.129,50.699],[33.128,50.684],[33.127,50.68],[33.124,50.676],[33.117,50.671],[33.107,50.667],[33.103,50.664],[33.101,50.66],[33.102,50.654],[33.105,50.645],[33.107,50.642],[33.107,50.638],[33.105,50.625],[33.095,50.602],[33.062,50.538],[33.024,50.492],[33.009,50.48],[32.985,50.474],[32.973,50.468],[32.967,50.464],[32.962,50.46],[32.955,50.448],[32.951,50.444],[32.946,50.442],[32.929,50.438],[32.906,50.429],[32.899,50.425],[32.895,50.421],[32.889,50.41],[32.883,50.401],[32.878,50.397],[32.873,50.395],[32.863,50.393],[32.828,50.391],[32.812,50.388],[32.727,50.358],[32.691,50.358],[32.686,50.36],[32.684,50.362],[32.682,50.366],[32.676,50.368],[32.667,50.368],[32.628,50.363],[32.526,50.366],[32.503,50.37],[32.5,50.372],[32.498,50.373],[32.494,50.379],[32.491,50.385],[32.49,50.389],[32.488,50.392],[32.487,50.396],[32.483,50.402],[32.48,50.404],[32.477,50.406],[32.472,50.408],[32.464,50.408],[32.45,50.408],[32.443,50.407],[32.413,50.393],[32.407,50.392],[32.403,50.393],[32.396,50.398],[32.393,50.401],[32.386,50.406],[32.383,50.408],[32.376,50.409],[32.35,50.408],[32.288,50.389],[32.284,50.387],[32.281,50.385],[32.274,50.38],[32.254,50.358],[32.243,50.351],[32.232,50.345],[32.224,50.343],[32.217,50.343],[32.212,50.344],[32.204,50.349],[32.199,50.35],[32.139,50.35],[32.079,50.374],[32.073,50.378],[32.067,50.383],[32.069,50.386],[32.072,50.389],[32.079,50.393],[32.083,50.395],[32.087,50.398],[32.089,50.401],[32.089,50.406],[32.087,50.408],[32.082,50.41],[32.07,50.411],[32.059,50.41],[32.051,50.41],[32.043,50.411],[32.027,50.416],[32.02,50.42],[32.015,50.423],[32.013,50.425],[32.011,50.428],[32.01,50.431],[32.01,50.435],[32.01,50.44],[32.01,50.445],[32.008,50.451],[32.004,50.455],[32.001,50.457],[31.977,50.47],[31.974,50.475],[31.973,50.48],[31.975,50.484],[31.981,50.49],[31.992,50.5],[31.993,50.5],[31.995,50.501],[31.998,50.502],[32.001,50.502],[32.022,50.5],[32.023,50.5],[32.024,50.5],[32.028,50.502],[32.031,50.504],[32.033,50.508],[32.034,50.512],[32.035,50.525],[32.033,50.539],[32.028,50.545],[32.022,50.548],[31.98,50.548],[31.968,50.549],[31.962,50.55],[31.954,50.555],[31.944,50.562],[31.909,50.593],[31.896,50.599],[31.867,50.616],[31.856,50.621],[31.847,50.624],[31.825,50.622],[31.805,50.618],[31.8,50.616],[31.797,50.614],[31.795,50.611],[31.794,50.608],[31.794,50.604],[31.793,50.6],[31.791,50.597],[31.785,50.592],[31.784,50.589],[31.783,50.586],[31.784,50.583],[31.784,50.579],[31.783,50.576],[31.78,50.575],[31.772,50.572],[31.767,50.57],[31.764,50.567],[31.762,50.564],[31.756,50.558],[31.752,50.555],[31.748,50.553],[31.743,50.552],[31.738,50.552],[31.698,50.554],[31.692,50.554],[31.687,50.553],[31.682,50.551],[31.678,50.549],[31.671,50.545],[31.664,50.539],[31.661,50.537],[31.656,50.536],[31.644,50.535],[31.639,50.534],[31.635,50.532],[31.632,50.529],[31.622,50.521],[31.618,50.519],[31.613,50.518],[31.608,50.517],[31.594,50.518],[31.589,50.517],[31.584,50.516],[31.577,50.512],[31.572,50.51],[31.567,50.509],[31.561,50.509],[31.5,50.518],[31.497,50.518],[31.492,50.517],[31.487,50.516],[31.483,50.514],[31.473,50.506],[31.463,50.5],[31.384,50.513],[31.364,50.514],[31.351,50.514],[31.346,50.511],[31.339,50.51],[31.328,50.508],[31.321,50.51],[31.316,50.512],[31.306,50.516],[31.298,50.518],[31.287,50.518],[31.281,50.519],[31.275,50.521],[31.271,50.523],[31.268,50.525],[31.265,50.528],[31.263,50.531],[31.261,50.534],[31.262,50.538],[31.263,50.548],[31.262,50.552],[31.258,50.558],[31.253,50.56],[31.246,50.56],[31.226,50.56],[31.22,50.562],[31.215,50.564],[31.186,50.582],[31.183,50.585],[31.18,50.588],[31.179,50.591],[31.18,50.595],[31.183,50.603],[31.186,50.606],[31.189,50.607],[31.2,50.607],[31.204,50.608],[31.208,50.61],[31.211,50.613],[31.214,50.616],[31.219,50.623],[31.22,50.627],[31.221,50.631],[31.221,50.635],[31.218,50.645],[31.213,50.659],[31.21,50.665],[31.205,50.671],[31.199,50.676],[31.185,50.686],[31.162,50.698],[31.161,50.699],[31.159,50.702],[31.16,50.71],[31.158,50.715],[31.154,50.718],[31.149,50.719],[31.133,50.719],[31.119,50.721],[31.113,50.724],[31.11,50.727],[31.111,50.731],[31.112,50.734],[31.114,50.738],[31.115,50.742],[31.114,50.745],[31.106,50.75],[31.101,50.755],[31.098,50.759],[31.095,50.765],[31.089,50.767],[31.084,50.769],[31.078,50.769],[31.073,50.767],[31.069,50.766],[31.057,50.76],[31.052,50.758],[31.042,50.756],[31.03,50.756],[30.976,50.759],[30.963,50.759],[30.954,50.756],[30.939,50.747],[30.931,50.746],[30.919,50.747],[30.872,50.755],[30.867,50.754],[30.863,50.752],[30.854,50.743],[30.851,50.74],[30.845,50.738],[30.836,50.737],[30.83,50.738],[30.826,50.74],[30.819,50.747],[30.814,50.751],[30.802,50.757],[30.794,50.76],[30.787,50.761],[30.758,50.756],[30.746,50.756],[30.741,50.757],[30.738,50.76],[30.738,50.764],[30.739,50.767],[30.742,50.771],[30.756,50.786],[30.765,50.8],[30.771,50.811],[30.775,50.819],[30.78,50.84],[30.78,50.844],[30.776,50.847],[30.767,50.853],[30.735,50.869],[30.726,50.872],[30.672,50.885],[30.661,50.889],[30.655,50.892],[30.653,50.895],[30.652,50.898],[30.651,50.902],[30.651,50.906],[30.652,50.91],[30.653,50.915],[30.659,50.931],[30.663,50.949],[30.664,50.957],[30.663,50.961],[30.663,50.965],[30.66,50.972],[30.659,50.975],[30.657,50.978],[30.654,50.981],[30.649,50.986],[30.625,51],[30.615,51.004],[30.607,51.005],[30.6,51.004],[30.592,51.005],[30.58,51.007],[30.568,51.013],[30.561,51.016],[30.556,51.017],[30.551,51.017],[30.547,51.015],[30.543,51.013],[30.538,51.01],[30.532,51.008],[30.521,51.008],[30.517,51.01],[30.514,51.013],[30.512,51.017],[30.508,51.047],[30.511,51.108],[30.513,51.117],[30.531,51.172],[30.531,51.18],[30.53,51.188],[30.528,51.195],[30.516,51.215],[30.515,51.22],[30.516,51.225],[30.52,51.227],[30.525,51.228],[30.544,51.227],[30.55,51.227],[30.554,51.229],[30.556,51.232],[30.557,51.235],[30.554,51.243],[30.555,51.244],[30.556,51.268],[30.559,51.27],[30.577,51.289],[30.58,51.304],[30.61,51.318],[30.638,51.336],[30.638,51.336],[30.632,51.364],[30.632,51.364],[30.645,51.368],[30.645,51.368],[30.644,51.373],[30.637,51.379],[30.632,51.384],[30.622,51.413],[30.618,51.419],[30.606,51.425],[30.595,51.425],[30.588,51.428],[30.584,51.44],[30.584,51.44],[30.586,51.452],[30.593,51.459],[30.605,51.462],[30.618,51.46],[30.618,51.46],[30.618,51.468],[30.607,51.47],[30.597,51.475],[30.589,51.482],[30.584,51.494],[30.584,51.494],[30.589,51.502],[30.589,51.502],[30.585,51.51],[30.575,51.516],[30.563,51.522],[30.563,51.522],[30.571,51.527],[30.576,51.531],[30.584,51.543],[30.584,51.543],[30.567,51.548],[30.534,51.554],[30.522,51.563],[30.522,51.563],[30.522,51.569],[30.527,51.572],[30.531,51.574],[30.535,51.575],[30.543,51.577],[30.543,51.577],[30.543,51.583],[30.534,51.586],[30.515,51.597],[30.515,51.597],[30.515,51.604],[30.544,51.62],[30.556,51.624],[30.556,51.624],[30.552,51.634],[30.55,51.638],[30.55,51.638],[30.555,51.64],[30.563,51.648],[30.57,51.652],[30.57,51.652],[30.564,51.666],[30.564,51.666],[30.576,51.687],[30.576,51.687],[30.57,51.7],[30.57,51.7],[30.582,51.703],[30.614,51.703],[30.625,51.706],[30.63,51.716],[30.632,51.728],[30.635,51.74],[30.646,51.747],[30.646,51.747],[30.646,51.755],[30.638,51.755],[30.618,51.762],[30.618,51.762],[30.63,51.77],[30.652,51.779],[30.67,51.791],[30.67,51.791],[30.669,51.806],[30.662,51.816],[30.662,51.82],[30.662,51.82],[30.666,51.823],[30.672,51.83],[30.694,51.848],[30.697,51.851],[30.702,51.854],[30.707,51.861],[30.714,51.867],[30.734,51.874],[30.737,51.883],[30.738,51.892],[30.741,51.898],[30.749,51.9],[30.779,51.898],[30.788,51.901],[30.797,51.907],[30.81,51.919],[30.81,51.919],[30.81,51.926],[30.805,51.93],[30.802,51.936],[30.802,51.936],[30.803,51.939],[30.831,51.946],[30.845,51.952],[30.858,51.958],[30.869,51.965],[30.879,51.974],[30.879,51.977],[30.879,51.977],[30.879,51.982],[30.879,51.982],[30.881,51.989],[30.888,51.995],[30.897,51.999],[30.903,52],[30.908,51.999],[30.915,51.993],[30.941,51.994],[30.95,52.007],[30.95,52.007],[30.94,52.02],[30.911,52.023],[30.911,52.023],[30.914,52.028],[30.916,52.033],[30.919,52.038],[30.925,52.043],[30.924,52.043],[30.918,52.06],[30.918,52.06],[30.934,52.07],[30.959,52.075],[31.096,52.08],[31.135,52.077],[31.159,52.069],[31.205,52.044],[31.229,52.039],[31.252,52.045],[31.269,52.062],[31.284,52.082],[31.304,52.098],[31.383,52.118],[31.475,52.118],[31.65,52.097],[31.764,52.101],[31.764,52.101],[31.826,52.104],[31.858,52.1],[31.882,52.087],[31.887,52.07],[31.887,52.052],[31.892,52.037],[31.91,52.029],[31.927,52.031],[31.98,52.048],[32.017,52.05],[32.077,52.04],[32.095,52.041],[32.233,52.081],[32.277,52.103],[32.277,52.103],[32.306,52.142],[32.319,52.202],[32.328,52.22],[32.328,52.22],[32.338,52.226],[32.35,52.23],[32.361,52.236],[32.361,52.236],[32.367,52.248],[32.363,52.256],[32.344,52.277],[32.339,52.288],[32.353,52.322],[32.353,52.322],[32.394,52.327],[32.48,52.308],[32.528,52.317],[32.725,52.252],[32.755,52.253],[32.815,52.262],[32.844,52.263],[32.861,52.258],[32.89,52.243],[32.909,52.241],[32.927,52.247],[33.03,52.304],[33.048,52.309],[33.057,52.309],[33.07,52.305],[33.079,52.306],[33.083,52.308],[33.087,52.311],[33.099,52.325],[33.099,52.325],[33.109,52.329],[33.128,52.333],[33.14,52.341],[33.141,52.341],[33.166,52.36],[33.166,52.36],[33.183,52.368],[33.196,52.369]]]
}
},
{
"type":"Feature",
"id":"02",
"properties":{
"name":"Черновицкая область",
"Manager":"Региональный менеджер<br />Молчаницкий Владимир",
"Phone":"(0512) 50-02-26 (многоканальный)",
"Email":"[email protected]",
"ICQ":"417 233 254",
"Mobile":"067-511-84-42"
},
"geometry":{
"type":"Polygon",
"coordinates":[[[25.731,48.635],[25.742,48.63],[25.753,48.633],[25.757,48.64],[25.76,48.649],[25.767,48.658],[25.794,48.67],[25.809,48.661],[25.821,48.645],[25.839,48.637],[25.86,48.619],[25.863,48.613],[25.863,48.604],[25.863,48.601],[25.912,48.588],[25.928,48.587],[25.944,48.589],[25.96,48.596],[25.974,48.616],[25.986,48.624],[26.01,48.615],[26.02,48.616],[26.025,48.621],[26.029,48.638],[26.033,48.643],[26.049,48.648],[26.059,48.642],[26.062,48.628],[26.061,48.609],[26.061,48.616],[26.052,48.583],[26.053,48.572],[26.064,48.558],[26.08,48.547],[26.099,48.541],[26.117,48.542],[26.13,48.555],[26.114,48.57],[26.106,48.581],[26.102,48.592],[26.102,48.607],[26.105,48.611],[26.133,48.609],[26.146,48.596],[26.145,48.568],[26.149,48.54],[26.181,48.527],[26.239,48.534],[26.257,48.533],[26.269,48.53],[26.294,48.52],[26.327,48.512],[26.355,48.51],[26.381,48.517],[26.404,48.534],[26.422,48.53],[26.471,48.538],[26.489,48.53],[26.515,48.515],[26.522,48.507],[26.54,48.479],[26.553,48.466],[26.566,48.457],[26.583,48.453],[26.606,48.452],[26.622,48.458],[26.607,48.492],[26.616,48.507],[26.627,48.508],[26.635,48.503],[26.639,48.497],[26.644,48.493],[26.654,48.491],[26.688,48.493],[26.709,48.497],[26.705,48.507],[26.688,48.518],[26.671,48.527],[26.633,48.533],[26.614,48.54],[26.613,48.551],[26.633,48.562],[26.655,48.559],[26.691,48.54],[26.706,48.536],[26.722,48.535],[26.734,48.541],[26.739,48.558],[26.735,48.564],[26.716,48.578],[26.712,48.585],[26.717,48.595],[26.729,48.595],[26.741,48.589],[26.746,48.579],[26.75,48.562],[26.759,48.551],[26.773,48.551],[26.788,48.568],[26.789,48.578],[26.783,48.593],[26.788,48.602],[26.798,48.608],[26.808,48.609],[26.819,48.607],[26.829,48.602],[26.823,48.581],[26.828,48.561],[26.841,48.546],[26.859,48.54],[26.885,48.544],[26.899,48.552],[26.91,48.563],[26.925,48.575],[26.945,48.581],[26.967,48.581],[27.004,48.575],[27.017,48.565],[27.023,48.561],[27.028,48.563],[27.032,48.566],[27.038,48.568],[27.05,48.567],[27.07,48.563],[27.113,48.559],[27.123,48.561],[27.129,48.565],[27.141,48.579],[27.147,48.582],[27.181,48.582],[27.192,48.58],[27.214,48.57],[27.226,48.568],[27.237,48.569],[27.248,48.57],[27.256,48.574],[27.261,48.582],[27.262,48.596],[27.255,48.6],[27.246,48.601],[27.236,48.606],[27.234,48.618],[27.255,48.621],[27.295,48.616],[27.304,48.611],[27.313,48.605],[27.322,48.601],[27.335,48.602],[27.345,48.608],[27.359,48.624],[27.37,48.63],[27.41,48.621],[27.438,48.603],[27.458,48.577],[27.473,48.547],[27.494,48.482],[27.504,48.473],[27.503,48.473],[27.481,48.452],[27.48,48.452],[27.42,48.418],[27.403,48.412],[27.39,48.415],[27.361,48.433],[27.342,48.436],[27.306,48.424],[27.306,48.424],[27.252,48.379],[27.246,48.374],[27.246,48.374],[27.217,48.364],[27.208,48.361],[27.208,48.361],[27.176,48.362],[27.069,48.389],[27.048,48.398],[27.037,48.4],[27.026,48.397],[27.026,48.397],[27.025,48.39],[27.028,48.382],[27.027,48.375],[27.028,48.371],[27.032,48.366],[27.033,48.361],[27.029,48.359],[27.027,48.358],[27.015,48.36],[27.004,48.359],[26.998,48.362],[26.99,48.363],[26.99,48.363],[26.981,48.356],[26.981,48.356],[26.943,48.352],[26.908,48.366],[26.876,48.384],[26.843,48.394],[26.832,48.392],[26.832,48.392],[26.828,48.385],[26.825,48.378],[26.817,48.372],[26.817,48.372],[26.81,48.372],[26.793,48.377],[26.788,48.376],[26.788,48.376],[26.777,48.367],[26.778,48.358],[26.784,48.346],[26.789,48.326],[26.79,48.307],[26.785,48.294],[26.774,48.288],[26.774,48.288],[26.754,48.287],[26.736,48.292],[26.723,48.303],[26.713,48.315],[26.699,48.325],[26.679,48.331],[26.679,48.33],[26.674,48.322],[26.669,48.309],[26.669,48.309],[26.636,48.295],[26.636,48.295],[26.625,48.283],[26.618,48.268],[26.618,48.259],[26.618,48.259],[26.617,48.259],[26.587,48.25],[26.461,48.231],[26.444,48.228],[26.397,48.227],[26.38,48.224],[26.347,48.212],[26.33,48.209],[26.311,48.21],[26.303,48.212],[26.296,48.179],[26.296,48.179],[26.297,48.157],[26.297,48.157],[26.287,48.125],[26.27,48.094],[26.255,48.073],[26.243,48.063],[26.217,48.048],[26.204,48.038],[26.182,48.004],[26.173,47.994],[26.125,47.979],[26.102,47.979],[26.029,47.978],[25.965,47.965],[25.918,47.968],[25.901,47.966],[25.871,47.957],[25.818,47.953],[25.752,47.935],[25.261,47.899],[25.219,47.879],[25.122,47.771],[25.08,47.743],[25.08,47.743],[25.08,47.743],[25.017,47.725],[24.942,47.716],[24.929,47.714],[24.929,47.714],[24.928,47.726],[24.929,47.731],[24.933,47.754],[24.934,47.757],[24.981,47.828],[24.985,47.836],[24.985,47.84],[24.985,47.844],[24.984,47.848],[24.983,47.852],[24.981,47.855],[24.973,47.868],[24.97,47.874],[24.969,47.878],[24.969,47.899],[24.968,47.903],[24.967,47.907],[24.965,47.91],[24.963,47.912],[24.948,47.925],[24.945,47.928],[24.943,47.931],[24.935,47.947],[24.933,47.955],[24.932,47.971],[24.928,47.99],[24.928,47.994],[24.928,47.997],[24.931,48.006],[24.935,48.013],[24.98,48.071],[24.985,48.079],[24.988,48.096],[24.989,48.1],[24.993,48.105],[25.001,48.11],[25.017,48.119],[25.028,48.122],[25.046,48.125],[25.051,48.127],[25.054,48.129],[25.106,48.169],[25.117,48.175],[25.126,48.178],[25.132,48.178],[25.137,48.179],[25.14,48.182],[25.141,48.186],[25.14,48.19],[25.136,48.196],[25.134,48.2],[25.133,48.203],[25.133,48.207],[25.133,48.216],[25.133,48.22],[25.135,48.224],[25.136,48.228],[25.141,48.232],[25.148,48.237],[25.162,48.244],[25.177,48.25],[25.188,48.252],[25.196,48.257],[25.293,48.34],[25.37,48.38],[25.407,48.392],[25.447,48.4],[25.493,48.404],[25.513,48.403],[25.525,48.401],[25.545,48.396],[25.555,48.392],[25.564,48.389],[25.569,48.388],[25.575,48.388],[25.58,48.39],[25.585,48.393],[25.59,48.399],[25.594,48.407],[25.6,48.433],[25.606,48.522],[25.604,48.532],[25.578,48.581],[25.567,48.609],[25.565,48.621],[25.565,48.625],[25.567,48.631],[25.572,48.639],[25.577,48.643],[25.586,48.651],[25.599,48.658],[25.636,48.678],[25.649,48.671],[25.671,48.667],[25.715,48.664],[25.723,48.659],[25.731,48.635]]]
}
},
{
"type":"Feature",
"id":"02",
"properties":{
"name":"Днепропетровская область",
"Manager":"Региональный менеджер<br />Биднин Максим",
"Phone":"(0512) 50-02-26 (многоканальный)",
"Email":"[email protected]",
"ICQ":"266 507 873",
"Mobile":"+38 (067) 512-33-20"
},
"geometry":{
"type":"Polygon",
"coordinates":[[[34.984,49.164],[35.018,49.16],[35.032,49.162],[35.036,49.163],[35.041,49.163],[35.048,49.162],[35.057,49.157],[35.064,49.154],[35.075,49.154],[35.097,49.157],[35.103,49.157],[35.128,49.154],[35.148,49.153],[35.153,49.152],[35.17,49.147],[35.199,49.134],[35.207,49.128],[35.211,49.124],[35.214,49.117],[35.216,49.114],[35.219,49.111],[35.284,49.077],[35.291,49.071],[35.294,49.066],[35.298,49.063],[35.325,49.05],[35.33,49.047],[35.348,49.031],[35.361,49.022],[35.42,49],[35.436,48.991],[35.456,48.977],[35.462,48.975],[35.47,48.974],[35.483,48.974],[35.504,48.977],[35.509,48.977],[35.56,48.972],[35.565,48.972],[35.57,48.974],[35.574,48.975],[35.579,48.976],[35.586,48.975],[35.603,48.966],[35.608,48.962],[35.613,48.96],[35.619,48.959],[35.649,48.959],[35.656,48.958],[35.663,48.956],[35.672,48.95],[35.679,48.948],[35.689,48.948],[35.694,48.95],[35.703,48.954],[35.711,48.954],[35.753,48.945],[35.773,48.939],[35.784,48.935],[35.794,48.934],[35.801,48.935],[35.806,48.937],[35.809,48.939],[35.819,48.942],[35.824,48.942],[35.834,48.944],[35.838,48.946],[35.854,48.954],[35.871,48.96],[35.918,48.971],[35.931,48.976],[35.94,48.975],[35.953,48.969],[35.98,48.952],[35.989,48.944],[35.993,48.937],[35.992,48.933],[35.992,48.929],[35.993,48.926],[36,48.919],[36.018,48.905],[36.021,48.903],[36.022,48.9],[36.021,48.897],[36.018,48.894],[36.007,48.881],[36.004,48.879],[36,48.877],[35.974,48.867],[35.967,48.863],[35.963,48.86],[35.961,48.857],[35.962,48.855],[35.967,48.853],[36,48.854],[36.005,48.853],[36.012,48.851],[36.029,48.841],[36.037,48.838],[36.064,48.832],[36.072,48.829],[36.075,48.824],[36.075,48.82],[36.079,48.815],[36.088,48.81],[36.11,48.801],[36.119,48.797],[36.125,48.793],[36.131,48.784],[36.137,48.78],[36.164,48.767],[36.169,48.762],[36.171,48.758],[36.168,48.755],[36.166,48.753],[36.161,48.749],[36.141,48.74],[36.137,48.738],[36.135,48.734],[36.133,48.731],[36.132,48.727],[36.133,48.724],[36.138,48.721],[36.175,48.703],[36.199,48.686],[36.271,48.647],[36.283,48.637],[36.286,48.634],[36.287,48.631],[36.286,48.628],[36.284,48.624],[36.27,48.608],[36.268,48.605],[36.267,48.601],[36.268,48.598],[36.27,48.595],[36.286,48.587],[36.304,48.575],[36.306,48.572],[36.308,48.57],[36.306,48.567],[36.303,48.565],[36.277,48.544],[36.274,48.541],[36.273,48.538],[36.274,48.535],[36.284,48.528],[36.289,48.527],[36.294,48.527],[36.302,48.532],[36.311,48.538],[36.315,48.541],[36.32,48.542],[36.326,48.54],[36.331,48.538],[36.338,48.533],[36.342,48.531],[36.349,48.531],[36.358,48.534],[36.375,48.542],[36.378,48.546],[36.377,48.549],[36.369,48.553],[36.365,48.555],[36.365,48.558],[36.366,48.562],[36.382,48.581],[36.455,48.638],[36.471,48.646],[36.477,48.647],[36.485,48.647],[36.501,48.643],[36.546,48.626],[36.561,48.618],[36.567,48.614],[36.573,48.607],[36.576,48.605],[36.583,48.603],[36.595,48.602],[36.631,48.603],[36.641,48.606],[36.649,48.612],[36.667,48.621],[36.725,48.626],[36.729,48.616],[36.729,48.613],[36.73,48.609],[36.732,48.606],[36.734,48.603],[36.738,48.602],[36.743,48.601],[36.779,48.606],[36.783,48.605],[36.787,48.604],[36.79,48.601],[36.791,48.598],[36.79,48.595],[36.785,48.592],[36.776,48.588],[36.773,48.586],[36.763,48.572],[36.758,48.569],[36.753,48.567],[36.749,48.564],[36.747,48.558],[36.747,48.539],[36.747,48.534],[36.749,48.531],[36.751,48.529],[36.755,48.529],[36.787,48.531],[36.791,48.533],[36.795,48.535],[36.798,48.538],[36.8,48.542],[36.807,48.564],[36.81,48.569],[36.814,48.576],[36.819,48.578],[36.824,48.58],[36.868,48.582],[36.879,48.581],[36.883,48.579],[36.886,48.577],[36.887,48.574],[36.889,48.57],[36.891,48.56],[36.892,48.538],[36.891,48.534],[36.889,48.53],[36.882,48.526],[36.871,48.522],[36.857,48.519],[36.854,48.517],[36.853,48.513],[36.855,48.504],[36.856,48.5],[36.857,48.498],[36.858,48.496],[36.859,48.493],[36.857,48.489],[36.851,48.487],[36.842,48.483],[36.838,48.48],[36.835,48.476],[36.835,48.445],[36.838,48.442],[36.846,48.437],[36.847,48.434],[36.843,48.43],[36.838,48.427],[36.815,48.42],[36.811,48.417],[36.809,48.413],[36.809,48.405],[36.81,48.4],[36.815,48.386],[36.819,48.357],[36.818,48.352],[36.812,48.331],[36.812,48.326],[36.813,48.322],[36.814,48.319],[36.817,48.316],[36.82,48.314],[36.825,48.314],[36.829,48.315],[36.838,48.317],[36.848,48.319],[36.854,48.319],[36.859,48.318],[36.863,48.317],[36.865,48.314],[36.867,48.311],[36.868,48.308],[36.869,48.305],[36.873,48.304],[36.896,48.302],[36.901,48.3],[36.904,48.298],[36.906,48.294],[36.907,48.284],[36.909,48.277],[36.911,48.27],[36.914,48.264],[36.923,48.225],[36.923,48.222],[36.924,48.219],[36.924,48.215],[36.927,48.205],[36.927,48.202],[36.925,48.196],[36.92,48.19],[36.905,48.181],[36.897,48.177],[36.89,48.175],[36.88,48.173],[36.875,48.171],[36.872,48.167],[36.87,48.161],[36.87,48.156],[36.87,48.152],[36.877,48.125],[36.879,48.118],[36.889,48.1],[36.891,48.093],[36.894,48.079],[36.894,48.075],[36.893,48.071],[36.893,48.068],[36.886,48.061],[36.876,48.054],[36.851,48.04],[36.839,48.034],[36.829,48.032],[36.824,48.033],[36.788,48.045],[36.751,48.053],[36.746,48.054],[36.742,48.056],[36.738,48.059],[36.734,48.069],[36.731,48.071],[36.728,48.074],[36.724,48.076],[36.665,48.088],[36.66,48.088],[36.654,48.088],[36.62,48.082],[36.603,48.082],[36.598,48.081],[36.593,48.08],[36.589,48.079],[36.585,48.076],[36.581,48.073],[36.577,48.067],[36.575,48.058],[36.571,48],[36.572,47.996],[36.577,47.982],[36.577,47.971],[36.581,47.965],[36.586,47.962],[36.604,47.96],[36.609,47.959],[36.613,47.957],[36.616,47.954],[36.618,47.951],[36.619,47.948],[36.626,47.936],[36.633,47.927],[36.634,47.924],[36.634,47.922],[36.629,47.92],[36.618,47.918],[36.585,47.918],[36.578,47.917],[36.572,47.916],[36.565,47.912],[36.558,47.911],[36.542,47.91],[36.538,47.908],[36.534,47.905],[36.532,47.9],[36.531,47.895],[36.531,47.891],[36.531,47.887],[36.533,47.884],[36.537,47.88],[36.546,47.877],[36.56,47.874],[36.566,47.871],[36.569,47.867],[36.576,47.844],[36.392,47.826],[36.388,47.827],[36.385,47.829],[36.379,47.835],[36.376,47.837],[36.372,47.839],[36.367,47.84],[36.361,47.84],[36.355,47.839],[36.347,47.836],[36.336,47.831],[36.331,47.826],[36.325,47.818],[36.318,47.815],[36.308,47.814],[36.286,47.813],[36.275,47.814],[36.267,47.816],[36.257,47.823],[36.252,47.825],[36.247,47.826],[36.224,47.828],[36.219,47.829],[36.215,47.83],[36.213,47.833],[36.212,47.837],[36.212,47.84],[36.21,47.854],[36.208,47.858],[36.207,47.861],[36.203,47.863],[36.199,47.863],[36.193,47.864],[36.187,47.862],[36.181,47.86],[36.173,47.855],[36.169,47.85],[36.163,47.842],[36.16,47.84],[36.152,47.838],[36.107,47.835],[36.098,47.836],[36.095,47.838],[36.093,47.84],[36.088,47.842],[36.079,47.845],[36.076,47.848],[36.075,47.851],[36.075,47.854],[36.072,47.857],[36.063,47.861],[36.061,47.864],[36.06,47.867],[36.06,47.871],[36.061,47.874],[36.064,47.876],[36.071,47.875],[36.076,47.873],[36.083,47.868],[36.088,47.867],[36.093,47.868],[36.098,47.873],[36.101,47.878],[36.109,47.895],[36.116,47.906],[36.118,47.909],[36.118,47.913],[36.117,47.916],[36.115,47.919],[36.114,47.922],[36.114,47.926],[36.115,47.929],[36.118,47.936],[36.118,47.939],[36.117,47.94],[36.115,47.94],[36.087,47.938],[36.082,47.94],[36.08,47.942],[36.078,47.944],[36.076,47.946],[36.072,47.948],[36.068,47.949],[36.063,47.95],[36.059,47.951],[36.058,47.954],[36.059,47.965],[36.059,47.969],[36.057,47.983],[36.055,47.99],[36.053,47.993],[36.051,47.996],[36.046,47.998],[36.041,47.999],[36.027,48.001],[36.024,48.002],[36.021,48.004],[36.021,48.008],[36.023,48.011],[36.025,48.014],[36.028,48.017],[36.042,48.027],[36.045,48.03],[36.047,48.033],[36.048,48.037],[36.047,48.04],[36.045,48.043],[36.04,48.044],[36.032,48.043],[36,48.028],[35.996,48.027],[35.99,48.026],[35.979,48.026],[35.975,48.029],[35.972,48.032],[35.973,48.039],[35.972,48.043],[35.967,48.052],[35.966,48.056],[35.966,48.059],[35.967,48.064],[35.97,48.077],[35.971,48.081],[35.97,48.084],[35.968,48.087],[35.964,48.089],[35.959,48.091],[35.954,48.091],[35.942,48.092],[35.883,48.082],[35.829,48.067],[35.816,48.066],[35.809,48.067],[35.794,48.083],[35.791,48.086],[35.786,48.088],[35.781,48.089],[35.732,48.096],[35.728,48.098],[35.724,48.1],[35.711,48.11],[35.703,48.118],[35.7,48.12],[35.696,48.123],[35.692,48.124],[35.686,48.126],[35.674,48.127],[35.646,48.124],[35.604,48.116],[35.595,48.113],[35.579,48.105],[35.556,48.089],[35.547,48.085],[35.531,48.081],[35.522,48.079],[35.515,48.079],[35.512,48.08],[35.497,48.085],[35.34,48.104],[35.275,48.126],[35.255,48.13],[35.245,48.13],[35.191,48.124],[35.174,48.121],[35.165,48.119],[35.156,48.12],[35.129,48.128],[35.118,48.129],[35.101,48.129],[35.081,48.126],[35.074,48.123],[35.065,48.12],[35.048,48.118],[35.038,48.118],[35.029,48.119],[35.017,48.117],[35.002,48.111],[34.969,48.092],[34.943,48.081],[34.886,48.081],[34.881,48.082],[34.877,48.084],[34.875,48.087],[34.873,48.09],[34.871,48.097],[34.87,48.104],[34.87,48.111],[34.87,48.116],[34.87,48.119],[34.867,48.122],[34.863,48.122],[34.857,48.123],[34.851,48.123],[34.846,48.121],[34.841,48.118],[34.836,48.109],[34.835,48.103],[34.836,48.099],[34.84,48.089],[34.846,48.081],[34.846,48.079],[34.846,48.077],[34.845,48.073],[34.843,48.071],[34.842,48.065],[34.84,48.041],[34.838,48.038],[34.835,48.035],[34.821,48.029],[34.816,48.026],[34.814,48.02],[34.813,48.016],[34.815,48.012],[34.818,48.01],[34.823,48.009],[34.834,48.009],[34.839,48.008],[34.842,48.007],[34.844,48.004],[34.845,48.002],[34.845,47.996],[34.845,47.993],[34.846,47.989],[34.848,47.986],[34.85,47.983],[34.853,47.981],[34.857,47.978],[34.867,47.975],[34.904,47.968],[34.908,47.967],[34.912,47.964],[34.914,47.961],[34.917,47.955],[34.917,47.951],[34.916,47.947],[34.915,47.943],[34.912,47.938],[34.907,47.934],[34.897,47.931],[34.853,47.924],[34.846,47.922],[34.82,47.907],[34.814,47.902],[34.81,47.895],[34.809,47.89],[34.808,47.885],[34.808,47.881],[34.808,47.878],[34.81,47.874],[34.812,47.871],[34.818,47.867],[34.896,47.835],[34.902,47.831],[34.904,47.829],[34.904,47.827],[34.904,47.824],[34.903,47.82],[34.9,47.816],[34.891,47.805],[34.888,47.799],[34.887,47.794],[34.887,47.79],[34.888,47.787],[34.89,47.784],[34.891,47.78],[34.89,47.777],[34.887,47.764],[34.886,47.76],[34.889,47.757],[34.894,47.756],[34.912,47.752],[34.936,47.75],[34.941,47.749],[34.944,47.746],[34.945,47.743],[34.945,47.739],[34.934,47.692],[34.927,47.677],[34.919,47.647],[34.912,47.63],[34.897,47.604],[34.896,47.601],[34.895,47.597],[34.897,47.594],[34.9,47.592],[34.92,47.582],[34.926,47.577],[34.928,47.574],[34.93,47.571],[34.93,47.567],[34.93,47.563],[34.923,47.542],[34.922,47.539],[34.916,47.531],[34.911,47.526],[34.907,47.524],[34.898,47.523],[34.833,47.526],[34.73,47.539],[34.645,47.564],[34.595,47.569],[34.584,47.567],[34.446,47.523],[34.319,47.505],[34.204,47.478],[34.157,47.474],[34.058,47.481],[33.902,47.514],[33.88,47.514],[33.752,47.491],[33.654,47.487],[33.643,47.489],[33.64,47.491],[33.635,47.502],[33.633,47.504],[33.63,47.508],[33.624,47.512],[33.617,47.512],[33.595,47.511],[33.588,47.512],[33.584,47.515],[33.583,47.518],[33.579,47.528],[33.575,47.534],[33.575,47.538],[33.577,47.541],[33.579,47.545],[33.586,47.554],[33.588,47.557],[33.589,47.56],[33.587,47.564],[33.583,47.568],[33.575,47.573],[33.569,47.575],[33.563,47.575],[33.503,47.567],[33.497,47.565],[33.494,47.564],[33.492,47.562],[33.491,47.559],[33.492,47.555],[33.494,47.548],[33.494,47.545],[33.494,47.541],[33.492,47.538],[33.489,47.535],[33.485,47.533],[33.477,47.53],[33.371,47.515],[33.366,47.514],[33.362,47.513],[33.359,47.51],[33.358,47.507],[33.357,47.504],[33.356,47.5],[33.355,47.499],[33.352,47.498],[33.346,47.495],[33.339,47.495],[33.334,47.496],[33.323,47.5],[33.313,47.506],[33.307,47.511],[33.304,47.514],[33.302,47.517],[33.3,47.52],[33.297,47.529],[33.293,47.536],[33.283,47.539],[33.267,47.543],[33.193,47.554],[33.185,47.558],[33.17,47.567],[33.165,47.569],[33.089,47.583],[33.005,47.592],[32.998,47.594],[32.994,47.595],[32.992,47.599],[32.992,47.603],[32.995,47.611],[32.998,47.615],[33,47.618],[33.013,47.626],[33.018,47.632],[33.02,47.636],[33.021,47.643],[33.019,47.653],[33.017,47.658],[33.014,47.663],[33.007,47.675],[32.991,47.695],[32.985,47.704],[32.984,47.707],[32.984,47.71],[32.988,47.713],[32.996,47.717],[33.002,47.719],[33.04,47.726],[33.083,47.729],[33.087,47.732],[33.088,47.737],[33.082,47.75],[33.077,47.756],[33.072,47.76],[33.068,47.762],[33.064,47.764],[33.061,47.769],[33.06,47.776],[33.061,47.831],[33.062,47.838],[33.064,47.843],[33.066,47.847],[33.068,47.85],[33.07,47.855],[33.071,47.877],[33.073,47.883],[33.076,47.886],[33.079,47.889],[33.082,47.892],[33.083,47.896],[33.08,47.902],[33.069,47.911],[33.062,47.914],[33.056,47.915],[33.051,47.914],[33.045,47.914],[33.039,47.915],[33.035,47.916],[33.032,47.92],[33.031,47.926],[33.039,47.944],[33.045,47.954],[33.046,47.96],[33.035,47.967],[33.046,48],[33.057,48.026],[33.062,48.029],[33.069,48.033],[33.076,48.034],[33.088,48.039],[33.095,48.045],[33.104,48.057],[33.111,48.064],[33.12,48.07],[33.134,48.077],[33.143,48.08],[33.149,48.082],[33.187,48.08],[33.211,48.084],[33.218,48.087],[33.222,48.09],[33.226,48.098],[33.227,48.102],[33.228,48.11],[33.228,48.118],[33.226,48.125],[33.226,48.133],[33.228,48.141],[33.233,48.153],[33.238,48.171],[33.242,48.174],[33.246,48.175],[33.25,48.175],[33.252,48.172],[33.254,48.169],[33.262,48.142],[33.262,48.14],[33.261,48.137],[33.258,48.134],[33.256,48.131],[33.254,48.128],[33.254,48.124],[33.255,48.121],[33.257,48.11],[33.259,48.107],[33.262,48.104],[33.269,48.103],[33.273,48.104],[33.276,48.107],[33.283,48.123],[33.292,48.138],[33.295,48.141],[33.335,48.171],[33.341,48.177],[33.344,48.184],[33.348,48.186],[33.353,48.186],[33.357,48.184],[33.36,48.182],[33.363,48.179],[33.366,48.177],[33.37,48.175],[33.373,48.173],[33.378,48.172],[33.384,48.172],[33.396,48.173],[33.403,48.175],[33.408,48.178],[33.416,48.185],[33.456,48.211],[33.459,48.214],[33.471,48.228],[33.476,48.23],[33.482,48.231],[33.489,48.231],[33.497,48.232],[33.508,48.235],[33.513,48.239],[33.516,48.243],[33.526,48.29],[33.527,48.294],[33.526,48.297],[33.523,48.3],[33.519,48.302],[33.508,48.305],[33.503,48.307],[33.501,48.309],[33.5,48.31],[33.5,48.311],[33.499,48.32],[33.495,48.372],[33.49,48.393],[33.489,48.396],[33.489,48.4],[33.489,48.404],[33.487,48.407],[33.483,48.409],[33.478,48.41],[33.475,48.412],[33.473,48.415],[33.471,48.423],[33.472,48.429],[33.476,48.433],[33.483,48.437],[33.485,48.441],[33.484,48.444],[33.463,48.477],[33.461,48.484],[33.46,48.487],[33.462,48.495],[33.462,48.498],[33.458,48.499],[33.449,48.499],[33.447,48.5],[33.446,48.5],[33.445,48.502],[33.443,48.504],[33.442,48.508],[33.441,48.513],[33.443,48.521],[33.445,48.525],[33.449,48.528],[33.478,48.541],[33.564,48.564],[33.566,48.563],[33.569,48.557],[33.573,48.557],[33.58,48.559],[33.607,48.579],[33.612,48.581],[33.614,48.581],[33.617,48.583],[33.723,48.617],[33.73,48.62],[33.766,48.646],[33.773,48.649],[33.778,48.649],[33.784,48.65],[33.791,48.651],[33.8,48.653],[33.813,48.66],[33.819,48.664],[33.821,48.668],[33.819,48.671],[33.814,48.673],[33.775,48.679],[33.77,48.681],[33.767,48.683],[33.765,48.686],[33.764,48.69],[33.763,48.693],[33.761,48.696],[33.757,48.698],[33.698,48.7],[33.692,48.701],[33.686,48.702],[33.664,48.712],[33.659,48.714],[33.604,48.72],[33.599,48.722],[33.595,48.724],[33.592,48.726],[33.587,48.736],[33.585,48.739],[33.583,48.742],[33.579,48.744],[33.57,48.748],[33.566,48.75],[33.563,48.753],[33.561,48.756],[33.558,48.762],[33.557,48.766],[33.558,48.772],[33.572,48.787],[33.578,48.792],[33.584,48.794],[33.59,48.795],[33.595,48.794],[33.598,48.792],[33.6,48.789],[33.603,48.786],[33.607,48.784],[33.613,48.784],[33.619,48.784],[33.658,48.806],[33.665,48.808],[33.671,48.807],[33.677,48.807],[33.683,48.805],[33.687,48.803],[33.689,48.8],[33.691,48.797],[33.693,48.79],[33.695,48.787],[33.698,48.785],[33.703,48.783],[33.709,48.783],[33.715,48.784],[33.721,48.786],[33.741,48.803],[33.744,48.805],[33.749,48.807],[33.754,48.808],[33.76,48.807],[33.766,48.806],[33.771,48.804],[33.774,48.801],[33.774,48.798],[33.771,48.785],[33.772,48.781],[33.775,48.779],[33.782,48.78],[33.787,48.785],[33.793,48.793],[33.798,48.796],[33.802,48.796],[33.804,48.794],[33.804,48.79],[33.804,48.786],[33.804,48.782],[33.805,48.779],[33.811,48.771],[33.811,48.762],[33.814,48.76],[33.819,48.759],[33.826,48.759],[33.83,48.762],[33.833,48.765],[33.835,48.769],[33.843,48.785],[33.85,48.794],[33.858,48.797],[33.864,48.802],[33.872,48.81],[33.881,48.815],[33.885,48.82],[33.887,48.823],[33.888,48.828],[33.894,48.84],[33.919,48.866],[33.928,48.86],[34.04,48.808],[34.047,48.807],[34.062,48.808],[34.069,48.808],[34.075,48.805],[34.087,48.798],[34.093,48.795],[34.11,48.79],[34.162,48.784],[34.193,48.774],[34.224,48.748],[34.237,48.746],[34.266,48.759],[34.288,48.773],[34.291,48.775],[34.294,48.778],[34.295,48.781],[34.295,48.784],[34.293,48.787],[34.289,48.789],[34.284,48.791],[34.28,48.793],[34.276,48.795],[34.275,48.799],[34.275,48.802],[34.275,48.806],[34.276,48.81],[34.278,48.813],[34.299,48.828],[34.31,48.832],[34.314,48.836],[34.316,48.84],[34.314,48.854],[34.314,48.858],[34.313,48.861],[34.311,48.864],[34.309,48.867],[34.306,48.87],[34.277,48.888],[34.274,48.891],[34.273,48.894],[34.272,48.898],[34.272,48.902],[34.274,48.914],[34.276,48.918],[34.278,48.922],[34.287,48.936],[34.301,48.964],[34.304,48.967],[34.308,48.971],[34.314,48.975],[34.325,48.981],[34.344,48.985],[34.357,48.986],[34.364,48.988],[34.368,48.991],[34.369,48.995],[34.367,48.997],[34.363,48.999],[34.353,48.999],[34.347,49],[34.346,49],[34.345,49.001],[34.344,49.003],[34.343,49.005],[34.344,49.009],[34.347,49.012],[34.351,49.014],[34.376,49.028],[34.39,49.038],[34.403,49.05],[34.405,49.054],[34.406,49.057],[34.407,49.061],[34.405,49.068],[34.405,49.072],[34.408,49.077],[34.414,49.078],[34.42,49.078],[34.43,49.075],[34.61,49.127],[34.645,49.13],[34.726,49.146],[34.736,49.149],[34.742,49.152],[34.752,49.16],[34.763,49.167],[34.77,49.171],[34.778,49.174],[34.784,49.175],[34.809,49.174],[34.817,49.175],[34.825,49.18],[34.831,49.181],[34.837,49.181],[34.865,49.173],[34.869,49.171],[34.871,49.169],[34.871,49.166],[34.868,49.163],[34.861,49.159],[34.858,49.156],[34.857,49.153],[34.857,49.15],[34.861,49.147],[34.867,49.145],[34.879,49.144],[34.886,49.146],[34.891,49.148],[34.894,49.151],[34.896,49.155],[34.9,49.163],[34.902,49.168],[34.906,49.173],[34.914,49.179],[34.92,49.182],[34.926,49.183],[34.932,49.183],[34.944,49.18],[34.954,49.177],[34.984,49.164]]]
}
},
{
"type":"Feature",
"id":"02",
"properties":{
"name":"Донецкая область",
"Manager":"Региональный менеджер<br />Рыбалов Дмитрий",
"Phone":"(0512) 50-02-26 (многоканальный)",
"Email":"[email protected]",
"ICQ":"350 079 086",
"Mobile":"067-512-15-40"
},
"geometry":{
"type":"Polygon",
"coordinates":[[[37.905,49.205],[37.924,49.204],[37.929,49.202],[37.934,49.2],[37.934,49.194],[37.931,49.191],[37.926,49.19],[37.898,49.189],[37.894,49.187],[37.891,49.184],[37.889,49.181],[37.884,49.168],[37.884,49.164],[37.887,49.16],[37.895,49.156],[37.939,49.145],[37.966,49.133],[37.971,49.132],[37.977,49.131],[37.981,49.132],[37.985,49.134],[38.012,49.15],[38.016,49.151],[38.021,49.152],[38.062,49.151],[38.067,49.15],[38.07,49.148],[38.07,49.143],[38.063,49.117],[38.062,49.109],[38.062,49.106],[38.063,49.102],[38.063,49.095],[38.062,49.091],[38.06,49.087],[38.058,49.083],[38.055,49.08],[38.044,49.073],[38.041,49.07],[38.043,49.062],[38.049,49.05],[38.078,49.004],[38.078,49.001],[38.078,49],[38.077,48.998],[38.076,48.995],[38.074,48.992],[38.07,48.99],[38.065,48.989],[38.049,48.988],[38.045,48.987],[38.043,48.985],[38.043,48.982],[38.042,48.978],[38.041,48.975],[38.036,48.974],[38.025,48.975],[38.02,48.974],[38.016,48.972],[38.013,48.969],[38.01,48.965],[38.009,48.961],[38.008,48.957],[38.01,48.954],[38.016,48.953],[38.021,48.952],[38.028,48.95],[38.035,48.947],[38.045,48.941],[38.051,48.938],[38.058,48.937],[38.171,48.932],[38.21,48.924],[38.213,48.913],[38.225,48.89],[38.228,48.88],[38.23,48.873],[38.23,48.858],[38.231,48.854],[38.235,48.851],[38.243,48.847],[38.257,48.844],[38.263,48.844],[38.275,48.842],[38.28,48.839],[38.282,48.835],[38.281,48.828],[38.279,48.824],[38.28,48.818],[38.283,48.812],[38.292,48.801],[38.296,48.79],[38.297,48.783],[38.295,48.778],[38.29,48.771],[38.285,48.764],[38.272,48.752],[38.27,48.749],[38.268,48.745],[38.267,48.741],[38.267,48.738],[38.266,48.733],[38.268,48.73],[38.27,48.727],[38.274,48.727],[38.294,48.73],[38.299,48.73],[38.304,48.729],[38.306,48.725],[38.305,48.719],[38.303,48.715],[38.3,48.711],[38.284,48.697],[38.261,48.684],[38.255,48.679],[38.254,48.677],[38.252,48.675],[38.25,48.671],[38.249,48.667],[38.249,48.664],[38.251,48.639],[38.256,48.623],[38.256,48.621],[38.256,48.618],[38.254,48.61],[38.254,48.606],[38.256,48.601],[38.268,48.58],[38.27,48.574],[38.27,48.568],[38.268,48.564],[38.262,48.552],[38.26,48.548],[38.26,48.544],[38.262,48.54],[38.267,48.536],[38.277,48.532],[38.29,48.528],[38.305,48.526],[38.31,48.523],[38.314,48.521],[38.315,48.515],[38.315,48.511],[38.313,48.503],[38.312,48.5],[38.311,48.5],[38.309,48.495],[38.305,48.486],[38.303,48.474],[38.302,48.466],[38.302,48.459],[38.305,48.455],[38.31,48.45],[38.324,48.443],[38.332,48.441],[38.34,48.439],[38.345,48.439],[38.351,48.438],[38.364,48.433],[38.37,48.432],[38.375,48.432],[38.38,48.434],[38.383,48.436],[38.39,48.441],[38.393,48.444],[38.399,48.442],[38.406,48.437],[38.417,48.424],[38.421,48.417],[38.424,48.411],[38.425,48.408],[38.426,48.405],[38.43,48.401],[38.436,48.397],[38.457,48.386],[38.467,48.376],[38.481,48.358],[38.483,48.353],[38.483,48.351],[38.482,48.348],[38.48,48.344],[38.478,48.341],[38.475,48.338],[38.471,48.336],[38.467,48.335],[38.463,48.333],[38.418,48.328],[38.415,48.328],[38.412,48.326],[38.41,48.324],[38.41,48.321],[38.41,48.318],[38.413,48.31],[38.419,48.299],[38.424,48.286],[38.427,48.282],[38.432,48.279],[38.445,48.275],[38.461,48.272],[38.561,48.279],[38.566,48.278],[38.571,48.274],[38.576,48.266],[38.581,48.257],[38.584,48.247],[38.589,48.237],[38.604,48.213],[38.606,48.21],[38.607,48.207],[38.607,48.203],[38.604,48.195],[38.601,48.187],[38.601,48.183],[38.604,48.179],[38.609,48.175],[38.63,48.166],[38.756,48.134],[38.814,48.111],[38.818,48.108],[38.821,48.103],[38.823,48.094],[38.821,48.089],[38.819,48.085],[38.81,48.075],[38.805,48.068],[38.803,48.065],[38.801,48.061],[38.8,48.057],[38.805,48.05],[38.815,48.043],[38.84,48.028],[38.853,48.023],[38.862,48.02],[38.934,48.021],[39.027,48.007],[39.031,48.001],[39.034,47.992],[39.031,47.959],[39.031,47.95],[39.036,47.943],[39.04,47.939],[39.045,47.936],[39.054,47.932],[39.055,47.924],[39.056,47.917],[39.038,47.866],[39.036,47.857],[38.877,47.862],[38.831,47.849],[38.83,47.848],[38.796,47.82],[38.771,47.781],[38.753,47.736],[38.745,47.693],[38.734,47.678],[38.734,47.677],[38.713,47.676],[38.678,47.686],[38.662,47.684],[38.643,47.674],[38.643,47.674],[38.606,47.645],[38.606,47.645],[38.587,47.635],[38.562,47.627],[38.353,47.607],[38.319,47.592],[38.319,47.592],[38.293,47.563],[38.274,47.528],[38.26,47.493],[38.263,47.422],[38.258,47.394],[38.233,47.363],[38.203,47.335],[38.19,47.317],[38.188,47.301],[38.201,47.291],[38.22,47.289],[38.257,47.293],[38.275,47.292],[38.291,47.287],[38.301,47.276],[38.298,47.256],[38.284,47.242],[38.284,47.241],[38.264,47.232],[38.241,47.224],[38.222,47.216],[38.222,47.216],[38.203,47.193],[38.197,47.163],[38.201,47.131],[38.217,47.103],[38.217,47.103],[38.196,47.09],[38.142,47.038],[38.108,47.026],[38.131,47.059],[38.13,47.075],[38.105,47.082],[38.072,47.1],[38.067,47.098],[38.061,47.095],[38.035,47.084],[38.026,47.082],[37.988,47.092],[37.962,47.096],[37.951,47.091],[37.861,47.102],[37.754,47.075],[37.71,47.074],[37.581,47.091],[37.547,47.082],[37.483,47.036],[37.378,46.934],[37.352,46.899],[37.335,46.883],[37.313,46.876],[37.318,46.901],[37.296,46.92],[37.261,46.933],[37.227,46.937],[37.208,46.934],[37.162,46.909],[37.047,46.878],[37.038,46.877],[37.01,46.915],[37.008,46.918],[37.008,46.922],[37.01,46.927],[37.013,46.93],[37.016,46.933],[37.019,46.936],[37.047,46.954],[37.051,46.957],[37.057,46.959],[37.062,46.961],[37.067,46.961],[37.072,46.96],[37.082,46.956],[37.086,46.955],[37.091,46.955],[37.096,46.956],[37.1,46.958],[37.114,46.966],[37.116,46.97],[37.114,46.976],[37.094,47],[37.094,47.001],[37.098,47.006],[37.106,47.011],[37.117,47.018],[37.12,47.02],[37.121,47.024],[37.118,47.028],[37.111,47.034],[37.106,47.037],[37.091,47.044],[37.074,47.056],[37.071,47.058],[37.067,47.058],[37.064,47.057],[37.061,47.054],[37.055,47.048],[37.053,47.045],[37.049,47.045],[37.046,47.046],[37.011,47.066],[37.006,47.07],[37.003,47.077],[36.991,47.106],[36.983,47.117],[36.967,47.135],[36.963,47.14],[36.959,47.142],[36.941,47.15],[36.898,47.162],[36.889,47.166],[36.864,47.182],[36.859,47.188],[36.857,47.191],[36.857,47.194],[36.86,47.197],[36.864,47.199],[36.87,47.2],[36.923,47.203],[36.932,47.205],[36.936,47.207],[36.939,47.209],[36.94,47.212],[36.941,47.216],[36.938,47.241],[36.936,47.248],[36.934,47.254],[36.919,47.275],[36.914,47.284],[36.913,47.294],[36.916,47.298],[36.919,47.301],[36.928,47.304],[36.932,47.305],[36.936,47.305],[36.94,47.304],[36.943,47.301],[36.947,47.3],[36.952,47.299],[36.962,47.299],[36.967,47.298],[36.97,47.296],[36.973,47.293],[36.977,47.291],[36.989,47.289],[37.008,47.287],[37.029,47.288],[37.065,47.296],[37.069,47.298],[37.072,47.301],[37.074,47.304],[37.075,47.308],[37.074,47.319],[37.075,47.323],[37.077,47.326],[37.079,47.33],[37.088,47.34],[37.09,47.343],[37.092,47.347],[37.096,47.355],[37.1,47.363],[37.103,47.366],[37.107,47.368],[37.114,47.371],[37.119,47.372],[37.123,47.373],[37.126,47.373],[37.131,47.372],[37.136,47.371],[37.14,47.369],[37.143,47.366],[37.15,47.361],[37.152,47.359],[37.157,47.353],[37.159,47.35],[37.161,47.348],[37.164,47.346],[37.167,47.346],[37.171,47.347],[37.179,47.351],[37.182,47.353],[37.185,47.356],[37.186,47.359],[37.185,47.363],[37.183,47.368],[37.182,47.376],[37.182,47.38],[37.183,47.384],[37.185,47.388],[37.189,47.395],[37.199,47.409],[37.2,47.413],[37.199,47.422],[37.2,47.426],[37.202,47.429],[37.218,47.448],[37.22,47.452],[37.221,47.455],[37.219,47.458],[37.211,47.459],[37.194,47.459],[37.152,47.464],[37.147,47.463],[37.144,47.461],[37.141,47.455],[37.138,47.452],[37.134,47.45],[37.129,47.451],[37.122,47.455],[37.103,47.475],[37.1,47.478],[37.021,47.524],[36.995,47.547],[36.988,47.553],[36.944,47.57],[36.937,47.571],[36.931,47.571],[36.904,47.557],[36.897,47.553],[36.893,47.551],[36.882,47.556],[36.865,47.566],[36.826,47.596],[36.809,47.606],[36.798,47.61],[36.767,47.602],[36.757,47.6],[36.752,47.602],[36.749,47.605],[36.748,47.612],[36.749,47.617],[36.752,47.626],[36.753,47.63],[36.752,47.634],[36.749,47.636],[36.732,47.639],[36.727,47.641],[36.724,47.644],[36.721,47.649],[36.72,47.658],[36.723,47.661],[36.727,47.663],[36.736,47.665],[36.745,47.668],[36.748,47.67],[36.749,47.672],[36.747,47.675],[36.741,47.677],[36.715,47.681],[36.709,47.685],[36.703,47.691],[36.689,47.716],[36.661,47.757],[36.659,47.764],[36.657,47.778],[36.655,47.785],[36.653,47.788],[36.65,47.79],[36.643,47.79],[36.617,47.786],[36.606,47.786],[36.594,47.788],[36.584,47.791],[36.577,47.803],[36.576,47.844],[36.569,47.867],[36.566,47.871],[36.56,47.874],[36.546,47.877],[36.537,47.88],[36.533,47.884],[36.531,47.887],[36.531,47.891],[36.531,47.895],[36.532,47.9],[36.534,47.905],[36.538,47.908],[36.542,47.91],[36.558,47.911],[36.565,47.912],[36.572,47.916],[36.578,47.917],[36.585,47.918],[36.618,47.918],[36.629,47.92],[36.634,47.922],[36.634,47.924],[36.633,47.927],[36.626,47.936],[36.619,47.948],[36.618,47.951],[36.616,47.954],[36.613,47.957],[36.609,47.959],[36.604,47.96],[36.586,47.962],[36.581,47.965],[36.577,47.971],[36.577,47.982],[36.572,47.996],[36.571,48],[36.575,48.058],[36.577,48.067],[36.581,48.073],[36.585,48.076],[36.589,48.079],[36.593,48.08],[36.598,48.081],[36.603,48.082],[36.62,48.082],[36.654,48.088],[36.66,48.088],[36.665,48.088],[36.724,48.076],[36.728,48.074],[36.731,48.071],[36.734,48.069],[36.738,48.059],[36.742,48.056],[36.746,48.054],[36.751,48.053],[36.788,48.045],[36.824,48.033],[36.829,48.032],[36.839,48.034],[36.851,48.04],[36.876,48.054],[36.886,48.061],[36.893,48.068],[36.893,48.071],[36.894,48.075],[36.894,48.079],[36.891,48.093],[36.889,48.1],[36.879,48.118],[36.877,48.125],[36.87,48.152],[36.87,48.156],[36.87,48.161],[36.872,48.167],[36.875,48.171],[36.88,48.173],[36.89,48.175],[36.897,48.177],[36.905,48.181],[36.92,48.19],[36.925,48.196],[36.927,48.202],[36.927,48.205],[36.924,48.215],[36.924,48.219],[36.923,48.222],[36.923,48.225],[36.914,48.264],[36.911,48.27],[36.909,48.277],[36.907,48.284],[36.906,48.294],[36.904,48.298],[36.901,48.3],[36.896,48.302],[36.873,48.304],[36.869,48.305],[36.868,48.308],[36.867,48.311],[36.865,48.314],[36.863,48.317],[36.859,48.318],[36.854,48.319],[36.848,48.319],[36.838,48.317],[36.829,48.315],[36.825,48.314],[36.82,48.314],[36.817,48.316],[36.814,48.319],[36.813,48.322],[36.812,48.326],[36.812,48.331],[36.818,48.352],[36.819,48.357],[36.815,48.386],[36.81,48.4],[36.809,48.405],[36.809,48.413],[36.811,48.417],[36.815,48.42],[36.838,48.427],[36.843,48.43],[36.847,48.434],[36.846,48.437],[36.838,48.442],[36.835,48.445],[36.835,48.476],[36.838,48.48],[36.842,48.483],[36.851,48.487],[36.857,48.489],[36.859,48.493],[36.858,48.496],[36.857,48.498],[36.856,48.5],[36.855,48.504],[36.853,48.513],[36.854,48.517],[36.857,48.519],[36.871,48.522],[36.882,48.526],[36.889,48.53],[36.891,48.534],[36.892,48.538],[36.891,48.56],[36.889,48.57],[36.887,48.574],[36.886,48.577],[36.883,48.579],[36.879,48.581],[36.868,48.582],[36.824,48.58],[36.819,48.578],[36.814,48.576],[36.81,48.569],[36.807,48.564],[36.8,48.542],[36.798,48.538],[36.795,48.535],[36.791,48.533],[36.787,48.531],[36.755,48.529],[36.751,48.529],[36.749,48.531],[36.747,48.534],[36.747,48.539],[36.747,48.558],[36.749,48.564],[36.753,48.567],[36.758,48.569],[36.763,48.572],[36.773,48.586],[36.776,48.588],[36.785,48.592],[36.79,48.595],[36.791,48.598],[36.79,48.601],[36.787,48.604],[36.783,48.605],[36.779,48.606],[36.743,48.601],[36.738,48.602],[36.734,48.603],[36.732,48.606],[36.73,48.609],[36.729,48.613],[36.729,48.616],[36.725,48.626],[36.711,48.65],[36.709,48.661],[36.711,48.688],[36.71,48.706],[36.709,48.714],[36.693,48.758],[36.691,48.769],[36.69,48.778],[36.693,48.782],[36.697,48.786],[36.702,48.788],[36.707,48.789],[36.718,48.789],[36.731,48.788],[36.761,48.777],[36.773,48.775],[36.82,48.772],[36.825,48.773],[36.837,48.78],[36.847,48.788],[36.861,48.795],[36.866,48.797],[36.875,48.8],[36.885,48.801],[36.891,48.801],[36.903,48.799],[36.999,48.767],[37.001,48.766],[37.004,48.764],[37.009,48.761],[37.014,48.76],[37.024,48.759],[37.029,48.761],[37.032,48.764],[37.034,48.768],[37.034,48.772],[37.031,48.774],[37.027,48.776],[37.005,48.783],[37.002,48.785],[37,48.786],[36.998,48.788],[36.998,48.791],[36.998,48.795],[37.001,48.798],[37.013,48.81],[37.019,48.814],[37.025,48.815],[37.03,48.814],[37.041,48.811],[37.048,48.81],[37.057,48.81],[37.063,48.812],[37.066,48.815],[37.068,48.819],[37.069,48.824],[37.07,48.829],[37.074,48.836],[37.079,48.839],[37.084,48.842],[37.089,48.842],[37.094,48.843],[37.1,48.842],[37.105,48.841],[37.109,48.838],[37.117,48.83],[37.121,48.828],[37.124,48.826],[37.129,48.824],[37.134,48.822],[37.14,48.822],[37.148,48.822],[37.17,48.826],[37.177,48.828],[37.181,48.831],[37.181,48.835],[37.178,48.852],[37.179,48.857],[37.181,48.861],[37.186,48.867],[37.192,48.87],[37.2,48.871],[37.204,48.873],[37.207,48.876],[37.211,48.885],[37.217,48.895],[37.221,48.898],[37.259,48.915],[37.266,48.918],[37.294,48.918],[37.305,48.92],[37.311,48.923],[37.314,48.927],[37.314,48.93],[37.313,48.933],[37.312,48.936],[37.306,48.942],[37.304,48.945],[37.303,48.948],[37.303,48.952],[37.306,48.96],[37.306,48.964],[37.303,48.966],[37.295,48.971],[37.292,48.973],[37.291,48.976],[37.292,48.98],[37.309,48.999],[37.314,49.003],[37.32,49.006],[37.343,49.012],[37.349,49.016],[37.352,49.02],[37.352,49.024],[37.354,49.029],[37.357,49.035],[37.364,49.045],[37.369,49.049],[37.374,49.053],[37.601,49.145],[37.61,49.15],[37.612,49.155],[37.61,49.157],[37.597,49.171],[37.594,49.173],[37.59,49.175],[37.585,49.176],[37.563,49.175],[37.525,49.178],[37.514,49.18],[37.509,49.182],[37.505,49.184],[37.503,49.186],[37.535,49.221],[37.541,49.225],[37.547,49.227],[37.643,49.228],[37.771,49.204],[37.817,49.205],[37.834,49.208],[37.839,49.21],[37.842,49.214],[37.843,49.219],[37.844,49.222],[37.847,49.232],[37.859,49.231],[37.868,49.228],[37.88,49.221],[37.886,49.216],[37.892,49.21],[37.895,49.208],[37.9,49.206],[37.905,49.205]]]
}
},
{
"type":"Feature",
"id":"02",
"properties":{
"name":"Ивано-Франковская область",
"Manager":"Региональный менеджер<br />Молчаницкий Владимир",
"Phone":"(0512) 50-02-26 (многоканальный)",
"Email":"[email protected]",
"ICQ":"417 233 254",
"Mobile":"067-511-84-42"
},
"geometry":{
"type":"Polygon",
"coordinates":[[[24.615,49.516],[24.637,49.503],[24.642,49.5],[24.646,49.498],[24.65,49.497],[24.655,49.497],[24.664,49.498],[24.669,49.498],[24.673,49.496],[24.682,49.493],[24.688,49.491],[24.693,49.491],[24.707,49.492],[24.788,49.409],[24.804,49.389],[24.822,49.356],[24.827,49.35],[24.833,49.34],[24.833,49.335],[24.831,49.331],[24.827,49.325],[24.825,49.322],[24.824,49.318],[24.823,49.314],[24.825,49.31],[24.826,49.307],[24.828,49.304],[24.831,49.297],[24.836,49.278],[24.837,49.266],[24.838,49.262],[24.841,49.259],[24.846,49.255],[24.867,49.25],[24.867,49.25],[24.871,49.246],[24.875,49.239],[24.879,49.229],[24.882,49.222],[24.882,49.218],[24.883,49.214],[24.883,49.21],[24.882,49.206],[24.881,49.202],[24.879,49.198],[24.876,49.195],[24.873,49.193],[24.858,49.184],[24.855,49.182],[24.852,49.179],[24.851,49.175],[24.851,49.172],[24.852,49.168],[24.859,49.155],[24.86,49.152],[24.86,49.148],[24.86,49.143],[24.858,49.135],[24.857,49.13],[24.857,49.126],[24.858,49.123],[24.86,49.119],[24.862,49.116],[24.866,49.114],[24.871,49.112],[24.88,49.111],[24.886,49.113],[24.89,49.115],[24.894,49.117],[24.902,49.121],[24.907,49.122],[24.912,49.123],[24.917,49.123],[24.936,49.116],[24.967,49.113],[24.972,49.11],[24.976,49.107],[24.982,49.099],[24.984,49.094],[24.985,49.089],[24.985,49.081],[24.986,49.077],[24.987,49.073],[24.989,49.07],[24.991,49.067],[24.993,49.064],[24.993,49.061],[24.991,49.057],[24.989,49.054],[24.986,49.052],[24.982,49.05],[24.977,49.048],[24.972,49.048],[24.966,49.048],[24.956,49.05],[24.927,49.06],[24.915,49.062],[24.909,49.062],[24.904,49.061],[24.899,49.06],[24.896,49.057],[24.894,49.054],[24.894,49.05],[24.894,49.046],[24.896,49.043],[24.898,49.04],[24.899,49.039],[24.909,49.034],[24.942,49.025],[24.95,49.021],[24.956,49.014],[24.958,49.008],[24.959,49.002],[24.964,48.993],[24.978,48.977],[24.993,48.97],[25.01,48.969],[25.052,48.974],[25.067,48.972],[25.12,48.951],[25.129,48.944],[25.13,48.934],[25.122,48.918],[25.123,48.908],[25.129,48.898],[25.153,48.873],[25.166,48.865],[25.174,48.872],[25.178,48.884],[25.18,48.895],[25.183,48.904],[25.189,48.911],[25.197,48.918],[25.219,48.929],[25.231,48.932],[25.246,48.931],[25.246,48.924],[25.236,48.912],[25.227,48.887],[25.222,48.86],[25.225,48.842],[25.25,48.859],[25.274,48.859],[25.328,48.842],[25.307,48.828],[25.25,48.818],[25.239,48.801],[25.251,48.775],[25.277,48.781],[25.328,48.815],[25.343,48.816],[25.351,48.813],[25.354,48.814],[25.356,48.828],[25.354,48.841],[25.351,48.85],[25.356,48.855],[25.376,48.856],[25.389,48.854],[25.401,48.85],[25.414,48.847],[25.431,48.849],[25.433,48.854],[25.431,48.861],[25.432,48.867],[25.44,48.87],[25.447,48.869],[25.462,48.864],[25.471,48.862],[25.463,48.848],[25.457,48.842],[25.45,48.836],[25.461,48.825],[25.482,48.814],[25.506,48.805],[25.523,48.801],[25.548,48.799],[25.565,48.793],[25.595,48.774],[25.623,48.764],[25.629,48.76],[25.64,48.745],[25.639,48.739],[25.633,48.736],[25.629,48.73],[25.628,48.72],[25.628,48.718],[25.63,48.717],[25.64,48.709],[25.646,48.697],[25.643,48.689],[25.637,48.684],[25.636,48.678],[25.599,48.658],[25.586,48.651],[25.577,48.643],[25.572,48.639],[25.567,48.631],[25.565,48.625],[25.565,48.621],[25.567,48.609],[25.578,48.581],[25.604,48.532],[25.606,48.522],[25.6,48.433],[25.594,48.407],[25.59,48.399],[25.585,48.393],[25.58,48.39],[25.575,48.388],[25.569,48.388],[25.564,48.389],[25.555,48.392],[25.545,48.396],[25.525,48.401],[25.513,48.403],[25.493,48.404],[25.447,48.4],[25.407,48.392],[25.37,48.38],[25.293,48.34],[25.196,48.257],[25.188,48.252],[25.177,48.25],[25.162,48.244],[25.148,48.237],[25.141,48.232],[25.136,48.228],[25.135,48.224],[25.133,48.22],[25.133,48.216],[25.133,48.207],[25.133,48.203],[25.134,48.2],[25.136,48.196],[25.14,48.19],[25.141,48.186],[25.14,48.182],[25.137,48.179],[25.132,48.178],[25.126,48.178],[25.117,48.175],[25.106,48.169],[25.054,48.129],[25.051,48.127],[25.046,48.125],[25.028,48.122],[25.017,48.119],[25.001,48.11],[24.993,48.105],[24.989,48.1],[24.988,48.096],[24.985,48.079],[24.98,48.071],[24.935,48.013],[24.931,48.006],[24.928,47.997],[24.928,47.994],[24.928,47.99],[24.932,47.971],[24.933,47.955],[24.935,47.947],[24.943,47.931],[24.945,47.928],[24.948,47.925],[24.963,47.912],[24.965,47.91],[24.967,47.907],[24.968,47.903],[24.969,47.899],[24.969,47.878],[24.97,47.874],[24.973,47.868],[24.981,47.855],[24.983,47.852],[24.984,47.848],[24.985,47.844],[24.985,47.84],[24.985,47.836],[24.981,47.828],[24.934,47.757],[24.933,47.754],[24.929,47.731],[24.928,47.726],[24.929,47.714],[24.929,47.714],[24.896,47.71],[24.877,47.719],[24.854,47.743],[24.82,47.784],[24.808,47.796],[24.793,47.805],[24.712,47.826],[24.679,47.841],[24.661,47.854],[24.657,47.867],[24.656,47.88],[24.649,47.896],[24.633,47.909],[24.608,47.922],[24.57,47.937],[24.57,47.938],[24.572,47.95],[24.582,47.984],[24.588,47.996],[24.639,48.048],[24.641,48.053],[24.64,48.057],[24.607,48.089],[24.538,48.134],[24.532,48.141],[24.528,48.146],[24.523,48.155],[24.521,48.161],[24.521,48.167],[24.522,48.171],[24.523,48.175],[24.525,48.178],[24.53,48.185],[24.535,48.19],[24.541,48.198],[24.543,48.205],[24.543,48.209],[24.541,48.213],[24.521,48.235],[24.503,48.26],[24.499,48.263],[24.495,48.267],[24.43,48.307],[24.411,48.317],[24.4,48.324],[24.392,48.331],[24.385,48.335],[24.378,48.336],[24.353,48.337],[24.348,48.338],[24.346,48.34],[24.344,48.346],[24.343,48.353],[24.339,48.365],[24.336,48.371],[24.332,48.375],[24.32,48.381],[24.313,48.385],[24.31,48.387],[24.305,48.388],[24.302,48.387],[24.299,48.385],[24.293,48.375],[24.29,48.372],[24.285,48.366],[24.278,48.361],[24.271,48.357],[24.266,48.356],[24.257,48.353],[24.234,48.351],[24.208,48.351],[24.178,48.355],[24.171,48.357],[24.163,48.361],[24.151,48.369],[24.145,48.375],[24.141,48.38],[24.139,48.384],[24.132,48.414],[24.131,48.426],[24.131,48.434],[24.137,48.459],[24.139,48.463],[24.14,48.467],[24.141,48.471],[24.141,48.475],[24.139,48.483],[24.136,48.49],[24.135,48.493],[24.135,48.5],[24.135,48.506],[24.137,48.515],[24.138,48.52],[24.137,48.527],[24.134,48.531],[24.129,48.533],[24.124,48.534],[24.119,48.533],[24.114,48.532],[24.065,48.511],[24.046,48.505],[24.001,48.5],[23.981,48.491],[23.964,48.479],[23.96,48.476],[23.952,48.473],[23.943,48.47],[23.936,48.47],[23.928,48.471],[23.917,48.474],[23.912,48.478],[23.908,48.481],[23.907,48.485],[23.907,48.489],[23.908,48.493],[23.911,48.5],[23.913,48.504],[23.915,48.507],[23.917,48.515],[23.916,48.521],[23.914,48.528],[23.907,48.538],[23.902,48.543],[23.898,48.547],[23.895,48.55],[23.887,48.554],[23.882,48.555],[23.877,48.557],[23.865,48.558],[23.856,48.56],[23.847,48.563],[23.791,48.594],[23.785,48.599],[23.782,48.603],[23.781,48.607],[23.78,48.611],[23.781,48.615],[23.783,48.624],[23.783,48.63],[23.78,48.638],[23.777,48.642],[23.772,48.645],[23.76,48.647],[23.748,48.648],[23.735,48.648],[23.724,48.646],[23.709,48.643],[23.702,48.643],[23.693,48.645],[23.675,48.654],[23.612,48.704],[23.574,48.716],[23.533,48.724],[23.575,48.834],[23.575,48.842],[23.572,48.853],[23.57,48.857],[23.568,48.86],[23.563,48.866],[23.553,48.875],[23.549,48.88],[23.548,48.885],[23.549,48.889],[23.553,48.896],[23.576,48.969],[23.582,48.977],[23.598,48.985],[23.62,48.997],[23.624,49],[23.642,49.011],[23.648,49.018],[23.655,49.031],[23.682,49.083],[23.684,49.087],[23.688,49.09],[23.694,49.095],[23.711,49.104],[23.729,49.111],[23.739,49.113],[23.755,49.115],[23.855,49.106],[23.906,49.107],[23.913,49.109],[23.922,49.113],[23.944,49.125],[23.95,49.127],[23.956,49.128],[23.967,49.127],[24.003,49.116],[24.012,49.118],[24.023,49.122],[24.068,49.143],[24.079,49.145],[24.085,49.146],[24.097,49.144],[24.141,49.135],[24.147,49.134],[24.158,49.135],[24.205,49.149],[24.216,49.15],[24.241,49.149],[24.263,49.152],[24.274,49.155],[24.316,49.172],[24.356,49.182],[24.367,49.183],[24.373,49.183],[24.379,49.183],[24.385,49.182],[24.389,49.181],[24.396,49.18],[24.406,49.18],[24.425,49.185],[24.435,49.19],[24.441,49.194],[24.444,49.197],[24.446,49.201],[24.447,49.205],[24.446,49.208],[24.444,49.212],[24.426,49.228],[24.418,49.235],[24.406,49.231],[24.387,49.232],[24.364,49.237],[24.357,49.241],[24.354,49.265],[24.354,49.269],[24.356,49.273],[24.359,49.278],[24.364,49.283],[24.366,49.288],[24.367,49.292],[24.366,49.295],[24.363,49.297],[24.359,49.3],[24.351,49.303],[24.345,49.304],[24.34,49.304],[24.334,49.302],[24.314,49.289],[24.31,49.287],[24.305,49.286],[24.3,49.285],[24.294,49.286],[24.29,49.287],[24.287,49.29],[24.284,49.293],[24.282,49.296],[24.282,49.301],[24.284,49.308],[24.287,49.311],[24.291,49.314],[24.311,49.319],[24.322,49.32],[24.344,49.32],[24.358,49.322],[24.37,49.326],[24.376,49.331],[24.386,49.34],[24.419,49.362],[24.423,49.366],[24.424,49.37],[24.424,49.374],[24.422,49.377],[24.418,49.379],[24.387,49.391],[24.383,49.394],[24.385,49.4],[24.39,49.41],[24.421,49.442],[24.426,49.449],[24.428,49.453],[24.428,49.458],[24.427,49.461],[24.426,49.465],[24.422,49.471],[24.415,49.48],[24.413,49.483],[24.414,49.489],[24.418,49.495],[24.427,49.507],[24.433,49.512],[24.439,49.516],[24.444,49.517],[24.45,49.517],[24.485,49.511],[24.497,49.512],[24.572,49.525],[24.585,49.524],[24.596,49.522],[24.606,49.52],[24.615,49.516]]]
}
},
{
"type":"Feature",
"id":"02",
"properties":{
"name":"Харьковская область",
"Manager":"Региональный менеджер<br />Молчаницкий Владимир",
"Phone":"(0512) 50-02-26 (многоканальный)",
"Email":"[email protected]",
"ICQ":"417 233 254",
"Mobile":"067-511-84-42"
},
"geometry":{
"type":"Polygon",
"coordinates":[[[37.48,50.34],[37.568,50.313],[37.599,50.291],[37.601,50.249],[37.591,50.226],[37.588,50.215],[37.59,50.204],[37.597,50.197],[37.632,50.174],[37.727,50.079],[37.763,50.063],[37.843,50.039],[37.881,50.023],[37.916,50.004],[37.946,49.979],[37.979,49.942],[37.98,49.94],[37.995,49.922],[37.996,49.906],[38,49.9],[38.023,49.91],[38.023,49.91],[38.024,49.903],[38.027,49.894],[38.043,49.869],[38.046,49.867],[38.052,49.861],[38.055,49.859],[38.059,49.857],[38.079,49.849],[38.081,49.846],[38.08,49.843],[38.075,49.84],[38.07,49.838],[38.065,49.837],[38.043,49.836],[38.023,49.832],[38.005,49.826],[38,49.823],[37.998,49.82],[37.998,49.817],[38,49.814],[38.002,49.812],[38.043,49.791],[38.045,49.788],[38.045,49.785],[38.041,49.782],[38.037,49.779],[38.023,49.774],[38.02,49.772],[38.016,49.769],[38.014,49.766],[38.011,49.762],[38.009,49.758],[38.005,49.751],[38.001,49.75],[37.998,49.749],[37.974,49.753],[37.969,49.753],[37.964,49.751],[37.961,49.749],[37.954,49.743],[37.942,49.731],[37.94,49.727],[37.939,49.723],[37.942,49.717],[37.946,49.715],[37.951,49.714],[37.978,49.722],[37.983,49.722],[37.988,49.722],[37.993,49.72],[37.996,49.718],[37.998,49.716],[38,49.713],[38.001,49.711],[38.001,49.708],[37.999,49.681],[38,49.668],[38.001,49.664],[38.001,49.661],[38,49.657],[37.998,49.652],[37.993,49.646],[37.981,49.637],[37.977,49.632],[37.968,49.615],[37.964,49.609],[37.959,49.606],[37.951,49.603],[37.947,49.602],[37.946,49.6],[37.944,49.597],[37.946,49.591],[37.952,49.577],[37.954,49.575],[37.961,49.569],[37.963,49.566],[37.964,49.564],[37.962,49.561],[37.957,49.558],[37.953,49.556],[37.953,49.551],[37.963,49.531],[37.964,49.528],[37.964,49.524],[37.963,49.52],[37.958,49.515],[37.953,49.512],[37.932,49.502],[37.929,49.5],[37.926,49.496],[37.921,49.481],[37.917,49.464],[37.91,49.455],[37.905,49.45],[37.9,49.448],[37.884,49.446],[37.88,49.444],[37.876,49.443],[37.864,49.43],[37.862,49.427],[37.861,49.423],[37.864,49.417],[37.867,49.414],[37.877,49.406],[37.88,49.403],[37.883,49.397],[37.886,49.39],[37.887,49.383],[37.882,49.333],[37.882,49.321],[37.885,49.313],[37.89,49.312],[37.908,49.31],[37.914,49.309],[37.919,49.307],[37.923,49.305],[37.926,49.302],[37.928,49.299],[37.93,49.296],[37.929,49.291],[37.926,49.284],[37.911,49.269],[37.898,49.258],[37.872,49.246],[37.847,49.232],[37.844,49.222],[37.843,49.219],[37.842,49.214],[37.839,49.21],[37.834,49.208],[37.817,49.205],[37.771,49.204],[37.643,49.228],[37.547,49.227],[37.541,49.225],[37.535,49.221],[37.503,49.186],[37.505,49.184],[37.509,49.182],[37.514,49.18],[37.525,49.178],[37.563,49.175],[37.585,49.176],[37.59,49.175],[37.594,49.173],[37.597,49.171],[37.61,49.157],[37.612,49.155],[37.61,49.15],[37.601,49.145],[37.374,49.053],[37.369,49.049],[37.364,49.045],[37.357,49.035],[37.354,49.029],[37.352,49.024],[37.352,49.02],[37.349,49.016],[37.343,49.012],[37.32,49.006],[37.314,49.003],[37.309,48.999],[37.292,48.98],[37.291,48.976],[37.292,48.973],[37.295,48.971],[37.303,48.966],[37.306,48.964],[37.306,48.96],[37.303,48.952],[37.303,48.948],[37.304,48.945],[37.306,48.942],[37.312,48.936],[37.313,48.933],[37.314,48.93],[37.314,48.927],[37.311,48.923],[37.305,48.92],[37.294,48.918],[37.266,48.918],[37.259,48.915],[37.221,48.898],[37.217,48.895],[37.211,48.885],[37.207,48.876],[37.204,48.873],[37.2,48.871],[37.192,48.87],[37.186,48.867],[37.181,48.861],[37.179,48.857],[37.178,48.852],[37.181,48.835],[37.181,48.831],[37.177,48.828],[37.17,48.826],[37.148,48.822],[37.14,48.822],[37.134,48.822],[37.129,48.824],[37.124,48.826],[37.121,48.828],[37.117,48.83],[37.109,48.838],[37.105,48.841],[37.1,48.842],[37.094,48.843],[37.089,48.842],[37.084,48.842],[37.079,48.839],[37.074,48.836],[37.07,48.829],[37.069,48.824],[37.068,48.819],[37.066,48.815],[37.063,48.812],[37.057,48.81],[37.048,48.81],[37.041,48.811],[37.03,48.814],[37.025,48.815],[37.019,48.814],[37.013,48.81],[37.001,48.798],[36.998,48.795],[36.998,48.791],[36.998,48.788],[37,48.786],[37.002,48.785],[37.005,48.783],[37.027,48.776],[37.031,48.774],[37.034,48.772],[37.034,48.768],[37.032,48.764],[37.029,48.761],[37.024,48.759],[37.014,48.76],[37.009,48.761],[37.004,48.764],[37.001,48.766],[36.999,48.767],[36.903,48.799],[36.891,48.801],[36.885,48.801],[36.875,48.8],[36.866,48.797],[36.861,48.795],[36.847,48.788],[36.837,48.78],[36.825,48.773],[36.82,48.772],[36.773,48.775],[36.761,48.777],[36.731,48.788],[36.718,48.789],[36.707,48.789],[36.702,48.788],[36.697,48.786],[36.693,48.782],[36.69,48.778],[36.691,48.769],[36.693,48.758],[36.709,48.714],[36.71,48.706],[36.711,48.688],[36.709,48.661],[36.711,48.65],[36.725,48.626],[36.667,48.621],[36.649,48.612],[36.641,48.606],[36.631,48.603],[36.595,48.602],[36.583,48.603],[36.576,48.605],[36.573,48.607],[36.567,48.614],[36.561,48.618],[36.546,48.626],[36.501,48.643],[36.485,48.647],[36.477,48.647],[36.471,48.646],[36.455,48.638],[36.382,48.581],[36.366,48.562],[36.365,48.558],[36.365,48.555],[36.369,48.553],[36.377,48.549],[36.378,48.546],[36.375,48.542],[36.358,48.534],[36.349,48.531],[36.342,48.531],[36.338,48.533],[36.331,48.538],[36.326,48.54],[36.32,48.542],[36.315,48.541],[36.311,48.538],[36.302,48.532],[36.294,48.527],[36.289,48.527],[36.284,48.528],[36.274,48.535],[36.273,48.538],[36.274,48.541],[36.277,48.544],[36.303,48.565],[36.306,48.567],[36.308,48.57],[36.306,48.572],[36.304,48.575],[36.286,48.587],[36.27,48.595],[36.268,48.598],[36.267,48.601],[36.268,48.605],[36.27,48.608],[36.284,48.624],[36.286,48.628],[36.287,48.631],[36.286,48.634],[36.283,48.637],[36.271,48.647],[36.199,48.686],[36.175,48.703],[36.138,48.721],[36.133,48.724],[36.132,48.727],[36.133,48.731],[36.135,48.734],[36.137,48.738],[36.141,48.74],[36.161,48.749],[36.166,48.753],[36.168,48.755],[36.171,48.758],[36.169,48.762],[36.164,48.767],[36.137,48.78],[36.131,48.784],[36.125,48.793],[36.119,48.797],[36.11,48.801],[36.088,48.81],[36.079,48.815],[36.075,48.82],[36.075,48.824],[36.072,48.829],[36.064,48.832],[36.037,48.838],[36.029,48.841],[36.012,48.851],[36.005,48.853],[36,48.854],[35.967,48.853],[35.962,48.855],[35.961,48.857],[35.963,48.86],[35.967,48.863],[35.974,48.867],[36,48.877],[36.004,48.879],[36.007,48.881],[36.018,48.894],[36.021,48.897],[36.022,48.9],[36.021,48.903],[36.018,48.905],[36,48.919],[35.993,48.926],[35.992,48.929],[35.992,48.933],[35.993,48.937],[35.989,48.944],[35.98,48.952],[35.953,48.969],[35.94,48.975],[35.931,48.976],[35.918,48.971],[35.871,48.96],[35.854,48.954],[35.838,48.946],[35.834,48.944],[35.824,48.942],[35.819,48.942],[35.809,48.939],[35.806,48.937],[35.801,48.935],[35.794,48.934],[35.784,48.935],[35.773,48.939],[35.753,48.945],[35.711,48.954],[35.703,48.954],[35.694,48.95],[35.689,48.948],[35.679,48.948],[35.672,48.95],[35.663,48.956],[35.656,48.958],[35.649,48.959],[35.619,48.959],[35.613,48.96],[35.608,48.962],[35.603,48.966],[35.586,48.975],[35.579,48.976],[35.574,48.975],[35.57,48.974],[35.565,48.972],[35.56,48.972],[35.509,48.977],[35.504,48.977],[35.483,48.974],[35.47,48.974],[35.462,48.975],[35.456,48.977],[35.436,48.991],[35.42,49],[35.361,49.022],[35.348,49.031],[35.33,49.047],[35.325,49.05],[35.298,49.063],[35.294,49.066],[35.291,49.071],[35.284,49.077],[35.219,49.111],[35.216,49.114],[35.214,49.117],[35.211,49.124],[35.207,49.128],[35.199,49.134],[35.17,49.147],[35.153,49.152],[35.148,49.153],[35.128,49.154],[35.103,49.157],[35.097,49.157],[35.075,49.154],[35.064,49.154],[35.057,49.157],[35.048,49.162],[35.041,49.163],[35.036,49.163],[35.032,49.162],[35.018,49.16],[34.984,49.164],[34.988,49.17],[34.99,49.177],[34.987,49.189],[34.983,49.2],[34.978,49.211],[34.975,49.217],[34.955,49.24],[34.954,49.243],[34.953,49.247],[34.954,49.253],[34.958,49.262],[34.964,49.272],[34.973,49.281],[35.025,49.317],[35.029,49.319],[35.033,49.32],[35.039,49.321],[35.044,49.32],[35.049,49.318],[35.053,49.316],[35.058,49.311],[35.062,49.308],[35.073,49.302],[35.084,49.298],[35.09,49.297],[35.188,49.292],[35.21,49.294],[35.263,49.312],[35.279,49.32],[35.309,49.342],[35.335,49.37],[35.361,49.392],[35.361,49.396],[35.36,49.4],[35.349,49.411],[35.35,49.415],[35.353,49.42],[35.353,49.423],[35.351,49.427],[35.343,49.43],[35.331,49.435],[35.326,49.439],[35.323,49.446],[35.316,49.455],[35.314,49.461],[35.314,49.468],[35.315,49.473],[35.317,49.477],[35.32,49.481],[35.323,49.483],[35.327,49.485],[35.342,49.488],[35.352,49.49],[35.357,49.491],[35.363,49.491],[35.419,49.481],[35.425,49.481],[35.429,49.483],[35.435,49.489],[35.438,49.492],[35.443,49.493],[35.46,49.493],[35.465,49.494],[35.467,49.496],[35.469,49.498],[35.469,49.501],[35.465,49.507],[35.454,49.514],[35.433,49.522],[35.416,49.534],[35.396,49.541],[35.392,49.544],[35.391,49.551],[35.393,49.553],[35.398,49.555],[35.446,49.555],[35.466,49.557],[35.471,49.558],[35.475,49.56],[35.473,49.569],[35.464,49.582],[35.42,49.637],[35.416,49.644],[35.413,49.65],[35.413,49.654],[35.414,49.657],[35.417,49.659],[35.425,49.662],[35.428,49.664],[35.429,49.667],[35.428,49.67],[35.426,49.681],[35.424,49.684],[35.42,49.686],[35.412,49.688],[35.381,49.688],[35.376,49.687],[35.373,49.685],[35.37,49.682],[35.366,49.674],[35.363,49.67],[35.36,49.668],[35.354,49.668],[35.342,49.669],[35.291,49.679],[35.286,49.681],[35.283,49.684],[35.282,49.689],[35.28,49.693],[35.277,49.696],[35.249,49.699],[35.244,49.701],[35.239,49.705],[35.237,49.711],[35.236,49.724],[35.234,49.728],[35.23,49.732],[35.21,49.74],[35.206,49.743],[35.202,49.747],[35.198,49.754],[35.192,49.77],[35.191,49.775],[35.19,49.79],[35.194,49.818],[35.193,49.825],[35.191,49.832],[35.188,49.836],[35.183,49.841],[35.166,49.851],[35.16,49.854],[35.154,49.855],[35.148,49.855],[35.143,49.855],[35.138,49.854],[35.126,49.848],[35.121,49.847],[35.115,49.847],[35.103,49.848],[35.041,49.868],[35.036,49.871],[35.022,49.883],[35.015,49.887],[35.009,49.889],[34.967,49.889],[34.955,49.89],[34.949,49.892],[34.944,49.893],[34.936,49.898],[34.926,49.905],[34.922,49.907],[34.917,49.909],[34.899,49.912],[34.893,49.915],[34.888,49.918],[34.878,49.93],[34.874,49.932],[34.869,49.936],[34.864,49.942],[34.858,49.969],[34.857,49.973],[34.841,50],[34.843,50.002],[34.853,50.013],[34.862,50.022],[34.907,50.05],[34.913,50.056],[34.916,50.064],[34.918,50.077],[34.917,50.132],[34.908,50.146],[34.945,50.159],[34.951,50.162],[34.957,50.167],[34.961,50.176],[34.97,50.189],[34.975,50.192],[34.979,50.192],[34.982,50.19],[34.985,50.187],[34.992,50.183],[35.005,50.176],[35.016,50.172],[35.025,50.171],[35.03,50.172],[35.034,50.175],[35.036,50.178],[35.037,50.182],[35.036,50.185],[35.034,50.188],[35.035,50.193],[35.038,50.199],[35.051,50.21],[35.06,50.214],[35.067,50.215],[35.082,50.209],[35.089,50.207],[35.093,50.208],[35.096,50.211],[35.099,50.215],[35.1,50.219],[35.104,50.225],[35.109,50.231],[35.12,50.24],[35.128,50.243],[35.135,50.245],[35.148,50.244],[35.161,50.243],[35.182,50.236],[35.187,50.234],[35.195,50.232],[35.206,50.232],[35.242,50.236],[35.25,50.238],[35.253,50.241],[35.255,50.244],[35.255,50.248],[35.254,50.251],[35.25,50.257],[35.249,50.26],[35.25,50.265],[35.253,50.269],[35.26,50.275],[35.264,50.277],[35.269,50.278],[35.298,50.274],[35.305,50.275],[35.309,50.276],[35.311,50.279],[35.312,50.281],[35.309,50.283],[35.306,50.286],[35.306,50.29],[35.308,50.294],[35.321,50.302],[35.329,50.305],[35.336,50.305],[35.342,50.304],[35.366,50.295],[35.372,50.293],[35.38,50.292],[35.385,50.294],[35.389,50.296],[35.39,50.3],[35.391,50.304],[35.391,50.319],[35.391,50.324],[35.393,50.33],[35.397,50.332],[35.403,50.334],[35.409,50.334],[35.415,50.333],[35.426,50.33],[35.494,50.302],[35.503,50.3],[35.507,50.301],[35.507,50.304],[35.506,50.306],[35.498,50.312],[35.496,50.315],[35.496,50.319],[35.498,50.321],[35.501,50.321],[35.532,50.317],[35.562,50.319],[35.578,50.324],[35.588,50.325],[35.595,50.326],[35.627,50.32],[35.646,50.318],[35.663,50.319],[35.671,50.32],[35.677,50.322],[35.681,50.324],[35.684,50.327],[35.687,50.33],[35.689,50.335],[35.691,50.338],[35.692,50.345],[35.692,50.345],[35.697,50.346],[35.697,50.346],[35.699,50.347],[35.71,50.356],[35.71,50.356],[35.721,50.369],[35.721,50.369],[35.737,50.382],[35.746,50.384],[35.765,50.385],[35.774,50.387],[35.785,50.395],[35.785,50.395],[35.805,50.412],[35.805,50.413],[35.819,50.419],[35.837,50.424],[35.932,50.431],[36.106,50.421],[36.133,50.412],[36.14,50.393],[36.169,50.384],[36.269,50.282],[36.292,50.274],[36.316,50.275],[36.339,50.282],[36.361,50.292],[36.381,50.304],[36.388,50.307],[36.4,50.307],[36.41,50.305],[36.43,50.297],[36.452,50.294],[36.48,50.281],[36.512,50.277],[36.521,50.274],[36.536,50.268],[36.539,50.265],[36.536,50.261],[36.534,50.239],[36.531,50.229],[36.534,50.22],[36.549,50.213],[36.571,50.207],[36.594,50.205],[36.617,50.207],[36.636,50.214],[36.636,50.214],[36.644,50.223],[36.66,50.244],[36.67,50.253],[36.67,50.253],[36.682,50.261],[36.848,50.324],[36.914,50.339],[36.98,50.342],[37.051,50.336],[37.197,50.363],[37.226,50.377],[37.285,50.416],[37.314,50.423],[37.415,50.432],[37.435,50.425],[37.45,50.399],[37.464,50.367],[37.48,50.34]]]
}
},
{
"type":"Feature",
"id":"02",
"properties":{
"name":"Хмельницкая область",
"Manager":"Региональный менеджер<br />Серый Павел",
"Phone":"(0512) 50-02-26 (многоканальный)",
"Email":"[email protected]",
"ICQ":"579 493 488",
"Mobile":"067-512-17-01"
},
"geometry":{
"type":"Polygon",
"coordinates":[[[27.192,50.541],[27.206,50.536],[27.211,50.533],[27.225,50.521],[27.24,50.514],[27.246,50.51],[27.251,50.501],[27.256,50.495],[27.26,50.49],[27.269,50.486],[27.276,50.484],[27.296,50.481],[27.301,50.48],[27.305,50.478],[27.304,50.475],[27.301,50.472],[27.297,50.47],[27.275,50.462],[27.267,50.458],[27.259,50.454],[27.256,50.451],[27.253,50.448],[27.251,50.445],[27.248,50.441],[27.229,50.395],[27.228,50.391],[27.228,50.387],[27.231,50.383],[27.235,50.38],[27.244,50.376],[27.252,50.374],[27.279,50.371],[27.289,50.368],[27.292,50.365],[27.295,50.361],[27.299,50.349],[27.303,50.345],[27.308,50.34],[27.319,50.334],[27.362,50.318],[27.394,50.302],[27.404,50.298],[27.407,50.296],[27.408,50.293],[27.406,50.289],[27.399,50.283],[27.398,50.28],[27.4,50.277],[27.404,50.275],[27.41,50.274],[27.421,50.276],[27.426,50.275],[27.432,50.272],[27.437,50.264],[27.443,50.259],[27.452,50.256],[27.472,50.252],[27.477,50.25],[27.481,50.248],[27.484,50.245],[27.486,50.24],[27.486,50.228],[27.488,50.224],[27.495,50.222],[27.5,50.221],[27.544,50.218],[27.55,50.218],[27.554,50.22],[27.557,50.223],[27.559,50.226],[27.565,50.237],[27.568,50.24],[27.572,50.242],[27.575,50.245],[27.58,50.252],[27.583,50.255],[27.587,50.256],[27.592,50.257],[27.599,50.256],[27.604,50.254],[27.607,50.249],[27.609,50.24],[27.609,50.234],[27.606,50.211],[27.606,50.207],[27.608,50.202],[27.611,50.198],[27.618,50.191],[27.635,50.18],[27.646,50.169],[27.648,50.165],[27.65,50.161],[27.65,50.153],[27.647,50.149],[27.643,50.146],[27.634,50.143],[27.63,50.141],[27.627,50.138],[27.627,50.134],[27.63,50.13],[27.642,50.123],[27.646,50.12],[27.648,50.117],[27.646,50.112],[27.633,50.102],[27.627,50.095],[27.624,50.088],[27.622,50.085],[27.621,50.082],[27.621,50.079],[27.622,50.076],[27.626,50.072],[27.633,50.068],[27.653,50.063],[27.657,50.061],[27.661,50.058],[27.663,50.053],[27.665,50.044],[27.664,50.033],[27.662,50.028],[27.66,50.025],[27.657,50.022],[27.64,50.02],[27.635,50.019],[27.632,50.017],[27.628,50.014],[27.622,50.009],[27.619,50.007],[27.614,50.005],[27.609,50.004],[27.604,50.003],[27.598,50.003],[27.548,50.008],[27.544,50.007],[27.544,50.003],[27.547,49.998],[27.575,49.965],[27.579,49.958],[27.58,49.955],[27.581,49.951],[27.58,49.948],[27.577,49.947],[27.572,49.946],[27.554,49.945],[27.549,49.944],[27.546,49.941],[27.544,49.937],[27.541,49.915],[27.544,49.911],[27.551,49.907],[27.588,49.898],[27.593,49.896],[27.597,49.893],[27.601,49.887],[27.601,49.884],[27.6,49.88],[27.599,49.877],[27.597,49.873],[27.598,49.87],[27.599,49.866],[27.604,49.861],[27.632,49.838],[27.642,49.827],[27.646,49.82],[27.648,49.813],[27.649,49.81],[27.652,49.807],[27.654,49.804],[27.661,49.799],[27.868,49.76],[27.85,49.745],[27.836,49.742],[27.817,49.742],[27.813,49.741],[27.812,49.739],[27.816,49.737],[27.834,49.729],[27.837,49.726],[27.836,49.722],[27.831,49.715],[27.822,49.708],[27.814,49.704],[27.81,49.702],[27.805,49.701],[27.799,49.701],[27.774,49.705],[27.769,49.704],[27.765,49.703],[27.762,49.7],[27.753,49.687],[27.751,49.683],[27.75,49.679],[27.752,49.674],[27.755,49.67],[27.759,49.668],[27.785,49.66],[27.793,49.656],[27.801,49.652],[27.808,49.647],[27.812,49.641],[27.814,49.638],[27.816,49.635],[27.816,49.631],[27.813,49.625],[27.809,49.618],[27.779,49.578],[27.769,49.57],[27.767,49.567],[27.767,49.563],[27.769,49.559],[27.772,49.556],[27.783,49.549],[27.786,49.546],[27.787,49.542],[27.784,49.536],[27.775,49.527],[27.768,49.524],[27.762,49.524],[27.753,49.528],[27.747,49.528],[27.742,49.528],[27.736,49.528],[27.732,49.526],[27.728,49.522],[27.726,49.514],[27.724,49.5],[27.726,49.493],[27.729,49.489],[27.758,49.474],[27.761,49.472],[27.763,49.47],[27.763,49.467],[27.758,49.464],[27.745,49.458],[27.742,49.455],[27.74,49.451],[27.738,49.447],[27.74,49.44],[27.743,49.437],[27.747,49.434],[27.752,49.432],[27.758,49.431],[27.765,49.43],[27.826,49.43],[27.83,49.428],[27.833,49.425],[27.836,49.423],[27.839,49.416],[27.846,49.403],[27.846,49.399],[27.844,49.396],[27.838,49.394],[27.809,49.386],[27.806,49.385],[27.804,49.383],[27.803,49.379],[27.805,49.373],[27.807,49.369],[27.813,49.362],[27.814,49.359],[27.816,49.348],[27.817,49.344],[27.819,49.341],[27.823,49.339],[27.827,49.338],[27.844,49.335],[27.848,49.333],[27.851,49.331],[27.853,49.328],[27.854,49.324],[27.853,49.319],[27.852,49.313],[27.852,49.309],[27.852,49.305],[27.855,49.298],[27.858,49.296],[27.871,49.286],[27.875,49.28],[27.877,49.277],[27.877,49.273],[27.874,49.268],[27.865,49.261],[27.86,49.255],[27.857,49.249],[27.855,49.242],[27.856,49.237],[27.857,49.232],[27.859,49.229],[27.862,49.226],[27.873,49.216],[27.876,49.213],[27.878,49.21],[27.879,49.207],[27.88,49.203],[27.881,49.195],[27.881,49.187],[27.881,49.183],[27.882,49.179],[27.884,49.172],[27.888,49.166],[27.889,49.163],[27.888,49.159],[27.884,49.155],[27.873,49.151],[27.865,49.15],[27.834,49.149],[27.811,49.142],[27.802,49.137],[27.783,49.12],[27.777,49.118],[27.773,49.116],[27.767,49.116],[27.755,49.118],[27.745,49.12],[27.735,49.124],[27.715,49.134],[27.705,49.137],[27.686,49.139],[27.681,49.14],[27.671,49.144],[27.655,49.152],[27.64,49.156],[27.616,49.16],[27.609,49.158],[27.601,49.152],[27.581,49.127],[27.578,49.124],[27.574,49.123],[27.568,49.122],[27.525,49.127],[27.5,49.126],[27.495,49.123],[27.489,49.118],[27.482,49.105],[27.477,49.098],[27.474,49.093],[27.472,49.088],[27.472,49.081],[27.471,49.076],[27.465,49.071],[27.448,49.066],[27.445,49.064],[27.442,49.061],[27.44,49.058],[27.436,49.047],[27.434,49.043],[27.431,49.039],[27.428,49.037],[27.424,49.034],[27.416,49.031],[27.406,49.024],[27.402,49.022],[27.399,49.021],[27.395,49.018],[27.392,49.013],[27.388,49],[27.383,48.996],[27.381,48.992],[27.38,48.987],[27.383,48.978],[27.387,48.973],[27.39,48.969],[27.396,48.964],[27.398,48.961],[27.398,48.957],[27.397,48.953],[27.391,48.948],[27.386,48.945],[27.377,48.941],[27.374,48.939],[27.372,48.935],[27.372,48.93],[27.375,48.924],[27.377,48.92],[27.387,48.907],[27.394,48.89],[27.399,48.876],[27.4,48.869],[27.403,48.815],[27.408,48.801],[27.415,48.788],[27.419,48.782],[27.422,48.78],[27.425,48.777],[27.426,48.774],[27.425,48.77],[27.42,48.766],[27.414,48.765],[27.403,48.766],[27.399,48.765],[27.396,48.761],[27.397,48.752],[27.399,48.742],[27.401,48.736],[27.402,48.732],[27.399,48.709],[27.393,48.684],[27.37,48.63],[27.359,48.624],[27.345,48.608],[27.335,48.602],[27.322,48.601],[27.313,48.605],[27.304,48.611],[27.295,48.616],[27.255,48.621],[27.234,48.618],[27.236,48.606],[27.246,48.601],[27.255,48.6],[27.262,48.596],[27.261,48.582],[27.256,48.574],[27.248,48.57],[27.237,48.569],[27.226,48.568],[27.214,48.57],[27.192,48.58],[27.181,48.582],[27.147,48.582],[27.141,48.579],[27.129,48.565],[27.123,48.561],[27.113,48.559],[27.07,48.563],[27.05,48.567],[27.038,48.568],[27.032,48.566],[27.028,48.563],[27.023,48.561],[27.017,48.565],[27.004,48.575],[26.967,48.581],[26.945,48.581],[26.925,48.575],[26.91,48.563],[26.899,48.552],[26.885,48.544],[26.859,48.54],[26.841,48.546],[26.828,48.561],[26.823,48.581],[26.829,48.602],[26.819,48.607],[26.808,48.609],[26.798,48.608],[26.788,48.602],[26.783,48.593],[26.789,48.578],[26.788,48.568],[26.773,48.551],[26.759,48.551],[26.75,48.562],[26.746,48.579],[26.741,48.589],[26.729,48.595],[26.717,48.595],[26.712,48.585],[26.716,48.578],[26.735,48.564],[26.739,48.558],[26.734,48.541],[26.722,48.535],[26.706,48.536],[26.691,48.54],[26.655,48.559],[26.633,48.562],[26.613,48.551],[26.614,48.54],[26.633,48.533],[26.671,48.527],[26.688,48.518],[26.705,48.507],[26.709,48.497],[26.688,48.493],[26.654,48.491],[26.644,48.493],[26.639,48.497],[26.635,48.503],[26.627,48.508],[26.616,48.507],[26.607,48.492],[26.622,48.458],[26.606,48.452],[26.583,48.453],[26.566,48.457],[26.553,48.466],[26.54,48.479],[26.522,48.507],[26.515,48.515],[26.489,48.53],[26.471,48.538],[26.422,48.53],[26.404,48.534],[26.381,48.517],[26.365,48.54],[26.357,48.554],[26.354,48.562],[26.356,48.566],[26.36,48.567],[26.365,48.568],[26.369,48.569],[26.372,48.574],[26.369,48.576],[26.355,48.582],[26.346,48.588],[26.341,48.59],[26.321,48.597],[26.315,48.6],[26.307,48.606],[26.305,48.61],[26.305,48.614],[26.307,48.617],[26.315,48.626],[26.316,48.629],[26.317,48.632],[26.317,48.636],[26.316,48.643],[26.313,48.644],[26.31,48.643],[26.304,48.638],[26.3,48.637],[26.294,48.637],[26.285,48.641],[26.283,48.645],[26.283,48.65],[26.284,48.654],[26.285,48.659],[26.282,48.662],[26.277,48.663],[26.271,48.663],[26.263,48.665],[26.254,48.667],[26.242,48.675],[26.237,48.68],[26.235,48.685],[26.236,48.689],[26.237,48.693],[26.242,48.704],[26.244,48.708],[26.244,48.713],[26.244,48.732],[26.244,48.736],[26.245,48.74],[26.25,48.747],[26.251,48.752],[26.249,48.757],[26.245,48.761],[26.232,48.771],[26.229,48.775],[26.229,48.779],[26.231,48.782],[26.236,48.788],[26.239,48.791],[26.24,48.798],[26.241,48.8],[26.246,48.802],[26.257,48.803],[26.262,48.805],[26.264,48.808],[26.263,48.811],[26.259,48.813],[26.239,48.819],[26.235,48.821],[26.231,48.823],[26.217,48.837],[26.215,48.842],[26.214,48.847],[26.219,48.879],[26.222,48.892],[26.223,48.897],[26.221,48.9],[26.217,48.902],[26.212,48.902],[26.202,48.9],[26.195,48.9],[26.193,48.902],[26.192,48.906],[26.194,48.91],[26.196,48.913],[26.198,48.916],[26.2,48.921],[26.202,48.926],[26.202,48.935],[26.201,48.94],[26.197,48.944],[26.189,48.953],[26.189,48.957],[26.191,48.96],[26.2,48.963],[26.204,48.965],[26.205,48.971],[26.203,48.976],[26.199,48.985],[26.199,48.989],[26.203,48.991],[26.214,48.993],[26.221,48.999],[26.221,49.001],[26.218,49.007],[26.208,49.019],[26.201,49.03],[26.199,49.036],[26.199,49.041],[26.202,49.045],[26.204,49.048],[26.211,49.053],[26.221,49.06],[26.225,49.063],[26.228,49.067],[26.231,49.075],[26.232,49.079],[26.231,49.084],[26.229,49.087],[26.214,49.109],[26.212,49.114],[26.211,49.119],[26.212,49.128],[26.214,49.132],[26.22,49.143],[26.222,49.148],[26.221,49.152],[26.219,49.155],[26.208,49.163],[26.204,49.167],[26.199,49.175],[26.198,49.18],[26.198,49.185],[26.204,49.2],[26.205,49.211],[26.205,49.218],[26.206,49.223],[26.208,49.227],[26.211,49.23],[26.214,49.232],[26.218,49.235],[26.227,49.238],[26.242,49.241],[26.245,49.244],[26.248,49.249],[26.247,49.259],[26.248,49.265],[26.249,49.27],[26.255,49.278],[26.258,49.285],[26.258,49.29],[26.256,49.294],[26.245,49.304],[26.242,49.308],[26.239,49.312],[26.234,49.319],[26.233,49.324],[26.234,49.33],[26.239,49.342],[26.239,49.347],[26.238,49.353],[26.231,49.372],[26.23,49.381],[26.23,49.392],[26.229,49.397],[26.227,49.401],[26.224,49.403],[26.199,49.415],[26.195,49.419],[26.191,49.425],[26.182,49.451],[26.174,49.469],[26.156,49.494],[26.15,49.505],[26.149,49.512],[26.148,49.517],[26.149,49.519],[26.15,49.522],[26.164,49.544],[26.166,49.546],[26.168,49.548],[26.171,49.551],[26.175,49.553],[26.202,49.562],[26.206,49.564],[26.209,49.567],[26.211,49.57],[26.214,49.583],[26.218,49.609],[26.221,49.617],[26.223,49.62],[26.225,49.623],[26.228,49.626],[26.231,49.629],[26.242,49.635],[26.246,49.638],[26.25,49.643],[26.253,49.652],[26.254,49.658],[26.253,49.662],[26.25,49.665],[26.246,49.667],[26.219,49.682],[26.215,49.685],[26.211,49.689],[26.206,49.696],[26.204,49.702],[26.204,49.706],[26.206,49.71],[26.21,49.716],[26.213,49.719],[26.217,49.722],[26.228,49.728],[26.231,49.734],[26.233,49.743],[26.235,49.763],[26.235,49.772],[26.233,49.779],[26.232,49.782],[26.228,49.788],[26.225,49.791],[26.222,49.794],[26.198,49.806],[26.194,49.81],[26.191,49.814],[26.187,49.822],[26.186,49.827],[26.187,49.832],[26.189,49.837],[26.192,49.843],[26.194,49.855],[26.194,49.861],[26.193,49.866],[26.191,49.869],[26.188,49.872],[26.185,49.875],[26.181,49.877],[26.168,49.883],[26.163,49.887],[26.157,49.894],[26.156,49.899],[26.156,49.903],[26.163,49.915],[26.166,49.922],[26.166,49.927],[26.165,49.931],[26.161,49.941],[26.151,49.957],[26.15,49.961],[26.151,49.965],[26.152,49.968],[26.155,49.97],[26.158,49.973],[26.162,49.975],[26.17,49.979],[26.227,49.991],[26.231,49.994],[26.234,49.999],[26.235,50.007],[26.233,50.011],[26.228,50.013],[26.215,50.014],[26.208,50.016],[26.202,50.018],[26.196,50.023],[26.195,50.027],[26.197,50.03],[26.201,50.032],[26.219,50.038],[26.223,50.04],[26.225,50.043],[26.228,50.047],[26.232,50.059],[26.231,50.063],[26.228,50.066],[26.215,50.072],[26.211,50.075],[26.208,50.078],[26.205,50.083],[26.205,50.086],[26.208,50.089],[26.212,50.091],[26.249,50.092],[26.26,50.094],[26.265,50.097],[26.269,50.101],[26.273,50.108],[26.273,50.113],[26.272,50.117],[26.269,50.12],[26.266,50.123],[26.258,50.127],[26.249,50.131],[26.214,50.138],[26.21,50.139],[26.207,50.141],[26.208,50.143],[26.212,50.145],[26.233,50.152],[26.282,50.167],[26.303,50.176],[26.32,50.189],[26.361,50.23],[26.368,50.235],[26.384,50.244],[26.39,50.246],[26.399,50.249],[26.413,50.25],[26.421,50.25],[26.434,50.247],[26.441,50.247],[26.465,50.248],[26.472,50.25],[26.48,50.254],[26.498,50.265],[26.504,50.27],[26.515,50.281],[26.518,50.284],[26.555,50.3],[26.564,50.306],[26.57,50.31],[26.577,50.32],[26.585,50.329],[26.591,50.334],[26.637,50.356],[26.643,50.359],[26.646,50.362],[26.647,50.365],[26.648,50.368],[26.649,50.371],[26.648,50.377],[26.648,50.381],[26.65,50.384],[26.694,50.407],[26.703,50.414],[26.708,50.42],[26.709,50.424],[26.712,50.428],[26.717,50.433],[26.728,50.439],[26.732,50.444],[26.735,50.449],[26.736,50.457],[26.737,50.461],[26.74,50.465],[26.746,50.467],[26.757,50.466],[26.78,50.459],[26.786,50.459],[26.792,50.459],[26.797,50.461],[26.8,50.466],[26.8,50.47],[26.8,50.474],[26.798,50.481],[26.798,50.485],[26.798,50.489],[26.8,50.493],[26.802,50.496],[26.806,50.5],[26.807,50.501],[26.876,50.52],[26.895,50.531],[26.901,50.532],[26.909,50.532],[26.929,50.526],[26.949,50.519],[26.962,50.517],[26.969,50.518],[26.976,50.519],[26.986,50.524],[26.992,50.527],[26.998,50.533],[27.014,50.542],[27.023,50.546],[27.042,50.551],[27.063,50.555],[27.068,50.557],[27.072,50.559],[27.075,50.561],[27.08,50.573],[27.084,50.58],[27.088,50.583],[27.092,50.585],[27.098,50.587],[27.114,50.587],[27.121,50.585],[27.126,50.582],[27.131,50.574],[27.132,50.569],[27.132,50.564],[27.132,50.559],[27.132,50.555],[27.138,50.551],[27.144,50.548],[27.192,50.541]]]
}
},
{
"type":"Feature",
"id":"02",
"properties":{
"name":"Киевская область",
"Manager":"Региональный менеджер<br />Молчаницкий Владимир",
"Phone":"(0512) 50-02-26 (многоканальный)",
"Email":"[email protected]",
"ICQ":"417 233 254",
"Mobile":"067-511-84-42"
},
"geometry":{
"type":"Polygon",
"coordinates":[[[29.738,51.44],[29.828,51.43],[29.846,51.433],[29.856,51.44],[29.873,51.46],[29.886,51.465],[29.896,51.465],[29.912,51.458],[29.925,51.458],[29.986,51.478],[30.008,51.482],[30.148,51.485],[30.177,51.48],[30.205,51.467],[30.242,51.435],[30.257,51.425],[30.307,51.41],[30.32,51.402],[30.326,51.396],[30.329,51.389],[30.33,51.381],[30.33,51.381],[30.33,51.371],[30.328,51.363],[30.32,51.342],[30.317,51.341],[30.317,51.341],[30.324,51.33],[30.355,51.306],[30.368,51.298],[30.383,51.294],[30.413,51.294],[30.428,51.292],[30.442,51.283],[30.465,51.262],[30.48,51.259],[30.494,51.26],[30.508,51.258],[30.52,51.253],[30.532,51.245],[30.539,51.236],[30.55,51.237],[30.554,51.243],[30.557,51.235],[30.556,51.232],[30.554,51.229],[30.55,51.227],[30.544,51.227],[30.525,51.228],[30.52,51.227],[30.516,51.225],[30.515,51.22],[30.516,51.215],[30.528,51.195],[30.53,51.188],[30.531,51.18],[30.531,51.172],[30.513,51.117],[30.511,51.108],[30.508,51.047],[30.512,51.017],[30.514,51.013],[30.517,51.01],[30.521,51.008],[30.532,51.008],[30.538,51.01],[30.543,51.013],[30.547,51.015],[30.551,51.017],[30.556,51.017],[30.561,51.016],[30.568,51.013],[30.58,51.007],[30.592,51.005],[30.6,51.004],[30.607,51.005],[30.615,51.004],[30.625,51],[30.649,50.986],[30.654,50.981],[30.657,50.978],[30.659,50.975],[30.66,50.972],[30.663,50.965],[30.663,50.961],[30.664,50.957],[30.663,50.949],[30.659,50.931],[30.653,50.915],[30.652,50.91],[30.651,50.906],[30.651,50.902],[30.652,50.898],[30.653,50.895],[30.655,50.892],[30.661,50.889],[30.672,50.885],[30.726,50.872],[30.735,50.869],[30.767,50.853],[30.776,50.847],[30.78,50.844],[30.78,50.84],[30.775,50.819],[30.771,50.811],[30.765,50.8],[30.756,50.786],[30.742,50.771],[30.739,50.767],[30.738,50.764],[30.738,50.76],[30.741,50.757],[30.746,50.756],[30.758,50.756],[30.787,50.761],[30.794,50.76],[30.802,50.757],[30.814,50.751],[30.819,50.747],[30.826,50.74],[30.83,50.738],[30.836,50.737],[30.845,50.738],[30.851,50.74],[30.854,50.743],[30.863,50.752],[30.867,50.754],[30.872,50.755],[30.919,50.747],[30.931,50.746],[30.939,50.747],[30.954,50.756],[30.963,50.759],[30.976,50.759],[31.03,50.756],[31.042,50.756],[31.052,50.758],[31.057,50.76],[31.069,50.766],[31.073,50.767],[31.078,50.769],[31.084,50.769],[31.089,50.767],[31.095,50.765],[31.098,50.759],[31.101,50.755],[31.106,50.75],[31.114,50.745],[31.115,50.742],[31.114,50.738],[31.112,50.734],[31.111,50.731],[31.11,50.727],[31.113,50.724],[31.119,50.721],[31.133,50.719],[31.149,50.719],[31.154,50.718],[31.158,50.715],[31.16,50.71],[31.159,50.702],[31.161,50.699],[31.162,50.698],[31.185,50.686],[31.199,50.676],[31.205,50.671],[31.21,50.665],[31.213,50.659],[31.218,50.645],[31.221,50.635],[31.221,50.631],[31.22,50.627],[31.219,50.623],[31.214,50.616],[31.211,50.613],[31.208,50.61],[31.204,50.608],[31.2,50.607],[31.189,50.607],[31.186,50.606],[31.183,50.603],[31.18,50.595],[31.179,50.591],[31.18,50.588],[31.183,50.585],[31.186,50.582],[31.215,50.564],[31.22,50.562],[31.226,50.56],[31.246,50.56],[31.253,50.56],[31.258,50.558],[31.262,50.552],[31.263,50.548],[31.262,50.538],[31.261,50.534],[31.263,50.531],[31.265,50.528],[31.268,50.525],[31.271,50.523],[31.275,50.521],[31.281,50.519],[31.287,50.518],[31.298,50.518],[31.306,50.516],[31.316,50.512],[31.321,50.51],[31.328,50.508],[31.339,50.51],[31.346,50.511],[31.351,50.514],[31.364,50.514],[31.384,50.513],[31.463,50.5],[31.473,50.506],[31.483,50.514],[31.487,50.516],[31.492,50.517],[31.497,50.518],[31.5,50.518],[31.561,50.509],[31.567,50.509],[31.572,50.51],[31.577,50.512],[31.584,50.516],[31.589,50.517],[31.594,50.518],[31.608,50.517],[31.613,50.518],[31.618,50.519],[31.622,50.521],[31.632,50.529],[31.635,50.532],[31.639,50.534],[31.644,50.535],[31.656,50.536],[31.661,50.537],[31.664,50.539],[31.671,50.545],[31.678,50.549],[31.682,50.551],[31.687,50.553],[31.692,50.554],[31.698,50.554],[31.738,50.552],[31.743,50.552],[31.748,50.553],[31.752,50.555],[31.756,50.558],[31.762,50.564],[31.764,50.567],[31.767,50.57],[31.772,50.572],[31.78,50.575],[31.783,50.576],[31.784,50.579],[31.784,50.583],[31.783,50.586],[31.784,50.589],[31.785,50.592],[31.791,50.597],[31.793,50.6],[31.794,50.604],[31.794,50.608],[31.795,50.611],[31.797,50.614],[31.8,50.616],[31.805,50.618],[31.825,50.622],[31.847,50.624],[31.856,50.621],[31.867,50.616],[31.896,50.599],[31.909,50.593],[31.944,50.562],[31.954,50.555],[31.962,50.55],[31.968,50.549],[31.98,50.548],[32.022,50.548],[32.028,50.545],[32.033,50.539],[32.035,50.525],[32.034,50.512],[32.033,50.508],[32.031,50.504],[32.028,50.502],[32.024,50.5],[32.023,50.5],[32.022,50.5],[32.001,50.502],[31.998,50.502],[31.995,50.501],[31.993,50.5],[31.992,50.5],[31.981,50.49],[31.975,50.484],[31.973,50.48],[31.974,50.475],[31.977,50.47],[32.001,50.457],[32.004,50.455],[32.008,50.451],[32.01,50.445],[32.01,50.44],[32.01,50.435],[32.01,50.431],[32.011,50.428],[32.013,50.425],[32.015,50.423],[32.02,50.42],[32.027,50.416],[32.043,50.411],[32.051,50.41],[32.059,50.41],[32.07,50.411],[32.082,50.41],[32.087,50.408],[32.089,50.406],[32.089,50.401],[32.087,50.398],[32.083,50.395],[32.079,50.393],[32.072,50.389],[32.069,50.386],[32.067,50.383],[32.073,50.378],[32.079,50.374],[32.139,50.35],[32.114,50.306],[32.099,50.291],[32.095,50.289],[32.093,50.286],[32.095,50.282],[32.098,50.279],[32.1,50.275],[32.101,50.272],[32.098,50.267],[32.096,50.263],[32.069,50.239],[32.057,50.242],[32.048,50.246],[32.038,50.249],[32.032,50.251],[32.019,50.251],[32.014,50.251],[32.004,50.249],[31.999,50.247],[31.994,50.243],[31.984,50.235],[31.979,50.229],[31.975,50.224],[31.974,50.22],[31.973,50.216],[31.974,50.212],[31.974,50.21],[31.975,50.208],[31.977,50.205],[31.982,50.2],[31.986,50.198],[31.992,50.193],[31.994,50.19],[31.995,50.186],[31.996,50.183],[31.995,50.179],[31.993,50.176],[31.988,50.169],[31.981,50.164],[31.96,50.15],[31.954,50.148],[31.948,50.146],[31.936,50.145],[31.928,50.145],[31.918,50.148],[31.914,50.147],[31.91,50.141],[31.905,50.132],[31.9,50.125],[31.893,50.121],[31.862,50.106],[31.853,50.1],[31.85,50.095],[31.851,50.092],[31.858,50.079],[31.859,50.076],[31.86,50.072],[31.86,50.064],[31.862,50.057],[31.864,50.05],[31.871,50.037],[31.874,50.031],[31.873,50.027],[31.872,50.023],[31.866,50.02],[31.858,50.017],[31.819,50.01],[31.814,50.008],[31.81,50.006],[31.807,50.001],[31.806,49.998],[31.807,49.995],[31.808,49.992],[31.809,49.984],[31.81,49.977],[31.809,49.969],[31.807,49.96],[31.802,49.953],[31.793,49.939],[31.767,49.918],[31.765,49.915],[31.764,49.911],[31.765,49.901],[31.764,49.897],[31.763,49.893],[31.76,49.891],[31.742,49.879],[31.731,49.867],[31.721,49.854],[31.717,49.849],[31.713,49.848],[31.707,49.847],[31.613,49.858],[31.609,49.86],[31.606,49.863],[31.605,49.866],[31.607,49.887],[31.606,49.89],[31.604,49.894],[31.601,49.896],[31.597,49.898],[31.591,49.897],[31.586,49.896],[31.583,49.891],[31.582,49.888],[31.581,49.881],[31.578,49.873],[31.576,49.869],[31.574,49.865],[31.571,49.863],[31.565,49.861],[31.558,49.859],[31.545,49.859],[31.538,49.86],[31.532,49.862],[31.529,49.864],[31.525,49.866],[31.519,49.866],[31.514,49.865],[31.509,49.859],[31.507,49.854],[31.504,49.845],[31.502,49.842],[31.5,49.84],[31.497,49.84],[31.492,49.842],[31.489,49.844],[31.483,49.849],[31.476,49.855],[31.474,49.857],[31.472,49.861],[31.471,49.868],[31.47,49.872],[31.468,49.875],[31.465,49.877],[31.461,49.879],[31.457,49.882],[31.454,49.884],[31.452,49.887],[31.451,49.89],[31.449,49.894],[31.448,49.897],[31.447,49.901],[31.444,49.903],[31.441,49.905],[31.435,49.906],[31.43,49.906],[31.423,49.905],[31.405,49.901],[31.394,49.9],[31.357,49.9],[31.346,49.899],[31.336,49.897],[31.259,49.862],[31.224,49.859],[31.218,49.857],[31.212,49.854],[31.205,49.847],[31.195,49.835],[31.192,49.832],[31.182,49.825],[31.18,49.821],[31.179,49.818],[31.181,49.815],[31.184,49.813],[31.192,49.809],[31.196,49.807],[31.199,49.804],[31.198,49.801],[31.197,49.797],[31.185,49.782],[31.184,49.781],[31.183,49.777],[31.182,49.774],[31.182,49.77],[31.185,49.768],[31.188,49.765],[31.192,49.763],[31.195,49.76],[31.197,49.757],[31.197,49.753],[31.188,49.718],[31.186,49.714],[31.172,49.699],[31.17,49.696],[31.169,49.692],[31.169,49.689],[31.174,49.683],[31.175,49.679],[31.176,49.676],[31.175,49.672],[31.173,49.668],[31.163,49.655],[31.15,49.633],[31.147,49.629],[31.135,49.622],[31.131,49.618],[31.128,49.614],[31.127,49.603],[31.128,49.599],[31.13,49.596],[31.133,49.593],[31.138,49.592],[31.149,49.59],[31.154,49.588],[31.157,49.585],[31.158,49.582],[31.159,49.578],[31.159,49.574],[31.158,49.562],[31.157,49.559],[31.156,49.556],[31.15,49.553],[31.119,49.538],[31.11,49.533],[31.104,49.528],[31.088,49.501],[31.083,49.496],[31.081,49.493],[31.077,49.491],[31.035,49.472],[31.029,49.468],[31.023,49.462],[30.998,49.447],[30.988,49.439],[30.979,49.431],[30.974,49.428],[30.956,49.419],[30.95,49.414],[30.946,49.41],[30.922,49.382],[30.92,49.379],[30.919,49.374],[30.919,49.37],[30.919,49.359],[30.919,49.355],[30.915,49.35],[30.908,49.346],[30.894,49.348],[30.888,49.35],[30.884,49.353],[30.882,49.356],[30.879,49.359],[30.875,49.361],[30.868,49.361],[30.859,49.357],[30.848,49.35],[30.842,49.348],[30.832,49.347],[30.816,49.352],[30.81,49.352],[30.801,49.349],[30.796,49.346],[30.785,49.337],[30.781,49.335],[30.748,49.329],[30.73,49.322],[30.725,49.321],[30.72,49.321],[30.715,49.324],[30.712,49.327],[30.692,49.349],[30.689,49.352],[30.685,49.354],[30.678,49.354],[30.669,49.354],[30.655,49.351],[30.642,49.352],[30.635,49.353],[30.627,49.358],[30.623,49.359],[30.619,49.359],[30.615,49.355],[30.602,49.338],[30.596,49.332],[30.593,49.33],[30.588,49.33],[30.56,49.34],[30.555,49.341],[30.55,49.341],[30.539,49.334],[30.534,49.332],[30.501,49.324],[30.498,49.324],[30.494,49.324],[30.489,49.327],[30.486,49.33],[30.484,49.333],[30.479,49.339],[30.475,49.341],[30.467,49.346],[30.463,49.347],[30.458,49.349],[30.452,49.35],[30.445,49.35],[30.438,49.349],[30.428,49.344],[30.423,49.34],[30.42,49.336],[30.417,49.328],[30.416,49.32],[30.417,49.312],[30.416,49.308],[30.415,49.304],[30.409,49.293],[30.39,49.239],[30.387,49.235],[30.382,49.233],[30.373,49.233],[30.363,49.237],[30.36,49.241],[30.358,49.245],[30.358,49.249],[30.358,49.252],[30.357,49.255],[30.354,49.257],[30.35,49.258],[30.174,49.282],[30.169,49.284],[30.166,49.287],[30.164,49.29],[30.164,49.293],[30.166,49.297],[30.171,49.304],[30.182,49.315],[30.183,49.319],[30.183,49.321],[30.179,49.323],[30.158,49.329],[30.152,49.33],[30.146,49.329],[30.136,49.319],[30.129,49.314],[30.115,49.309],[30.108,49.305],[30.104,49.301],[30.104,49.298],[30.105,49.296],[30.107,49.294],[30.114,49.286],[30.116,49.283],[30.117,49.279],[30.116,49.277],[30.112,49.275],[30.103,49.276],[30.098,49.277],[30.088,49.281],[30.083,49.282],[30.053,49.283],[30.045,49.285],[30.039,49.285],[30.032,49.283],[30.024,49.278],[30.014,49.267],[30.007,49.265],[29.997,49.264],[29.964,49.263],[29.954,49.261],[29.932,49.251],[29.92,49.246],[29.917,49.244],[29.914,49.24],[29.909,49.23],[29.906,49.225],[29.898,49.217],[29.891,49.212],[29.877,49.203],[29.874,49.2],[29.871,49.197],[29.87,49.193],[29.87,49.19],[29.872,49.179],[29.869,49.176],[29.862,49.174],[29.837,49.175],[29.778,49.171],[29.761,49.175],[29.741,49.184],[29.734,49.19],[29.729,49.195],[29.728,49.202],[29.731,49.205],[29.735,49.208],[29.739,49.209],[29.743,49.211],[29.745,49.213],[29.741,49.217],[29.736,49.22],[29.697,49.227],[29.688,49.241],[29.677,49.244],[29.662,49.243],[29.648,49.243],[29.642,49.245],[29.639,49.248],[29.637,49.253],[29.63,49.262],[29.611,49.28],[29.598,49.3],[29.594,49.304],[29.59,49.306],[29.585,49.308],[29.556,49.311],[29.547,49.313],[29.532,49.318],[29.525,49.322],[29.523,49.326],[29.522,49.334],[29.52,49.34],[29.516,49.346],[29.5,49.366],[29.499,49.368],[29.5,49.375],[29.5,49.379],[29.501,49.38],[29.502,49.382],[29.503,49.384],[29.505,49.386],[29.508,49.389],[29.511,49.391],[29.561,49.413],[29.565,49.415],[29.567,49.418],[29.569,49.422],[29.57,49.431],[29.57,49.444],[29.566,49.451],[29.543,49.482],[29.54,49.488],[29.54,49.491],[29.542,49.495],[29.545,49.497],[29.548,49.499],[29.554,49.5],[29.559,49.502],[29.562,49.504],[29.565,49.506],[29.566,49.508],[29.567,49.521],[29.567,49.528],[29.565,49.532],[29.562,49.536],[29.522,49.549],[29.516,49.552],[29.51,49.556],[29.502,49.563],[29.499,49.568],[29.496,49.573],[29.495,49.584],[29.495,49.592],[29.496,49.597],[29.497,49.6],[29.499,49.604],[29.509,49.617],[29.512,49.621],[29.514,49.626],[29.515,49.633],[29.513,49.637],[29.511,49.64],[29.503,49.644],[29.496,49.646],[29.447,49.651],[29.45,49.665],[29.453,49.668],[29.459,49.671],[29.474,49.676],[29.478,49.679],[29.481,49.684],[29.482,49.689],[29.483,49.697],[29.483,49.703],[29.482,49.707],[29.478,49.709],[29.473,49.71],[29.468,49.71],[29.445,49.707],[29.433,49.707],[29.419,49.708],[29.418,49.71],[29.419,49.712],[29.427,49.718],[29.432,49.724],[29.44,49.733],[29.442,49.739],[29.445,49.745],[29.449,49.759],[29.449,49.765],[29.449,49.771],[29.443,49.777],[29.44,49.782],[29.437,49.791],[29.439,49.795],[29.442,49.798],[29.45,49.802],[29.455,49.803],[29.46,49.804],[29.472,49.803],[29.478,49.804],[29.484,49.808],[29.49,49.815],[29.496,49.817],[29.5,49.818],[29.509,49.817],[29.514,49.817],[29.519,49.818],[29.555,49.836],[29.588,49.846],[29.594,49.849],[29.606,49.857],[29.61,49.859],[29.625,49.862],[29.63,49.863],[29.634,49.865],[29.639,49.869],[29.655,49.883],[29.661,49.893],[29.667,49.898],[29.671,49.9],[29.698,49.909],[29.705,49.913],[29.727,49.929],[29.733,49.935],[29.736,49.941],[29.735,49.944],[29.734,49.947],[29.676,50.009],[29.674,50.012],[29.672,50.016],[29.672,50.023],[29.675,50.027],[29.681,50.031],[29.684,50.034],[29.684,50.037],[29.671,50.074],[29.669,50.083],[29.669,50.09],[29.671,50.094],[29.674,50.097],[29.677,50.098],[29.679,50.099],[29.713,50.104],[29.719,50.107],[29.726,50.111],[29.734,50.121],[29.734,50.126],[29.731,50.131],[29.727,50.136],[29.727,50.15],[29.726,50.156],[29.723,50.161],[29.719,50.163],[29.705,50.169],[29.701,50.171],[29.698,50.173],[29.695,50.176],[29.693,50.179],[29.691,50.182],[29.691,50.186],[29.692,50.199],[29.692,50.203],[29.692,50.207],[29.691,50.218],[29.696,50.258],[29.695,50.267],[29.691,50.272],[29.68,50.275],[29.675,50.277],[29.671,50.279],[29.669,50.282],[29.66,50.292],[29.648,50.311],[29.645,50.313],[29.642,50.316],[29.638,50.318],[29.632,50.319],[29.625,50.319],[29.613,50.319],[29.608,50.321],[29.604,50.327],[29.601,50.343],[29.588,50.364],[29.581,50.391],[29.578,50.396],[29.575,50.399],[29.572,50.401],[29.57,50.404],[29.567,50.407],[29.555,50.417],[29.547,50.422],[29.542,50.423],[29.537,50.424],[29.494,50.423],[29.489,50.422],[29.45,50.412],[29.445,50.411],[29.439,50.412],[29.433,50.414],[29.426,50.422],[29.426,50.426],[29.428,50.429],[29.451,50.431],[29.456,50.432],[29.461,50.434],[29.464,50.437],[29.467,50.441],[29.466,50.445],[29.462,50.447],[29.447,50.453],[29.443,50.456],[29.442,50.46],[29.444,50.463],[29.448,50.464],[29.453,50.464],[29.471,50.462],[29.477,50.462],[29.481,50.464],[29.485,50.466],[29.488,50.469],[29.49,50.472],[29.499,50.492],[29.5,50.497],[29.5,50.5],[29.5,50.501],[29.499,50.503],[29.497,50.505],[29.493,50.508],[29.483,50.512],[29.477,50.515],[29.473,50.522],[29.473,50.527],[29.477,50.53],[29.489,50.531],[29.493,50.532],[29.497,50.534],[29.499,50.537],[29.509,50.556],[29.513,50.567],[29.512,50.571],[29.51,50.574],[29.492,50.582],[29.488,50.585],[29.484,50.588],[29.479,50.594],[29.479,50.598],[29.481,50.602],[29.49,50.615],[29.5,50.626],[29.528,50.654],[29.537,50.667],[29.54,50.67],[29.544,50.672],[29.575,50.684],[29.58,50.687],[29.585,50.692],[29.591,50.701],[29.592,50.706],[29.592,50.711],[29.578,50.745],[29.575,50.759],[29.572,50.766],[29.57,50.769],[29.567,50.772],[29.56,50.777],[29.549,50.78],[29.536,50.781],[29.499,50.778],[29.495,50.778],[29.49,50.781],[29.489,50.784],[29.489,50.789],[29.508,50.859],[29.507,50.866],[29.505,50.87],[29.502,50.873],[29.478,50.89],[29.423,50.945],[29.419,50.948],[29.415,50.949],[29.409,50.95],[29.403,50.952],[29.398,50.957],[29.393,50.97],[29.394,50.976],[29.398,50.979],[29.43,50.98],[29.436,50.979],[29.441,50.977],[29.449,50.973],[29.453,50.971],[29.457,50.969],[29.462,50.97],[29.466,50.976],[29.466,50.983],[29.463,51.006],[29.463,51.013],[29.464,51.019],[29.465,51.024],[29.466,51.029],[29.472,51.035],[29.485,51.048],[29.489,51.054],[29.49,51.059],[29.489,51.063],[29.488,51.067],[29.485,51.069],[29.483,51.072],[29.476,51.077],[29.472,51.079],[29.462,51.083],[29.438,51.088],[29.433,51.09],[29.429,51.092],[29.427,51.095],[29.424,51.102],[29.423,51.106],[29.421,51.108],[29.418,51.111],[29.412,51.116],[29.381,51.134],[29.363,51.142],[29.352,51.144],[29.347,51.145],[29.342,51.144],[29.339,51.142],[29.319,51.12],[29.316,51.118],[29.313,51.117],[29.311,51.119],[29.309,51.121],[29.305,51.128],[29.3,51.142],[29.289,51.194],[29.27,51.237],[29.272,51.241],[29.276,51.243],[29.289,51.243],[29.299,51.245],[29.318,51.251],[29.349,51.266],[29.362,51.274],[29.375,51.285],[29.385,51.298],[29.387,51.306],[29.389,51.317],[29.392,51.354],[29.391,51.362],[29.39,51.365],[29.389,51.367],[29.386,51.368],[29.383,51.367],[29.375,51.363],[29.37,51.362],[29.366,51.363],[29.362,51.365],[29.36,51.368],[29.354,51.375],[29.353,51.377],[29.379,51.392],[29.402,51.397],[29.446,51.385],[29.466,51.385],[29.481,51.402],[29.495,51.426],[29.505,51.438],[29.519,51.442],[29.545,51.444],[29.568,51.45],[29.583,51.461],[29.597,51.474],[29.618,51.486],[29.637,51.491],[29.66,51.493],[29.682,51.492],[29.7,51.484],[29.716,51.466],[29.725,51.451],[29.738,51.44]]]
}
},
{
"type":"Feature",
"id":"02",
"properties":{
"name":"Кировоградская область",
"Manager":"Региональный менеджер<br />Серый Павел",
"Phone":"(0512) 50-02-26 (многоканальный)",
"Email":"[email protected]",
"ICQ":"579 493 488",
"Mobile":"067-512-17-01"
},
"geometry":{
"type":"Polygon",
"coordinates":[[[33.919,48.866],[33.894,48.84],[33.888,48.828],[33.887,48.823],[33.885,48.82],[33.881,48.815],[33.872,48.81],[33.864,48.802],[33.858,48.797],[33.85,48.794],[33.843,48.785],[33.835,48.769],[33.833,48.765],[33.83,48.762],[33.826,48.759],[33.819,48.759],[33.814,48.76],[33.811,48.762],[33.811,48.771],[33.805,48.779],[33.804,48.782],[33.804,48.786],[33.804,48.79],[33.804,48.794],[33.802,48.796],[33.798,48.796],[33.793,48.793],[33.787,48.785],[33.782,48.78],[33.775,48.779],[33.772,48.781],[33.771,48.785],[33.774,48.798],[33.774,48.801],[33.771,48.804],[33.766,48.806],[33.76,48.807],[33.754,48.808],[33.749,48.807],[33.744,48.805],[33.741,48.803],[33.721,48.786],[33.715,48.784],[33.709,48.783],[33.703,48.783],[33.698,48.785],[33.695,48.787],[33.693,48.79],[33.691,48.797],[33.689,48.8],[33.687,48.803],[33.683,48.805],[33.677,48.807],[33.671,48.807],[33.665,48.808],[33.658,48.806],[33.619,48.784],[33.613,48.784],[33.607,48.784],[33.603,48.786],[33.6,48.789],[33.598,48.792],[33.595,48.794],[33.59,48.795],[33.584,48.794],[33.578,48.792],[33.572,48.787],[33.558,48.772],[33.557,48.766],[33.558,48.762],[33.561,48.756],[33.563,48.753],[33.566,48.75],[33.57,48.748],[33.579,48.744],[33.583,48.742],[33.585,48.739],[33.587,48.736],[33.592,48.726],[33.595,48.724],[33.599,48.722],[33.604,48.72],[33.659,48.714],[33.664,48.712],[33.686,48.702],[33.692,48.701],[33.698,48.7],[33.757,48.698],[33.761,48.696],[33.763,48.693],[33.764,48.69],[33.765,48.686],[33.767,48.683],[33.77,48.681],[33.775,48.679],[33.814,48.673],[33.819,48.671],[33.821,48.668],[33.819,48.664],[33.813,48.66],[33.8,48.653],[33.791,48.651],[33.784,48.65],[33.778,48.649],[33.773,48.649],[33.766,48.646],[33.73,48.62],[33.723,48.617],[33.617,48.583],[33.614,48.581],[33.612,48.581],[33.607,48.579],[33.58,48.559],[33.573,48.557],[33.569,48.557],[33.566,48.563],[33.564,48.564],[33.478,48.541],[33.449,48.528],[33.445,48.525],[33.443,48.521],[33.441,48.513],[33.442,48.508],[33.443,48.504],[33.445,48.502],[33.446,48.5],[33.447,48.5],[33.449,48.499],[33.458,48.499],[33.462,48.498],[33.462,48.495],[33.46,48.487],[33.461,48.484],[33.463,48.477],[33.484,48.444],[33.485,48.441],[33.483,48.437],[33.476,48.433],[33.472,48.429],[33.471,48.423],[33.473,48.415],[33.475,48.412],[33.478,48.41],[33.483,48.409],[33.487,48.407],[33.489,48.404],[33.489,48.4],[33.489,48.396],[33.49,48.393],[33.495,48.372],[33.499,48.32],[33.5,48.311],[33.5,48.31],[33.501,48.309],[33.503,48.307],[33.508,48.305],[33.519,48.302],[33.523,48.3],[33.526,48.297],[33.527,48.294],[33.526,48.29],[33.516,48.243],[33.513,48.239],[33.508,48.235],[33.497,48.232],[33.489,48.231],[33.482,48.231],[33.476,48.23],[33.471,48.228],[33.459,48.214],[33.456,48.211],[33.416,48.185],[33.408,48.178],[33.403,48.175],[33.396,48.173],[33.384,48.172],[33.378,48.172],[33.373,48.173],[33.37,48.175],[33.366,48.177],[33.363,48.179],[33.36,48.182],[33.357,48.184],[33.353,48.186],[33.348,48.186],[33.344,48.184],[33.341,48.177],[33.335,48.171],[33.295,48.141],[33.292,48.138],[33.283,48.123],[33.276,48.107],[33.273,48.104],[33.269,48.103],[33.262,48.104],[33.259,48.107],[33.257,48.11],[33.255,48.121],[33.254,48.124],[33.254,48.128],[33.256,48.131],[33.258,48.134],[33.261,48.137],[33.262,48.14],[33.262,48.142],[33.254,48.169],[33.252,48.172],[33.25,48.175],[33.246,48.175],[33.242,48.174],[33.238,48.171],[33.233,48.153],[33.228,48.141],[33.226,48.133],[33.226,48.125],[33.228,48.118],[33.228,48.11],[33.227,48.102],[33.226,48.098],[33.222,48.09],[33.218,48.087],[33.211,48.084],[33.187,48.08],[33.149,48.082],[33.143,48.08],[33.134,48.077],[33.12,48.07],[33.111,48.064],[33.104,48.057],[33.095,48.045],[33.088,48.039],[33.076,48.034],[33.069,48.033],[33.062,48.029],[33.057,48.026],[33.046,48],[33.035,47.967],[33.019,47.974],[33.016,47.977],[33.015,47.981],[33.016,47.993],[33.016,47.997],[33.015,47.999],[33.013,48.001],[33.011,48.003],[32.992,48.018],[32.988,48.023],[32.986,48.026],[32.984,48.029],[32.983,48.036],[32.981,48.04],[32.979,48.043],[32.976,48.045],[32.97,48.044],[32.949,48.035],[32.943,48.034],[32.918,48.037],[32.907,48.038],[32.894,48.035],[32.888,48.032],[32.884,48.029],[32.882,48.026],[32.881,48.022],[32.881,48.018],[32.882,48.011],[32.886,48.001],[32.886,48],[32.886,47.999],[32.885,47.997],[32.883,47.994],[32.879,47.992],[32.876,47.991],[32.844,47.986],[32.841,47.984],[32.838,47.981],[32.834,47.973],[32.832,47.97],[32.829,47.967],[32.825,47.966],[32.818,47.966],[32.807,47.97],[32.801,47.973],[32.797,47.976],[32.79,47.984],[32.787,47.987],[32.783,47.989],[32.778,47.989],[32.758,47.984],[32.717,47.979],[32.704,47.974],[32.696,47.97],[32.693,47.968],[32.69,47.965],[32.687,47.962],[32.685,47.959],[32.683,47.955],[32.682,47.951],[32.681,47.947],[32.682,47.943],[32.683,47.94],[32.686,47.937],[32.689,47.935],[32.694,47.933],[32.711,47.931],[32.715,47.93],[32.716,47.927],[32.716,47.919],[32.716,47.915],[32.714,47.912],[32.711,47.91],[32.706,47.909],[32.679,47.907],[32.669,47.905],[32.666,47.903],[32.663,47.9],[32.661,47.897],[32.661,47.894],[32.662,47.89],[32.664,47.887],[32.67,47.879],[32.672,47.875],[32.672,47.871],[32.671,47.863],[32.671,47.859],[32.672,47.856],[32.675,47.854],[32.679,47.851],[32.682,47.849],[32.682,47.846],[32.68,47.843],[32.676,47.842],[32.656,47.839],[32.652,47.837],[32.65,47.834],[32.649,47.826],[32.65,47.822],[32.648,47.806],[32.647,47.803],[32.645,47.801],[32.64,47.8],[32.467,47.781],[32.457,47.782],[32.391,47.798],[32.387,47.8],[32.381,47.801],[32.375,47.802],[32.364,47.8],[32.353,47.796],[32.348,47.795],[32.343,47.796],[32.325,47.809],[32.299,47.82],[32.288,47.822],[32.271,47.824],[32.234,47.82],[32.226,47.818],[32.222,47.816],[32.218,47.813],[32.215,47.811],[32.193,47.787],[32.18,47.769],[32.169,47.758],[32.162,47.753],[32.158,47.751],[32.149,47.749],[32.139,47.748],[32.13,47.749],[32.119,47.751],[32.1,47.758],[32.092,47.763],[32.087,47.767],[32.083,47.773],[32.074,47.785],[32.072,47.787],[32.068,47.79],[32.064,47.792],[32.041,47.801],[32.03,47.808],[32.022,47.81],[31.986,47.813],[31.975,47.812],[31.968,47.809],[31.967,47.806],[31.966,47.802],[31.964,47.798],[31.96,47.797],[31.955,47.796],[31.868,47.795],[31.862,47.796],[31.857,47.798],[31.852,47.803],[31.851,47.808],[31.851,47.813],[31.852,47.817],[31.853,47.821],[31.853,47.825],[31.852,47.828],[31.849,47.831],[31.842,47.839],[31.84,47.843],[31.839,47.846],[31.84,47.85],[31.842,47.853],[31.844,47.856],[31.862,47.874],[31.864,47.877],[31.866,47.88],[31.867,47.884],[31.866,47.888],[31.865,47.891],[31.863,47.894],[31.861,47.897],[31.84,47.915],[31.837,47.917],[31.835,47.92],[31.833,47.923],[31.832,47.927],[31.831,47.931],[31.831,47.934],[31.827,47.94],[31.821,47.945],[31.817,47.947],[31.81,47.948],[31.785,47.944],[31.78,47.945],[31.768,47.953],[31.755,47.963],[31.723,48],[31.723,48],[31.71,48.017],[31.708,48.02],[31.708,48.022],[31.711,48.024],[31.751,48.036],[31.763,48.042],[31.766,48.044],[31.769,48.047],[31.771,48.051],[31.773,48.055],[31.773,48.059],[31.773,48.063],[31.772,48.067],[31.771,48.07],[31.767,48.076],[31.76,48.092],[31.758,48.095],[31.752,48.097],[31.744,48.098],[31.705,48.093],[31.699,48.094],[31.692,48.095],[31.683,48.1],[31.676,48.102],[31.667,48.103],[31.656,48.101],[31.646,48.104],[31.64,48.106],[31.627,48.117],[31.623,48.118],[31.617,48.119],[31.6,48.114],[31.594,48.112],[31.591,48.11],[31.589,48.106],[31.588,48.102],[31.589,48.091],[31.588,48.088],[31.585,48.086],[31.581,48.085],[31.565,48.083],[31.56,48.083],[31.555,48.084],[31.551,48.088],[31.547,48.09],[31.542,48.091],[31.534,48.087],[31.53,48.083],[31.528,48.078],[31.528,48.066],[31.527,48.062],[31.525,48.058],[31.522,48.056],[31.518,48.055],[31.512,48.055],[31.506,48.056],[31.501,48.06],[31.5,48.064],[31.5,48.067],[31.502,48.069],[31.507,48.074],[31.508,48.078],[31.51,48.082],[31.513,48.103],[31.511,48.11],[31.51,48.114],[31.507,48.116],[31.504,48.118],[31.499,48.119],[31.444,48.116],[31.431,48.113],[31.423,48.111],[31.419,48.109],[31.414,48.108],[31.408,48.108],[31.4,48.112],[31.396,48.115],[31.393,48.118],[31.392,48.121],[31.389,48.124],[31.384,48.125],[31.369,48.12],[31.351,48.113],[31.344,48.112],[31.25,48.121],[31.241,48.124],[31.238,48.126],[31.236,48.127],[31.233,48.129],[31.231,48.132],[31.23,48.135],[31.229,48.139],[31.23,48.154],[31.229,48.157],[31.228,48.159],[31.223,48.161],[31.2,48.165],[31.194,48.168],[31.19,48.171],[31.189,48.175],[31.187,48.202],[31.185,48.205],[31.183,48.208],[31.177,48.21],[31.169,48.212],[31.151,48.213],[31.135,48.217],[31.063,48.221],[31.042,48.219],[31.007,48.211],[30.994,48.206],[30.986,48.2],[30.984,48.191],[30.982,48.188],[30.979,48.184],[30.976,48.182],[30.969,48.179],[30.938,48.172],[30.929,48.168],[30.923,48.164],[30.92,48.161],[30.917,48.159],[30.913,48.158],[30.906,48.157],[30.898,48.158],[30.885,48.161],[30.88,48.165],[30.878,48.169],[30.877,48.173],[30.876,48.176],[30.875,48.179],[30.872,48.182],[30.868,48.184],[30.863,48.186],[30.857,48.186],[30.85,48.185],[30.841,48.181],[30.836,48.178],[30.834,48.175],[30.827,48.162],[30.823,48.159],[30.817,48.159],[30.807,48.162],[30.802,48.165],[30.8,48.169],[30.799,48.173],[30.798,48.176],[30.789,48.178],[30.776,48.179],[30.745,48.179],[30.716,48.183],[30.705,48.182],[30.658,48.171],[30.645,48.167],[30.637,48.163],[30.635,48.16],[30.631,48.152],[30.629,48.149],[30.626,48.146],[30.62,48.145],[30.61,48.145],[30.571,48.15],[30.527,48.161],[30.519,48.162],[30.51,48.162],[30.502,48.164],[30.348,48.164],[30.342,48.16],[30.335,48.142],[30.33,48.136],[30.322,48.135],[30.293,48.136],[30.083,48.144],[30.048,48.155],[30.028,48.175],[30.013,48.199],[29.997,48.221],[29.984,48.218],[29.981,48.217],[29.968,48.211],[29.959,48.21],[29.954,48.21],[29.948,48.213],[29.935,48.221],[29.929,48.222],[29.924,48.222],[29.921,48.219],[29.915,48.214],[29.892,48.185],[29.888,48.182],[29.882,48.18],[29.877,48.18],[29.872,48.181],[29.868,48.183],[29.856,48.193],[29.853,48.196],[29.849,48.199],[29.831,48.208],[29.826,48.21],[29.82,48.211],[29.816,48.21],[29.8,48.206],[29.775,48.203],[29.773,48.211],[29.775,48.215],[29.779,48.219],[29.784,48.224],[29.787,48.228],[29.787,48.232],[29.786,48.235],[29.784,48.238],[29.783,48.241],[29.784,48.244],[29.787,48.25],[29.787,48.25],[29.786,48.251],[29.786,48.252],[29.784,48.254],[29.78,48.255],[29.774,48.257],[29.75,48.261],[29.745,48.262],[29.741,48.264],[29.739,48.267],[29.738,48.27],[29.74,48.273],[29.742,48.276],[29.761,48.295],[29.767,48.302],[29.775,48.317],[29.777,48.321],[29.778,48.33],[29.778,48.338],[29.778,48.342],[29.777,48.345],[29.777,48.348],[29.778,48.35],[29.779,48.353],[29.783,48.357],[29.788,48.361],[29.82,48.382],[29.842,48.4],[29.847,48.406],[29.859,48.417],[29.865,48.422],[29.883,48.433],[29.889,48.434],[29.898,48.434],[29.912,48.432],[29.917,48.428],[29.918,48.424],[29.917,48.42],[29.917,48.416],[29.918,48.413],[29.92,48.41],[29.925,48.404],[29.927,48.401],[29.933,48.384],[29.935,48.381],[29.937,48.378],[29.94,48.376],[29.947,48.377],[29.958,48.384],[29.98,48.402],[29.994,48.419],[29.998,48.422],[30.005,48.424],[30.039,48.428],[30.052,48.433],[30.076,48.455],[30.108,48.453],[30.121,48.456],[30.146,48.474],[30.174,48.489],[30.185,48.492],[30.194,48.493],[30.199,48.492],[30.203,48.49],[30.206,48.488],[30.209,48.485],[30.213,48.482],[30.221,48.479],[30.236,48.477],[30.242,48.477],[30.247,48.478],[30.25,48.48],[30.255,48.485],[30.385,48.531],[30.387,48.534],[30.389,48.538],[30.39,48.542],[30.392,48.551],[30.393,48.556],[30.396,48.561],[30.403,48.567],[30.409,48.57],[30.415,48.572],[30.438,48.573],[30.456,48.571],[30.461,48.569],[30.465,48.567],[30.47,48.561],[30.472,48.558],[30.475,48.556],[30.479,48.554],[30.484,48.554],[30.557,48.559],[30.568,48.562],[30.574,48.565],[30.577,48.573],[30.578,48.581],[30.577,48.601],[30.576,48.604],[30.573,48.607],[30.569,48.609],[30.548,48.615],[30.544,48.617],[30.541,48.619],[30.544,48.625],[30.554,48.632],[30.592,48.654],[30.599,48.66],[30.601,48.664],[30.611,48.692],[30.611,48.694],[30.611,48.697],[30.61,48.7],[30.609,48.704],[30.604,48.71],[30.607,48.715],[30.615,48.722],[30.638,48.733],[30.668,48.752],[30.702,48.765],[30.713,48.767],[30.721,48.767],[30.733,48.765],[30.747,48.766],[30.754,48.765],[30.759,48.764],[30.764,48.762],[30.77,48.761],[30.777,48.76],[30.791,48.761],[30.799,48.76],[30.804,48.759],[30.809,48.753],[30.812,48.751],[30.82,48.75],[30.832,48.75],[30.868,48.756],[30.877,48.757],[30.888,48.754],[30.938,48.756],[30.95,48.755],[30.966,48.751],[30.991,48.749],[31.021,48.743],[31.039,48.736],[31.05,48.73],[31.055,48.728],[31.061,48.728],[31.067,48.727],[31.075,48.728],[31.116,48.728],[31.132,48.732],[31.18,48.751],[31.189,48.753],[31.224,48.754],[31.236,48.752],[31.258,48.748],[31.264,48.747],[31.281,48.748],[31.294,48.747],[31.309,48.743],[31.313,48.741],[31.315,48.74],[31.318,48.737],[31.325,48.728],[31.328,48.726],[31.333,48.724],[31.337,48.725],[31.346,48.732],[31.354,48.734],[31.367,48.733],[31.389,48.738],[31.41,48.745],[31.442,48.751],[31.455,48.756],[31.462,48.761],[31.47,48.776],[31.474,48.787],[31.476,48.793],[31.478,48.799],[31.481,48.803],[31.491,48.811],[31.517,48.826],[31.523,48.83],[31.527,48.835],[31.531,48.847],[31.532,48.853],[31.532,48.872],[31.529,48.891],[31.529,48.904],[31.531,48.911],[31.535,48.917],[31.544,48.924],[31.553,48.926],[31.561,48.926],[31.592,48.918],[31.651,48.917],[31.66,48.92],[31.667,48.925],[31.67,48.932],[31.676,48.94],[31.684,48.943],[31.689,48.945],[31.724,48.944],[31.732,48.943],[31.81,48.924],[31.842,48.91],[31.846,48.906],[31.851,48.903],[31.854,48.898],[31.857,48.893],[31.859,48.888],[31.864,48.871],[31.868,48.866],[31.875,48.862],[31.887,48.86],[31.895,48.862],[31.901,48.866],[31.907,48.871],[31.92,48.879],[31.926,48.884],[31.931,48.891],[31.939,48.896],[31.953,48.902],[31.998,48.912],[32.003,48.915],[32.021,48.927],[32.026,48.928],[32.032,48.928],[32.036,48.926],[32.04,48.924],[32.042,48.922],[32.043,48.919],[32.045,48.917],[32.052,48.916],[32.08,48.92],[32.087,48.919],[32.089,48.917],[32.091,48.913],[32.096,48.911],[32.104,48.91],[32.121,48.91],[32.129,48.913],[32.134,48.916],[32.137,48.919],[32.144,48.936],[32.145,48.94],[32.146,48.944],[32.146,48.948],[32.144,48.951],[32.141,48.954],[32.137,48.956],[32.134,48.958],[32.133,48.961],[32.134,48.965],[32.138,48.972],[32.143,48.976],[32.149,48.98],[32.185,48.995],[32.189,48.997],[32.193,49],[32.205,49.015],[32.214,49.025],[32.23,49.044],[32.234,49.048],[32.241,49.052],[32.248,49.053],[32.254,49.052],[32.265,49.049],[32.279,49.047],[32.285,49.048],[32.288,49.05],[32.288,49.053],[32.287,49.057],[32.286,49.06],[32.285,49.063],[32.286,49.067],[32.289,49.07],[32.301,49.078],[32.312,49.08],[32.327,49.088],[32.332,49.09],[32.337,49.089],[32.341,49.087],[32.343,49.084],[32.344,49.081],[32.342,49.073],[32.343,49.07],[32.346,49.067],[32.355,49.063],[32.359,49.061],[32.36,49.058],[32.361,49.054],[32.362,49.05],[32.365,49.048],[32.369,49.046],[32.38,49.043],[32.397,49.041],[32.408,49.041],[32.416,49.042],[32.421,49.044],[32.434,49.052],[32.443,49.057],[32.449,49.057],[32.453,49.056],[32.455,49.053],[32.455,49.049],[32.454,49.025],[32.454,49.022],[32.456,49.018],[32.463,49.01],[32.502,48.975],[32.504,48.973],[32.507,48.967],[32.511,48.957],[32.513,48.938],[32.514,48.934],[32.515,48.931],[32.52,48.929],[32.527,48.928],[32.541,48.928],[32.547,48.93],[32.551,48.933],[32.552,48.937],[32.552,48.94],[32.552,48.944],[32.553,48.949],[32.556,48.952],[32.562,48.957],[32.568,48.958],[32.574,48.958],[32.583,48.954],[32.595,48.948],[32.6,48.946],[32.608,48.944],[32.621,48.944],[32.628,48.944],[32.634,48.946],[32.652,48.956],[32.662,48.964],[32.668,48.97],[32.67,48.974],[32.673,48.978],[32.676,48.982],[32.683,48.986],[32.689,48.987],[32.695,48.987],[32.706,48.984],[32.732,48.972],[32.736,48.97],[32.74,48.968],[32.744,48.966],[32.759,48.962],[32.775,48.962],[32.782,48.964],[32.787,48.967],[32.792,48.971],[32.799,48.976],[32.845,49.001],[32.851,49.006],[32.854,49.01],[32.855,49.014],[32.855,49.018],[32.854,49.021],[32.849,49.023],[32.831,49.026],[32.827,49.028],[32.825,49.03],[32.808,49.062],[32.806,49.065],[32.801,49.074],[32.8,49.076],[32.8,49.078],[32.799,49.085],[32.799,49.112],[32.798,49.123],[32.79,49.147],[32.782,49.159],[32.78,49.162],[32.777,49.165],[32.774,49.167],[32.771,49.17],[32.759,49.176],[32.753,49.181],[32.752,49.185],[32.753,49.188],[32.775,49.23],[32.777,49.234],[32.789,49.262],[33.038,49.182],[33.142,49.13],[33.149,49.126],[33.156,49.121],[33.174,49.101],[33.178,49.095],[33.179,49.092],[33.181,49.09],[33.192,49.078],[33.197,49.075],[33.204,49.071],[33.297,49.065],[33.301,49.063],[33.305,49.055],[33.309,49.051],[33.317,49.049],[33.342,49.044],[33.346,49.04],[33.347,49.036],[33.346,49.033],[33.343,49.031],[33.338,49.029],[33.323,49.027],[33.319,49.026],[33.318,49.023],[33.319,49.016],[33.32,49.012],[33.319,49.008],[33.316,49.005],[33.314,49.003],[33.311,49.001],[33.301,48.997],[33.299,48.995],[33.301,48.993],[33.304,48.991],[33.319,48.984],[33.323,48.981],[33.34,48.965],[33.342,48.962],[33.345,48.96],[33.349,48.957],[33.365,48.949],[33.371,48.946],[33.374,48.943],[33.376,48.941],[33.379,48.94],[33.383,48.94],[33.391,48.943],[33.395,48.947],[33.398,48.951],[33.401,48.953],[33.411,48.954],[33.425,48.951],[33.456,48.942],[33.467,48.936],[33.474,48.931],[33.481,48.927],[33.525,48.916],[33.535,48.91],[33.54,48.906],[33.543,48.903],[33.548,48.902],[33.56,48.904],[33.566,48.906],[33.571,48.909],[33.581,48.921],[33.588,48.923],[33.597,48.922],[33.633,48.911],[33.641,48.906],[33.652,48.899],[33.654,48.896],[33.663,48.885],[33.665,48.878],[33.666,48.875],[33.667,48.871],[33.669,48.869],[33.674,48.869],[33.68,48.873],[33.683,48.877],[33.685,48.882],[33.69,48.899],[33.692,48.903],[33.695,48.906],[33.701,48.908],[33.711,48.91],[33.73,48.911],[33.739,48.913],[33.745,48.916],[33.747,48.919],[33.778,48.923],[33.807,48.903],[33.825,48.9],[33.859,48.9],[33.876,48.897],[33.892,48.892],[33.9,48.886],[33.919,48.866]]]
}
},
{
"type":"Feature",
"id":"02",
"properties":{
"name":"Львовская область",
"Manager":"Региональный менеджер<br />Молчаницкий Владимир",
"Phone":"(0512) 50-02-26 (многоканальный)",
"Email":"[email protected]",
"ICQ":"417 233 254",
"Mobile":"067-511-84-42"
},
"geometry":{
"type":"Polygon",
"coordinates":[[[24.248,50.582],[24.259,50.576],[24.259,50.583],[24.276,50.585],[24.286,50.589],[24.297,50.591],[24.321,50.593],[24.326,50.594],[24.33,50.596],[24.334,50.598],[24.339,50.604],[24.343,50.607],[24.346,50.609],[24.35,50.61],[24.354,50.61],[24.359,50.61],[24.368,50.607],[24.379,50.601],[24.398,50.589],[24.403,50.582],[24.404,50.577],[24.403,50.574],[24.403,50.57],[24.405,50.567],[24.434,50.549],[24.44,50.547],[24.446,50.546],[24.458,50.547],[24.475,50.551],[24.48,50.551],[24.491,50.549],[24.496,50.548],[24.501,50.546],[24.531,50.524],[24.536,50.518],[24.537,50.515],[24.538,50.511],[24.538,50.507],[24.537,50.504],[24.535,50.5],[24.532,50.497],[24.529,50.495],[24.522,50.49],[24.513,50.487],[24.463,50.479],[24.459,50.477],[24.455,50.475],[24.452,50.473],[24.45,50.47],[24.451,50.467],[24.454,50.464],[24.457,50.461],[24.499,50.44],[24.504,50.436],[24.505,50.433],[24.506,50.429],[24.506,50.425],[24.504,50.418],[24.503,50.414],[24.504,50.411],[24.509,50.408],[24.515,50.406],[24.529,50.407],[24.537,50.408],[24.542,50.411],[24.544,50.414],[24.546,50.417],[24.546,50.421],[24.546,50.429],[24.547,50.433],[24.549,50.436],[24.553,50.438],[24.558,50.438],[24.564,50.437],[24.57,50.432],[24.574,50.428],[24.578,50.421],[24.584,50.419],[24.591,50.417],[24.623,50.416],[24.629,50.415],[24.634,50.413],[24.638,50.409],[24.639,50.405],[24.639,50.401],[24.639,50.397],[24.647,50.393],[24.688,50.377],[24.698,50.37],[24.704,50.364],[24.702,50.356],[24.703,50.353],[24.705,50.35],[24.709,50.347],[24.713,50.346],[24.724,50.344],[24.773,50.341],[24.788,50.341],[24.798,50.343],[24.806,50.347],[24.815,50.35],[24.825,50.352],[24.848,50.355],[24.911,50.348],[24.924,50.349],[24.93,50.352],[24.929,50.364],[24.929,50.367],[24.932,50.37],[24.942,50.369],[24.955,50.364],[24.983,50.352],[25.004,50.346],[25.034,50.349],[25.039,50.349],[25.044,50.349],[25.049,50.347],[25.054,50.345],[25.059,50.341],[25.062,50.338],[25.064,50.334],[25.066,50.323],[25.063,50.295],[25.07,50.285],[25.084,50.281],[25.104,50.279],[25.116,50.28],[25.126,50.282],[25.153,50.292],[25.163,50.294],[25.169,50.295],[25.176,50.294],[25.187,50.292],[25.191,50.29],[25.196,50.288],[25.2,50.284],[25.204,50.277],[25.208,50.263],[25.208,50.256],[25.207,50.25],[25.205,50.247],[25.203,50.244],[25.196,50.239],[25.168,50.22],[25.165,50.217],[25.165,50.213],[25.169,50.207],[25.188,50.192],[25.193,50.187],[25.193,50.182],[25.185,50.157],[25.184,50.14],[25.185,50.132],[25.185,50.128],[25.193,50.103],[25.202,50.095],[25.296,50.041],[25.368,50.013],[25.368,50.006],[25.37,50.001],[25.37,50],[25.373,49.996],[25.379,49.992],[25.382,49.989],[25.404,49.98],[25.407,49.977],[25.41,49.975],[25.414,49.968],[25.416,49.965],[25.428,49.955],[25.43,49.952],[25.432,49.949],[25.434,49.945],[25.434,49.942],[25.432,49.938],[25.428,49.935],[25.418,49.933],[25.404,49.933],[25.398,49.931],[25.393,49.927],[25.388,49.919],[25.387,49.914],[25.388,49.91],[25.393,49.904],[25.394,49.901],[25.396,49.897],[25.397,49.893],[25.396,49.89],[25.395,49.886],[25.393,49.883],[25.39,49.88],[25.384,49.876],[25.376,49.873],[25.359,49.867],[25.348,49.865],[25.333,49.864],[25.328,49.863],[25.309,49.855],[25.303,49.853],[25.281,49.849],[25.245,49.836],[25.24,49.835],[25.166,49.826],[25.157,49.823],[25.146,49.821],[25.099,49.817],[25.093,49.816],[25.088,49.812],[25.085,49.805],[25.078,49.788],[25.078,49.784],[25.078,49.78],[25.079,49.776],[25.086,49.767],[25.103,49.751],[25.105,49.747],[25.107,49.744],[25.108,49.741],[25.108,49.737],[25.107,49.733],[25.106,49.729],[25.101,49.725],[25.095,49.721],[25.073,49.713],[25.067,49.711],[25.058,49.711],[25.046,49.711],[25.04,49.712],[25.037,49.715],[25.034,49.717],[25.031,49.72],[25.027,49.72],[25.022,49.718],[25.016,49.713],[24.994,49.686],[24.99,49.679],[24.988,49.675],[24.982,49.665],[24.954,49.63],[24.948,49.627],[24.775,49.563],[24.766,49.562],[24.758,49.561],[24.752,49.563],[24.739,49.563],[24.733,49.56],[24.729,49.555],[24.723,49.523],[24.72,49.51],[24.707,49.492],[24.693,49.491],[24.688,49.491],[24.682,49.493],[24.673,49.496],[24.669,49.498],[24.664,49.498],[24.655,49.497],[24.65,49.497],[24.646,49.498],[24.642,49.5],[24.637,49.503],[24.615,49.516],[24.606,49.52],[24.596,49.522],[24.585,49.524],[24.572,49.525],[24.497,49.512],[24.485,49.511],[24.45,49.517],[24.444,49.517],[24.439,49.516],[24.433,49.512],[24.427,49.507],[24.418,49.495],[24.414,49.489],[24.413,49.483],[24.415,49.48],[24.422,49.471],[24.426,49.465],[24.427,49.461],[24.428,49.458],[24.428,49.453],[24.426,49.449],[24.421,49.442],[24.39,49.41],[24.385,49.4],[24.383,49.394],[24.387,49.391],[24.418,49.379],[24.422,49.377],[24.424,49.374],[24.424,49.37],[24.423,49.366],[24.419,49.362],[24.386,49.34],[24.376,49.331],[24.37,49.326],[24.358,49.322],[24.344,49.32],[24.322,49.32],[24.311,49.319],[24.291,49.314],[24.287,49.311],[24.284,49.308],[24.282,49.301],[24.282,49.296],[24.284,49.293],[24.287,49.29],[24.29,49.287],[24.294,49.286],[24.3,49.285],[24.305,49.286],[24.31,49.287],[24.314,49.289],[24.334,49.302],[24.34,49.304],[24.345,49.304],[24.351,49.303],[24.359,49.3],[24.363,49.297],[24.366,49.295],[24.367,49.292],[24.366,49.288],[24.364,49.283],[24.359,49.278],[24.356,49.273],[24.354,49.269],[24.354,49.265],[24.357,49.241],[24.364,49.237],[24.387,49.232],[24.406,49.231],[24.418,49.235],[24.426,49.228],[24.444,49.212],[24.446,49.208],[24.447,49.205],[24.446,49.201],[24.444,49.197],[24.441,49.194],[24.435,49.19],[24.425,49.185],[24.406,49.18],[24.396,49.18],[24.389,49.181],[24.385,49.182],[24.379,49.183],[24.373,49.183],[24.367,49.183],[24.356,49.182],[24.316,49.172],[24.274,49.155],[24.263,49.152],[24.241,49.149],[24.216,49.15],[24.205,49.149],[24.158,49.135],[24.147,49.134],[24.141,49.135],[24.097,49.144],[24.085,49.146],[24.079,49.145],[24.068,49.143],[24.023,49.122],[24.012,49.118],[24.003,49.116],[23.967,49.127],[23.956,49.128],[23.95,49.127],[23.944,49.125],[23.922,49.113],[23.913,49.109],[23.906,49.107],[23.855,49.106],[23.755,49.115],[23.739,49.113],[23.729,49.111],[23.711,49.104],[23.694,49.095],[23.688,49.09],[23.684,49.087],[23.682,49.083],[23.655,49.031],[23.648,49.018],[23.642,49.011],[23.624,49],[23.62,48.997],[23.598,48.985],[23.582,48.977],[23.576,48.969],[23.553,48.896],[23.549,48.889],[23.548,48.885],[23.549,48.88],[23.553,48.875],[23.563,48.866],[23.568,48.86],[23.57,48.857],[23.572,48.853],[23.575,48.842],[23.575,48.834],[23.533,48.724],[23.509,48.73],[23.499,48.731],[23.446,48.727],[23.426,48.728],[23.397,48.732],[23.386,48.734],[23.378,48.737],[23.375,48.74],[23.373,48.743],[23.371,48.746],[23.37,48.75],[23.371,48.755],[23.369,48.76],[23.366,48.764],[23.357,48.771],[23.351,48.772],[23.346,48.771],[23.342,48.769],[23.327,48.755],[23.322,48.753],[23.314,48.75],[23.308,48.75],[23.308,48.75],[23.307,48.752],[23.305,48.753],[23.304,48.755],[23.303,48.758],[23.302,48.762],[23.302,48.773],[23.301,48.776],[23.298,48.781],[23.295,48.782],[23.291,48.781],[23.281,48.775],[23.272,48.773],[23.258,48.772],[23.212,48.775],[23.202,48.777],[23.193,48.781],[23.186,48.785],[23.18,48.79],[23.16,48.814],[23.138,48.852],[23.129,48.861],[23.119,48.867],[23.112,48.87],[23.105,48.871],[23.077,48.868],[23.036,48.859],[23.027,48.856],[23.02,48.855],[23.012,48.855],[22.996,48.855],[22.988,48.857],[22.982,48.859],[22.979,48.861],[22.974,48.867],[22.972,48.87],[22.97,48.874],[22.967,48.879],[22.961,48.884],[22.926,48.904],[22.901,48.924],[22.895,48.929],[22.892,48.935],[22.889,48.947],[22.889,48.951],[22.889,48.959],[22.89,48.963],[22.893,48.97],[22.902,48.983],[22.901,48.991],[22.883,49.006],[22.865,49.013],[22.863,49.016],[22.847,49.034],[22.843,49.043],[22.844,49.057],[22.853,49.077],[22.853,49.085],[22.841,49.095],[22.796,49.112],[22.778,49.121],[22.748,49.146],[22.716,49.161],[22.716,49.161],[22.72,49.162],[22.721,49.162],[22.721,49.162],[22.705,49.169],[22.705,49.169],[22.692,49.158],[22.692,49.158],[22.687,49.156],[22.681,49.162],[22.687,49.174],[22.703,49.195],[22.717,49.231],[22.734,49.261],[22.737,49.276],[22.724,49.367],[22.719,49.383],[22.714,49.391],[22.692,49.406],[22.679,49.419],[22.676,49.425],[22.673,49.436],[22.667,49.479],[22.66,49.493],[22.641,49.529],[22.666,49.568],[22.741,49.634],[22.759,49.666],[22.766,49.674],[22.766,49.675],[22.777,49.681],[22.798,49.684],[22.809,49.687],[22.809,49.687],[22.816,49.691],[22.826,49.698],[22.826,49.698],[22.888,49.77],[22.897,49.778],[22.898,49.778],[22.906,49.782],[22.924,49.786],[22.933,49.791],[22.933,49.791],[22.937,49.799],[22.946,49.819],[22.951,49.827],[22.951,49.827],[22.993,49.855],[23.004,49.866],[23.101,49.957],[23.141,49.986],[23.142,49.986],[23.177,50.004],[23.177,50.004],[23.208,50.034],[23.208,50.034],[23.436,50.194],[23.481,50.216],[23.536,50.243],[23.536,50.243],[23.536,50.243],[23.536,50.243],[23.565,50.258],[23.616,50.294],[23.644,50.313],[23.658,50.326],[23.671,50.354],[23.682,50.369],[23.695,50.377],[23.713,50.383],[23.747,50.39],[23.928,50.391],[23.981,50.405],[23.981,50.405],[24.003,50.438],[24.007,50.449],[24.009,50.462],[24.008,50.481],[24.01,50.493],[24.01,50.493],[24.075,50.515],[24.094,50.527],[24.094,50.527],[24.106,50.539],[24.107,50.541],[24.102,50.544],[24.095,50.557],[24.085,50.605],[24.108,50.63],[24.115,50.637],[24.126,50.642],[24.139,50.644],[24.152,50.644],[24.165,50.64],[24.171,50.621],[24.18,50.617],[24.194,50.614],[24.202,50.606],[24.209,50.597],[24.218,50.589],[24.229,50.585],[24.248,50.582]]]
}
},
{
"type":"Feature",
"id":"02",
"properties":{
"name":"Луганская область",
"Manager":"Региональный менеджер<br />Рыбалов Дмитрий",
"Phone":"(0512) 50-02-26 (многоканальный)",
"Email":"[email protected]",
"ICQ":"350 079 086",
"Mobile":"067-512-15-40"
},
"geometry":{
"type":"Polygon",
"coordinates":[[[38.189,50.063],[38.254,50.059],[38.281,50.063],[38.3,50.061],[38.314,50.05],[38.344,49.992],[38.356,49.981],[38.376,49.975],[38.42,49.972],[38.437,49.968],[38.461,49.957],[38.497,49.948],[38.57,49.957],[38.619,49.951],[38.629,49.954],[38.638,49.958],[38.662,49.963],[38.662,49.963],[38.664,49.965],[38.664,49.966],[38.664,49.963],[38.673,49.943],[38.675,49.927],[38.681,49.919],[38.687,49.914],[38.748,49.886],[38.852,49.866],[38.886,49.845],[38.91,49.821],[38.937,49.804],[39.032,49.808],[39.049,49.811],[39.059,49.816],[39.068,49.821],[39.1,49.852],[39.1,49.852],[39.117,49.865],[39.156,49.874],[39.181,49.86],[39.182,49.859],[39.238,49.765],[39.261,49.745],[39.29,49.732],[39.327,49.727],[39.367,49.732],[39.406,49.745],[39.443,49.75],[39.48,49.734],[39.499,49.728],[39.557,49.724],[39.57,49.714],[39.581,49.691],[39.597,49.648],[39.623,49.614],[39.653,49.6],[39.688,49.594],[39.729,49.581],[39.781,49.549],[39.801,49.543],[39.829,49.542],[39.859,49.546],[39.889,49.554],[39.914,49.563],[39.914,49.563],[39.924,49.57],[39.974,49.603],[39.998,49.609],[40.017,49.608],[40.115,49.591],[40.119,49.589],[40.13,49.58],[40.126,49.559],[40.11,49.546],[40.11,49.546],[40.072,49.531],[40.054,49.52],[40.054,49.52],[40.035,49.487],[40.041,49.456],[40.062,49.426],[40.101,49.386],[40.148,49.35],[40.159,49.334],[40.157,49.316],[40.142,49.282],[40.141,49.246],[40.134,49.237],[40.134,49.237],[40.11,49.228],[40.11,49.228],[40.091,49.218],[40.057,49.183],[40.057,49.183],[40.038,49.169],[39.979,49.142],[39.959,49.129],[39.952,49.125],[39.931,49.101],[39.926,49.087],[39.923,49.058],[39.918,49.048],[39.918,49.048],[39.907,49.043],[39.891,49.042],[39.862,49.046],[39.831,49.046],[39.749,49.027],[39.698,49.029],[39.681,49.021],[39.681,49.021],[39.674,48.97],[39.687,48.958],[39.707,48.949],[39.726,48.937],[39.739,48.919],[39.747,48.906],[39.758,48.896],[39.782,48.889],[39.862,48.877],[39.896,48.88],[39.908,48.879],[39.918,48.873],[39.937,48.857],[39.95,48.853],[39.972,48.861],[39.972,48.861],[39.99,48.876],[39.99,48.876],[40.009,48.888],[40.034,48.886],[40.054,48.87],[40.052,48.85],[40.038,48.83],[40.019,48.814],[40.019,48.813],[39.975,48.79],[39.935,48.787],[39.824,48.816],[39.801,48.815],[39.779,48.808],[39.779,48.808],[39.76,48.794],[39.759,48.793],[39.759,48.793],[39.751,48.782],[39.744,48.771],[39.736,48.762],[39.736,48.762],[39.711,48.755],[39.711,48.755],[39.703,48.747],[39.642,48.612],[39.631,48.587],[39.67,48.589],[39.69,48.594],[39.809,48.584],[39.835,48.574],[39.855,48.556],[39.862,48.53],[39.863,48.523],[39.866,48.517],[39.868,48.513],[39.869,48.51],[39.865,48.502],[39.865,48.502],[39.856,48.5],[39.846,48.5],[39.842,48.499],[39.842,48.499],[39.844,48.484],[39.854,48.476],[39.864,48.47],[39.896,48.424],[39.907,48.399],[39.914,48.385],[39.924,48.376],[39.901,48.362],[39.884,48.347],[39.884,48.347],[39.816,48.309],[39.816,48.309],[39.885,48.279],[39.905,48.281],[39.957,48.294],[39.979,48.29],[39.993,48.274],[39.99,48.254],[39.977,48.236],[39.96,48.222],[39.96,48.222],[39.912,48.198],[39.912,48.198],[39.893,48.183],[39.843,48.12],[39.831,48.1],[39.829,48.077],[39.844,48.046],[39.843,48.037],[39.842,48.036],[39.84,48.035],[39.833,48.037],[39.779,48.03],[39.768,48.025],[39.768,48.025],[39.76,48.015],[39.762,48.01],[39.77,48.004],[39.78,47.994],[39.794,47.972],[39.796,47.962],[39.794,47.946],[39.79,47.938],[39.78,47.923],[39.777,47.914],[39.777,47.907],[39.782,47.893],[39.783,47.887],[39.775,47.858],[39.759,47.833],[39.759,47.833],[39.751,47.828],[39.734,47.816],[39.733,47.816],[39.7,47.812],[39.6,47.83],[39.57,47.831],[39.509,47.823],[39.48,47.826],[39.457,47.832],[39.414,47.824],[39.391,47.823],[39.373,47.829],[39.34,47.844],[39.319,47.846],[39.173,47.837],[39.133,47.83],[39.113,47.829],[39.093,47.832],[39.039,47.857],[39.036,47.857],[39.038,47.866],[39.056,47.917],[39.055,47.924],[39.054,47.932],[39.045,47.936],[39.04,47.939],[39.036,47.943],[39.031,47.95],[39.031,47.959],[39.034,47.992],[39.031,48.001],[39.027,48.007],[38.934,48.021],[38.862,48.02],[38.853,48.023],[38.84,48.028],[38.815,48.043],[38.805,48.05],[38.8,48.057],[38.801,48.061],[38.803,48.065],[38.805,48.068],[38.81,48.075],[38.819,48.085],[38.821,48.089],[38.823,48.094],[38.821,48.103],[38.818,48.108],[38.814,48.111],[38.756,48.134],[38.63,48.166],[38.609,48.175],[38.604,48.179],[38.601,48.183],[38.601,48.187],[38.604,48.195],[38.607,48.203],[38.607,48.207],[38.606,48.21],[38.604,48.213],[38.589,48.237],[38.584,48.247],[38.581,48.257],[38.576,48.266],[38.571,48.274],[38.566,48.278],[38.561,48.279],[38.461,48.272],[38.445,48.275],[38.432,48.279],[38.427,48.282],[38.424,48.286],[38.419,48.299],[38.413,48.31],[38.41,48.318],[38.41,48.321],[38.41,48.324],[38.412,48.326],[38.415,48.328],[38.418,48.328],[38.463,48.333],[38.467,48.335],[38.471,48.336],[38.475,48.338],[38.478,48.341],[38.48,48.344],[38.482,48.348],[38.483,48.351],[38.483,48.353],[38.481,48.358],[38.467,48.376],[38.457,48.386],[38.436,48.397],[38.43,48.401],[38.426,48.405],[38.425,48.408],[38.424,48.411],[38.421,48.417],[38.417,48.424],[38.406,48.437],[38.399,48.442],[38.393,48.444],[38.39,48.441],[38.383,48.436],[38.38,48.434],[38.375,48.432],[38.37,48.432],[38.364,48.433],[38.351,48.438],[38.345,48.439],[38.34,48.439],[38.332,48.441],[38.324,48.443],[38.31,48.45],[38.305,48.455],[38.302,48.459],[38.302,48.466],[38.303,48.474],[38.305,48.486],[38.309,48.495],[38.311,48.5],[38.312,48.5],[38.313,48.503],[38.315,48.511],[38.315,48.515],[38.314,48.521],[38.31,48.523],[38.305,48.526],[38.29,48.528],[38.277,48.532],[38.267,48.536],[38.262,48.54],[38.26,48.544],[38.26,48.548],[38.262,48.552],[38.268,48.564],[38.27,48.568],[38.27,48.574],[38.268,48.58],[38.256,48.601],[38.254,48.606],[38.254,48.61],[38.256,48.618],[38.256,48.621],[38.256,48.623],[38.251,48.639],[38.249,48.664],[38.249,48.667],[38.25,48.671],[38.252,48.675],[38.254,48.677],[38.255,48.679],[38.261,48.684],[38.284,48.697],[38.3,48.711],[38.303,48.715],[38.305,48.719],[38.306,48.725],[38.304,48.729],[38.299,48.73],[38.294,48.73],[38.274,48.727],[38.27,48.727],[38.268,48.73],[38.266,48.733],[38.267,48.738],[38.267,48.741],[38.268,48.745],[38.27,48.749],[38.272,48.752],[38.285,48.764],[38.29,48.771],[38.295,48.778],[38.297,48.783],[38.296,48.79],[38.292,48.801],[38.283,48.812],[38.28,48.818],[38.279,48.824],[38.281,48.828],[38.282,48.835],[38.28,48.839],[38.275,48.842],[38.263,48.844],[38.257,48.844],[38.243,48.847],[38.235,48.851],[38.231,48.854],[38.23,48.858],[38.23,48.873],[38.228,48.88],[38.225,48.89],[38.213,48.913],[38.21,48.924],[38.171,48.932],[38.058,48.937],[38.051,48.938],[38.045,48.941],[38.035,48.947],[38.028,48.95],[38.021,48.952],[38.016,48.953],[38.01,48.954],[38.008,48.957],[38.009,48.961],[38.01,48.965],[38.013,48.969],[38.016,48.972],[38.02,48.974],[38.025,48.975],[38.036,48.974],[38.041,48.975],[38.042,48.978],[38.043,48.982],[38.043,48.985],[38.045,48.987],[38.049,48.988],[38.065,48.989],[38.07,48.99],[38.074,48.992],[38.076,48.995],[38.077,48.998],[38.078,49],[38.078,49.001],[38.078,49.004],[38.049,49.05],[38.043,49.062],[38.041,49.07],[38.044,49.073],[38.055,49.08],[38.058,49.083],[38.06,49.087],[38.062,49.091],[38.063,49.095],[38.063,49.102],[38.062,49.106],[38.062,49.109],[38.063,49.117],[38.07,49.143],[38.07,49.148],[38.067,49.15],[38.062,49.151],[38.021,49.152],[38.016,49.151],[38.012,49.15],[37.985,49.134],[37.981,49.132],[37.977,49.131],[37.971,49.132],[37.966,49.133],[37.939,49.145],[37.895,49.156],[37.887,49.16],[37.884,49.164],[37.884,49.168],[37.889,49.181],[37.891,49.184],[37.894,49.187],[37.898,49.189],[37.926,49.19],[37.931,49.191],[37.934,49.194],[37.934,49.2],[37.929,49.202],[37.924,49.204],[37.905,49.205],[37.9,49.206],[37.895,49.208],[37.892,49.21],[37.886,49.216],[37.88,49.221],[37.868,49.228],[37.859,49.231],[37.847,49.232],[37.872,49.246],[37.898,49.258],[37.911,49.269],[37.926,49.284],[37.929,49.291],[37.93,49.296],[37.928,49.299],[37.926,49.302],[37.923,49.305],[37.919,49.307],[37.914,49.309],[37.908,49.31],[37.89,49.312],[37.885,49.313],[37.882,49.321],[37.882,49.333],[37.887,49.383],[37.886,49.39],[37.883,49.397],[37.88,49.403],[37.877,49.406],[37.867,49.414],[37.864,49.417],[37.861,49.423],[37.862,49.427],[37.864,49.43],[37.876,49.443],[37.88,49.444],[37.884,49.446],[37.9,49.448],[37.905,49.45],[37.91,49.455],[37.917,49.464],[37.921,49.481],[37.926,49.496],[37.929,49.5],[37.932,49.502],[37.953,49.512],[37.958,49.515],[37.963,49.52],[37.964,49.524],[37.964,49.528],[37.963,49.531],[37.953,49.551],[37.953,49.556],[37.957,49.558],[37.962,49.561],[37.964,49.564],[37.963,49.566],[37.961,49.569],[37.954,49.575],[37.952,49.577],[37.946,49.591],[37.944,49.597],[37.946,49.6],[37.947,49.602],[37.951,49.603],[37.959,49.606],[37.964,49.609],[37.968,49.615],[37.977,49.632],[37.981,49.637],[37.993,49.646],[37.998,49.652],[38,49.657],[38.001,49.661],[38.001,49.664],[38,49.668],[37.999,49.681],[38.001,49.708],[38.001,49.711],[38,49.713],[37.998,49.716],[37.996,49.718],[37.993,49.72],[37.988,49.722],[37.983,49.722],[37.978,49.722],[37.951,49.714],[37.946,49.715],[37.942,49.717],[37.939,49.723],[37.94,49.727],[37.942,49.731],[37.954,49.743],[37.961,49.749],[37.964,49.751],[37.969,49.753],[37.974,49.753],[37.998,49.749],[38.001,49.75],[38.005,49.751],[38.009,49.758],[38.011,49.762],[38.014,49.766],[38.016,49.769],[38.02,49.772],[38.023,49.774],[38.037,49.779],[38.041,49.782],[38.045,49.785],[38.045,49.788],[38.043,49.791],[38.002,49.812],[38,49.814],[37.998,49.817],[37.998,49.82],[38,49.823],[38.005,49.826],[38.023,49.832],[38.043,49.836],[38.065,49.837],[38.07,49.838],[38.075,49.84],[38.08,49.843],[38.081,49.846],[38.079,49.849],[38.059,49.857],[38.055,49.859],[38.052,49.861],[38.046,49.867],[38.043,49.869],[38.027,49.894],[38.024,49.903],[38.023,49.91],[38.023,49.91],[38.066,49.928],[38.079,49.93],[38.09,49.929],[38.108,49.921],[38.119,49.92],[38.166,49.941],[38.166,49.941],[38.171,49.984],[38.164,50.031],[38.174,50.06],[38.174,50.061],[38.189,50.063]]]
}
},
{
"type":"Feature",
"id":"02",
"properties":{
"name":"Николаевская область",
"Manager":"Филиал в г. Николаев",
"Phone":"(0512) 50-10-09 (многоканальный)",
"Email":"[email protected]",
"ICQ":"576 156 099",
"Mobile":"067-515-67-46",
"Address":"г. Николаев ул. Кирова 238В"
},
"geometry":{
"type":"MultiPolygon",
"coordinates":[[[[31.567,46.55],[31.582,46.545],[31.756,46.554],[31.79,46.547],[31.848,46.523],[31.852,46.522],[31.817,46.483],[31.816,46.483],[31.772,46.496],[31.749,46.5],[31.727,46.501],[31.711,46.495],[31.696,46.484],[31.691,46.479],[31.687,46.471],[31.685,46.461],[31.687,46.43],[31.664,46.472],[31.656,46.478],[31.642,46.482],[31.525,46.564],[31.509,46.588],[31.541,46.57],[31.567,46.55]]],[[[31.229,48.157],[31.23,48.154],[31.229,48.139],[31.23,48.135],[31.231,48.132],[31.233,48.129],[31.236,48.127],[31.238,48.126],[31.241,48.124],[31.25,48.121],[31.344,48.112],[31.351,48.113],[31.369,48.12],[31.384,48.125],[31.389,48.124],[31.392,48.121],[31.393,48.118],[31.396,48.115],[31.4,48.112],[31.408,48.108],[31.414,48.108],[31.419,48.109],[31.423,48.111],[31.431,48.113],[31.444,48.116],[31.499,48.119],[31.504,48.118],[31.507,48.116],[31.51,48.114],[31.511,48.11],[31.513,48.103],[31.51,48.082],[31.508,48.078],[31.507,48.074],[31.502,48.069],[31.5,48.067],[31.5,48.064],[31.501,48.06],[31.506,48.056],[31.512,48.055],[31.518,48.055],[31.522,48.056],[31.525,48.058],[31.527,48.062],[31.528,48.066],[31.528,48.078],[31.53,48.083],[31.534,48.087],[31.542,48.091],[31.547,48.09],[31.551,48.088],[31.555,48.084],[31.56,48.083],[31.565,48.083],[31.581,48.085],[31.585,48.086],[31.588,48.088],[31.589,48.091],[31.588,48.102],[31.589,48.106],[31.591,48.11],[31.594,48.112],[31.6,48.114],[31.617,48.119],[31.623,48.118],[31.627,48.117],[31.64,48.106],[31.646,48.104],[31.656,48.101],[31.667,48.103],[31.676,48.102],[31.683,48.1],[31.692,48.095],[31.699,48.094],[31.705,48.093],[31.744,48.098],[31.752,48.097],[31.758,48.095],[31.76,48.092],[31.767,48.076],[31.771,48.07],[31.772,48.067],[31.773,48.063],[31.773,48.059],[31.773,48.055],[31.771,48.051],[31.769,48.047],[31.766,48.044],[31.763,48.042],[31.751,48.036],[31.711,48.024],[31.708,48.022],[31.708,48.02],[31.71,48.017],[31.723,48],[31.723,48],[31.755,47.963],[31.768,47.953],[31.78,47.945],[31.785,47.944],[31.81,47.948],[31.817,47.947],[31.821,47.945],[31.827,47.94],[31.831,47.934],[31.831,47.931],[31.832,47.927],[31.833,47.923],[31.835,47.92],[31.837,47.917],[31.84,47.915],[31.861,47.897],[31.863,47.894],[31.865,47.891],[31.866,47.888],[31.867,47.884],[31.866,47.88],[31.864,47.877],[31.862,47.874],[31.844,47.856],[31.842,47.853],[31.84,47.85],[31.839,47.846],[31.84,47.843],[31.842,47.839],[31.849,47.831],[31.852,47.828],[31.853,47.825],[31.853,47.821],[31.852,47.817],[31.851,47.813],[31.851,47.808],[31.852,47.803],[31.857,47.798],[31.862,47.796],[31.868,47.795],[31.955,47.796],[31.96,47.797],[31.964,47.798],[31.966,47.802],[31.967,47.806],[31.968,47.809],[31.975,47.812],[31.986,47.813],[32.022,47.81],[32.03,47.808],[32.041,47.801],[32.064,47.792],[32.068,47.79],[32.072,47.787],[32.074,47.785],[32.083,47.773],[32.087,47.767],[32.092,47.763],[32.1,47.758],[32.119,47.751],[32.13,47.749],[32.139,47.748],[32.149,47.749],[32.158,47.751],[32.162,47.753],[32.169,47.758],[32.18,47.769],[32.193,47.787],[32.215,47.811],[32.218,47.813],[32.222,47.816],[32.226,47.818],[32.234,47.82],[32.271,47.824],[32.288,47.822],[32.299,47.82],[32.325,47.809],[32.343,47.796],[32.348,47.795],[32.353,47.796],[32.364,47.8],[32.375,47.802],[32.381,47.801],[32.387,47.8],[32.391,47.798],[32.457,47.782],[32.467,47.781],[32.64,47.8],[32.645,47.801],[32.647,47.803],[32.648,47.806],[32.65,47.822],[32.649,47.826],[32.65,47.834],[32.652,47.837],[32.656,47.839],[32.676,47.842],[32.68,47.843],[32.682,47.846],[32.682,47.849],[32.679,47.851],[32.675,47.854],[32.672,47.856],[32.671,47.859],[32.671,47.863],[32.672,47.871],[32.672,47.875],[32.67,47.879],[32.664,47.887],[32.662,47.89],[32.661,47.894],[32.661,47.897],[32.663,47.9],[32.666,47.903],[32.669,47.905],[32.679,47.907],[32.706,47.909],[32.711,47.91],[32.714,47.912],[32.716,47.915],[32.716,47.919],[32.716,47.927],[32.715,47.93],[32.711,47.931],[32.694,47.933],[32.689,47.935],[32.686,47.937],[32.683,47.94],[32.682,47.943],[32.681,47.947],[32.682,47.951],[32.683,47.955],[32.685,47.959],[32.687,47.962],[32.69,47.965],[32.693,47.968],[32.696,47.97],[32.704,47.974],[32.717,47.979],[32.758,47.984],[32.778,47.989],[32.783,47.989],[32.787,47.987],[32.79,47.984],[32.797,47.976],[32.801,47.973],[32.807,47.97],[32.818,47.966],[32.825,47.966],[32.829,47.967],[32.832,47.97],[32.834,47.973],[32.838,47.981],[32.841,47.984],[32.844,47.986],[32.876,47.991],[32.879,47.992],[32.883,47.994],[32.885,47.997],[32.886,47.999],[32.886,48],[32.886,48.001],[32.882,48.011],[32.881,48.018],[32.881,48.022],[32.882,48.026],[32.884,48.029],[32.888,48.032],[32.894,48.035],[32.907,48.038],[32.918,48.037],[32.943,48.034],[32.949,48.035],[32.97,48.044],[32.976,48.045],[32.979,48.043],[32.981,48.04],[32.983,48.036],[32.984,48.029],[32.986,48.026],[32.988,48.023],[32.992,48.018],[33.011,48.003],[33.013,48.001],[33.015,47.999],[33.016,47.997],[33.016,47.993],[33.015,47.981],[33.016,47.977],[33.019,47.974],[33.035,47.967],[33.046,47.96],[33.045,47.954],[33.039,47.944],[33.031,47.926],[33.032,47.92],[33.035,47.916],[33.039,47.915],[33.045,47.914],[33.051,47.914],[33.056,47.915],[33.062,47.914],[33.069,47.911],[33.08,47.902],[33.083,47.896],[33.082,47.892],[33.079,47.889],[33.076,47.886],[33.073,47.883],[33.071,47.877],[33.07,47.855],[33.068,47.85],[33.066,47.847],[33.064,47.843],[33.062,47.838],[33.061,47.831],[33.06,47.776],[33.061,47.769],[33.064,47.764],[33.068,47.762],[33.072,47.76],[33.077,47.756],[33.082,47.75],[33.088,47.737],[33.087,47.732],[33.083,47.729],[33.04,47.726],[33.002,47.719],[32.996,47.717],[32.988,47.713],[32.984,47.71],[32.984,47.707],[32.985,47.704],[32.991,47.695],[33.007,47.675],[33.014,47.663],[33.017,47.658],[33.019,47.653],[33.021,47.643],[33.02,47.636],[33.018,47.632],[33.013,47.626],[33,47.618],[32.998,47.615],[32.995,47.611],[32.992,47.603],[32.992,47.599],[32.994,47.595],[32.998,47.594],[33.005,47.592],[33.089,47.583],[33.087,47.574],[33.087,47.562],[33.087,47.555],[33.088,47.551],[33.089,47.548],[33.092,47.545],[33.095,47.543],[33.11,47.534],[33.116,47.53],[33.118,47.527],[33.119,47.524],[33.118,47.52],[33.116,47.517],[33.112,47.51],[33.111,47.506],[33.111,47.503],[33.112,47.501],[33.112,47.5],[33.113,47.498],[33.118,47.49],[33.12,47.487],[33.123,47.483],[33.124,47.48],[33.125,47.477],[33.125,47.474],[33.125,47.47],[33.123,47.461],[33.12,47.453],[33.12,47.449],[33.12,47.445],[33.121,47.442],[33.123,47.439],[33.125,47.436],[33.129,47.43],[33.13,47.426],[33.13,47.423],[33.128,47.419],[33.124,47.416],[33.115,47.414],[33.096,47.413],[33.09,47.414],[33.085,47.415],[33.082,47.418],[33.08,47.421],[33.075,47.434],[33.064,47.449],[33.062,47.451],[33.059,47.452],[33.055,47.451],[33.053,47.445],[33.051,47.436],[33.047,47.431],[33.031,47.417],[33.028,47.412],[33.026,47.409],[33.027,47.406],[33.028,47.403],[33.03,47.4],[33.032,47.397],[33.035,47.394],[33.039,47.392],[33.043,47.39],[33.048,47.389],[33.054,47.388],[33.087,47.387],[33.092,47.387],[33.096,47.385],[33.099,47.382],[33.121,47.349],[33.122,47.346],[33.124,47.339],[33.125,47.334],[33.125,47.331],[33.124,47.327],[33.121,47.319],[33.111,47.3],[33.106,47.288],[33.105,47.28],[33.105,47.276],[33.105,47.272],[33.106,47.269],[33.108,47.266],[33.114,47.257],[33.135,47.231],[33.137,47.227],[33.136,47.224],[33.131,47.217],[33.129,47.212],[33.127,47.208],[33.125,47.205],[33.121,47.202],[33.113,47.203],[33.107,47.204],[33.095,47.209],[33.09,47.21],[33.084,47.209],[33.078,47.206],[33.049,47.183],[33.043,47.18],[33.036,47.178],[33.021,47.176],[32.998,47.177],[32.995,47.178],[32.985,47.187],[32.981,47.188],[32.976,47.187],[32.971,47.181],[32.962,47.164],[32.936,47.127],[32.918,47.11],[32.916,47.107],[32.915,47.104],[32.915,47.1],[32.916,47.097],[32.917,47.094],[32.919,47.089],[32.92,47.08],[32.922,47.077],[32.925,47.075],[32.93,47.075],[32.946,47.076],[32.951,47.076],[32.956,47.075],[33.014,47.051],[33.059,47.021],[33.061,47.019],[33.062,47.015],[33.06,47.012],[33.058,47.009],[33.049,47],[33.032,46.986],[33.029,46.983],[33.028,46.981],[33.026,46.978],[33.026,46.974],[33.026,46.972],[33.025,46.97],[32.998,46.982],[32.992,46.986],[32.986,46.991],[32.981,46.996],[32.976,47],[32.975,47],[32.971,47],[32.965,46.997],[32.955,46.991],[32.951,46.986],[32.949,46.981],[32.95,46.97],[32.951,46.962],[32.952,46.959],[32.954,46.956],[32.957,46.954],[32.961,46.952],[32.966,46.951],[33.001,46.951],[33.006,46.95],[33.009,46.949],[33.012,46.946],[33.014,46.943],[33.015,46.94],[33.01,46.936],[33,46.933],[32.959,46.925],[32.946,46.92],[32.924,46.903],[32.914,46.9],[32.816,46.889],[32.812,46.887],[32.807,46.882],[32.807,46.879],[32.808,46.875],[32.811,46.873],[32.815,46.871],[32.819,46.87],[32.826,46.868],[32.85,46.867],[32.904,46.87],[32.91,46.869],[32.92,46.865],[32.925,46.865],[32.935,46.865],[32.939,46.864],[32.941,46.862],[32.931,46.857],[32.914,46.851],[32.836,46.832],[32.832,46.83],[32.828,46.828],[32.822,46.827],[32.773,46.828],[32.72,46.824],[32.709,46.824],[32.706,46.824],[32.702,46.826],[32.699,46.828],[32.695,46.83],[32.693,46.833],[32.686,46.842],[32.683,46.844],[32.679,46.846],[32.675,46.848],[32.652,46.853],[32.648,46.855],[32.644,46.857],[32.641,46.86],[32.632,46.861],[32.593,46.86],[32.583,46.862],[32.575,46.864],[32.571,46.866],[32.563,46.866],[32.558,46.868],[32.555,46.87],[32.552,46.873],[32.547,46.874],[32.543,46.874],[32.538,46.873],[32.537,46.868],[32.537,46.853],[32.536,46.849],[32.535,46.844],[32.533,46.841],[32.531,46.838],[32.528,46.836],[32.523,46.833],[32.515,46.832],[32.48,46.83],[32.47,46.831],[32.463,46.834],[32.461,46.837],[32.457,46.843],[32.454,46.845],[32.45,46.846],[32.444,46.847],[32.423,46.846],[32.389,46.84],[32.382,46.837],[32.374,46.831],[32.37,46.826],[32.359,46.801],[32.356,46.798],[32.351,46.796],[32.343,46.795],[32.317,46.796],[32.259,46.811],[32.248,46.811],[32.235,46.809],[32.229,46.808],[32.223,46.805],[32.215,46.799],[32.211,46.795],[32.208,46.79],[32.198,46.772],[32.188,46.759],[32.185,46.756],[32.179,46.751],[32.172,46.747],[32.155,46.742],[32.123,46.735],[32.112,46.735],[32.099,46.738],[32.083,46.745],[32.078,46.746],[32.072,46.747],[32.065,46.746],[32.057,46.744],[32.04,46.736],[32.032,46.73],[32.017,46.726],[31.966,46.727],[31.965,46.722],[31.962,46.728],[31.95,46.742],[31.941,46.759],[31.936,46.8],[31.955,46.832],[31.982,46.86],[32.003,46.896],[32.008,46.915],[32.007,46.931],[31.996,46.94],[31.946,46.947],[31.936,46.955],[31.939,46.968],[31.969,46.999],[31.977,47.009],[31.971,47.016],[31.944,47.019],[31.9,47.014],[31.881,47.015],[31.865,47.026],[31.893,47.068],[31.897,47.093],[31.883,47.119],[31.868,47.127],[31.856,47.13],[31.846,47.134],[31.838,47.149],[31.835,47.168],[31.835,47.179],[31.831,47.187],[31.817,47.197],[31.758,47.216],[31.749,47.229],[31.754,47.249],[31.752,47.256],[31.742,47.259],[31.738,47.255],[31.724,47.238],[31.721,47.232],[31.727,47.221],[31.743,47.209],[31.762,47.201],[31.806,47.193],[31.816,47.181],[31.816,47.123],[31.82,47.117],[31.845,47.113],[31.852,47.108],[31.857,47.104],[31.862,47.102],[31.875,47.094],[31.867,47.077],[31.852,47.061],[31.845,47.054],[31.838,47.009],[31.869,46.999],[31.914,47.003],[31.947,46.999],[31.918,46.976],[31.905,46.961],[31.9,46.944],[31.908,46.927],[31.926,46.923],[31.948,46.928],[31.968,46.937],[31.973,46.915],[31.964,46.886],[31.945,46.86],[31.923,46.848],[31.899,46.843],[31.878,46.828],[31.865,46.807],[31.865,46.78],[31.903,46.745],[31.907,46.738],[31.9,46.694],[31.903,46.677],[31.908,46.669],[31.909,46.663],[31.9,46.65],[31.892,46.644],[31.87,46.633],[31.859,46.629],[31.815,46.623],[31.772,46.628],[31.674,46.653],[31.615,46.65],[31.597,46.643],[31.589,46.63],[31.579,46.617],[31.557,46.615],[31.549,46.618],[31.535,46.627],[31.526,46.629],[31.504,46.628],[31.493,46.629],[31.485,46.632],[31.481,46.647],[31.491,46.664],[31.546,46.728],[31.56,46.749],[31.56,46.759],[31.572,46.766],[31.618,46.814],[31.606,46.827],[31.598,46.821],[31.591,46.806],[31.584,46.794],[31.577,46.789],[31.558,46.784],[31.55,46.78],[31.544,46.775],[31.524,46.754],[31.523,46.75],[31.52,46.748],[31.509,46.745],[31.496,46.751],[31.482,46.759],[31.467,46.784],[31.456,46.796],[31.441,46.801],[31.452,46.776],[31.454,46.769],[31.456,46.755],[31.462,46.749],[31.471,46.745],[31.502,46.728],[31.506,46.72],[31.499,46.708],[31.48,46.687],[31.478,46.684],[31.463,46.675],[31.429,46.638],[31.416,46.629],[31.397,46.626],[31.352,46.609],[31.338,46.601],[31.324,46.606],[31.296,46.609],[31.283,46.615],[31.276,46.608],[31.257,46.616],[31.188,46.629],[31.172,46.684],[31.172,46.703],[31.175,46.708],[31.178,46.715],[31.178,46.721],[31.176,46.727],[31.172,46.737],[31.165,46.816],[31.162,46.825],[31.144,46.836],[31.13,46.841],[31.127,46.843],[31.124,46.847],[31.113,46.864],[31.105,46.873],[31.099,46.877],[31.056,46.897],[31.05,46.904],[31.041,46.917],[31.033,46.939],[31.032,46.948],[31.034,46.952],[31.037,46.953],[31.088,46.956],[31.093,46.957],[31.096,46.959],[31.106,46.971],[31.109,46.974],[31.114,46.975],[31.119,46.976],[31.124,46.975],[31.128,46.974],[31.135,46.97],[31.14,46.969],[31.144,46.97],[31.154,46.972],[31.215,46.974],[31.22,46.975],[31.224,46.977],[31.229,46.986],[31.232,46.989],[31.236,46.992],[31.257,46.998],[31.26,47],[31.262,47.002],[31.268,47.014],[31.273,47.029],[31.278,47.036],[31.283,47.041],[31.288,47.044],[31.295,47.05],[31.296,47.056],[31.297,47.063],[31.296,47.074],[31.307,47.09],[31.306,47.098],[31.304,47.102],[31.3,47.104],[31.295,47.105],[31.279,47.106],[31.273,47.107],[31.269,47.11],[31.266,47.115],[31.263,47.123],[31.26,47.128],[31.257,47.131],[31.255,47.134],[31.244,47.141],[31.24,47.144],[31.236,47.149],[31.231,47.158],[31.228,47.163],[31.224,47.166],[31.213,47.166],[31.204,47.164],[31.191,47.159],[31.187,47.158],[31.182,47.158],[31.177,47.159],[31.174,47.16],[31.163,47.167],[31.154,47.17],[31.13,47.174],[31.125,47.176],[31.12,47.179],[31.116,47.182],[31.115,47.186],[31.115,47.191],[31.116,47.199],[31.118,47.207],[31.121,47.21],[31.125,47.212],[31.129,47.213],[31.139,47.215],[31.148,47.217],[31.152,47.219],[31.166,47.229],[31.169,47.234],[31.172,47.241],[31.17,47.249],[31.168,47.255],[31.16,47.267],[31.158,47.269],[31.156,47.27],[31.154,47.272],[31.15,47.272],[31.07,47.26],[31.04,47.251],[31.034,47.251],[31.029,47.253],[31.018,47.266],[31.014,47.268],[31.011,47.269],[30.97,47.27],[30.915,47.277],[30.902,47.291],[30.886,47.317],[30.839,47.413],[30.834,47.43],[30.846,47.451],[30.853,47.467],[30.855,47.476],[30.856,47.487],[30.856,47.494],[30.857,47.5],[30.858,47.5],[30.865,47.503],[30.868,47.505],[30.87,47.509],[30.872,47.513],[30.872,47.522],[30.868,47.543],[30.863,47.549],[30.849,47.561],[30.838,47.575],[30.832,47.581],[30.825,47.584],[30.79,47.584],[30.786,47.587],[30.786,47.589],[30.788,47.592],[30.79,47.598],[30.791,47.606],[30.788,47.624],[30.785,47.63],[30.78,47.634],[30.724,47.625],[30.72,47.623],[30.717,47.62],[30.715,47.616],[30.711,47.599],[30.706,47.592],[30.703,47.59],[30.699,47.588],[30.695,47.588],[30.69,47.59],[30.685,47.593],[30.679,47.601],[30.675,47.619],[30.671,47.623],[30.666,47.626],[30.63,47.626],[30.623,47.627],[30.617,47.629],[30.604,47.636],[30.598,47.637],[30.593,47.638],[30.588,47.636],[30.578,47.629],[30.563,47.621],[30.555,47.618],[30.55,47.618],[30.544,47.618],[30.54,47.62],[30.535,47.624],[30.531,47.626],[30.527,47.628],[30.522,47.628],[30.476,47.622],[30.471,47.623],[30.468,47.625],[30.458,47.633],[30.454,47.635],[30.43,47.643],[30.42,47.648],[30.417,47.653],[30.414,47.657],[30.41,47.666],[30.404,47.679],[30.402,47.683],[30.402,47.687],[30.402,47.691],[30.404,47.695],[30.411,47.704],[30.413,47.708],[30.415,47.713],[30.414,47.72],[30.411,47.724],[30.408,47.727],[30.395,47.734],[30.382,47.743],[30.379,47.747],[30.378,47.752],[30.38,47.755],[30.383,47.758],[30.394,47.765],[30.396,47.768],[30.398,47.77],[30.399,47.772],[30.399,47.777],[30.395,47.792],[30.39,47.797],[30.384,47.799],[30.358,47.806],[30.347,47.811],[30.331,47.821],[30.327,47.826],[30.325,47.83],[30.323,47.834],[30.322,47.837],[30.298,47.945],[30.296,47.95],[30.293,47.953],[30.273,47.968],[30.263,47.979],[30.259,47.981],[30.256,47.984],[30.251,47.986],[30.227,47.99],[30.22,47.993],[30.217,47.996],[30.216,47.999],[30.215,48.008],[30.216,48.012],[30.217,48.016],[30.225,48.024],[30.226,48.028],[30.226,48.031],[30.226,48.035],[30.226,48.048],[30.226,48.053],[30.222,48.057],[30.21,48.062],[30.209,48.065],[30.211,48.068],[30.218,48.072],[30.222,48.074],[30.256,48.084],[30.271,48.083],[30.275,48.084],[30.282,48.089],[30.285,48.091],[30.291,48.092],[30.296,48.091],[30.302,48.09],[30.307,48.089],[30.312,48.09],[30.315,48.093],[30.317,48.097],[30.316,48.102],[30.312,48.105],[30.299,48.11],[30.295,48.113],[30.294,48.118],[30.293,48.136],[30.322,48.135],[30.33,48.136],[30.335,48.142],[30.342,48.16],[30.348,48.164],[30.502,48.164],[30.51,48.162],[30.519,48.162],[30.527,48.161],[30.571,48.15],[30.61,48.145],[30.62,48.145],[30.626,48.146],[30.629,48.149],[30.631,48.152],[30.635,48.16],[30.637,48.163],[30.645,48.167],[30.658,48.171],[30.705,48.182],[30.716,48.183],[30.745,48.179],[30.776,48.179],[30.789,48.178],[30.798,48.176],[30.799,48.173],[30.8,48.169],[30.802,48.165],[30.807,48.162],[30.817,48.159],[30.823,48.159],[30.827,48.162],[30.834,48.175],[30.836,48.178],[30.841,48.181],[30.85,48.185],[30.857,48.186],[30.863,48.186],[30.868,48.184],[30.872,48.182],[30.875,48.179],[30.876,48.176],[30.877,48.173],[30.878,48.169],[30.88,48.165],[30.885,48.161],[30.898,48.158],[30.906,48.157],[30.913,48.158],[30.917,48.159],[30.92,48.161],[30.923,48.164],[30.929,48.168],[30.938,48.172],[30.969,48.179],[30.976,48.182],[30.979,48.184],[30.982,48.188],[30.984,48.191],[30.986,48.2],[30.994,48.206],[31.007,48.211],[31.042,48.219],[31.063,48.221],[31.135,48.217],[31.151,48.213],[31.169,48.212],[31.177,48.21],[31.183,48.208],[31.185,48.205],[31.187,48.202],[31.189,48.175],[31.19,48.171],[31.194,48.168],[31.2,48.165],[31.223,48.161],[31.228,48.159],[31.229,48.157]]]]
}
},
{
"type":"Feature",
"id":"02",
"properties":{
"name":"Одесская область",
"Manager":"Филиал в г. Одесса",
"Phone":"(048) 741-16-05",
"Email":"[email protected]",
"ICQ":"565 503 431",
"Mobile":"067-511-02-89",
"Address":"г. Одесса, ул. Атамана Чепиги, 29/1"
},
"geometry":{
"type":"MultiPolygon",
"coordinates":[[[[30.139,45.82],[29.908,45.667],[29.808,45.614],[29.731,45.591],[29.781,45.611],[29.802,45.622],[29.81,45.632],[29.815,45.641],[29.828,45.645],[29.843,45.646],[29.857,45.649],[29.873,45.658],[29.902,45.681],[29.919,45.691],[30.076,45.792],[30.139,45.82]]],[[[30.139,45.82],[30.141,45.833],[30.135,45.889],[30.128,45.891],[30.119,45.885],[30.111,45.875],[30.106,45.864],[30.102,45.837],[30.101,45.83],[30.097,45.824],[30.097,45.818],[30.095,45.815],[30.087,45.814],[30.085,45.816],[30.079,45.819],[30.073,45.821],[30.07,45.817],[30.061,45.814],[30.015,45.84],[29.991,45.847],[29.969,45.839],[29.961,45.819],[29.958,45.795],[29.953,45.772],[29.943,45.784],[29.933,45.793],[29.933,45.8],[29.939,45.811],[29.935,45.816],[29.926,45.814],[29.919,45.8],[29.918,45.783],[29.923,45.77],[29.93,45.759],[29.939,45.752],[29.933,45.724],[29.928,45.734],[29.92,45.741],[29.898,45.752],[29.896,45.755],[29.897,45.76],[29.896,45.764],[29.888,45.765],[29.882,45.763],[29.879,45.758],[29.877,45.754],[29.874,45.752],[29.851,45.751],[29.824,45.748],[29.803,45.738],[29.796,45.717],[29.803,45.704],[29.817,45.698],[29.843,45.691],[29.858,45.68],[29.865,45.672],[29.86,45.669],[29.843,45.664],[29.827,45.654],[29.81,45.649],[29.789,45.655],[29.786,45.649],[29.784,45.647],[29.784,45.644],[29.789,45.636],[29.774,45.63],[29.746,45.623],[29.734,45.614],[29.735,45.641],[29.724,45.667],[29.705,45.689],[29.683,45.697],[29.686,45.704],[29.679,45.752],[29.686,45.768],[29.692,45.775],[29.694,45.781],[29.686,45.793],[29.681,45.798],[29.678,45.8],[29.674,45.802],[29.654,45.814],[29.648,45.819],[29.643,45.827],[29.638,45.826],[29.634,45.821],[29.632,45.814],[29.635,45.807],[29.649,45.794],[29.652,45.789],[29.648,45.781],[29.63,45.764],[29.624,45.752],[29.623,45.736],[29.626,45.728],[29.631,45.722],[29.638,45.71],[29.603,45.691],[29.597,45.652],[29.6,45.605],[29.59,45.559],[29.615,45.55],[29.629,45.547],[29.649,45.546],[29.667,45.548],[29.681,45.555],[29.707,45.573],[29.695,45.562],[29.662,45.526],[29.649,45.518],[29.638,45.514],[29.632,45.505],[29.627,45.495],[29.621,45.491],[29.605,45.487],[29.606,45.478],[29.621,45.454],[29.63,45.447],[29.641,45.442],[29.652,45.443],[29.656,45.452],[29.654,45.464],[29.656,45.474],[29.673,45.477],[29.673,45.454],[29.676,45.45],[29.682,45.45],[29.687,45.454],[29.686,45.457],[29.695,45.456],[29.702,45.457],[29.709,45.453],[29.714,45.436],[29.72,45.451],[29.725,45.468],[29.732,45.476],[29.748,45.464],[29.755,45.447],[29.756,45.428],[29.748,45.414],[29.728,45.416],[29.742,45.405],[29.75,45.386],[29.754,45.364],[29.757,45.321],[29.755,45.313],[29.752,45.304],[29.743,45.291],[29.741,45.282],[29.73,45.258],[29.728,45.248],[29.729,45.239],[29.73,45.238],[29.728,45.237],[29.709,45.223],[29.693,45.217],[29.675,45.214],[29.659,45.216],[29.659,45.217],[29.664,45.224],[29.666,45.231],[29.666,45.231],[29.665,45.238],[29.659,45.244],[29.659,45.245],[29.672,45.273],[29.672,45.273],[29.667,45.312],[29.65,45.346],[29.628,45.361],[29.616,45.366],[29.569,45.395],[29.43,45.431],[29.353,45.436],[29.344,45.438],[29.333,45.442],[29.322,45.444],[29.313,45.44],[29.307,45.434],[29.299,45.429],[29.29,45.425],[29.281,45.423],[29.261,45.422],[29.244,45.425],[29.228,45.424],[29.206,45.416],[29.191,45.407],[29.183,45.399],[29.179,45.392],[29.174,45.389],[29.15,45.388],[29.142,45.385],[29.127,45.375],[29.11,45.369],[29.069,45.361],[29.018,45.331],[29.004,45.326],[28.982,45.326],[28.973,45.324],[28.966,45.32],[28.96,45.312],[28.957,45.292],[28.953,45.285],[28.93,45.279],[28.91,45.288],[28.893,45.3],[28.881,45.307],[28.858,45.309],[28.832,45.323],[28.816,45.326],[28.789,45.322],[28.788,45.307],[28.788,45.307],[28.79,45.292],[28.79,45.292],[28.761,45.282],[28.759,45.275],[28.759,45.274],[28.762,45.265],[28.767,45.258],[28.774,45.254],[28.802,45.244],[28.802,45.244],[28.791,45.235],[28.778,45.231],[28.747,45.231],[28.71,45.227],[28.577,45.248],[28.494,45.279],[28.405,45.295],[28.37,45.31],[28.353,45.313],[28.33,45.323],[28.31,45.348],[28.281,45.402],[28.281,45.402],[28.286,45.422],[28.286,45.422],[28.267,45.441],[28.237,45.452],[28.216,45.451],[28.213,45.451],[28.199,45.462],[28.199,45.462],[28.201,45.469],[28.208,45.482],[28.217,45.494],[28.217,45.494],[28.217,45.494],[28.217,45.494],[28.27,45.522],[28.27,45.522],[28.27,45.522],[28.342,45.518],[28.417,45.504],[28.481,45.502],[28.502,45.509],[28.502,45.509],[28.506,45.521],[28.5,45.555],[28.498,45.557],[28.498,45.559],[28.504,45.568],[28.51,45.571],[28.51,45.571],[28.536,45.58],[28.537,45.58],[28.523,45.594],[28.518,45.607],[28.517,45.621],[28.511,45.635],[28.498,45.645],[28.483,45.651],[28.474,45.658],[28.481,45.67],[28.504,45.694],[28.515,45.702],[28.515,45.702],[28.532,45.71],[28.561,45.717],[28.561,45.717],[28.567,45.725],[28.56,45.744],[28.576,45.762],[28.576,45.762],[28.643,45.767],[28.643,45.767],[28.648,45.769],[28.669,45.778],[28.669,45.778],[28.673,45.787],[28.672,45.798],[28.669,45.807],[28.669,45.812],[28.669,45.812],[28.671,45.813],[28.677,45.817],[28.677,45.817],[28.706,45.821],[28.725,45.829],[28.725,45.829],[28.738,45.838],[28.745,45.851],[28.746,45.871],[28.742,45.888],[28.728,45.922],[28.729,45.939],[28.74,45.954],[28.74,45.954],[28.757,45.962],[28.932,45.994],[28.956,46.002],[28.957,46.002],[28.959,46.021],[28.941,46.065],[28.939,46.09],[28.946,46.106],[28.98,46.132],[29.003,46.159],[29.015,46.183],[29.01,46.205],[28.951,46.243],[28.95,46.243],[28.933,46.259],[28.933,46.273],[28.94,46.287],[28.946,46.305],[28.945,46.321],[28.927,46.368],[28.919,46.405],[28.925,46.433],[28.946,46.455],[29.001,46.481],[29.02,46.49],[29.056,46.499],[29.075,46.504],[29.147,46.532],[29.162,46.538],[29.162,46.538],[29.183,46.538],[29.184,46.538],[29.2,46.524],[29.206,46.503],[29.207,46.418],[29.205,46.406],[29.199,46.397],[29.19,46.388],[29.183,46.378],[29.183,46.368],[29.2,46.357],[29.222,46.367],[29.223,46.367],[29.259,46.395],[29.259,46.395],[29.271,46.398],[29.278,46.396],[29.283,46.398],[29.283,46.398],[29.29,46.411],[29.29,46.42],[29.286,46.44],[29.289,46.452],[29.306,46.472],[29.306,46.472],[29.32,46.469],[29.344,46.435],[29.362,46.416],[29.374,46.417],[29.374,46.417],[29.418,46.463],[29.436,46.477],[29.437,46.477],[29.448,46.481],[29.457,46.485],[29.457,46.485],[29.481,46.482],[29.486,46.476],[29.488,46.47],[29.486,46.463],[29.481,46.456],[29.475,46.448],[29.473,46.44],[29.475,46.433],[29.481,46.425],[29.496,46.421],[29.527,46.417],[29.541,46.413],[29.555,46.405],[29.569,46.383],[29.583,46.37],[29.598,46.363],[29.615,46.362],[29.632,46.366],[29.632,46.366],[29.645,46.376],[29.653,46.392],[29.648,46.417],[29.654,46.423],[29.654,46.423],[29.682,46.423],[29.702,46.429],[29.703,46.429],[29.713,46.443],[29.714,46.471],[29.714,46.472],[29.727,46.456],[29.779,46.421],[29.8,46.399],[29.805,46.39],[29.806,46.381],[29.806,46.362],[29.808,46.355],[29.828,46.34],[29.847,46.342],[29.848,46.342],[29.884,46.364],[29.884,46.365],[29.902,46.372],[29.918,46.374],[30.037,46.369],[30.081,46.375],[30.081,46.375],[30.107,46.392],[30.131,46.423],[30.118,46.429],[30.102,46.431],[30.087,46.429],[30.087,46.429],[30.077,46.423],[30.077,46.423],[30.06,46.437],[30.014,46.462],[30.021,46.471],[30.009,46.488],[30.003,46.495],[29.995,46.499],[29.989,46.499],[29.989,46.499],[29.981,46.496],[29.977,46.494],[29.97,46.492],[29.967,46.494],[29.962,46.504],[29.96,46.506],[29.916,46.519],[29.902,46.531],[29.898,46.553],[29.898,46.553],[29.916,46.555],[29.938,46.558],[29.938,46.558],[29.949,46.579],[29.947,46.589],[29.935,46.609],[29.931,46.62],[29.932,46.633],[29.935,46.642],[29.94,46.651],[29.944,46.663],[29.952,46.725],[29.951,46.743],[29.946,46.751],[29.935,46.766],[29.932,46.773],[29.93,46.782],[29.93,46.803],[29.928,46.81],[29.917,46.814],[29.907,46.811],[29.906,46.811],[29.898,46.807],[29.898,46.807],[29.889,46.808],[29.885,46.813],[29.877,46.831],[29.872,46.838],[29.843,46.854],[29.815,46.857],[29.786,46.855],[29.754,46.858],[29.736,46.868],[29.712,46.894],[29.696,46.905],[29.681,46.909],[29.648,46.911],[29.632,46.915],[29.623,46.92],[29.607,46.932],[29.598,46.936],[29.573,46.934],[29.567,46.935],[29.558,46.946],[29.559,46.959],[29.565,46.975],[29.572,47.012],[29.583,47.023],[29.595,47.033],[29.603,47.046],[29.602,47.061],[29.595,47.075],[29.583,47.086],[29.57,47.092],[29.551,47.091],[29.551,47.09],[29.539,47.079],[29.531,47.066],[29.52,47.06],[29.52,47.06],[29.511,47.066],[29.481,47.106],[29.478,47.109],[29.478,47.112],[29.478,47.115],[29.481,47.118],[29.481,47.118],[29.508,47.12],[29.53,47.124],[29.53,47.124],[29.545,47.136],[29.55,47.161],[29.54,47.213],[29.544,47.235],[29.544,47.235],[29.568,47.243],[29.568,47.243],[29.58,47.261],[29.579,47.284],[29.57,47.307],[29.556,47.324],[29.54,47.335],[29.521,47.339],[29.501,47.34],[29.481,47.339],[29.481,47.339],[29.47,47.323],[29.466,47.308],[29.459,47.294],[29.443,47.284],[29.441,47.282],[29.425,47.279],[29.409,47.28],[29.394,47.285],[29.381,47.293],[29.367,47.309],[29.364,47.323],[29.364,47.337],[29.359,47.353],[29.346,47.366],[29.33,47.371],[29.314,47.373],[29.301,47.379],[29.292,47.389],[29.288,47.401],[29.281,47.412],[29.25,47.426],[29.232,47.447],[29.218,47.452],[29.202,47.447],[29.202,47.447],[29.192,47.436],[29.192,47.436],[29.186,47.433],[29.182,47.43],[29.182,47.43],[29.164,47.44],[29.155,47.45],[29.14,47.481],[29.13,47.493],[29.13,47.493],[29.13,47.493],[29.13,47.494],[29.117,47.534],[29.13,47.56],[29.156,47.583],[29.182,47.614],[29.192,47.651],[29.191,47.687],[29.197,47.718],[29.226,47.744],[29.238,47.756],[29.234,47.767],[29.222,47.775],[29.187,47.784],[29.178,47.79],[29.177,47.801],[29.186,47.819],[29.199,47.83],[29.217,47.843],[29.232,47.857],[29.236,47.871],[29.226,47.876],[29.186,47.884],[29.172,47.891],[29.164,47.906],[29.156,47.94],[29.148,47.956],[29.136,47.969],[29.124,47.976],[29.11,47.98],[29.093,47.981],[29.061,47.97],[29.061,47.97],[29.017,47.931],[29.017,47.931],[28.98,47.927],[28.95,47.935],[28.915,47.953],[28.882,47.977],[28.862,48.001],[28.88,48.011],[28.964,48.036],[28.986,48.046],[28.997,48.057],[29.01,48.067],[29.018,48.071],[29.035,48.077],[29.046,48.083],[29.049,48.086],[29.05,48.089],[29.05,48.093],[29.05,48.097],[29.042,48.121],[29.041,48.128],[29.042,48.132],[29.045,48.134],[29.049,48.136],[29.078,48.144],[29.086,48.146],[29.093,48.146],[29.104,48.144],[29.11,48.141],[29.114,48.138],[29.117,48.136],[29.136,48.125],[29.149,48.119],[29.153,48.117],[29.162,48.11],[29.17,48.106],[29.223,48.092],[29.241,48.085],[29.246,48.085],[29.338,48.086],[29.435,48.113],[29.45,48.114],[29.454,48.111],[29.458,48.109],[29.497,48.093],[29.51,48.09],[29.586,48.087],[29.642,48.091],[29.651,48.093],[29.656,48.094],[29.661,48.093],[29.67,48.09],[29.675,48.09],[29.68,48.092],[29.697,48.126],[29.698,48.132],[29.698,48.136],[29.695,48.139],[29.693,48.142],[29.672,48.16],[29.667,48.166],[29.666,48.169],[29.667,48.173],[29.671,48.177],[29.682,48.182],[29.692,48.181],[29.698,48.18],[29.709,48.18],[29.717,48.182],[29.775,48.203],[29.8,48.206],[29.816,48.21],[29.82,48.211],[29.826,48.21],[29.831,48.208],[29.849,48.199],[29.853,48.196],[29.856,48.193],[29.868,48.183],[29.872,48.181],[29.877,48.18],[29.882,48.18],[29.888,48.182],[29.892,48.185],[29.915,48.214],[29.921,48.219],[29.924,48.222],[29.929,48.222],[29.935,48.221],[29.948,48.213],[29.954,48.21],[29.959,48.21],[29.968,48.211],[29.981,48.217],[29.984,48.218],[29.997,48.221],[30.013,48.199],[30.028,48.175],[30.048,48.155],[30.083,48.144],[30.293,48.136],[30.294,48.118],[30.295,48.113],[30.299,48.11],[30.312,48.105],[30.316,48.102],[30.317,48.097],[30.315,48.093],[30.312,48.09],[30.307,48.089],[30.302,48.09],[30.296,48.091],[30.291,48.092],[30.285,48.091],[30.282,48.089],[30.275,48.084],[30.271,48.083],[30.256,48.084],[30.222,48.074],[30.218,48.072],[30.211,48.068],[30.209,48.065],[30.21,48.062],[30.222,48.057],[30.226,48.053],[30.226,48.048],[30.226,48.035],[30.226,48.031],[30.226,48.028],[30.225,48.024],[30.217,48.016],[30.216,48.012],[30.215,48.008],[30.216,47.999],[30.217,47.996],[30.22,47.993],[30.227,47.99],[30.251,47.986],[30.256,47.984],[30.259,47.981],[30.263,47.979],[30.273,47.968],[30.293,47.953],[30.296,47.95],[30.298,47.945],[30.322,47.837],[30.323,47.834],[30.325,47.83],[30.327,47.826],[30.331,47.821],[30.347,47.811],[30.358,47.806],[30.384,47.799],[30.39,47.797],[30.395,47.792],[30.399,47.777],[30.399,47.772],[30.398,47.77],[30.396,47.768],[30.394,47.765],[30.383,47.758],[30.38,47.755],[30.378,47.752],[30.379,47.747],[30.382,47.743],[30.395,47.734],[30.408,47.727],[30.411,47.724],[30.414,47.72],[30.415,47.713],[30.413,47.708],[30.411,47.704],[30.404,47.695],[30.402,47.691],[30.402,47.687],[30.402,47.683],[30.404,47.679],[30.41,47.666],[30.414,47.657],[30.417,47.653],[30.42,47.648],[30.43,47.643],[30.454,47.635],[30.458,47.633],[30.468,47.625],[30.471,47.623],[30.476,47.622],[30.522,47.628],[30.527,47.628],[30.531,47.626],[30.535,47.624],[30.54,47.62],[30.544,47.618],[30.55,47.618],[30.555,47.618],[30.563,47.621],[30.578,47.629],[30.588,47.636],[30.593,47.638],[30.598,47.637],[30.604,47.636],[30.617,47.629],[30.623,47.627],[30.63,47.626],[30.666,47.626],[30.671,47.623],[30.675,47.619],[30.679,47.601],[30.685,47.593],[30.69,47.59],[30.695,47.588],[30.699,47.588],[30.703,47.59],[30.706,47.592],[30.711,47.599],[30.715,47.616],[30.717,47.62],[30.72,47.623],[30.724,47.625],[30.78,47.634],[30.785,47.63],[30.788,47.624],[30.791,47.606],[30.79,47.598],[30.788,47.592],[30.786,47.589],[30.786,47.587],[30.79,47.584],[30.825,47.584],[30.832,47.581],[30.838,47.575],[30.849,47.561],[30.863,47.549],[30.868,47.543],[30.872,47.522],[30.872,47.513],[30.87,47.509],[30.868,47.505],[30.865,47.503],[30.858,47.5],[30.857,47.5],[30.856,47.494],[30.856,47.487],[30.855,47.476],[30.853,47.467],[30.846,47.451],[30.834,47.43],[30.839,47.413],[30.886,47.317],[30.902,47.291],[30.915,47.277],[30.97,47.27],[31.011,47.269],[31.014,47.268],[31.018,47.266],[31.029,47.253],[31.034,47.251],[31.04,47.251],[31.07,47.26],[31.15,47.272],[31.154,47.272],[31.156,47.27],[31.158,47.269],[31.16,47.267],[31.168,47.255],[31.17,47.249],[31.172,47.241],[31.169,47.234],[31.166,47.229],[31.152,47.219],[31.148,47.217],[31.139,47.215],[31.129,47.213],[31.125,47.212],[31.121,47.21],[31.118,47.207],[31.116,47.199],[31.115,47.191],[31.115,47.186],[31.116,47.182],[31.12,47.179],[31.125,47.176],[31.13,47.174],[31.154,47.17],[31.163,47.167],[31.174,47.16],[31.177,47.159],[31.182,47.158],[31.187,47.158],[31.191,47.159],[31.204,47.164],[31.213,47.166],[31.224,47.166],[31.228,47.163],[31.231,47.158],[31.236,47.149],[31.24,47.144],[31.244,47.141],[31.255,47.134],[31.257,47.131],[31.26,47.128],[31.263,47.123],[31.266,47.115],[31.269,47.11],[31.273,47.107],[31.279,47.106],[31.295,47.105],[31.3,47.104],[31.304,47.102],[31.306,47.098],[31.307,47.09],[31.296,47.074],[31.297,47.063],[31.296,47.056],[31.295,47.05],[31.288,47.044],[31.283,47.041],[31.278,47.036],[31.273,47.029],[31.268,47.014],[31.262,47.002],[31.26,47],[31.257,46.998],[31.236,46.992],[31.232,46.989],[31.229,46.986],[31.224,46.977],[31.22,46.975],[31.215,46.974],[31.154,46.972],[31.144,46.97],[31.14,46.969],[31.135,46.97],[31.128,46.974],[31.124,46.975],[31.119,46.976],[31.114,46.975],[31.109,46.974],[31.106,46.971],[31.096,46.959],[31.093,46.957],[31.088,46.956],[31.037,46.953],[31.034,46.952],[31.032,46.948],[31.033,46.939],[31.041,46.917],[31.05,46.904],[31.056,46.897],[31.099,46.877],[31.105,46.873],[31.113,46.864],[31.124,46.847],[31.127,46.843],[31.13,46.841],[31.144,46.836],[31.162,46.825],[31.165,46.816],[31.172,46.737],[31.176,46.727],[31.178,46.721],[31.178,46.715],[31.175,46.708],[31.172,46.703],[31.172,46.684],[31.188,46.629],[31.187,46.629],[31.16,46.629],[31.108,46.618],[31.055,46.613],[31.013,46.603],[30.992,46.601],[30.983,46.598],[30.959,46.583],[30.951,46.584],[30.939,46.588],[30.926,46.584],[30.867,46.556],[30.855,46.553],[30.813,46.56],[30.803,46.56],[30.791,46.553],[30.761,46.524],[30.755,46.516],[30.758,46.503],[30.776,46.478],[30.782,46.457],[30.786,46.457],[30.794,46.452],[30.798,46.447],[30.793,46.444],[30.791,46.442],[30.787,46.437],[30.784,46.431],[30.775,46.401],[30.773,46.396],[30.732,46.359],[30.715,46.348],[30.661,46.351],[30.652,46.345],[30.657,46.339],[30.68,46.328],[30.687,46.32],[30.687,46.309],[30.683,46.3],[30.654,46.26],[30.584,46.19],[30.562,46.162],[30.548,46.148],[30.532,46.142],[30.523,46.134],[30.504,46.094],[30.494,46.081],[30.371,45.998],[30.262,45.896],[30.205,45.856],[30.139,45.82]]]]
}
},
{
"type":"Feature",
"id":"02",
"properties":{
"name":"Полтавская область",
"Manager":"Региональный менеджер<br />Серый Павел",
"Phone":"(0512) 50-02-26 (многоканальный)",
"Email":"[email protected]",
"ICQ":"579 493 488",
"Mobile":"067-512-17-01"
},
"geometry":{
"type":"Polygon",
"coordinates":[[[34.908,50.146],[34.917,50.132],[34.918,50.077],[34.916,50.064],[34.913,50.056],[34.907,50.05],[34.862,50.022],[34.853,50.013],[34.843,50.002],[34.841,50],[34.857,49.973],[34.858,49.969],[34.864,49.942],[34.869,49.936],[34.874,49.932],[34.878,49.93],[34.888,49.918],[34.893,49.915],[34.899,49.912],[34.917,49.909],[34.922,49.907],[34.926,49.905],[34.936,49.898],[34.944,49.893],[34.949,49.892],[34.955,49.89],[34.967,49.889],[35.009,49.889],[35.015,49.887],[35.022,49.883],[35.036,49.871],[35.041,49.868],[35.103,49.848],[35.115,49.847],[35.121,49.847],[35.126,49.848],[35.138,49.854],[35.143,49.855],[35.148,49.855],[35.154,49.855],[35.16,49.854],[35.166,49.851],[35.183,49.841],[35.188,49.836],[35.191,49.832],[35.193,49.825],[35.194,49.818],[35.19,49.79],[35.191,49.775],[35.192,49.77],[35.198,49.754],[35.202,49.747],[35.206,49.743],[35.21,49.74],[35.23,49.732],[35.234,49.728],[35.236,49.724],[35.237,49.711],[35.239,49.705],[35.244,49.701],[35.249,49.699],[35.277,49.696],[35.28,49.693],[35.282,49.689],[35.283,49.684],[35.286,49.681],[35.291,49.679],[35.342,49.669],[35.354,49.668],[35.36,49.668],[35.363,49.67],[35.366,49.674],[35.37,49.682],[35.373,49.685],[35.376,49.687],[35.381,49.688],[35.412,49.688],[35.42,49.686],[35.424,49.684],[35.426,49.681],[35.428,49.67],[35.429,49.667],[35.428,49.664],[35.425,49.662],[35.417,49.659],[35.414,49.657],[35.413,49.654],[35.413,49.65],[35.416,49.644],[35.42,49.637],[35.464,49.582],[35.473,49.569],[35.475,49.56],[35.471,49.558],[35.466,49.557],[35.446,49.555],[35.398,49.555],[35.393,49.553],[35.391,49.551],[35.392,49.544],[35.396,49.541],[35.416,49.534],[35.433,49.522],[35.454,49.514],[35.465,49.507],[35.469,49.501],[35.469,49.498],[35.467,49.496],[35.465,49.494],[35.46,49.493],[35.443,49.493],[35.438,49.492],[35.435,49.489],[35.429,49.483],[35.425,49.481],[35.419,49.481],[35.363,49.491],[35.357,49.491],[35.352,49.49],[35.342,49.488],[35.327,49.485],[35.323,49.483],[35.32,49.481],[35.317,49.477],[35.315,49.473],[35.314,49.468],[35.314,49.461],[35.316,49.455],[35.323,49.446],[35.326,49.439],[35.331,49.435],[35.343,49.43],[35.351,49.427],[35.353,49.423],[35.353,49.42],[35.35,49.415],[35.349,49.411],[35.36,49.4],[35.361,49.396],[35.361,49.392],[35.335,49.37],[35.309,49.342],[35.279,49.32],[35.263,49.312],[35.21,49.294],[35.188,49.292],[35.09,49.297],[35.084,49.298],[35.073,49.302],[35.062,49.308],[35.058,49.311],[35.053,49.316],[35.049,49.318],[35.044,49.32],[35.039,49.321],[35.033,49.32],[35.029,49.319],[35.025,49.317],[34.973,49.281],[34.964,49.272],[34.958,49.262],[34.954,49.253],[34.953,49.247],[34.954,49.243],[34.955,49.24],[34.975,49.217],[34.978,49.211],[34.983,49.2],[34.987,49.189],[34.99,49.177],[34.988,49.17],[34.984,49.164],[34.954,49.177],[34.944,49.18],[34.932,49.183],[34.926,49.183],[34.92,49.182],[34.914,49.179],[34.906,49.173],[34.902,49.168],[34.9,49.163],[34.896,49.155],[34.894,49.151],[34.891,49.148],[34.886,49.146],[34.879,49.144],[34.867,49.145],[34.861,49.147],[34.857,49.15],[34.857,49.153],[34.858,49.156],[34.861,49.159],[34.868,49.163],[34.871,49.166],[34.871,49.169],[34.869,49.171],[34.865,49.173],[34.837,49.181],[34.831,49.181],[34.825,49.18],[34.817,49.175],[34.809,49.174],[34.784,49.175],[34.778,49.174],[34.77,49.171],[34.763,49.167],[34.752,49.16],[34.742,49.152],[34.736,49.149],[34.726,49.146],[34.645,49.13],[34.61,49.127],[34.43,49.075],[34.42,49.078],[34.414,49.078],[34.408,49.077],[34.405,49.072],[34.405,49.068],[34.407,49.061],[34.406,49.057],[34.405,49.054],[34.403,49.05],[34.39,49.038],[34.376,49.028],[34.351,49.014],[34.347,49.012],[34.344,49.009],[34.343,49.005],[34.344,49.003],[34.345,49.001],[34.346,49],[34.347,49],[34.353,48.999],[34.363,48.999],[34.367,48.997],[34.369,48.995],[34.368,48.991],[34.364,48.988],[34.357,48.986],[34.344,48.985],[34.325,48.981],[34.314,48.975],[34.308,48.971],[34.304,48.967],[34.301,48.964],[34.287,48.936],[34.278,48.922],[34.276,48.918],[34.274,48.914],[34.272,48.902],[34.272,48.898],[34.273,48.894],[34.274,48.891],[34.277,48.888],[34.306,48.87],[34.309,48.867],[34.311,48.864],[34.313,48.861],[34.314,48.858],[34.314,48.854],[34.316,48.84],[34.314,48.836],[34.31,48.832],[34.299,48.828],[34.278,48.813],[34.276,48.81],[34.275,48.806],[34.275,48.802],[34.275,48.799],[34.276,48.795],[34.28,48.793],[34.284,48.791],[34.289,48.789],[34.293,48.787],[34.295,48.784],[34.295,48.781],[34.294,48.778],[34.291,48.775],[34.288,48.773],[34.266,48.759],[34.237,48.746],[34.224,48.748],[34.193,48.774],[34.162,48.784],[34.11,48.79],[34.093,48.795],[34.087,48.798],[34.075,48.805],[34.069,48.808],[34.062,48.808],[34.047,48.807],[34.04,48.808],[33.928,48.86],[33.919,48.866],[33.9,48.886],[33.892,48.892],[33.876,48.897],[33.859,48.9],[33.825,48.9],[33.807,48.903],[33.778,48.923],[33.747,48.919],[33.745,48.916],[33.739,48.913],[33.73,48.911],[33.711,48.91],[33.701,48.908],[33.695,48.906],[33.692,48.903],[33.69,48.899],[33.685,48.882],[33.683,48.877],[33.68,48.873],[33.674,48.869],[33.669,48.869],[33.667,48.871],[33.666,48.875],[33.665,48.878],[33.663,48.885],[33.654,48.896],[33.652,48.899],[33.641,48.906],[33.633,48.911],[33.597,48.922],[33.588,48.923],[33.581,48.921],[33.571,48.909],[33.566,48.906],[33.56,48.904],[33.548,48.902],[33.543,48.903],[33.54,48.906],[33.535,48.91],[33.525,48.916],[33.481,48.927],[33.474,48.931],[33.467,48.936],[33.456,48.942],[33.425,48.951],[33.411,48.954],[33.401,48.953],[33.398,48.951],[33.395,48.947],[33.391,48.943],[33.383,48.94],[33.379,48.94],[33.376,48.941],[33.374,48.943],[33.371,48.946],[33.365,48.949],[33.349,48.957],[33.345,48.96],[33.342,48.962],[33.34,48.965],[33.323,48.981],[33.319,48.984],[33.304,48.991],[33.301,48.993],[33.299,48.995],[33.301,48.997],[33.311,49.001],[33.314,49.003],[33.316,49.005],[33.319,49.008],[33.32,49.012],[33.319,49.016],[33.318,49.023],[33.319,49.026],[33.323,49.027],[33.338,49.029],[33.343,49.031],[33.346,49.033],[33.347,49.036],[33.346,49.04],[33.342,49.044],[33.317,49.049],[33.309,49.051],[33.305,49.055],[33.301,49.063],[33.297,49.065],[33.204,49.071],[33.197,49.075],[33.192,49.078],[33.181,49.09],[33.179,49.092],[33.178,49.095],[33.174,49.101],[33.156,49.121],[33.149,49.126],[33.142,49.13],[33.038,49.182],[32.789,49.262],[32.793,49.309],[32.792,49.326],[32.789,49.334],[32.748,49.406],[32.743,49.412],[32.704,49.446],[32.697,49.45],[32.687,49.46],[32.679,49.471],[32.676,49.477],[32.676,49.482],[32.715,49.525],[32.719,49.528],[32.722,49.53],[32.726,49.532],[32.748,49.541],[32.751,49.543],[32.754,49.547],[32.757,49.553],[32.76,49.564],[32.76,49.571],[32.759,49.576],[32.752,49.594],[32.749,49.598],[32.745,49.601],[32.719,49.613],[32.715,49.616],[32.711,49.62],[32.706,49.627],[32.704,49.632],[32.701,49.661],[32.697,49.667],[32.693,49.672],[32.584,49.699],[32.579,49.702],[32.571,49.706],[32.569,49.71],[32.568,49.714],[32.57,49.74],[32.57,49.746],[32.568,49.757],[32.566,49.763],[32.562,49.767],[32.53,49.783],[32.525,49.784],[32.52,49.784],[32.512,49.781],[32.507,49.78],[32.504,49.78],[32.5,49.782],[32.498,49.784],[32.494,49.789],[32.487,49.795],[32.473,49.805],[32.469,49.807],[32.464,49.808],[32.459,49.808],[32.454,49.807],[32.445,49.804],[32.44,49.803],[32.435,49.804],[32.431,49.805],[32.427,49.807],[32.408,49.822],[32.373,49.864],[32.366,49.874],[32.364,49.881],[32.366,49.885],[32.369,49.887],[32.373,49.889],[32.377,49.89],[32.383,49.89],[32.392,49.887],[32.396,49.887],[32.4,49.888],[32.404,49.89],[32.407,49.893],[32.409,49.899],[32.407,49.916],[32.406,49.922],[32.407,49.926],[32.415,49.947],[32.416,49.952],[32.417,49.958],[32.416,49.967],[32.413,49.972],[32.409,49.976],[32.385,49.985],[32.381,49.987],[32.374,49.994],[32.329,50.052],[32.324,50.053],[32.319,50.053],[32.304,50.05],[32.299,50.05],[32.293,50.05],[32.27,50.056],[32.263,50.059],[32.255,50.063],[32.252,50.067],[32.232,50.112],[32.231,50.119],[32.234,50.12],[32.268,50.128],[32.272,50.131],[32.275,50.136],[32.274,50.148],[32.272,50.153],[32.27,50.157],[32.263,50.161],[32.258,50.162],[32.254,50.162],[32.251,50.161],[32.245,50.158],[32.238,50.154],[32.23,50.15],[32.221,50.147],[32.216,50.148],[32.209,50.15],[32.192,50.166],[32.19,50.168],[32.186,50.169],[32.175,50.172],[32.155,50.175],[32.148,50.177],[32.141,50.182],[32.137,50.187],[32.135,50.195],[32.132,50.199],[32.129,50.202],[32.125,50.205],[32.112,50.217],[32.106,50.227],[32.1,50.233],[32.095,50.237],[32.089,50.238],[32.079,50.237],[32.069,50.239],[32.096,50.263],[32.098,50.267],[32.101,50.272],[32.1,50.275],[32.098,50.279],[32.095,50.282],[32.093,50.286],[32.095,50.289],[32.099,50.291],[32.114,50.306],[32.139,50.35],[32.199,50.35],[32.204,50.349],[32.212,50.344],[32.217,50.343],[32.224,50.343],[32.232,50.345],[32.243,50.351],[32.254,50.358],[32.274,50.38],[32.281,50.385],[32.284,50.387],[32.288,50.389],[32.35,50.408],[32.376,50.409],[32.383,50.408],[32.386,50.406],[32.393,50.401],[32.396,50.398],[32.403,50.393],[32.407,50.392],[32.413,50.393],[32.443,50.407],[32.45,50.408],[32.464,50.408],[32.472,50.408],[32.477,50.406],[32.48,50.404],[32.483,50.402],[32.487,50.396],[32.488,50.392],[32.49,50.389],[32.491,50.385],[32.494,50.379],[32.498,50.373],[32.5,50.372],[32.503,50.37],[32.526,50.366],[32.628,50.363],[32.667,50.368],[32.676,50.368],[32.682,50.366],[32.684,50.362],[32.686,50.36],[32.691,50.358],[32.727,50.358],[32.812,50.388],[32.828,50.391],[32.863,50.393],[32.873,50.395],[32.878,50.397],[32.883,50.401],[32.889,50.41],[32.895,50.421],[32.899,50.425],[32.906,50.429],[32.929,50.438],[32.946,50.442],[32.951,50.444],[32.955,50.448],[32.962,50.46],[32.967,50.464],[32.973,50.468],[32.985,50.474],[33.009,50.48],[33.024,50.492],[33.062,50.538],[33.098,50.525],[33.194,50.517],[33.206,50.518],[33.209,50.521],[33.212,50.524],[33.214,50.528],[33.216,50.531],[33.223,50.536],[33.234,50.54],[33.261,50.546],[33.275,50.547],[33.285,50.546],[33.289,50.544],[33.292,50.542],[33.298,50.538],[33.306,50.535],[33.333,50.528],[33.34,50.525],[33.645,50.485],[33.721,50.463],[33.731,50.462],[33.738,50.462],[33.748,50.47],[33.776,50.474],[33.817,50.476],[33.833,50.479],[33.842,50.482],[33.841,50.486],[33.838,50.488],[33.807,50.5],[33.806,50.501],[33.805,50.502],[33.804,50.505],[33.806,50.507],[33.809,50.51],[33.813,50.512],[33.865,50.527],[33.898,50.533],[33.907,50.532],[33.913,50.53],[33.925,50.52],[33.938,50.51],[33.971,50.493],[34.048,50.471],[34.055,50.471],[34.06,50.472],[34.062,50.475],[34.061,50.479],[34.06,50.482],[34.06,50.486],[34.061,50.489],[34.065,50.492],[34.07,50.495],[34.079,50.497],[34.088,50.497],[34.108,50.492],[34.114,50.494],[34.117,50.496],[34.118,50.5],[34.118,50.501],[34.116,50.508],[34.117,50.511],[34.122,50.514],[34.143,50.517],[34.149,50.519],[34.156,50.522],[34.165,50.525],[34.186,50.528],[34.195,50.531],[34.201,50.534],[34.203,50.538],[34.207,50.542],[34.212,50.542],[34.246,50.535],[34.25,50.533],[34.252,50.53],[34.253,50.526],[34.249,50.506],[34.25,50.455],[34.252,50.448],[34.254,50.442],[34.259,50.436],[34.282,50.415],[34.316,50.39],[34.36,50.366],[34.366,50.361],[34.372,50.355],[34.376,50.349],[34.377,50.346],[34.378,50.343],[34.377,50.339],[34.376,50.335],[34.367,50.325],[34.363,50.317],[34.362,50.313],[34.362,50.309],[34.365,50.284],[34.367,50.277],[34.369,50.273],[34.373,50.269],[34.381,50.264],[34.387,50.263],[34.391,50.264],[34.394,50.267],[34.398,50.271],[34.403,50.273],[34.414,50.275],[34.421,50.274],[34.426,50.272],[34.429,50.269],[34.431,50.266],[34.432,50.263],[34.433,50.256],[34.434,50.252],[34.436,50.249],[34.447,50.243],[34.449,50.24],[34.45,50.236],[34.453,50.231],[34.459,50.226],[34.496,50.209],[34.499,50.207],[34.5,50.206],[34.502,50.203],[34.506,50.197],[34.507,50.194],[34.508,50.191],[34.508,50.187],[34.507,50.183],[34.506,50.179],[34.504,50.175],[34.501,50.173],[34.499,50.171],[34.497,50.169],[34.493,50.168],[34.488,50.167],[34.466,50.165],[34.462,50.163],[34.459,50.16],[34.456,50.147],[34.457,50.142],[34.459,50.137],[34.467,50.13],[34.471,50.126],[34.472,50.122],[34.472,50.117],[34.471,50.113],[34.474,50.108],[34.478,50.107],[34.482,50.108],[34.496,50.116],[34.502,50.119],[34.52,50.123],[34.536,50.124],[34.634,50.115],[34.669,50.116],[34.674,50.117],[34.678,50.119],[34.681,50.122],[34.684,50.125],[34.686,50.128],[34.688,50.132],[34.691,50.141],[34.693,50.145],[34.697,50.148],[34.705,50.151],[34.711,50.15],[34.717,50.148],[34.732,50.14],[34.739,50.138],[34.745,50.138],[34.763,50.144],[34.787,50.157],[34.814,50.16],[34.908,50.146]]]
}
},
{
"type":"Feature",
"id":"02",
"properties":{
"name":"Ровненская область",
"Manager":"Региональный менеджер<br />Биднин Максим",
"Phone":"(0512) 50-02-26 (многоканальный)",
"Email":"[email protected]",
"ICQ":"266 507 873",
"Mobile":"+38 (067) 512-33-20"
},
"geometry":{
"type":"Polygon",
"coordinates":[[[25.768,51.929],[25.981,51.904],[26.05,51.905],[26.08,51.901],[26.145,51.865],[26.175,51.857],[26.407,51.851],[26.419,51.847],[26.42,51.84],[26.42,51.84],[26.417,51.831],[26.417,51.831],[26.419,51.821],[26.431,51.811],[26.445,51.806],[26.665,51.802],[26.855,51.75],[26.921,51.743],[27.021,51.765],[27.11,51.763],[27.151,51.757],[27.178,51.747],[27.184,51.732],[27.184,51.732],[27.181,51.711],[27.181,51.684],[27.181,51.684],[27.189,51.664],[27.203,51.656],[27.223,51.654],[27.248,51.656],[27.277,51.651],[27.277,51.651],[27.274,51.634],[27.259,51.613],[27.254,51.596],[27.254,51.596],[27.267,51.588],[27.289,51.589],[27.329,51.597],[27.388,51.591],[27.409,51.592],[27.431,51.599],[27.458,51.618],[27.477,51.624],[27.512,51.623],[27.62,51.596],[27.676,51.595],[27.692,51.59],[27.705,51.569],[27.705,51.569],[27.697,51.544],[27.664,51.493],[27.664,51.493],[27.666,51.49],[27.633,51.487],[27.609,51.479],[27.599,51.477],[27.59,51.474],[27.586,51.472],[27.583,51.466],[27.58,51.457],[27.576,51.438],[27.577,51.429],[27.579,51.424],[27.594,51.414],[27.6,51.409],[27.602,51.406],[27.604,51.403],[27.604,51.399],[27.603,51.395],[27.6,51.392],[27.594,51.391],[27.589,51.392],[27.584,51.394],[27.544,51.415],[27.541,51.418],[27.538,51.421],[27.536,51.424],[27.532,51.431],[27.527,51.436],[27.524,51.439],[27.52,51.441],[27.516,51.443],[27.51,51.443],[27.505,51.442],[27.502,51.44],[27.499,51.432],[27.489,51.388],[27.488,51.375],[27.49,51.367],[27.506,51.358],[27.509,51.356],[27.511,51.353],[27.511,51.348],[27.509,51.342],[27.504,51.333],[27.5,51.329],[27.497,51.326],[27.487,51.319],[27.483,51.317],[27.478,51.315],[27.422,51.307],[27.418,51.305],[27.417,51.302],[27.418,51.298],[27.45,51.256],[27.452,51.253],[27.453,51.251],[27.454,51.244],[27.454,51.24],[27.452,51.235],[27.449,51.228],[27.441,51.217],[27.435,51.212],[27.43,51.208],[27.407,51.2],[27.404,51.198],[27.4,51.195],[27.398,51.192],[27.385,51.167],[27.38,51.161],[27.376,51.157],[27.372,51.155],[27.369,51.152],[27.361,51.145],[27.358,51.142],[27.356,51.137],[27.355,51.129],[27.352,51.107],[27.35,51.1],[27.343,51.092],[27.339,51.088],[27.335,51.085],[27.324,51.078],[27.32,51.075],[27.316,51.071],[27.305,51.052],[27.3,51.047],[27.295,51.044],[27.271,51.036],[27.232,51.03],[27.228,51.029],[27.223,51.027],[27.22,51.025],[27.216,51.021],[27.207,51.001],[27.206,51],[27.2,50.996],[27.199,50.994],[27.198,50.991],[27.204,50.982],[27.215,50.97],[27.217,50.965],[27.218,50.96],[27.22,50.95],[27.223,50.946],[27.226,50.942],[27.234,50.938],[27.236,50.935],[27.237,50.931],[27.233,50.925],[27.228,50.922],[27.218,50.919],[27.216,50.916],[27.219,50.911],[27.222,50.907],[27.235,50.896],[27.24,50.89],[27.24,50.883],[27.239,50.873],[27.224,50.825],[27.223,50.819],[27.223,50.812],[27.225,50.801],[27.227,50.795],[27.229,50.791],[27.231,50.788],[27.241,50.776],[27.261,50.757],[27.263,50.754],[27.268,50.748],[27.271,50.741],[27.272,50.737],[27.27,50.73],[27.266,50.72],[27.243,50.682],[27.235,50.673],[27.215,50.657],[27.211,50.653],[27.202,50.634],[27.195,50.624],[27.194,50.622],[27.192,50.618],[27.193,50.614],[27.197,50.605],[27.202,50.601],[27.207,50.598],[27.226,50.591],[27.23,50.589],[27.233,50.587],[27.236,50.583],[27.228,50.568],[27.192,50.541],[27.144,50.548],[27.138,50.551],[27.132,50.555],[27.132,50.559],[27.132,50.564],[27.132,50.569],[27.131,50.574],[27.126,50.582],[27.121,50.585],[27.114,50.587],[27.098,50.587],[27.092,50.585],[27.088,50.583],[27.084,50.58],[27.08,50.573],[27.075,50.561],[27.072,50.559],[27.068,50.557],[27.063,50.555],[27.042,50.551],[27.023,50.546],[27.014,50.542],[26.998,50.533],[26.992,50.527],[26.986,50.524],[26.976,50.519],[26.969,50.518],[26.962,50.517],[26.949,50.519],[26.929,50.526],[26.909,50.532],[26.901,50.532],[26.895,50.531],[26.876,50.52],[26.807,50.501],[26.806,50.5],[26.802,50.496],[26.8,50.493],[26.798,50.489],[26.798,50.485],[26.798,50.481],[26.8,50.474],[26.8,50.47],[26.8,50.466],[26.797,50.461],[26.792,50.459],[26.786,50.459],[26.78,50.459],[26.757,50.466],[26.746,50.467],[26.74,50.465],[26.737,50.461],[26.736,50.457],[26.735,50.449],[26.732,50.444],[26.728,50.439],[26.717,50.433],[26.712,50.428],[26.709,50.424],[26.708,50.42],[26.703,50.414],[26.694,50.407],[26.65,50.384],[26.648,50.381],[26.648,50.377],[26.649,50.371],[26.648,50.368],[26.647,50.365],[26.646,50.362],[26.643,50.359],[26.637,50.356],[26.591,50.334],[26.585,50.329],[26.577,50.32],[26.57,50.31],[26.564,50.306],[26.555,50.3],[26.518,50.284],[26.515,50.281],[26.504,50.27],[26.498,50.265],[26.48,50.254],[26.472,50.25],[26.465,50.248],[26.441,50.247],[26.434,50.247],[26.421,50.25],[26.413,50.25],[26.399,50.249],[26.39,50.246],[26.384,50.244],[26.368,50.235],[26.361,50.23],[26.32,50.189],[26.303,50.176],[26.282,50.167],[26.233,50.152],[26.23,50.182],[26.227,50.186],[26.221,50.191],[26.214,50.194],[26.205,50.199],[26.202,50.204],[26.202,50.209],[26.203,50.213],[26.205,50.217],[26.209,50.224],[26.214,50.23],[26.217,50.233],[26.225,50.239],[26.228,50.242],[26.231,50.249],[26.23,50.253],[26.227,50.257],[26.222,50.262],[26.217,50.262],[26.213,50.261],[26.203,50.254],[26.195,50.25],[26.166,50.242],[26.161,50.241],[26.154,50.242],[26.147,50.243],[26.083,50.262],[26.071,50.265],[26.065,50.265],[26.059,50.265],[26.054,50.264],[26.049,50.263],[26.022,50.253],[26.012,50.254],[25.999,50.256],[25.97,50.263],[25.957,50.264],[25.947,50.265],[25.923,50.253],[25.83,50.188],[25.823,50.184],[25.809,50.179],[25.693,50.173],[25.676,50.171],[25.667,50.167],[25.652,50.157],[25.646,50.154],[25.636,50.151],[25.629,50.151],[25.625,50.152],[25.618,50.158],[25.612,50.161],[25.607,50.161],[25.602,50.16],[25.581,50.146],[25.575,50.143],[25.567,50.141],[25.56,50.141],[25.556,50.143],[25.551,50.145],[25.544,50.148],[25.519,50.152],[25.497,50.159],[25.473,50.163],[25.461,50.164],[25.453,50.163],[25.451,50.16],[25.449,50.156],[25.443,50.141],[25.441,50.132],[25.442,50.129],[25.444,50.125],[25.447,50.123],[25.45,50.12],[25.462,50.114],[25.465,50.112],[25.467,50.109],[25.467,50.105],[25.46,50.096],[25.458,50.092],[25.454,50.088],[25.448,50.083],[25.419,50.072],[25.416,50.069],[25.415,50.066],[25.414,50.062],[25.414,50.058],[25.416,50.05],[25.416,50.046],[25.414,50.037],[25.413,50.033],[25.411,50.028],[25.407,50.028],[25.4,50.032],[25.394,50.035],[25.381,50.037],[25.375,50.035],[25.371,50.032],[25.37,50.028],[25.368,50.013],[25.296,50.041],[25.202,50.095],[25.193,50.103],[25.185,50.128],[25.185,50.132],[25.184,50.14],[25.185,50.157],[25.193,50.182],[25.193,50.187],[25.188,50.192],[25.169,50.207],[25.165,50.213],[25.165,50.217],[25.168,50.22],[25.196,50.239],[25.203,50.244],[25.205,50.247],[25.207,50.25],[25.208,50.256],[25.208,50.263],[25.204,50.277],[25.2,50.284],[25.196,50.288],[25.191,50.29],[25.187,50.292],[25.176,50.294],[25.169,50.295],[25.163,50.294],[25.153,50.292],[25.126,50.282],[25.116,50.28],[25.104,50.279],[25.084,50.281],[25.07,50.285],[25.063,50.295],[25.123,50.331],[25.144,50.347],[25.155,50.358],[25.163,50.362],[25.173,50.364],[25.182,50.366],[25.195,50.37],[25.201,50.376],[25.204,50.381],[25.204,50.385],[25.202,50.389],[25.199,50.391],[25.194,50.393],[25.176,50.395],[25.171,50.397],[25.168,50.399],[25.142,50.427],[25.133,50.435],[25.118,50.444],[25.101,50.452],[25.097,50.455],[25.094,50.458],[25.092,50.462],[25.093,50.465],[25.097,50.467],[25.103,50.467],[25.121,50.465],[25.127,50.465],[25.133,50.466],[25.137,50.468],[25.141,50.47],[25.144,50.473],[25.151,50.48],[25.167,50.498],[25.168,50.5],[25.167,50.503],[25.164,50.505],[25.157,50.51],[25.127,50.524],[25.123,50.527],[25.119,50.532],[25.12,50.536],[25.122,50.54],[25.126,50.544],[25.133,50.549],[25.138,50.552],[25.143,50.553],[25.148,50.553],[25.195,50.545],[25.271,50.54],[25.279,50.541],[25.287,50.543],[25.297,50.549],[25.302,50.554],[25.305,50.559],[25.306,50.563],[25.306,50.568],[25.305,50.572],[25.304,50.575],[25.303,50.579],[25.299,50.585],[25.287,50.6],[25.285,50.604],[25.286,50.611],[25.29,50.614],[25.295,50.616],[25.367,50.609],[25.373,50.609],[25.382,50.612],[25.384,50.615],[25.383,50.618],[25.379,50.62],[25.356,50.629],[25.353,50.632],[25.351,50.636],[25.353,50.643],[25.361,50.65],[25.364,50.655],[25.365,50.659],[25.359,50.669],[25.358,50.673],[25.36,50.678],[25.363,50.679],[25.367,50.678],[25.382,50.669],[25.394,50.663],[25.415,50.658],[25.44,50.654],[25.449,50.655],[25.458,50.656],[25.488,50.668],[25.523,50.677],[25.561,50.69],[25.583,50.7],[25.603,50.707],[25.656,50.707],[25.668,50.706],[25.673,50.704],[25.688,50.695],[25.708,50.679],[25.71,50.677],[25.711,50.673],[25.71,50.67],[25.71,50.667],[25.712,50.665],[25.717,50.663],[25.756,50.659],[25.762,50.657],[25.767,50.656],[25.775,50.652],[25.796,50.637],[25.804,50.633],[25.81,50.632],[25.817,50.631],[25.827,50.631],[25.833,50.633],[25.837,50.636],[25.846,50.67],[25.848,50.673],[25.851,50.677],[25.855,50.681],[25.861,50.686],[25.868,50.693],[25.87,50.697],[25.871,50.701],[25.87,50.709],[25.87,50.712],[25.869,50.716],[25.865,50.735],[25.868,50.774],[25.868,50.778],[25.868,50.781],[25.87,50.785],[25.875,50.793],[25.88,50.796],[25.886,50.799],[25.89,50.8],[25.935,50.823],[25.943,50.826],[25.948,50.827],[25.954,50.827],[25.96,50.827],[25.979,50.824],[25.988,50.824],[25.994,50.826],[25.997,50.828],[26.003,50.835],[26.004,50.837],[26.003,50.84],[26.001,50.842],[25.995,50.845],[25.971,50.852],[25.967,50.854],[25.966,50.858],[25.969,50.864],[25.982,50.877],[26.007,50.892],[26.012,50.895],[26.013,50.899],[26.014,50.903],[26.015,50.907],[26.015,50.911],[26.013,50.915],[26.011,50.917],[26.006,50.921],[26.002,50.924],[25.997,50.927],[25.982,50.935],[25.978,50.937],[25.975,50.941],[25.975,50.945],[25.979,50.952],[25.983,50.956],[25.989,50.959],[26.06,50.965],[26.068,50.967],[26.076,50.97],[26.09,50.976],[26.094,50.981],[26.096,50.985],[26.094,50.992],[26.092,51.005],[26.091,51.008],[26.089,51.011],[26.087,51.014],[26.083,51.016],[26.08,51.019],[26.079,51.023],[26.077,51.03],[26.076,51.034],[26.074,51.037],[26.058,51.054],[26.041,51.066],[26.033,51.071],[26.029,51.072],[26.024,51.073],[26.013,51.073],[26.003,51.072],[26,51.071],[25.99,51.065],[25.985,51.064],[25.98,51.064],[25.954,51.071],[25.95,51.073],[25.947,51.075],[25.947,51.08],[25.951,51.108],[25.952,51.114],[25.957,51.116],[26.028,51.126],[26.036,51.129],[26.048,51.136],[26.057,51.146],[26.061,51.153],[26.062,51.159],[26.063,51.17],[26.063,51.174],[26.061,51.178],[26.059,51.181],[26.056,51.184],[26.005,51.216],[25.929,51.24],[25.925,51.242],[25.922,51.244],[25.917,51.25],[25.897,51.265],[25.868,51.28],[25.865,51.282],[25.862,51.285],[25.86,51.288],[25.859,51.291],[25.857,51.299],[25.856,51.303],[25.855,51.305],[25.852,51.307],[25.849,51.308],[25.829,51.314],[25.82,51.318],[25.817,51.32],[25.813,51.323],[25.809,51.329],[25.808,51.332],[25.809,51.34],[25.812,51.35],[25.821,51.373],[25.822,51.381],[25.82,51.384],[25.816,51.383],[25.801,51.374],[25.796,51.372],[25.792,51.371],[25.786,51.37],[25.773,51.37],[25.766,51.371],[25.761,51.373],[25.756,51.375],[25.753,51.377],[25.751,51.38],[25.749,51.383],[25.747,51.386],[25.743,51.388],[25.739,51.389],[25.734,51.388],[25.73,51.385],[25.727,51.382],[25.72,51.373],[25.717,51.37],[25.71,51.365],[25.706,51.363],[25.701,51.362],[25.695,51.362],[25.69,51.362],[25.668,51.368],[25.656,51.369],[25.643,51.368],[25.631,51.367],[25.621,51.364],[25.608,51.359],[25.604,51.357],[25.602,51.354],[25.599,51.35],[25.594,51.339],[25.591,51.336],[25.587,51.334],[25.583,51.333],[25.578,51.333],[25.574,51.334],[25.569,51.336],[25.566,51.338],[25.563,51.341],[25.558,51.346],[25.556,51.349],[25.555,51.353],[25.554,51.358],[25.561,51.395],[25.562,51.399],[25.56,51.411],[25.559,51.419],[25.561,51.432],[25.565,51.449],[25.566,51.458],[25.566,51.462],[25.565,51.466],[25.564,51.469],[25.553,51.497],[25.551,51.505],[25.551,51.51],[25.551,51.525],[25.554,51.531],[25.556,51.535],[25.562,51.541],[25.569,51.546],[25.587,51.555],[25.592,51.56],[25.6,51.571],[25.603,51.577],[25.603,51.582],[25.601,51.585],[25.598,51.588],[25.594,51.59],[25.59,51.592],[25.572,51.595],[25.567,51.597],[25.564,51.6],[25.563,51.603],[25.562,51.607],[25.56,51.61],[25.558,51.612],[25.554,51.612],[25.543,51.611],[25.536,51.61],[25.524,51.612],[25.519,51.613],[25.515,51.615],[25.512,51.618],[25.509,51.621],[25.508,51.625],[25.507,51.629],[25.507,51.641],[25.504,51.661],[25.506,51.678],[25.51,51.699],[25.513,51.708],[25.515,51.715],[25.524,51.725],[25.573,51.768],[25.608,51.788],[25.615,51.793],[25.628,51.804],[25.638,51.817],[25.641,51.822],[25.643,51.827],[25.643,51.831],[25.641,51.834],[25.64,51.838],[25.638,51.841],[25.634,51.847],[25.632,51.853],[25.63,51.86],[25.63,51.867],[25.631,51.872],[25.634,51.876],[25.637,51.878],[25.641,51.881],[25.645,51.883],[25.659,51.888],[25.663,51.891],[25.66,51.892],[25.655,51.893],[25.564,51.897],[25.552,51.902],[25.547,51.92],[25.683,51.918],[25.768,51.929]]]
}
},
{
"type":"Feature",
"id":"02",
"properties":{
"name":"Сумская область",
"Manager":"Региональный менеджер<br />Рыбалов Дмитрий",
"Phone":"(0512) 50-02-26 (многоканальный)",
"Email":"[email protected]",
"ICQ":"350 079 086",
"Mobile":"067-512-15-40"
},
"geometry":{
"type":"Polygon",
"coordinates":[[[33.859,52.302],[33.9,52.286],[33.919,52.27],[33.944,52.236],[33.957,52.225],[34.022,52.198],[34.039,52.187],[34.055,52.171],[34.065,52.159],[34.071,52.149],[34.073,52.14],[34.074,52.129],[34.056,52.106],[34.056,52.101],[34.06,52.084],[34.062,52.051],[34.068,52.031],[34.08,52.014],[34.101,51.993],[34.104,51.976],[34.096,51.961],[34.096,51.952],[34.146,51.952],[34.166,51.943],[34.203,51.913],[34.209,51.909],[34.222,51.904],[34.228,51.9],[34.231,51.895],[34.234,51.881],[34.234,51.879],[34.246,51.876],[34.265,51.882],[34.276,51.882],[34.294,51.874],[34.328,51.851],[34.347,51.842],[34.371,51.827],[34.386,51.818],[34.412,51.778],[34.414,51.737],[34.414,51.737],[34.376,51.709],[34.357,51.706],[34.298,51.707],[34.128,51.681],[34.089,51.667],[34.089,51.667],[34.079,51.644],[34.09,51.634],[34.126,51.627],[34.14,51.622],[34.144,51.614],[34.149,51.594],[34.153,51.584],[34.16,51.577],[34.202,51.547],[34.215,51.532],[34.223,51.515],[34.226,51.493],[34.224,51.483],[34.215,51.465],[34.212,51.455],[34.213,51.445],[34.217,51.436],[34.219,51.428],[34.217,51.417],[34.217,51.417],[34.209,51.412],[34.187,51.409],[34.187,51.409],[34.182,51.403],[34.186,51.395],[34.196,51.386],[34.215,51.374],[34.23,51.368],[34.247,51.364],[34.264,51.362],[34.28,51.362],[34.3,51.369],[34.308,51.335],[34.283,51.302],[34.283,51.301],[34.244,51.274],[34.186,51.249],[34.186,51.249],[34.258,51.23],[34.282,51.227],[34.299,51.232],[34.337,51.252],[34.371,51.257],[34.409,51.254],[34.48,51.237],[34.513,51.23],[34.578,51.237],[34.608,51.234],[34.622,51.225],[34.628,51.211],[34.633,51.196],[34.643,51.181],[34.657,51.172],[34.675,51.168],[34.748,51.165],[34.817,51.175],[34.899,51.197],[34.946,51.215],[34.962,51.216],[34.98,51.21],[34.999,51.203],[35.019,51.205],[35.038,51.211],[35.059,51.213],[35.078,51.208],[35.091,51.198],[35.099,51.184],[35.124,51.092],[35.143,51.059],[35.172,51.041],[35.206,51.039],[35.274,51.049],[35.308,51.048],[35.328,51.044],[35.346,51.037],[35.355,51.026],[35.346,51.009],[35.346,51.008],[35.332,51],[35.278,50.993],[35.278,50.993],[35.282,50.982],[35.282,50.961],[35.282,50.955],[35.284,50.945],[35.293,50.938],[35.317,50.935],[35.329,50.929],[35.342,50.916],[35.343,50.904],[35.34,50.892],[35.341,50.877],[35.348,50.864],[35.369,50.846],[35.377,50.834],[35.379,50.82],[35.377,50.808],[35.379,50.798],[35.393,50.789],[35.418,50.779],[35.429,50.773],[35.438,50.763],[35.447,50.735],[35.444,50.71],[35.445,50.688],[35.469,50.669],[35.468,50.669],[35.391,50.647],[35.391,50.647],[35.376,50.635],[35.377,50.622],[35.425,50.501],[35.446,50.476],[35.48,50.467],[35.502,50.465],[35.522,50.46],[35.541,50.45],[35.554,50.434],[35.562,50.41],[35.564,50.392],[35.57,50.377],[35.592,50.361],[35.611,50.352],[35.631,50.345],[35.652,50.341],[35.673,50.341],[35.692,50.345],[35.692,50.345],[35.691,50.338],[35.689,50.335],[35.687,50.33],[35.684,50.327],[35.681,50.324],[35.677,50.322],[35.671,50.32],[35.663,50.319],[35.646,50.318],[35.627,50.32],[35.595,50.326],[35.588,50.325],[35.578,50.324],[35.562,50.319],[35.532,50.317],[35.501,50.321],[35.498,50.321],[35.496,50.319],[35.496,50.315],[35.498,50.312],[35.506,50.306],[35.507,50.304],[35.507,50.301],[35.503,50.3],[35.494,50.302],[35.426,50.33],[35.415,50.333],[35.409,50.334],[35.403,50.334],[35.397,50.332],[35.393,50.33],[35.391,50.324],[35.391,50.319],[35.391,50.304],[35.39,50.3],[35.389,50.296],[35.385,50.294],[35.38,50.292],[35.372,50.293],[35.366,50.295],[35.342,50.304],[35.336,50.305],[35.329,50.305],[35.321,50.302],[35.308,50.294],[35.306,50.29],[35.306,50.286],[35.309,50.283],[35.312,50.281],[35.311,50.279],[35.309,50.276],[35.305,50.275],[35.298,50.274],[35.269,50.278],[35.264,50.277],[35.26,50.275],[35.253,50.269],[35.25,50.265],[35.249,50.26],[35.25,50.257],[35.254,50.251],[35.255,50.248],[35.255,50.244],[35.253,50.241],[35.25,50.238],[35.242,50.236],[35.206,50.232],[35.195,50.232],[35.187,50.234],[35.182,50.236],[35.161,50.243],[35.148,50.244],[35.135,50.245],[35.128,50.243],[35.12,50.24],[35.109,50.231],[35.104,50.225],[35.1,50.219],[35.099,50.215],[35.096,50.211],[35.093,50.208],[35.089,50.207],[35.082,50.209],[35.067,50.215],[35.06,50.214],[35.051,50.21],[35.038,50.199],[35.035,50.193],[35.034,50.188],[35.036,50.185],[35.037,50.182],[35.036,50.178],[35.034,50.175],[35.03,50.172],[35.025,50.171],[35.016,50.172],[35.005,50.176],[34.992,50.183],[34.985,50.187],[34.982,50.19],[34.979,50.192],[34.975,50.192],[34.97,50.189],[34.961,50.176],[34.957,50.167],[34.951,50.162],[34.945,50.159],[34.908,50.146],[34.814,50.16],[34.787,50.157],[34.763,50.144],[34.745,50.138],[34.739,50.138],[34.732,50.14],[34.717,50.148],[34.711,50.15],[34.705,50.151],[34.697,50.148],[34.693,50.145],[34.691,50.141],[34.688,50.132],[34.686,50.128],[34.684,50.125],[34.681,50.122],[34.678,50.119],[34.674,50.117],[34.669,50.116],[34.634,50.115],[34.536,50.124],[34.52,50.123],[34.502,50.119],[34.496,50.116],[34.482,50.108],[34.478,50.107],[34.474,50.108],[34.471,50.113],[34.472,50.117],[34.472,50.122],[34.471,50.126],[34.467,50.13],[34.459,50.137],[34.457,50.142],[34.456,50.147],[34.459,50.16],[34.462,50.163],[34.466,50.165],[34.488,50.167],[34.493,50.168],[34.497,50.169],[34.499,50.171],[34.501,50.173],[34.504,50.175],[34.506,50.179],[34.507,50.183],[34.508,50.187],[34.508,50.191],[34.507,50.194],[34.506,50.197],[34.502,50.203],[34.5,50.206],[34.499,50.207],[34.496,50.209],[34.459,50.226],[34.453,50.231],[34.45,50.236],[34.449,50.24],[34.447,50.243],[34.436,50.249],[34.434,50.252],[34.433,50.256],[34.432,50.263],[34.431,50.266],[34.429,50.269],[34.426,50.272],[34.421,50.274],[34.414,50.275],[34.403,50.273],[34.398,50.271],[34.394,50.267],[34.391,50.264],[34.387,50.263],[34.381,50.264],[34.373,50.269],[34.369,50.273],[34.367,50.277],[34.365,50.284],[34.362,50.309],[34.362,50.313],[34.363,50.317],[34.367,50.325],[34.376,50.335],[34.377,50.339],[34.378,50.343],[34.377,50.346],[34.376,50.349],[34.372,50.355],[34.366,50.361],[34.36,50.366],[34.316,50.39],[34.282,50.415],[34.259,50.436],[34.254,50.442],[34.252,50.448],[34.25,50.455],[34.249,50.506],[34.253,50.526],[34.252,50.53],[34.25,50.533],[34.246,50.535],[34.212,50.542],[34.207,50.542],[34.203,50.538],[34.201,50.534],[34.195,50.531],[34.186,50.528],[34.165,50.525],[34.156,50.522],[34.149,50.519],[34.143,50.517],[34.122,50.514],[34.117,50.511],[34.116,50.508],[34.118,50.501],[34.118,50.5],[34.117,50.496],[34.114,50.494],[34.108,50.492],[34.088,50.497],[34.079,50.497],[34.07,50.495],[34.065,50.492],[34.061,50.489],[34.06,50.486],[34.06,50.482],[34.061,50.479],[34.062,50.475],[34.06,50.472],[34.055,50.471],[34.048,50.471],[33.971,50.493],[33.938,50.51],[33.925,50.52],[33.913,50.53],[33.907,50.532],[33.898,50.533],[33.865,50.527],[33.813,50.512],[33.809,50.51],[33.806,50.507],[33.804,50.505],[33.805,50.502],[33.806,50.501],[33.807,50.5],[33.838,50.488],[33.841,50.486],[33.842,50.482],[33.833,50.479],[33.817,50.476],[33.776,50.474],[33.748,50.47],[33.738,50.462],[33.731,50.462],[33.721,50.463],[33.645,50.485],[33.34,50.525],[33.333,50.528],[33.306,50.535],[33.298,50.538],[33.292,50.542],[33.289,50.544],[33.285,50.546],[33.275,50.547],[33.261,50.546],[33.234,50.54],[33.223,50.536],[33.216,50.531],[33.214,50.528],[33.212,50.524],[33.209,50.521],[33.206,50.518],[33.194,50.517],[33.098,50.525],[33.062,50.538],[33.095,50.602],[33.105,50.625],[33.107,50.638],[33.107,50.642],[33.105,50.645],[33.102,50.654],[33.101,50.66],[33.103,50.664],[33.107,50.667],[33.117,50.671],[33.124,50.676],[33.127,50.68],[33.128,50.684],[33.129,50.699],[33.131,50.71],[33.135,50.716],[33.141,50.721],[33.148,50.724],[33.156,50.729],[33.164,50.736],[33.167,50.743],[33.167,50.749],[33.164,50.754],[33.158,50.757],[33.151,50.759],[33.138,50.765],[33.129,50.773],[33.125,50.777],[33.123,50.785],[33.122,50.795],[33.123,50.813],[33.124,50.824],[33.147,50.881],[33.151,50.886],[33.154,50.889],[33.158,50.891],[33.164,50.893],[33.171,50.896],[33.179,50.904],[33.182,50.912],[33.184,50.918],[33.183,50.925],[33.183,50.929],[33.183,50.951],[33.187,50.962],[33.185,50.968],[33.182,50.971],[33.162,50.982],[33.158,50.985],[33.155,50.989],[33.155,50.994],[33.156,50.997],[33.157,51],[33.173,51.012],[33.177,51.014],[33.184,51.019],[33.199,51.036],[33.207,51.048],[33.206,51.052],[33.202,51.055],[33.191,51.058],[33.179,51.06],[33.173,51.06],[33.17,51.058],[33.149,51.03],[33.146,51.027],[33.142,51.026],[33.136,51.025],[33.084,51.032],[33.063,51.039],[33.053,51.043],[33.049,51.046],[33.044,51.049],[33.043,51.053],[33.045,51.055],[33.059,51.062],[33.065,51.066],[33.066,51.07],[33.065,51.074],[33.062,51.076],[33.059,51.078],[33.054,51.078],[33.033,51.075],[33.027,51.075],[33.021,51.076],[32.983,51.087],[32.945,51.095],[32.94,51.097],[32.94,51.1],[32.941,51.104],[32.965,51.129],[32.967,51.133],[32.97,51.14],[32.969,51.144],[32.967,51.15],[32.962,51.159],[32.962,51.172],[32.963,51.178],[32.967,51.182],[33.019,51.192],[33.023,51.195],[33.028,51.198],[33.031,51.206],[33.031,51.212],[33.029,51.224],[33.031,51.23],[33.033,51.234],[33.062,51.243],[33.066,51.245],[33.07,51.249],[33.071,51.252],[33.07,51.257],[33.064,51.269],[33.065,51.274],[33.067,51.278],[33.071,51.281],[33.074,51.285],[33.073,51.288],[33.071,51.291],[33.058,51.298],[33.054,51.302],[33.049,51.307],[33.05,51.313],[33.052,51.318],[33.056,51.327],[33.056,51.332],[33.055,51.336],[33.053,51.339],[33.049,51.341],[33.044,51.342],[33.033,51.342],[33.027,51.342],[33.023,51.344],[33.02,51.348],[33.016,51.355],[33.007,51.366],[33.002,51.373],[33.001,51.376],[33,51.379],[33.002,51.381],[33.008,51.391],[33.012,51.394],[33.015,51.396],[33.021,51.397],[33.027,51.396],[33.032,51.395],[33.036,51.393],[33.037,51.391],[33.039,51.389],[33.046,51.377],[33.048,51.374],[33.052,51.371],[33.056,51.369],[33.061,51.368],[33.067,51.367],[33.08,51.367],[33.101,51.369],[33.111,51.372],[33.115,51.375],[33.119,51.378],[33.123,51.384],[33.123,51.39],[33.122,51.395],[33.12,51.403],[33.121,51.409],[33.123,51.413],[33.127,51.416],[33.13,51.419],[33.131,51.422],[33.13,51.424],[33.123,51.428],[33.118,51.433],[33.113,51.44],[33.108,51.456],[33.109,51.463],[33.112,51.468],[33.116,51.469],[33.121,51.471],[33.126,51.474],[33.131,51.48],[33.132,51.484],[33.131,51.488],[33.122,51.508],[33.123,51.51],[33.126,51.51],[33.156,51.501],[33.163,51.499],[33.166,51.499],[33.169,51.5],[33.17,51.5],[33.184,51.512],[33.187,51.516],[33.185,51.519],[33.183,51.522],[33.179,51.524],[33.159,51.535],[33.156,51.54],[33.153,51.546],[33.151,51.559],[33.154,51.565],[33.158,51.569],[33.174,51.572],[33.181,51.574],[33.182,51.577],[33.182,51.58],[33.179,51.582],[33.175,51.585],[33.171,51.587],[33.166,51.59],[33.162,51.594],[33.158,51.635],[33.156,51.639],[33.154,51.642],[33.148,51.643],[33.143,51.645],[33.138,51.649],[33.135,51.658],[33.137,51.668],[33.153,51.682],[33.153,51.693],[33.099,51.727],[33.092,51.734],[33.085,51.741],[33.074,51.765],[33.068,51.772],[33.062,51.793],[33.072,51.816],[33.089,51.836],[33.102,51.844],[33.121,51.851],[33.131,51.866],[33.143,51.881],[33.168,51.885],[33.168,51.892],[33.161,51.904],[33.18,51.908],[33.225,51.906],[33.237,51.91],[33.272,51.929],[33.287,51.933],[33.31,51.935],[33.366,51.947],[33.377,51.958],[33.375,51.969],[33.36,51.986],[33.353,51.988],[33.354,51.991],[33.356,51.993],[33.361,51.996],[33.366,51.999],[33.371,52.005],[33.373,52.01],[33.374,52.014],[33.373,52.047],[33.376,52.053],[33.379,52.057],[33.384,52.058],[33.388,52.058],[33.391,52.056],[33.394,52.054],[33.396,52.05],[33.398,52.048],[33.402,52.045],[33.407,52.044],[33.42,52.044],[33.444,52.045],[33.465,52.049],[33.471,52.052],[33.476,52.056],[33.483,52.067],[33.486,52.073],[33.487,52.078],[33.486,52.082],[33.485,52.085],[33.48,52.086],[33.449,52.088],[33.444,52.089],[33.44,52.091],[33.438,52.094],[33.436,52.097],[33.434,52.1],[33.431,52.103],[33.42,52.11],[33.402,52.126],[33.379,52.14],[33.374,52.142],[33.33,52.151],[33.326,52.153],[33.324,52.162],[33.318,52.21],[33.323,52.222],[33.349,52.238],[33.359,52.248],[33.362,52.256],[33.364,52.274],[33.366,52.282],[33.371,52.289],[33.384,52.3],[33.387,52.307],[33.39,52.323],[33.397,52.34],[33.401,52.344],[33.401,52.345],[33.403,52.343],[33.419,52.339],[33.437,52.34],[33.451,52.346],[33.465,52.353],[33.48,52.358],[33.499,52.341],[33.493,52.304],[33.51,52.288],[33.531,52.289],[33.6,52.331],[33.688,52.356],[33.733,52.361],[33.779,52.36],[33.804,52.355],[33.815,52.345],[33.823,52.332],[33.839,52.314],[33.859,52.302]]]
}
},
{
"type":"Feature",
"id":"02",
"properties":{
"name":"Тернопольская область'",
"Manager":"Региональный менеджер<br />Молчаницкий Владимир",
"Phone":"(0512) 50-02-26 (многоканальный)",
"Email":"[email protected]",
"ICQ":"417 233 254",
"Mobile":"067-511-84-42"
},
"geometry":{
"type":"Polygon",
"coordinates":[[[26.233,50.152],[26.212,50.145],[26.208,50.143],[26.207,50.141],[26.21,50.139],[26.214,50.138],[26.249,50.131],[26.258,50.127],[26.266,50.123],[26.269,50.12],[26.272,50.117],[26.273,50.113],[26.273,50.108],[26.269,50.101],[26.265,50.097],[26.26,50.094],[26.249,50.092],[26.212,50.091],[26.208,50.089],[26.205,50.086],[26.205,50.083],[26.208,50.078],[26.211,50.075],[26.215,50.072],[26.228,50.066],[26.231,50.063],[26.232,50.059],[26.228,50.047],[26.225,50.043],[26.223,50.04],[26.219,50.038],[26.201,50.032],[26.197,50.03],[26.195,50.027],[26.196,50.023],[26.202,50.018],[26.208,50.016],[26.215,50.014],[26.228,50.013],[26.233,50.011],[26.235,50.007],[26.234,49.999],[26.231,49.994],[26.227,49.991],[26.17,49.979],[26.162,49.975],[26.158,49.973],[26.155,49.97],[26.152,49.968],[26.151,49.965],[26.15,49.961],[26.151,49.957],[26.161,49.941],[26.165,49.931],[26.166,49.927],[26.166,49.922],[26.163,49.915],[26.156,49.903],[26.156,49.899],[26.157,49.894],[26.163,49.887],[26.168,49.883],[26.181,49.877],[26.185,49.875],[26.188,49.872],[26.191,49.869],[26.193,49.866],[26.194,49.861],[26.194,49.855],[26.192,49.843],[26.189,49.837],[26.187,49.832],[26.186,49.827],[26.187,49.822],[26.191,49.814],[26.194,49.81],[26.198,49.806],[26.222,49.794],[26.225,49.791],[26.228,49.788],[26.232,49.782],[26.233,49.779],[26.235,49.772],[26.235,49.763],[26.233,49.743],[26.231,49.734],[26.228,49.728],[26.217,49.722],[26.213,49.719],[26.21,49.716],[26.206,49.71],[26.204,49.706],[26.204,49.702],[26.206,49.696],[26.211,49.689],[26.215,49.685],[26.219,49.682],[26.246,49.667],[26.25,49.665],[26.253,49.662],[26.254,49.658],[26.253,49.652],[26.25,49.643],[26.246,49.638],[26.242,49.635],[26.231,49.629],[26.228,49.626],[26.225,49.623],[26.223,49.62],[26.221,49.617],[26.218,49.609],[26.214,49.583],[26.211,49.57],[26.209,49.567],[26.206,49.564],[26.202,49.562],[26.175,49.553],[26.171,49.551],[26.168,49.548],[26.166,49.546],[26.164,49.544],[26.15,49.522],[26.149,49.519],[26.148,49.517],[26.149,49.512],[26.15,49.505],[26.156,49.494],[26.174,49.469],[26.182,49.451],[26.191,49.425],[26.195,49.419],[26.199,49.415],[26.224,49.403],[26.227,49.401],[26.229,49.397],[26.23,49.392],[26.23,49.381],[26.231,49.372],[26.238,49.353],[26.239,49.347],[26.239,49.342],[26.234,49.33],[26.233,49.324],[26.234,49.319],[26.239,49.312],[26.242,49.308],[26.245,49.304],[26.256,49.294],[26.258,49.29],[26.258,49.285],[26.255,49.278],[26.249,49.27],[26.248,49.265],[26.247,49.259],[26.248,49.249],[26.245,49.244],[26.242,49.241],[26.227,49.238],[26.218,49.235],[26.214,49.232],[26.211,49.23],[26.208,49.227],[26.206,49.223],[26.205,49.218],[26.205,49.211],[26.204,49.2],[26.198,49.185],[26.198,49.18],[26.199,49.175],[26.204,49.167],[26.208,49.163],[26.219,49.155],[26.221,49.152],[26.222,49.148],[26.22,49.143],[26.214,49.132],[26.212,49.128],[26.211,49.119],[26.212,49.114],[26.214,49.109],[26.229,49.087],[26.231,49.084],[26.232,49.079],[26.231,49.075],[26.228,49.067],[26.225,49.063],[26.221,49.06],[26.211,49.053],[26.204,49.048],[26.202,49.045],[26.199,49.041],[26.199,49.036],[26.201,49.03],[26.208,49.019],[26.218,49.007],[26.221,49.001],[26.221,48.999],[26.214,48.993],[26.203,48.991],[26.199,48.989],[26.199,48.985],[26.203,48.976],[26.205,48.971],[26.204,48.965],[26.2,48.963],[26.191,48.96],[26.189,48.957],[26.189,48.953],[26.197,48.944],[26.201,48.94],[26.202,48.935],[26.202,48.926],[26.2,48.921],[26.198,48.916],[26.196,48.913],[26.194,48.91],[26.192,48.906],[26.193,48.902],[26.195,48.9],[26.202,48.9],[26.212,48.902],[26.217,48.902],[26.221,48.9],[26.223,48.897],[26.222,48.892],[26.219,48.879],[26.214,48.847],[26.215,48.842],[26.217,48.837],[26.231,48.823],[26.235,48.821],[26.239,48.819],[26.259,48.813],[26.263,48.811],[26.264,48.808],[26.262,48.805],[26.257,48.803],[26.246,48.802],[26.241,48.8],[26.24,48.798],[26.239,48.791],[26.236,48.788],[26.231,48.782],[26.229,48.779],[26.229,48.775],[26.232,48.771],[26.245,48.761],[26.249,48.757],[26.251,48.752],[26.25,48.747],[26.245,48.74],[26.244,48.736],[26.244,48.732],[26.244,48.713],[26.244,48.708],[26.242,48.704],[26.237,48.693],[26.236,48.689],[26.235,48.685],[26.237,48.68],[26.242,48.675],[26.254,48.667],[26.263,48.665],[26.271,48.663],[26.277,48.663],[26.282,48.662],[26.285,48.659],[26.284,48.654],[26.283,48.65],[26.283,48.645],[26.285,48.641],[26.294,48.637],[26.3,48.637],[26.304,48.638],[26.31,48.643],[26.313,48.644],[26.316,48.643],[26.317,48.636],[26.317,48.632],[26.316,48.629],[26.315,48.626],[26.307,48.617],[26.305,48.614],[26.305,48.61],[26.307,48.606],[26.315,48.6],[26.321,48.597],[26.341,48.59],[26.346,48.588],[26.355,48.582],[26.369,48.576],[26.372,48.574],[26.369,48.569],[26.365,48.568],[26.36,48.567],[26.356,48.566],[26.354,48.562],[26.357,48.554],[26.365,48.54],[26.381,48.517],[26.355,48.51],[26.327,48.512],[26.294,48.52],[26.269,48.53],[26.257,48.533],[26.239,48.534],[26.181,48.527],[26.149,48.54],[26.145,48.568],[26.146,48.596],[26.133,48.609],[26.105,48.611],[26.102,48.607],[26.102,48.592],[26.106,48.581],[26.114,48.57],[26.13,48.555],[26.117,48.542],[26.099,48.541],[26.08,48.547],[26.064,48.558],[26.053,48.572],[26.052,48.583],[26.061,48.616],[26.061,48.609],[26.062,48.628],[26.059,48.642],[26.049,48.648],[26.033,48.643],[26.029,48.638],[26.025,48.621],[26.02,48.616],[26.01,48.615],[25.986,48.624],[25.974,48.616],[25.96,48.596],[25.944,48.589],[25.928,48.587],[25.912,48.588],[25.863,48.601],[25.863,48.604],[25.863,48.613],[25.86,48.619],[25.839,48.637],[25.821,48.645],[25.809,48.661],[25.794,48.67],[25.767,48.658],[25.76,48.649],[25.757,48.64],[25.753,48.633],[25.742,48.63],[25.731,48.635],[25.723,48.659],[25.715,48.664],[25.671,48.667],[25.649,48.671],[25.636,48.678],[25.637,48.684],[25.643,48.689],[25.646,48.697],[25.64,48.709],[25.63,48.717],[25.628,48.718],[25.628,48.72],[25.629,48.73],[25.633,48.736],[25.639,48.739],[25.64,48.745],[25.629,48.76],[25.623,48.764],[25.595,48.774],[25.565,48.793],[25.548,48.799],[25.523,48.801],[25.506,48.805],[25.482,48.814],[25.461,48.825],[25.45,48.836],[25.457,48.842],[25.463,48.848],[25.471,48.862],[25.462,48.864],[25.447,48.869],[25.44,48.87],[25.432,48.867],[25.431,48.861],[25.433,48.854],[25.431,48.849],[25.414,48.847],[25.401,48.85],[25.389,48.854],[25.376,48.856],[25.356,48.855],[25.351,48.85],[25.354,48.841],[25.356,48.828],[25.354,48.814],[25.351,48.813],[25.343,48.816],[25.328,48.815],[25.277,48.781],[25.251,48.775],[25.239,48.801],[25.25,48.818],[25.307,48.828],[25.328,48.842],[25.274,48.859],[25.25,48.859],[25.225,48.842],[25.222,48.86],[25.227,48.887],[25.236,48.912],[25.246,48.924],[25.246,48.931],[25.231,48.932],[25.219,48.929],[25.197,48.918],[25.189,48.911],[25.183,48.904],[25.18,48.895],[25.178,48.884],[25.174,48.872],[25.166,48.865],[25.153,48.873],[25.129,48.898],[25.123,48.908],[25.122,48.918],[25.13,48.934],[25.129,48.944],[25.12,48.951],[25.067,48.972],[25.052,48.974],[25.01,48.969],[24.993,48.97],[24.978,48.977],[24.964,48.993],[24.959,49.002],[24.958,49.008],[24.956,49.014],[24.95,49.021],[24.942,49.025],[24.909,49.034],[24.899,49.039],[24.898,49.04],[24.896,49.043],[24.894,49.046],[24.894,49.05],[24.894,49.054],[24.896,49.057],[24.899,49.06],[24.904,49.061],[24.909,49.062],[24.915,49.062],[24.927,49.06],[24.956,49.05],[24.966,49.048],[24.972,49.048],[24.977,49.048],[24.982,49.05],[24.986,49.052],[24.989,49.054],[24.991,49.057],[24.993,49.061],[24.993,49.064],[24.991,49.067],[24.989,49.07],[24.987,49.073],[24.986,49.077],[24.985,49.081],[24.985,49.089],[24.984,49.094],[24.982,49.099],[24.976,49.107],[24.972,49.11],[24.967,49.113],[24.936,49.116],[24.917,49.123],[24.912,49.123],[24.907,49.122],[24.902,49.121],[24.894,49.117],[24.89,49.115],[24.886,49.113],[24.88,49.111],[24.871,49.112],[24.866,49.114],[24.862,49.116],[24.86,49.119],[24.858,49.123],[24.857,49.126],[24.857,49.13],[24.858,49.135],[24.86,49.143],[24.86,49.148],[24.86,49.152],[24.859,49.155],[24.852,49.168],[24.851,49.172],[24.851,49.175],[24.852,49.179],[24.855,49.182],[24.858,49.184],[24.873,49.193],[24.876,49.195],[24.879,49.198],[24.881,49.202],[24.882,49.206],[24.883,49.21],[24.883,49.214],[24.882,49.218],[24.882,49.222],[24.879,49.229],[24.875,49.239],[24.871,49.246],[24.867,49.25],[24.867,49.25],[24.846,49.255],[24.841,49.259],[24.838,49.262],[24.837,49.266],[24.836,49.278],[24.831,49.297],[24.828,49.304],[24.826,49.307],[24.825,49.31],[24.823,49.314],[24.824,49.318],[24.825,49.322],[24.827,49.325],[24.831,49.331],[24.833,49.335],[24.833,49.34],[24.827,49.35],[24.822,49.356],[24.804,49.389],[24.788,49.409],[24.707,49.492],[24.72,49.51],[24.723,49.523],[24.729,49.555],[24.733,49.56],[24.739,49.563],[24.752,49.563],[24.758,49.561],[24.766,49.562],[24.775,49.563],[24.948,49.627],[24.954,49.63],[24.982,49.665],[24.988,49.675],[24.99,49.679],[24.994,49.686],[25.016,49.713],[25.022,49.718],[25.027,49.72],[25.031,49.72],[25.034,49.717],[25.037,49.715],[25.04,49.712],[25.046,49.711],[25.058,49.711],[25.067,49.711],[25.073,49.713],[25.095,49.721],[25.101,49.725],[25.106,49.729],[25.107,49.733],[25.108,49.737],[25.108,49.741],[25.107,49.744],[25.105,49.747],[25.103,49.751],[25.086,49.767],[25.079,49.776],[25.078,49.78],[25.078,49.784],[25.078,49.788],[25.085,49.805],[25.088,49.812],[25.093,49.816],[25.099,49.817],[25.146,49.821],[25.157,49.823],[25.166,49.826],[25.24,49.835],[25.245,49.836],[25.281,49.849],[25.303,49.853],[25.309,49.855],[25.328,49.863],[25.333,49.864],[25.348,49.865],[25.359,49.867],[25.376,49.873],[25.384,49.876],[25.39,49.88],[25.393,49.883],[25.395,49.886],[25.396,49.89],[25.397,49.893],[25.396,49.897],[25.394,49.901],[25.393,49.904],[25.388,49.91],[25.387,49.914],[25.388,49.919],[25.393,49.927],[25.398,49.931],[25.404,49.933],[25.418,49.933],[25.428,49.935],[25.432,49.938],[25.434,49.942],[25.434,49.945],[25.432,49.949],[25.43,49.952],[25.428,49.955],[25.416,49.965],[25.414,49.968],[25.41,49.975],[25.407,49.977],[25.404,49.98],[25.382,49.989],[25.379,49.992],[25.373,49.996],[25.37,50],[25.37,50.001],[25.368,50.006],[25.368,50.013],[25.37,50.028],[25.371,50.032],[25.375,50.035],[25.381,50.037],[25.394,50.035],[25.4,50.032],[25.407,50.028],[25.411,50.028],[25.413,50.033],[25.414,50.037],[25.416,50.046],[25.416,50.05],[25.414,50.058],[25.414,50.062],[25.415,50.066],[25.416,50.069],[25.419,50.072],[25.448,50.083],[25.454,50.088],[25.458,50.092],[25.46,50.096],[25.467,50.105],[25.467,50.109],[25.465,50.112],[25.462,50.114],[25.45,50.12],[25.447,50.123],[25.444,50.125],[25.442,50.129],[25.441,50.132],[25.443,50.141],[25.449,50.156],[25.451,50.16],[25.453,50.163],[25.461,50.164],[25.473,50.163],[25.497,50.159],[25.519,50.152],[25.544,50.148],[25.551,50.145],[25.556,50.143],[25.56,50.141],[25.567,50.141],[25.575,50.143],[25.581,50.146],[25.602,50.16],[25.607,50.161],[25.612,50.161],[25.618,50.158],[25.625,50.152],[25.629,50.151],[25.636,50.151],[25.646,50.154],[25.652,50.157],[25.667,50.167],[25.676,50.171],[25.693,50.173],[25.809,50.179],[25.823,50.184],[25.83,50.188],[25.923,50.253],[25.947,50.265],[25.957,50.264],[25.97,50.263],[25.999,50.256],[26.012,50.254],[26.022,50.253],[26.049,50.263],[26.054,50.264],[26.059,50.265],[26.065,50.265],[26.071,50.265],[26.083,50.262],[26.147,50.243],[26.154,50.242],[26.161,50.241],[26.166,50.242],[26.195,50.25],[26.203,50.254],[26.213,50.261],[26.217,50.262],[26.222,50.262],[26.227,50.257],[26.23,50.253],[26.231,50.249],[26.228,50.242],[26.225,50.239],[26.217,50.233],[26.214,50.23],[26.209,50.224],[26.205,50.217],[26.203,50.213],[26.202,50.209],[26.202,50.204],[26.205,50.199],[26.214,50.194],[26.221,50.191],[26.227,50.186],[26.23,50.182],[26.233,50.152]]]
}
},
{
"type":"Feature",
"id":"02",
"properties":{
"name":"Закарпатская область",
"Manager":"Региональный менеджер<br />Молчаницкий Владимир",
"Phone":"(0512) 50-02-26 (многоканальный)",
"Email":"[email protected]",
"ICQ":"417 233 254",
"Mobile":"067-511-84-42"
},
"geometry":{
"type":"Polygon",
"coordinates":[[[22.643,49.044],[22.664,49.042],[22.685,49.043],[22.722,49.041],[22.744,49.046],[22.755,49.045],[22.765,49.039],[22.784,49.022],[22.795,49.019],[22.813,49.013],[22.835,49],[22.855,48.994],[22.855,48.994],[22.867,49.01],[22.865,49.013],[22.883,49.006],[22.901,48.991],[22.902,48.983],[22.893,48.97],[22.89,48.963],[22.889,48.959],[22.889,48.951],[22.889,48.947],[22.892,48.935],[22.895,48.929],[22.901,48.924],[22.926,48.904],[22.961,48.884],[22.967,48.879],[22.97,48.874],[22.972,48.87],[22.974,48.867],[22.979,48.861],[22.982,48.859],[22.988,48.857],[22.996,48.855],[23.012,48.855],[23.02,48.855],[23.027,48.856],[23.036,48.859],[23.077,48.868],[23.105,48.871],[23.112,48.87],[23.119,48.867],[23.129,48.861],[23.138,48.852],[23.16,48.814],[23.18,48.79],[23.186,48.785],[23.193,48.781],[23.202,48.777],[23.212,48.775],[23.258,48.772],[23.272,48.773],[23.281,48.775],[23.291,48.781],[23.295,48.782],[23.298,48.781],[23.301,48.776],[23.302,48.773],[23.302,48.762],[23.303,48.758],[23.304,48.755],[23.305,48.753],[23.307,48.752],[23.308,48.75],[23.308,48.75],[23.314,48.75],[23.322,48.753],[23.327,48.755],[23.342,48.769],[23.346,48.771],[23.351,48.772],[23.357,48.771],[23.366,48.764],[23.369,48.76],[23.371,48.755],[23.37,48.75],[23.371,48.746],[23.373,48.743],[23.375,48.74],[23.378,48.737],[23.386,48.734],[23.397,48.732],[23.426,48.728],[23.446,48.727],[23.499,48.731],[23.509,48.73],[23.533,48.724],[23.574,48.716],[23.612,48.704],[23.675,48.654],[23.693,48.645],[23.702,48.643],[23.709,48.643],[23.724,48.646],[23.735,48.648],[23.748,48.648],[23.76,48.647],[23.772,48.645],[23.777,48.642],[23.78,48.638],[23.783,48.63],[23.783,48.624],[23.781,48.615],[23.78,48.611],[23.781,48.607],[23.782,48.603],[23.785,48.599],[23.791,48.594],[23.847,48.563],[23.856,48.56],[23.865,48.558],[23.877,48.557],[23.882,48.555],[23.887,48.554],[23.895,48.55],[23.898,48.547],[23.902,48.543],[23.907,48.538],[23.914,48.528],[23.916,48.521],[23.917,48.515],[23.915,48.507],[23.913,48.504],[23.911,48.5],[23.908,48.493],[23.907,48.489],[23.907,48.485],[23.908,48.481],[23.912,48.478],[23.917,48.474],[23.928,48.471],[23.936,48.47],[23.943,48.47],[23.952,48.473],[23.96,48.476],[23.964,48.479],[23.981,48.491],[24.001,48.5],[24.046,48.505],[24.065,48.511],[24.114,48.532],[24.119,48.533],[24.124,48.534],[24.129,48.533],[24.134,48.531],[24.137,48.527],[24.138,48.52],[24.137,48.515],[24.135,48.506],[24.135,48.5],[24.135,48.493],[24.136,48.49],[24.139,48.483],[24.141,48.475],[24.141,48.471],[24.14,48.467],[24.139,48.463],[24.137,48.459],[24.131,48.434],[24.131,48.426],[24.132,48.414],[24.139,48.384],[24.141,48.38],[24.145,48.375],[24.151,48.369],[24.163,48.361],[24.171,48.357],[24.178,48.355],[24.208,48.351],[24.234,48.351],[24.257,48.353],[24.266,48.356],[24.271,48.357],[24.278,48.361],[24.285,48.366],[24.29,48.372],[24.293,48.375],[24.299,48.385],[24.302,48.387],[24.305,48.388],[24.31,48.387],[24.313,48.385],[24.32,48.381],[24.332,48.375],[24.336,48.371],[24.339,48.365],[24.343,48.353],[24.344,48.346],[24.346,48.34],[24.348,48.338],[24.353,48.337],[24.378,48.336],[24.385,48.335],[24.392,48.331],[24.4,48.324],[24.411,48.317],[24.43,48.307],[24.495,48.267],[24.499,48.263],[24.503,48.26],[24.521,48.235],[24.541,48.213],[24.543,48.209],[24.543,48.205],[24.541,48.198],[24.535,48.19],[24.53,48.185],[24.525,48.178],[24.523,48.175],[24.522,48.171],[24.521,48.167],[24.521,48.161],[24.523,48.155],[24.528,48.146],[24.532,48.141],[24.538,48.134],[24.607,48.089],[24.64,48.057],[24.641,48.053],[24.639,48.048],[24.588,47.996],[24.582,47.984],[24.572,47.95],[24.57,47.938],[24.57,47.937],[24.561,47.941],[24.542,47.944],[24.485,47.944],[24.428,47.953],[24.409,47.952],[24.386,47.944],[24.347,47.921],[24.298,47.92],[24.231,47.897],[24.209,47.898],[24.15,47.913],[24.148,47.912],[24.131,47.915],[24.094,47.938],[24.075,47.945],[24.025,47.954],[24.008,47.962],[23.977,47.963],[23.876,47.935],[23.855,47.935],[23.848,47.95],[23.796,47.982],[23.78,47.988],[23.71,47.985],[23.687,47.988],[23.646,47.997],[23.581,48.002],[23.563,48.006],[23.525,48.002],[23.514,47.999],[23.503,47.993],[23.499,47.987],[23.494,47.981],[23.488,47.976],[23.485,47.975],[23.481,47.973],[23.461,47.972],[23.396,47.993],[23.394,47.994],[23.393,47.994],[23.391,47.994],[23.39,47.993],[23.382,47.991],[23.374,47.991],[23.367,47.992],[23.36,47.994],[23.337,48.011],[23.289,48.039],[23.248,48.072],[23.231,48.08],[23.161,48.096],[23.139,48.099],[23.118,48.092],[23.099,48.072],[23.076,48.025],[23.063,48.008],[23.02,47.985],[23.004,47.983],[22.988,47.987],[22.972,47.993],[22.957,48.001],[22.939,48.006],[22.924,48.005],[22.915,47.993],[22.915,47.993],[22.924,47.973],[22.924,47.973],[22.916,47.96],[22.897,47.951],[22.877,47.947],[22.877,47.947],[22.84,47.967],[22.832,47.979],[22.832,47.979],[22.838,47.985],[22.849,47.994],[22.851,48.009],[22.858,48.018],[22.861,48.029],[22.854,48.048],[22.844,48.061],[22.831,48.073],[22.801,48.091],[22.765,48.105],[22.762,48.11],[22.745,48.117],[22.728,48.113],[22.711,48.106],[22.693,48.102],[22.621,48.102],[22.608,48.097],[22.605,48.097],[22.6,48.101],[22.583,48.125],[22.569,48.157],[22.555,48.178],[22.481,48.243],[22.477,48.244],[22.473,48.245],[22.469,48.244],[22.449,48.238],[22.434,48.237],[22.418,48.239],[22.398,48.245],[22.394,48.245],[22.39,48.245],[22.386,48.243],[22.378,48.239],[22.371,48.238],[22.363,48.239],[22.357,48.243],[22.308,48.294],[22.297,48.314],[22.296,48.328],[22.298,48.34],[22.298,48.349],[22.291,48.358],[22.284,48.359],[22.256,48.358],[22.257,48.374],[22.271,48.404],[22.236,48.416],[22.202,48.418],[22.169,48.41],[22.159,48.403],[22.156,48.402],[22.133,48.405],[22.133,48.477],[22.145,48.493],[22.148,48.509],[22.148,48.509],[22.136,48.55],[22.136,48.55],[22.138,48.57],[22.153,48.586],[22.219,48.621],[22.225,48.629],[22.235,48.645],[22.243,48.652],[22.255,48.657],[22.282,48.663],[22.294,48.668],[22.31,48.682],[22.322,48.701],[22.329,48.722],[22.329,48.722],[22.327,48.743],[22.327,48.743],[22.33,48.757],[22.338,48.763],[22.348,48.768],[22.356,48.777],[22.363,48.788],[22.365,48.795],[22.365,48.795],[22.363,48.829],[22.361,48.837],[22.361,48.837],[22.362,48.845],[22.369,48.857],[22.378,48.866],[22.402,48.879],[22.411,48.888],[22.413,48.894],[22.413,48.894],[22.413,48.907],[22.413,48.907],[22.415,48.912],[22.427,48.93],[22.449,48.972],[22.466,48.981],[22.505,48.985],[22.52,48.993],[22.52,48.993],[22.52,49.01],[22.52,49.01],[22.524,49.033],[22.532,49.056],[22.539,49.073],[22.539,49.073],[22.56,49.086],[22.58,49.082],[22.618,49.055],[22.643,49.044]]]
}
},
{
"type":"Feature",
"id":"02",
"properties":{
"name":"Винницкая область",
"Manager":"Региональный менеджер<br />Серый Павел",
"Phone":"(0512) 50-02-26 (многоканальный)",
"Email":"[email protected]",
"ICQ":"579 493 488",
"Mobile":"067-512-17-01"
},
"geometry":{
"type":"Polygon",
"coordinates":[[[28.94,49.796],[28.94,49.793],[28.941,49.79],[28.942,49.788],[28.959,49.765],[28.967,49.757],[28.97,49.754],[28.974,49.752],[29.002,49.738],[29.005,49.734],[29.004,49.731],[28.956,49.691],[28.951,49.685],[28.949,49.682],[28.947,49.678],[28.948,49.676],[28.948,49.674],[28.953,49.671],[28.972,49.662],[28.976,49.657],[28.978,49.653],[28.979,49.649],[28.98,49.646],[28.982,49.643],[28.996,49.629],[28.997,49.626],[28.997,49.623],[28.995,49.62],[28.993,49.617],[28.983,49.61],[28.98,49.607],[28.979,49.604],[28.98,49.601],[28.983,49.598],[28.987,49.596],[28.993,49.593],[29.002,49.59],[29.023,49.587],[29.061,49.589],[29.132,49.582],[29.239,49.587],[29.259,49.585],[29.264,49.585],[29.269,49.586],[29.271,49.591],[29.272,49.6],[29.273,49.604],[29.274,49.608],[29.282,49.612],[29.294,49.615],[29.337,49.618],[29.354,49.617],[29.363,49.619],[29.373,49.623],[29.405,49.643],[29.408,49.645],[29.412,49.648],[29.422,49.651],[29.447,49.651],[29.496,49.646],[29.503,49.644],[29.511,49.64],[29.513,49.637],[29.515,49.633],[29.514,49.626],[29.512,49.621],[29.509,49.617],[29.499,49.604],[29.497,49.6],[29.496,49.597],[29.495,49.592],[29.495,49.584],[29.496,49.573],[29.499,49.568],[29.502,49.563],[29.51,49.556],[29.516,49.552],[29.522,49.549],[29.562,49.536],[29.565,49.532],[29.567,49.528],[29.567,49.521],[29.566,49.508],[29.565,49.506],[29.562,49.504],[29.559,49.502],[29.554,49.5],[29.548,49.499],[29.545,49.497],[29.542,49.495],[29.54,49.491],[29.54,49.488],[29.543,49.482],[29.566,49.451],[29.57,49.444],[29.57,49.431],[29.569,49.422],[29.567,49.418],[29.565,49.415],[29.561,49.413],[29.511,49.391],[29.508,49.389],[29.505,49.386],[29.503,49.384],[29.502,49.382],[29.501,49.38],[29.5,49.379],[29.5,49.375],[29.499,49.368],[29.5,49.366],[29.516,49.346],[29.52,49.34],[29.522,49.334],[29.523,49.326],[29.525,49.322],[29.532,49.318],[29.547,49.313],[29.556,49.311],[29.585,49.308],[29.59,49.306],[29.594,49.304],[29.598,49.3],[29.611,49.28],[29.63,49.262],[29.637,49.253],[29.639,49.248],[29.642,49.245],[29.648,49.243],[29.662,49.243],[29.677,49.244],[29.688,49.241],[29.697,49.227],[29.675,49.21],[29.675,49.202],[29.679,49.2],[29.694,49.195],[29.699,49.193],[29.704,49.189],[29.711,49.183],[29.712,49.178],[29.711,49.174],[29.704,49.167],[29.701,49.161],[29.701,49.157],[29.703,49.152],[29.705,49.147],[29.709,49.136],[29.707,49.132],[29.704,49.128],[29.685,49.122],[29.68,49.119],[29.675,49.115],[29.674,49.109],[29.674,49.103],[29.676,49.093],[29.674,49.088],[29.671,49.085],[29.652,49.08],[29.618,49.067],[29.614,49.065],[29.61,49.062],[29.598,49.051],[29.595,49.045],[29.593,49.039],[29.593,49.031],[29.595,49.027],[29.597,49.023],[29.6,49.021],[29.603,49.018],[29.612,49.015],[29.618,49.013],[29.649,49.013],[29.655,49.012],[29.66,49.01],[29.664,49.008],[29.667,49.006],[29.671,49.001],[29.671,49.001],[29.672,48.999],[29.675,48.987],[29.673,48.984],[29.669,48.981],[29.663,48.981],[29.658,48.979],[29.653,48.975],[29.646,48.96],[29.642,48.956],[29.639,48.953],[29.635,48.95],[29.636,48.947],[29.639,48.945],[29.657,48.938],[29.661,48.936],[29.668,48.931],[29.672,48.929],[29.677,48.928],[29.693,48.928],[29.698,48.927],[29.703,48.925],[29.707,48.923],[29.713,48.918],[29.716,48.914],[29.719,48.91],[29.722,48.902],[29.722,48.897],[29.72,48.893],[29.708,48.887],[29.704,48.885],[29.7,48.88],[29.701,48.875],[29.704,48.867],[29.706,48.863],[29.709,48.859],[29.712,48.857],[29.716,48.854],[29.74,48.85],[29.745,48.849],[29.75,48.84],[29.768,48.778],[29.772,48.769],[29.778,48.768],[29.813,48.765],[29.84,48.766],[29.846,48.765],[29.853,48.762],[29.861,48.754],[29.868,48.75],[29.874,48.747],[29.879,48.746],[29.884,48.743],[29.888,48.74],[29.888,48.736],[29.886,48.734],[29.882,48.732],[29.865,48.726],[29.86,48.722],[29.858,48.718],[29.856,48.708],[29.857,48.703],[29.859,48.698],[29.865,48.693],[29.872,48.689],[29.905,48.673],[29.949,48.661],[29.955,48.659],[29.958,48.655],[29.959,48.652],[29.959,48.623],[29.961,48.615],[29.964,48.61],[29.972,48.598],[29.982,48.587],[30.001,48.571],[30.015,48.551],[30.021,48.538],[30.022,48.534],[30.021,48.529],[30.02,48.525],[30.018,48.522],[30.017,48.52],[30.012,48.515],[30.006,48.511],[30.003,48.51],[30.001,48.51],[29.996,48.51],[29.995,48.509],[29.993,48.506],[29.991,48.5],[29.988,48.495],[29.983,48.489],[29.979,48.487],[29.961,48.476],[29.959,48.474],[29.957,48.47],[29.956,48.463],[29.958,48.459],[29.961,48.457],[29.966,48.457],[29.973,48.458],[30.021,48.472],[30.032,48.473],[30.037,48.474],[30.042,48.473],[30.047,48.472],[30.052,48.471],[30.061,48.466],[30.076,48.455],[30.052,48.433],[30.039,48.428],[30.005,48.424],[29.998,48.422],[29.994,48.419],[29.98,48.402],[29.958,48.384],[29.947,48.377],[29.94,48.376],[29.937,48.378],[29.935,48.381],[29.933,48.384],[29.927,48.401],[29.925,48.404],[29.92,48.41],[29.918,48.413],[29.917,48.416],[29.917,48.42],[29.918,48.424],[29.917,48.428],[29.912,48.432],[29.898,48.434],[29.889,48.434],[29.883,48.433],[29.865,48.422],[29.859,48.417],[29.847,48.406],[29.842,48.4],[29.82,48.382],[29.788,48.361],[29.783,48.357],[29.779,48.353],[29.778,48.35],[29.777,48.348],[29.777,48.345],[29.778,48.342],[29.778,48.338],[29.778,48.33],[29.777,48.321],[29.775,48.317],[29.767,48.302],[29.761,48.295],[29.742,48.276],[29.74,48.273],[29.738,48.27],[29.739,48.267],[29.741,48.264],[29.745,48.262],[29.75,48.261],[29.774,48.257],[29.78,48.255],[29.784,48.254],[29.786,48.252],[29.786,48.251],[29.787,48.25],[29.787,48.25],[29.784,48.244],[29.783,48.241],[29.784,48.238],[29.786,48.235],[29.787,48.232],[29.787,48.228],[29.784,48.224],[29.779,48.219],[29.775,48.215],[29.773,48.211],[29.775,48.203],[29.717,48.182],[29.709,48.18],[29.698,48.18],[29.692,48.181],[29.682,48.182],[29.671,48.177],[29.667,48.173],[29.666,48.169],[29.667,48.166],[29.672,48.16],[29.693,48.142],[29.695,48.139],[29.698,48.136],[29.698,48.132],[29.697,48.126],[29.68,48.092],[29.675,48.09],[29.67,48.09],[29.661,48.093],[29.656,48.094],[29.651,48.093],[29.642,48.091],[29.586,48.087],[29.51,48.09],[29.497,48.093],[29.458,48.109],[29.454,48.111],[29.45,48.114],[29.435,48.113],[29.338,48.086],[29.246,48.085],[29.241,48.085],[29.223,48.092],[29.17,48.106],[29.162,48.11],[29.153,48.117],[29.149,48.119],[29.136,48.125],[29.117,48.136],[29.114,48.138],[29.11,48.141],[29.104,48.144],[29.093,48.146],[29.086,48.146],[29.078,48.144],[29.049,48.136],[29.045,48.134],[29.042,48.132],[29.041,48.128],[29.042,48.121],[29.05,48.097],[29.05,48.093],[29.05,48.089],[29.049,48.086],[29.046,48.083],[29.035,48.077],[29.018,48.071],[29.01,48.067],[28.997,48.057],[28.986,48.046],[28.964,48.036],[28.88,48.011],[28.862,48.001],[28.855,48.008],[28.839,48.019],[28.832,48.025],[28.831,48.031],[28.827,48.057],[28.811,48.083],[28.809,48.09],[28.808,48.097],[28.806,48.104],[28.799,48.112],[28.771,48.125],[28.735,48.129],[28.665,48.13],[28.573,48.155],[28.541,48.156],[28.519,48.149],[28.519,48.149],[28.501,48.113],[28.499,48.109],[28.494,48.092],[28.493,48.075],[28.49,48.066],[28.49,48.066],[28.479,48.065],[28.459,48.075],[28.447,48.083],[28.419,48.123],[28.435,48.135],[28.437,48.15],[28.427,48.164],[28.411,48.171],[28.388,48.169],[28.388,48.169],[28.375,48.157],[28.365,48.142],[28.349,48.13],[28.349,48.13],[28.328,48.127],[28.317,48.136],[28.315,48.15],[28.322,48.164],[28.338,48.176],[28.338,48.176],[28.352,48.182],[28.352,48.182],[28.363,48.191],[28.37,48.212],[28.368,48.231],[28.357,48.239],[28.34,48.24],[28.294,48.237],[28.294,48.237],[28.29,48.235],[28.277,48.229],[28.261,48.22],[28.24,48.212],[28.217,48.209],[28.2,48.212],[28.189,48.223],[28.185,48.243],[28.178,48.259],[28.162,48.258],[28.162,48.257],[28.131,48.24],[28.131,48.24],[28.115,48.237],[28.093,48.238],[28.078,48.245],[28.098,48.284],[28.092,48.302],[28.076,48.315],[28.056,48.322],[27.967,48.329],[27.926,48.34],[27.904,48.363],[27.896,48.368],[27.865,48.399],[27.85,48.41],[27.785,48.442],[27.752,48.452],[27.627,48.452],[27.607,48.458],[27.604,48.484],[27.583,48.486],[27.557,48.475],[27.545,48.473],[27.504,48.473],[27.494,48.482],[27.473,48.547],[27.458,48.577],[27.438,48.603],[27.41,48.621],[27.37,48.63],[27.393,48.684],[27.399,48.709],[27.402,48.732],[27.401,48.736],[27.399,48.742],[27.397,48.752],[27.396,48.761],[27.399,48.765],[27.403,48.766],[27.414,48.765],[27.42,48.766],[27.425,48.77],[27.426,48.774],[27.425,48.777],[27.422,48.78],[27.419,48.782],[27.415,48.788],[27.408,48.801],[27.403,48.815],[27.4,48.869],[27.399,48.876],[27.394,48.89],[27.387,48.907],[27.377,48.92],[27.375,48.924],[27.372,48.93],[27.372,48.935],[27.374,48.939],[27.377,48.941],[27.386,48.945],[27.391,48.948],[27.397,48.953],[27.398,48.957],[27.398,48.961],[27.396,48.964],[27.39,48.969],[27.387,48.973],[27.383,48.978],[27.38,48.987],[27.381,48.992],[27.383,48.996],[27.388,49],[27.392,49.013],[27.395,49.018],[27.399,49.021],[27.402,49.022],[27.406,49.024],[27.416,49.031],[27.424,49.034],[27.428,49.037],[27.431,49.039],[27.434,49.043],[27.436,49.047],[27.44,49.058],[27.442,49.061],[27.445,49.064],[27.448,49.066],[27.465,49.071],[27.471,49.076],[27.472,49.081],[27.472,49.088],[27.474,49.093],[27.477,49.098],[27.482,49.105],[27.489,49.118],[27.495,49.123],[27.5,49.126],[27.525,49.127],[27.568,49.122],[27.574,49.123],[27.578,49.124],[27.581,49.127],[27.601,49.152],[27.609,49.158],[27.616,49.16],[27.64,49.156],[27.655,49.152],[27.671,49.144],[27.681,49.14],[27.686,49.139],[27.705,49.137],[27.715,49.134],[27.735,49.124],[27.745,49.12],[27.755,49.118],[27.767,49.116],[27.773,49.116],[27.777,49.118],[27.783,49.12],[27.802,49.137],[27.811,49.142],[27.834,49.149],[27.865,49.15],[27.873,49.151],[27.884,49.155],[27.888,49.159],[27.889,49.163],[27.888,49.166],[27.884,49.172],[27.882,49.179],[27.881,49.183],[27.881,49.187],[27.881,49.195],[27.88,49.203],[27.879,49.207],[27.878,49.21],[27.876,49.213],[27.873,49.216],[27.862,49.226],[27.859,49.229],[27.857,49.232],[27.856,49.237],[27.855,49.242],[27.857,49.249],[27.86,49.255],[27.865,49.261],[27.874,49.268],[27.877,49.273],[27.877,49.277],[27.875,49.28],[27.871,49.286],[27.858,49.296],[27.855,49.298],[27.852,49.305],[27.852,49.309],[27.852,49.313],[27.853,49.319],[27.854,49.324],[27.853,49.328],[27.851,49.331],[27.848,49.333],[27.844,49.335],[27.827,49.338],[27.823,49.339],[27.819,49.341],[27.817,49.344],[27.816,49.348],[27.814,49.359],[27.813,49.362],[27.807,49.369],[27.805,49.373],[27.803,49.379],[27.804,49.383],[27.806,49.385],[27.809,49.386],[27.838,49.394],[27.844,49.396],[27.846,49.399],[27.846,49.403],[27.839,49.416],[27.836,49.423],[27.833,49.425],[27.83,49.428],[27.826,49.43],[27.765,49.43],[27.758,49.431],[27.752,49.432],[27.747,49.434],[27.743,49.437],[27.74,49.44],[27.738,49.447],[27.74,49.451],[27.742,49.455],[27.745,49.458],[27.758,49.464],[27.763,49.467],[27.763,49.47],[27.761,49.472],[27.758,49.474],[27.729,49.489],[27.726,49.493],[27.724,49.5],[27.726,49.514],[27.728,49.522],[27.732,49.526],[27.736,49.528],[27.742,49.528],[27.747,49.528],[27.753,49.528],[27.762,49.524],[27.768,49.524],[27.775,49.527],[27.784,49.536],[27.787,49.542],[27.786,49.546],[27.783,49.549],[27.772,49.556],[27.769,49.559],[27.767,49.563],[27.767,49.567],[27.769,49.57],[27.779,49.578],[27.809,49.618],[27.813,49.625],[27.816,49.631],[27.816,49.635],[27.814,49.638],[27.812,49.641],[27.808,49.647],[27.801,49.652],[27.793,49.656],[27.785,49.66],[27.759,49.668],[27.755,49.67],[27.752,49.674],[27.75,49.679],[27.751,49.683],[27.753,49.687],[27.762,49.7],[27.765,49.703],[27.769,49.704],[27.774,49.705],[27.799,49.701],[27.805,49.701],[27.81,49.702],[27.814,49.704],[27.822,49.708],[27.831,49.715],[27.836,49.722],[27.837,49.726],[27.834,49.729],[27.816,49.737],[27.812,49.739],[27.813,49.741],[27.817,49.742],[27.836,49.742],[27.85,49.745],[27.868,49.76],[27.957,49.767],[28.025,49.76],[28.058,49.763],[28.143,49.778],[28.239,49.78],[28.249,49.782],[28.267,49.788],[28.275,49.788],[28.286,49.787],[28.333,49.773],[28.342,49.772],[28.353,49.771],[28.374,49.773],[28.39,49.777],[28.393,49.779],[28.398,49.783],[28.417,49.804],[28.42,49.807],[28.431,49.808],[28.519,49.807],[28.528,49.806],[28.554,49.796],[28.56,49.793],[28.563,49.79],[28.566,49.788],[28.571,49.787],[28.592,49.79],[28.607,49.793],[28.625,49.8],[28.629,49.801],[28.635,49.801],[28.71,49.794],[28.72,49.794],[28.723,49.795],[28.725,49.797],[28.728,49.799],[28.73,49.802],[28.739,49.816],[28.751,49.832],[28.754,49.835],[28.758,49.837],[28.77,49.843],[28.795,49.849],[28.803,49.852],[28.811,49.857],[28.814,49.86],[28.816,49.863],[28.821,49.87],[28.824,49.878],[28.828,49.881],[28.835,49.881],[28.899,49.876],[28.905,49.875],[28.91,49.872],[28.911,49.868],[28.91,49.865],[28.908,49.861],[28.91,49.857],[28.915,49.851],[28.932,49.841],[28.937,49.835],[28.94,49.831],[28.937,49.826],[28.936,49.822],[28.936,49.819],[28.938,49.815],[28.939,49.812],[28.94,49.808],[28.941,49.805],[28.94,49.796]]]
}
},
{
"type":"Feature",
"id":"02",
"properties":{
"name":"Волынская область",
"Manager":"Региональный менеджер<br />Биднин Максим",
"Phone":"(0512) 50-02-26 (многоканальный)",
"Email":"[email protected]",
"ICQ":"266 507 873",
"Mobile":"+38 (067) 512-33-20"
},
"geometry":{
"type":"Polygon",
"coordinates":[[[25.645,51.883],[25.641,51.881],[25.637,51.878],[25.634,51.876],[25.631,51.872],[25.63,51.867],[25.63,51.86],[25.632,51.853],[25.634,51.847],[25.638,51.841],[25.64,51.838],[25.641,51.834],[25.643,51.831],[25.643,51.827],[25.641,51.822],[25.638,51.817],[25.628,51.804],[25.615,51.793],[25.608,51.788],[25.573,51.768],[25.524,51.725],[25.515,51.715],[25.513,51.708],[25.51,51.699],[25.506,51.678],[25.504,51.661],[25.507,51.641],[25.507,51.629],[25.508,51.625],[25.509,51.621],[25.512,51.618],[25.515,51.615],[25.519,51.613],[25.524,51.612],[25.536,51.61],[25.543,51.611],[25.554,51.612],[25.558,51.612],[25.56,51.61],[25.562,51.607],[25.563,51.603],[25.564,51.6],[25.567,51.597],[25.572,51.595],[25.59,51.592],[25.594,51.59],[25.598,51.588],[25.601,51.585],[25.603,51.582],[25.603,51.577],[25.6,51.571],[25.592,51.56],[25.587,51.555],[25.569,51.546],[25.562,51.541],[25.556,51.535],[25.554,51.531],[25.551,51.525],[25.551,51.51],[25.551,51.505],[25.553,51.497],[25.564,51.469],[25.565,51.466],[25.566,51.462],[25.566,51.458],[25.565,51.449],[25.561,51.432],[25.559,51.419],[25.56,51.411],[25.562,51.399],[25.561,51.395],[25.554,51.358],[25.555,51.353],[25.556,51.349],[25.558,51.346],[25.563,51.341],[25.566,51.338],[25.569,51.336],[25.574,51.334],[25.578,51.333],[25.583,51.333],[25.587,51.334],[25.591,51.336],[25.594,51.339],[25.599,51.35],[25.602,51.354],[25.604,51.357],[25.608,51.359],[25.621,51.364],[25.631,51.367],[25.643,51.368],[25.656,51.369],[25.668,51.368],[25.69,51.362],[25.695,51.362],[25.701,51.362],[25.706,51.363],[25.71,51.365],[25.717,51.37],[25.72,51.373],[25.727,51.382],[25.73,51.385],[25.734,51.388],[25.739,51.389],[25.743,51.388],[25.747,51.386],[25.749,51.383],[25.751,51.38],[25.753,51.377],[25.756,51.375],[25.761,51.373],[25.766,51.371],[25.773,51.37],[25.786,51.37],[25.792,51.371],[25.796,51.372],[25.801,51.374],[25.816,51.383],[25.82,51.384],[25.822,51.381],[25.821,51.373],[25.812,51.35],[25.809,51.34],[25.808,51.332],[25.809,51.329],[25.813,51.323],[25.817,51.32],[25.82,51.318],[25.829,51.314],[25.849,51.308],[25.852,51.307],[25.855,51.305],[25.856,51.303],[25.857,51.299],[25.859,51.291],[25.86,51.288],[25.862,51.285],[25.865,51.282],[25.868,51.28],[25.897,51.265],[25.917,51.25],[25.922,51.244],[25.925,51.242],[25.929,51.24],[26.005,51.216],[26.056,51.184],[26.059,51.181],[26.061,51.178],[26.063,51.174],[26.063,51.17],[26.062,51.159],[26.061,51.153],[26.057,51.146],[26.048,51.136],[26.036,51.129],[26.028,51.126],[25.957,51.116],[25.952,51.114],[25.951,51.108],[25.947,51.08],[25.947,51.075],[25.95,51.073],[25.954,51.071],[25.98,51.064],[25.985,51.064],[25.99,51.065],[26,51.071],[26.003,51.072],[26.013,51.073],[26.024,51.073],[26.029,51.072],[26.033,51.071],[26.041,51.066],[26.058,51.054],[26.074,51.037],[26.076,51.034],[26.077,51.03],[26.079,51.023],[26.08,51.019],[26.083,51.016],[26.087,51.014],[26.089,51.011],[26.091,51.008],[26.092,51.005],[26.094,50.992],[26.096,50.985],[26.094,50.981],[26.09,50.976],[26.076,50.97],[26.068,50.967],[26.06,50.965],[25.989,50.959],[25.983,50.956],[25.979,50.952],[25.975,50.945],[25.975,50.941],[25.978,50.937],[25.982,50.935],[25.997,50.927],[26.002,50.924],[26.006,50.921],[26.011,50.917],[26.013,50.915],[26.015,50.911],[26.015,50.907],[26.014,50.903],[26.013,50.899],[26.012,50.895],[26.007,50.892],[25.982,50.877],[25.969,50.864],[25.966,50.858],[25.967,50.854],[25.971,50.852],[25.995,50.845],[26.001,50.842],[26.003,50.84],[26.004,50.837],[26.003,50.835],[25.997,50.828],[25.994,50.826],[25.988,50.824],[25.979,50.824],[25.96,50.827],[25.954,50.827],[25.948,50.827],[25.943,50.826],[25.935,50.823],[25.89,50.8],[25.886,50.799],[25.88,50.796],[25.875,50.793],[25.87,50.785],[25.868,50.781],[25.868,50.778],[25.868,50.774],[25.865,50.735],[25.869,50.716],[25.87,50.712],[25.87,50.709],[25.871,50.701],[25.87,50.697],[25.868,50.693],[25.861,50.686],[25.855,50.681],[25.851,50.677],[25.848,50.673],[25.846,50.67],[25.837,50.636],[25.833,50.633],[25.827,50.631],[25.817,50.631],[25.81,50.632],[25.804,50.633],[25.796,50.637],[25.775,50.652],[25.767,50.656],[25.762,50.657],[25.756,50.659],[25.717,50.663],[25.712,50.665],[25.71,50.667],[25.71,50.67],[25.711,50.673],[25.71,50.677],[25.708,50.679],[25.688,50.695],[25.673,50.704],[25.668,50.706],[25.656,50.707],[25.603,50.707],[25.583,50.7],[25.561,50.69],[25.523,50.677],[25.488,50.668],[25.458,50.656],[25.449,50.655],[25.44,50.654],[25.415,50.658],[25.394,50.663],[25.382,50.669],[25.367,50.678],[25.363,50.679],[25.36,50.678],[25.358,50.673],[25.359,50.669],[25.365,50.659],[25.364,50.655],[25.361,50.65],[25.353,50.643],[25.351,50.636],[25.353,50.632],[25.356,50.629],[25.379,50.62],[25.383,50.618],[25.384,50.615],[25.382,50.612],[25.373,50.609],[25.367,50.609],[25.295,50.616],[25.29,50.614],[25.286,50.611],[25.285,50.604],[25.287,50.6],[25.299,50.585],[25.303,50.579],[25.304,50.575],[25.305,50.572],[25.306,50.568],[25.306,50.563],[25.305,50.559],[25.302,50.554],[25.297,50.549],[25.287,50.543],[25.279,50.541],[25.271,50.54],[25.195,50.545],[25.148,50.553],[25.143,50.553],[25.138,50.552],[25.133,50.549],[25.126,50.544],[25.122,50.54],[25.12,50.536],[25.119,50.532],[25.123,50.527],[25.127,50.524],[25.157,50.51],[25.164,50.505],[25.167,50.503],[25.168,50.5],[25.167,50.498],[25.151,50.48],[25.144,50.473],[25.141,50.47],[25.137,50.468],[25.133,50.466],[25.127,50.465],[25.121,50.465],[25.103,50.467],[25.097,50.467],[25.093,50.465],[25.092,50.462],[25.094,50.458],[25.097,50.455],[25.101,50.452],[25.118,50.444],[25.133,50.435],[25.142,50.427],[25.168,50.399],[25.171,50.397],[25.176,50.395],[25.194,50.393],[25.199,50.391],[25.202,50.389],[25.204,50.385],[25.204,50.381],[25.201,50.376],[25.195,50.37],[25.182,50.366],[25.173,50.364],[25.163,50.362],[25.155,50.358],[25.144,50.347],[25.123,50.331],[25.063,50.295],[25.066,50.323],[25.064,50.334],[25.062,50.338],[25.059,50.341],[25.054,50.345],[25.049,50.347],[25.044,50.349],[25.039,50.349],[25.034,50.349],[25.004,50.346],[24.983,50.352],[24.955,50.364],[24.942,50.369],[24.932,50.37],[24.929,50.367],[24.929,50.364],[24.93,50.352],[24.924,50.349],[24.911,50.348],[24.848,50.355],[24.825,50.352],[24.815,50.35],[24.806,50.347],[24.798,50.343],[24.788,50.341],[24.773,50.341],[24.724,50.344],[24.713,50.346],[24.709,50.347],[24.705,50.35],[24.703,50.353],[24.702,50.356],[24.704,50.364],[24.698,50.37],[24.688,50.377],[24.647,50.393],[24.639,50.397],[24.639,50.401],[24.639,50.405],[24.638,50.409],[24.634,50.413],[24.629,50.415],[24.623,50.416],[24.591,50.417],[24.584,50.419],[24.578,50.421],[24.574,50.428],[24.57,50.432],[24.564,50.437],[24.558,50.438],[24.553,50.438],[24.549,50.436],[24.547,50.433],[24.546,50.429],[24.546,50.421],[24.546,50.417],[24.544,50.414],[24.542,50.411],[24.537,50.408],[24.529,50.407],[24.515,50.406],[24.509,50.408],[24.504,50.411],[24.503,50.414],[24.504,50.418],[24.506,50.425],[24.506,50.429],[24.505,50.433],[24.504,50.436],[24.499,50.44],[24.457,50.461],[24.454,50.464],[24.451,50.467],[24.45,50.47],[24.452,50.473],[24.455,50.475],[24.459,50.477],[24.463,50.479],[24.513,50.487],[24.522,50.49],[24.529,50.495],[24.532,50.497],[24.535,50.5],[24.537,50.504],[24.538,50.507],[24.538,50.511],[24.537,50.515],[24.536,50.518],[24.531,50.524],[24.501,50.546],[24.496,50.548],[24.491,50.549],[24.48,50.551],[24.475,50.551],[24.458,50.547],[24.446,50.546],[24.44,50.547],[24.434,50.549],[24.405,50.567],[24.403,50.57],[24.403,50.574],[24.404,50.577],[24.403,50.582],[24.398,50.589],[24.379,50.601],[24.368,50.607],[24.359,50.61],[24.354,50.61],[24.35,50.61],[24.346,50.609],[24.343,50.607],[24.339,50.604],[24.334,50.598],[24.33,50.596],[24.326,50.594],[24.321,50.593],[24.297,50.591],[24.286,50.589],[24.276,50.585],[24.259,50.583],[24.259,50.576],[24.248,50.582],[24.229,50.585],[24.218,50.589],[24.209,50.597],[24.202,50.606],[24.194,50.614],[24.18,50.617],[24.171,50.621],[24.165,50.64],[24.152,50.644],[24.139,50.644],[24.126,50.642],[24.115,50.637],[24.108,50.63],[24.082,50.67],[24.075,50.691],[24.081,50.713],[24.054,50.717],[24.027,50.728],[24.012,50.744],[24.026,50.761],[24.026,50.767],[23.998,50.77],[23.974,50.777],[23.959,50.789],[23.957,50.808],[23.97,50.825],[23.97,50.825],[23.993,50.837],[24.02,50.839],[24.047,50.829],[24.067,50.835],[24.1,50.835],[24.13,50.839],[24.13,50.839],[24.143,50.857],[24.13,50.869],[24.047,50.898],[23.979,50.938],[23.964,50.954],[23.958,50.967],[23.957,50.976],[23.955,50.984],[23.944,50.995],[23.931,51],[23.919,51.003],[23.911,51.007],[23.916,51.015],[23.916,51.021],[23.904,51.063],[23.895,51.076],[23.869,51.102],[23.854,51.122],[23.858,51.131],[23.858,51.131],[23.874,51.136],[23.874,51.137],[23.863,51.149],[23.816,51.179],[23.765,51.199],[23.742,51.217],[23.687,51.293],[23.67,51.3],[23.651,51.3],[23.635,51.305],[23.628,51.326],[23.634,51.34],[23.647,51.354],[23.647,51.354],[23.657,51.361],[23.665,51.366],[23.665,51.366],[23.683,51.371],[23.683,51.371],[23.677,51.384],[23.679,51.394],[23.679,51.394],[23.679,51.395],[23.686,51.401],[23.686,51.401],[23.697,51.405],[23.697,51.405],[23.689,51.417],[23.648,51.454],[23.647,51.461],[23.662,51.481],[23.648,51.487],[23.63,51.491],[23.614,51.498],[23.608,51.512],[23.606,51.518],[23.615,51.513],[23.624,51.516],[23.628,51.532],[23.628,51.532],[23.626,51.541],[23.599,51.589],[23.593,51.597],[23.593,51.597],[23.594,51.605],[23.606,51.619],[23.616,51.625],[23.629,51.629],[23.726,51.645],[23.749,51.645],[23.82,51.632],[23.845,51.63],[23.885,51.62],[23.913,51.599],[23.941,51.582],[23.981,51.586],[24.13,51.67],[24.244,51.719],[24.272,51.743],[24.296,51.809],[24.311,51.828],[24.348,51.861],[24.369,51.875],[24.39,51.88],[24.639,51.892],[24.701,51.883],[24.721,51.883],[25.002,51.911],[25.092,51.94],[25.138,51.949],[25.183,51.95],[25.352,51.922],[25.547,51.92],[25.552,51.902],[25.564,51.897],[25.655,51.893],[25.66,51.892],[25.663,51.891],[25.659,51.888],[25.645,51.883]]]
}
},
{
"type":"Feature",
"id":"02",
"properties":{
"name":"Запорожская область",
"Manager":"Филиал в г. Запорожье",
"Phone":"(061) 222-61-08 (многоканальный)",
"Email":"[email protected]",
"ICQ":"604 791 008",
"Mobile":"067 517 14 90",
"Address":"г. Запорожье, ул. Колерова, 3 (въезд с ул. Карпенко-Карого)"
},
"geometry":{
"type":"Polygon",
"coordinates":[[[36.576,47.844],[36.577,47.803],[36.584,47.791],[36.594,47.788],[36.606,47.786],[36.617,47.786],[36.643,47.79],[36.65,47.79],[36.653,47.788],[36.655,47.785],[36.657,47.778],[36.659,47.764],[36.661,47.757],[36.689,47.716],[36.703,47.691],[36.709,47.685],[36.715,47.681],[36.741,47.677],[36.747,47.675],[36.749,47.672],[36.748,47.67],[36.745,47.668],[36.736,47.665],[36.727,47.663],[36.723,47.661],[36.72,47.658],[36.721,47.649],[36.724,47.644],[36.727,47.641],[36.732,47.639],[36.749,47.636],[36.752,47.634],[36.753,47.63],[36.752,47.626],[36.749,47.617],[36.748,47.612],[36.749,47.605],[36.752,47.602],[36.757,47.6],[36.767,47.602],[36.798,47.61],[36.809,47.606],[36.826,47.596],[36.865,47.566],[36.882,47.556],[36.893,47.551],[36.897,47.553],[36.904,47.557],[36.931,47.571],[36.937,47.571],[36.944,47.57],[36.988,47.553],[36.995,47.547],[37.021,47.524],[37.1,47.478],[37.103,47.475],[37.122,47.455],[37.129,47.451],[37.134,47.45],[37.138,47.452],[37.141,47.455],[37.144,47.461],[37.147,47.463],[37.152,47.464],[37.194,47.459],[37.211,47.459],[37.219,47.458],[37.221,47.455],[37.22,47.452],[37.218,47.448],[37.202,47.429],[37.2,47.426],[37.199,47.422],[37.2,47.413],[37.199,47.409],[37.189,47.395],[37.185,47.388],[37.183,47.384],[37.182,47.38],[37.182,47.376],[37.183,47.368],[37.185,47.363],[37.186,47.359],[37.185,47.356],[37.182,47.353],[37.179,47.351],[37.171,47.347],[37.167,47.346],[37.164,47.346],[37.161,47.348],[37.159,47.35],[37.157,47.353],[37.152,47.359],[37.15,47.361],[37.143,47.366],[37.14,47.369],[37.136,47.371],[37.131,47.372],[37.126,47.373],[37.123,47.373],[37.119,47.372],[37.114,47.371],[37.107,47.368],[37.103,47.366],[37.1,47.363],[37.096,47.355],[37.092,47.347],[37.09,47.343],[37.088,47.34],[37.079,47.33],[37.077,47.326],[37.075,47.323],[37.074,47.319],[37.075,47.308],[37.074,47.304],[37.072,47.301],[37.069,47.298],[37.065,47.296],[37.029,47.288],[37.008,47.287],[36.989,47.289],[36.977,47.291],[36.973,47.293],[36.97,47.296],[36.967,47.298],[36.962,47.299],[36.952,47.299],[36.947,47.3],[36.943,47.301],[36.94,47.304],[36.936,47.305],[36.932,47.305],[36.928,47.304],[36.919,47.301],[36.916,47.298],[36.913,47.294],[36.914,47.284],[36.919,47.275],[36.934,47.254],[36.936,47.248],[36.938,47.241],[36.941,47.216],[36.94,47.212],[36.939,47.209],[36.936,47.207],[36.932,47.205],[36.923,47.203],[36.87,47.2],[36.864,47.199],[36.86,47.197],[36.857,47.194],[36.857,47.191],[36.859,47.188],[36.864,47.182],[36.889,47.166],[36.898,47.162],[36.941,47.15],[36.959,47.142],[36.963,47.14],[36.967,47.135],[36.983,47.117],[36.991,47.106],[37.003,47.077],[37.006,47.07],[37.011,47.066],[37.046,47.046],[37.049,47.045],[37.053,47.045],[37.055,47.048],[37.061,47.054],[37.064,47.057],[37.067,47.058],[37.071,47.058],[37.074,47.056],[37.091,47.044],[37.106,47.037],[37.111,47.034],[37.118,47.028],[37.121,47.024],[37.12,47.02],[37.117,47.018],[37.106,47.011],[37.098,47.006],[37.094,47.001],[37.094,47],[37.114,46.976],[37.116,46.97],[37.114,46.966],[37.1,46.958],[37.096,46.956],[37.091,46.955],[37.086,46.955],[37.082,46.956],[37.072,46.96],[37.067,46.961],[37.062,46.961],[37.057,46.959],[37.051,46.957],[37.047,46.954],[37.019,46.936],[37.016,46.933],[37.013,46.93],[37.01,46.927],[37.008,46.922],[37.008,46.918],[37.01,46.915],[37.038,46.877],[37.029,46.876],[37.018,46.871],[36.985,46.853],[36.974,46.848],[36.939,46.84],[36.886,46.804],[36.854,46.801],[36.863,46.777],[36.849,46.755],[36.83,46.732],[36.82,46.708],[36.812,46.681],[36.794,46.654],[36.769,46.637],[36.744,46.642],[36.744,46.65],[36.751,46.65],[36.772,46.644],[36.79,46.671],[36.802,46.707],[36.803,46.725],[36.795,46.729],[36.758,46.759],[36.743,46.765],[36.71,46.773],[36.696,46.78],[36.679,46.773],[36.662,46.774],[36.634,46.78],[36.617,46.777],[36.606,46.769],[36.598,46.762],[36.59,46.759],[36.524,46.759],[36.483,46.742],[36.433,46.735],[36.4,46.724],[36.371,46.709],[36.304,46.659],[36.285,46.637],[36.279,46.608],[36.271,46.608],[36.271,46.622],[36.268,46.626],[36.258,46.622],[36.248,46.619],[36.247,46.613],[36.246,46.611],[36.241,46.62],[36.244,46.624],[36.245,46.631],[36.244,46.635],[36.233,46.641],[36.231,46.642],[36.222,46.654],[36.217,46.659],[36.21,46.663],[36.19,46.669],[36.172,46.669],[36.135,46.663],[36.062,46.67],[35.926,46.652],[35.902,46.653],[35.827,46.623],[35.771,46.601],[35.742,46.585],[35.662,46.519],[35.629,46.499],[35.511,46.457],[35.492,46.448],[35.476,46.436],[35.446,46.406],[35.43,46.396],[35.395,46.379],[35.38,46.369],[35.285,46.259],[35.28,46.255],[35.268,46.26],[35.265,46.26],[35.292,46.293],[35.328,46.319],[35.342,46.336],[35.346,46.361],[35.329,46.348],[35.312,46.338],[35.292,46.337],[35.268,46.351],[35.259,46.373],[35.265,46.4],[35.285,46.437],[35.277,46.441],[35.261,46.442],[35.251,46.444],[35.243,46.447],[35.23,46.456],[35.215,46.463],[35.202,46.476],[35.192,46.494],[35.189,46.513],[35.167,46.493],[35.174,46.473],[35.192,46.455],[35.202,46.441],[35.205,46.428],[35.211,46.42],[35.214,46.412],[35.21,46.396],[35.202,46.385],[35.168,46.361],[35.109,46.298],[35.105,46.295],[35.069,46.3],[35.06,46.306],[35.059,46.324],[35.059,46.328],[35.053,46.348],[35.053,46.355],[35.053,46.359],[35.055,46.363],[35.06,46.375],[35.061,46.379],[35.06,46.384],[35.035,46.456],[35.029,46.465],[35.023,46.469],[34.995,46.469],[34.99,46.47],[34.984,46.472],[34.969,46.479],[34.96,46.48],[34.947,46.486],[34.925,46.5],[34.924,46.5],[34.918,46.501],[34.871,46.498],[34.858,46.498],[34.854,46.5],[34.853,46.501],[34.853,46.502],[34.853,46.513],[34.853,46.516],[34.855,46.519],[34.858,46.522],[34.861,46.524],[34.864,46.527],[34.866,46.531],[34.866,46.537],[34.863,46.54],[34.858,46.542],[34.811,46.545],[34.776,46.544],[34.767,46.545],[34.762,46.547],[34.759,46.55],[34.757,46.553],[34.756,46.557],[34.754,46.56],[34.729,46.587],[34.725,46.593],[34.723,46.596],[34.722,46.599],[34.722,46.603],[34.723,46.606],[34.725,46.61],[34.73,46.616],[34.74,46.623],[34.743,46.626],[34.744,46.63],[34.745,46.634],[34.745,46.637],[34.743,46.644],[34.738,46.654],[34.733,46.662],[34.728,46.666],[34.722,46.669],[34.698,46.671],[34.691,46.673],[34.684,46.675],[34.667,46.684],[34.661,46.686],[34.657,46.684],[34.652,46.683],[34.646,46.683],[34.635,46.686],[34.631,46.689],[34.629,46.693],[34.627,46.704],[34.627,46.707],[34.628,46.71],[34.63,46.713],[34.633,46.716],[34.637,46.718],[34.641,46.719],[34.646,46.72],[34.674,46.72],[34.679,46.721],[34.683,46.722],[34.687,46.724],[34.69,46.727],[34.692,46.731],[34.698,46.736],[34.705,46.74],[34.714,46.743],[34.718,46.745],[34.721,46.747],[34.724,46.751],[34.729,46.763],[34.731,46.766],[34.734,46.769],[34.741,46.775],[34.743,46.778],[34.744,46.782],[34.745,46.805],[34.746,46.808],[34.747,46.812],[34.75,46.814],[34.755,46.816],[34.764,46.817],[34.79,46.825],[34.794,46.827],[34.797,46.832],[34.797,46.84],[34.792,46.855],[34.788,46.862],[34.784,46.867],[34.781,46.869],[34.776,46.871],[34.771,46.873],[34.76,46.873],[34.754,46.875],[34.746,46.878],[34.743,46.882],[34.74,46.885],[34.729,46.917],[34.726,46.923],[34.722,46.927],[34.718,46.929],[34.669,46.939],[34.66,46.943],[34.649,46.95],[34.645,46.952],[34.64,46.953],[34.615,46.957],[34.608,46.959],[34.605,46.962],[34.604,46.966],[34.601,46.98],[34.598,46.99],[34.595,46.995],[34.592,46.998],[34.589,47],[34.588,47],[34.574,47.003],[34.566,47.005],[34.562,47.008],[34.56,47.012],[34.558,47.019],[34.557,47.052],[34.54,47.1],[34.537,47.104],[34.532,47.106],[34.518,47.11],[34.51,47.113],[34.506,47.117],[34.504,47.121],[34.503,47.128],[34.499,47.141],[34.498,47.149],[34.497,47.156],[34.497,47.16],[34.501,47.181],[34.501,47.184],[34.5,47.188],[34.492,47.215],[34.492,47.219],[34.492,47.222],[34.493,47.226],[34.495,47.229],[34.5,47.232],[34.503,47.234],[34.504,47.239],[34.505,47.247],[34.503,47.251],[34.501,47.254],[34.486,47.261],[34.479,47.266],[34.476,47.27],[34.475,47.274],[34.475,47.277],[34.476,47.286],[34.478,47.29],[34.48,47.294],[34.483,47.297],[34.486,47.299],[34.501,47.303],[34.504,47.305],[34.507,47.307],[34.508,47.311],[34.506,47.314],[34.504,47.316],[34.5,47.317],[34.496,47.318],[34.429,47.313],[34.42,47.31],[34.416,47.308],[34.414,47.305],[34.412,47.301],[34.412,47.297],[34.41,47.293],[34.404,47.288],[34.401,47.285],[34.397,47.277],[34.393,47.275],[34.389,47.273],[34.384,47.273],[34.379,47.273],[34.373,47.274],[34.359,47.28],[34.354,47.281],[34.34,47.28],[34.336,47.278],[34.324,47.272],[34.316,47.27],[34.31,47.269],[34.305,47.27],[34.298,47.272],[34.295,47.275],[34.294,47.279],[34.293,47.294],[34.292,47.298],[34.29,47.302],[34.281,47.319],[34.23,47.431],[34.204,47.478],[34.319,47.505],[34.446,47.523],[34.584,47.567],[34.595,47.569],[34.645,47.564],[34.73,47.539],[34.833,47.526],[34.898,47.523],[34.907,47.524],[34.911,47.526],[34.916,47.531],[34.922,47.539],[34.923,47.542],[34.93,47.563],[34.93,47.567],[34.93,47.571],[34.928,47.574],[34.926,47.577],[34.92,47.582],[34.9,47.592],[34.897,47.594],[34.895,47.597],[34.896,47.601],[34.897,47.604],[34.912,47.63],[34.919,47.647],[34.927,47.677],[34.934,47.692],[34.945,47.739],[34.945,47.743],[34.944,47.746],[34.941,47.749],[34.936,47.75],[34.912,47.752],[34.894,47.756],[34.889,47.757],[34.886,47.76],[34.887,47.764],[34.89,47.777],[34.891,47.78],[34.89,47.784],[34.888,47.787],[34.887,47.79],[34.887,47.794],[34.888,47.799],[34.891,47.805],[34.9,47.816],[34.903,47.82],[34.904,47.824],[34.904,47.827],[34.904,47.829],[34.902,47.831],[34.896,47.835],[34.818,47.867],[34.812,47.871],[34.81,47.874],[34.808,47.878],[34.808,47.881],[34.808,47.885],[34.809,47.89],[34.81,47.895],[34.814,47.902],[34.82,47.907],[34.846,47.922],[34.853,47.924],[34.897,47.931],[34.907,47.934],[34.912,47.938],[34.915,47.943],[34.916,47.947],[34.917,47.951],[34.917,47.955],[34.914,47.961],[34.912,47.964],[34.908,47.967],[34.904,47.968],[34.867,47.975],[34.857,47.978],[34.853,47.981],[34.85,47.983],[34.848,47.986],[34.846,47.989],[34.845,47.993],[34.845,47.996],[34.845,48.002],[34.844,48.004],[34.842,48.007],[34.839,48.008],[34.834,48.009],[34.823,48.009],[34.818,48.01],[34.815,48.012],[34.813,48.016],[34.814,48.02],[34.816,48.026],[34.821,48.029],[34.835,48.035],[34.838,48.038],[34.84,48.041],[34.842,48.065],[34.843,48.071],[34.845,48.073],[34.846,48.077],[34.846,48.079],[34.846,48.081],[34.84,48.089],[34.836,48.099],[34.835,48.103],[34.836,48.109],[34.841,48.118],[34.846,48.121],[34.851,48.123],[34.857,48.123],[34.863,48.122],[34.867,48.122],[34.87,48.119],[34.87,48.116],[34.87,48.111],[34.87,48.104],[34.871,48.097],[34.873,48.09],[34.875,48.087],[34.877,48.084],[34.881,48.082],[34.886,48.081],[34.943,48.081],[34.969,48.092],[35.002,48.111],[35.017,48.117],[35.029,48.119],[35.038,48.118],[35.048,48.118],[35.065,48.12],[35.074,48.123],[35.081,48.126],[35.101,48.129],[35.118,48.129],[35.129,48.128],[35.156,48.12],[35.165,48.119],[35.174,48.121],[35.191,48.124],[35.245,48.13],[35.255,48.13],[35.275,48.126],[35.34,48.104],[35.497,48.085],[35.512,48.08],[35.515,48.079],[35.522,48.079],[35.531,48.081],[35.547,48.085],[35.556,48.089],[35.579,48.105],[35.595,48.113],[35.604,48.116],[35.646,48.124],[35.674,48.127],[35.686,48.126],[35.692,48.124],[35.696,48.123],[35.7,48.12],[35.703,48.118],[35.711,48.11],[35.724,48.1],[35.728,48.098],[35.732,48.096],[35.781,48.089],[35.786,48.088],[35.791,48.086],[35.794,48.083],[35.809,48.067],[35.816,48.066],[35.829,48.067],[35.883,48.082],[35.942,48.092],[35.954,48.091],[35.959,48.091],[35.964,48.089],[35.968,48.087],[35.97,48.084],[35.971,48.081],[35.97,48.077],[35.967,48.064],[35.966,48.059],[35.966,48.056],[35.967,48.052],[35.972,48.043],[35.973,48.039],[35.972,48.032],[35.975,48.029],[35.979,48.026],[35.99,48.026],[35.996,48.027],[36,48.028],[36.032,48.043],[36.04,48.044],[36.045,48.043],[36.047,48.04],[36.048,48.037],[36.047,48.033],[36.045,48.03],[36.042,48.027],[36.028,48.017],[36.025,48.014],[36.023,48.011],[36.021,48.008],[36.021,48.004],[36.024,48.002],[36.027,48.001],[36.041,47.999],[36.046,47.998],[36.051,47.996],[36.053,47.993],[36.055,47.99],[36.057,47.983],[36.059,47.969],[36.059,47.965],[36.058,47.954],[36.059,47.951],[36.063,47.95],[36.068,47.949],[36.072,47.948],[36.076,47.946],[36.078,47.944],[36.08,47.942],[36.082,47.94],[36.087,47.938],[36.115,47.94],[36.117,47.94],[36.118,47.939],[36.118,47.936],[36.115,47.929],[36.114,47.926],[36.114,47.922],[36.115,47.919],[36.117,47.916],[36.118,47.913],[36.118,47.909],[36.116,47.906],[36.109,47.895],[36.101,47.878],[36.098,47.873],[36.093,47.868],[36.088,47.867],[36.083,47.868],[36.076,47.873],[36.071,47.875],[36.064,47.876],[36.061,47.874],[36.06,47.871],[36.06,47.867],[36.061,47.864],[36.063,47.861],[36.072,47.857],[36.075,47.854],[36.075,47.851],[36.076,47.848],[36.079,47.845],[36.088,47.842],[36.093,47.84],[36.095,47.838],[36.098,47.836],[36.107,47.835],[36.152,47.838],[36.16,47.84],[36.163,47.842],[36.169,47.85],[36.173,47.855],[36.181,47.86],[36.187,47.862],[36.193,47.864],[36.199,47.863],[36.203,47.863],[36.207,47.861],[36.208,47.858],[36.21,47.854],[36.212,47.84],[36.212,47.837],[36.213,47.833],[36.215,47.83],[36.219,47.829],[36.224,47.828],[36.247,47.826],[36.252,47.825],[36.257,47.823],[36.267,47.816],[36.275,47.814],[36.286,47.813],[36.308,47.814],[36.318,47.815],[36.325,47.818],[36.331,47.826],[36.336,47.831],[36.347,47.836],[36.355,47.839],[36.361,47.84],[36.367,47.84],[36.372,47.839],[36.376,47.837],[36.379,47.835],[36.385,47.829],[36.388,47.827],[36.392,47.826],[36.576,47.844]]]
}
},
{
"type":"Feature",
"id":"02",
"properties":{
"name":"Житомирская область",
"Manager":"Региональный менеджер<br />Рыбалов Дмитрий",
"Phone":"(0512) 50-02-26 (многоканальный)",
"Email":"[email protected]",
"ICQ":"350 079 086",
"Mobile":"067-512-15-40"
},
"geometry":{
"type":"Polygon",
"coordinates":[[[28.317,51.564],[28.328,51.537],[28.334,51.529],[28.347,51.526],[28.359,51.53],[28.385,51.545],[28.435,51.567],[28.461,51.572],[28.488,51.572],[28.578,51.56],[28.604,51.554],[28.612,51.54],[28.615,51.52],[28.631,51.464],[28.637,51.45],[28.647,51.439],[28.663,51.434],[28.678,51.438],[28.691,51.444],[28.704,51.443],[28.711,51.431],[28.718,51.412],[28.728,51.402],[28.746,51.414],[28.751,51.429],[28.751,51.429],[28.749,51.467],[28.749,51.467],[28.752,51.484],[28.772,51.512],[28.8,51.533],[28.832,51.549],[28.863,51.559],[28.893,51.563],[28.954,51.564],[28.98,51.57],[29,51.583],[29.023,51.614],[29.043,51.627],[29.063,51.631],[29.083,51.632],[29.124,51.625],[29.148,51.616],[29.16,51.604],[29.181,51.567],[29.215,51.536],[29.226,51.519],[29.23,51.493],[29.23,51.493],[29.221,51.467],[29.221,51.467],[29.227,51.456],[29.244,51.448],[29.265,51.433],[29.276,51.414],[29.284,51.392],[29.297,51.374],[29.32,51.366],[29.34,51.37],[29.353,51.377],[29.354,51.375],[29.36,51.368],[29.362,51.365],[29.366,51.363],[29.37,51.362],[29.375,51.363],[29.383,51.367],[29.386,51.368],[29.389,51.367],[29.39,51.365],[29.391,51.362],[29.392,51.354],[29.389,51.317],[29.387,51.306],[29.385,51.298],[29.375,51.285],[29.362,51.274],[29.349,51.266],[29.318,51.251],[29.299,51.245],[29.289,51.243],[29.276,51.243],[29.272,51.241],[29.27,51.237],[29.289,51.194],[29.3,51.142],[29.305,51.128],[29.309,51.121],[29.311,51.119],[29.313,51.117],[29.316,51.118],[29.319,51.12],[29.339,51.142],[29.342,51.144],[29.347,51.145],[29.352,51.144],[29.363,51.142],[29.381,51.134],[29.412,51.116],[29.418,51.111],[29.421,51.108],[29.423,51.106],[29.424,51.102],[29.427,51.095],[29.429,51.092],[29.433,51.09],[29.438,51.088],[29.462,51.083],[29.472,51.079],[29.476,51.077],[29.483,51.072],[29.485,51.069],[29.488,51.067],[29.489,51.063],[29.49,51.059],[29.489,51.054],[29.485,51.048],[29.472,51.035],[29.466,51.029],[29.465,51.024],[29.464,51.019],[29.463,51.013],[29.463,51.006],[29.466,50.983],[29.466,50.976],[29.462,50.97],[29.457,50.969],[29.453,50.971],[29.449,50.973],[29.441,50.977],[29.436,50.979],[29.43,50.98],[29.398,50.979],[29.394,50.976],[29.393,50.97],[29.398,50.957],[29.403,50.952],[29.409,50.95],[29.415,50.949],[29.419,50.948],[29.423,50.945],[29.478,50.89],[29.502,50.873],[29.505,50.87],[29.507,50.866],[29.508,50.859],[29.489,50.789],[29.489,50.784],[29.49,50.781],[29.495,50.778],[29.499,50.778],[29.536,50.781],[29.549,50.78],[29.56,50.777],[29.567,50.772],[29.57,50.769],[29.572,50.766],[29.575,50.759],[29.578,50.745],[29.592,50.711],[29.592,50.706],[29.591,50.701],[29.585,50.692],[29.58,50.687],[29.575,50.684],[29.544,50.672],[29.54,50.67],[29.537,50.667],[29.528,50.654],[29.5,50.626],[29.49,50.615],[29.481,50.602],[29.479,50.598],[29.479,50.594],[29.484,50.588],[29.488,50.585],[29.492,50.582],[29.51,50.574],[29.512,50.571],[29.513,50.567],[29.509,50.556],[29.499,50.537],[29.497,50.534],[29.493,50.532],[29.489,50.531],[29.477,50.53],[29.473,50.527],[29.473,50.522],[29.477,50.515],[29.483,50.512],[29.493,50.508],[29.497,50.505],[29.499,50.503],[29.5,50.501],[29.5,50.5],[29.5,50.497],[29.499,50.492],[29.49,50.472],[29.488,50.469],[29.485,50.466],[29.481,50.464],[29.477,50.462],[29.471,50.462],[29.453,50.464],[29.448,50.464],[29.444,50.463],[29.442,50.46],[29.443,50.456],[29.447,50.453],[29.462,50.447],[29.466,50.445],[29.467,50.441],[29.464,50.437],[29.461,50.434],[29.456,50.432],[29.451,50.431],[29.428,50.429],[29.426,50.426],[29.426,50.422],[29.433,50.414],[29.439,50.412],[29.445,50.411],[29.45,50.412],[29.489,50.422],[29.494,50.423],[29.537,50.424],[29.542,50.423],[29.547,50.422],[29.555,50.417],[29.567,50.407],[29.57,50.404],[29.572,50.401],[29.575,50.399],[29.578,50.396],[29.581,50.391],[29.588,50.364],[29.601,50.343],[29.604,50.327],[29.608,50.321],[29.613,50.319],[29.625,50.319],[29.632,50.319],[29.638,50.318],[29.642,50.316],[29.645,50.313],[29.648,50.311],[29.66,50.292],[29.669,50.282],[29.671,50.279],[29.675,50.277],[29.68,50.275],[29.691,50.272],[29.695,50.267],[29.696,50.258],[29.691,50.218],[29.692,50.207],[29.692,50.203],[29.692,50.199],[29.691,50.186],[29.691,50.182],[29.693,50.179],[29.695,50.176],[29.698,50.173],[29.701,50.171],[29.705,50.169],[29.719,50.163],[29.723,50.161],[29.726,50.156],[29.727,50.15],[29.727,50.136],[29.731,50.131],[29.734,50.126],[29.734,50.121],[29.726,50.111],[29.719,50.107],[29.713,50.104],[29.679,50.099],[29.677,50.098],[29.674,50.097],[29.671,50.094],[29.669,50.09],[29.669,50.083],[29.671,50.074],[29.684,50.037],[29.684,50.034],[29.681,50.031],[29.675,50.027],[29.672,50.023],[29.672,50.016],[29.674,50.012],[29.676,50.009],[29.734,49.947],[29.735,49.944],[29.736,49.941],[29.733,49.935],[29.727,49.929],[29.705,49.913],[29.698,49.909],[29.671,49.9],[29.667,49.898],[29.661,49.893],[29.655,49.883],[29.639,49.869],[29.634,49.865],[29.63,49.863],[29.625,49.862],[29.61,49.859],[29.606,49.857],[29.594,49.849],[29.588,49.846],[29.555,49.836],[29.519,49.818],[29.514,49.817],[29.509,49.817],[29.5,49.818],[29.496,49.817],[29.49,49.815],[29.484,49.808],[29.478,49.804],[29.472,49.803],[29.46,49.804],[29.455,49.803],[29.45,49.802],[29.442,49.798],[29.439,49.795],[29.437,49.791],[29.44,49.782],[29.443,49.777],[29.449,49.771],[29.449,49.765],[29.449,49.759],[29.445,49.745],[29.442,49.739],[29.44,49.733],[29.432,49.724],[29.427,49.718],[29.419,49.712],[29.418,49.71],[29.419,49.708],[29.433,49.707],[29.445,49.707],[29.468,49.71],[29.473,49.71],[29.478,49.709],[29.482,49.707],[29.483,49.703],[29.483,49.697],[29.482,49.689],[29.481,49.684],[29.478,49.679],[29.474,49.676],[29.459,49.671],[29.453,49.668],[29.45,49.665],[29.447,49.651],[29.422,49.651],[29.412,49.648],[29.408,49.645],[29.405,49.643],[29.373,49.623],[29.363,49.619],[29.354,49.617],[29.337,49.618],[29.294,49.615],[29.282,49.612],[29.274,49.608],[29.273,49.604],[29.272,49.6],[29.271,49.591],[29.269,49.586],[29.264,49.585],[29.259,49.585],[29.239,49.587],[29.132,49.582],[29.061,49.589],[29.023,49.587],[29.002,49.59],[28.993,49.593],[28.987,49.596],[28.983,49.598],[28.98,49.601],[28.979,49.604],[28.98,49.607],[28.983,49.61],[28.993,49.617],[28.995,49.62],[28.997,49.623],[28.997,49.626],[28.996,49.629],[28.982,49.643],[28.98,49.646],[28.979,49.649],[28.978,49.653],[28.976,49.657],[28.972,49.662],[28.953,49.671],[28.948,49.674],[28.948,49.676],[28.947,49.678],[28.949,49.682],[28.951,49.685],[28.956,49.691],[29.004,49.731],[29.005,49.734],[29.002,49.738],[28.974,49.752],[28.97,49.754],[28.967,49.757],[28.959,49.765],[28.942,49.788],[28.941,49.79],[28.94,49.793],[28.94,49.796],[28.941,49.805],[28.94,49.808],[28.939,49.812],[28.938,49.815],[28.936,49.819],[28.936,49.822],[28.937,49.826],[28.94,49.831],[28.937,49.835],[28.932,49.841],[28.915,49.851],[28.91,49.857],[28.908,49.861],[28.91,49.865],[28.911,49.868],[28.91,49.872],[28.905,49.875],[28.899,49.876],[28.835,49.881],[28.828,49.881],[28.824,49.878],[28.821,49.87],[28.816,49.863],[28.814,49.86],[28.811,49.857],[28.803,49.852],[28.795,49.849],[28.77,49.843],[28.758,49.837],[28.754,49.835],[28.751,49.832],[28.739,49.816],[28.73,49.802],[28.728,49.799],[28.725,49.797],[28.723,49.795],[28.72,49.794],[28.71,49.794],[28.635,49.801],[28.629,49.801],[28.625,49.8],[28.607,49.793],[28.592,49.79],[28.571,49.787],[28.566,49.788],[28.563,49.79],[28.56,49.793],[28.554,49.796],[28.528,49.806],[28.519,49.807],[28.431,49.808],[28.42,49.807],[28.417,49.804],[28.398,49.783],[28.393,49.779],[28.39,49.777],[28.374,49.773],[28.353,49.771],[28.342,49.772],[28.333,49.773],[28.286,49.787],[28.275,49.788],[28.267,49.788],[28.249,49.782],[28.239,49.78],[28.143,49.778],[28.058,49.763],[28.025,49.76],[27.957,49.767],[27.868,49.76],[27.661,49.799],[27.654,49.804],[27.652,49.807],[27.649,49.81],[27.648,49.813],[27.646,49.82],[27.642,49.827],[27.632,49.838],[27.604,49.861],[27.599,49.866],[27.598,49.87],[27.597,49.873],[27.599,49.877],[27.6,49.88],[27.601,49.884],[27.601,49.887],[27.597,49.893],[27.593,49.896],[27.588,49.898],[27.551,49.907],[27.544,49.911],[27.541,49.915],[27.544,49.937],[27.546,49.941],[27.549,49.944],[27.554,49.945],[27.572,49.946],[27.577,49.947],[27.58,49.948],[27.581,49.951],[27.58,49.955],[27.579,49.958],[27.575,49.965],[27.547,49.998],[27.544,50.003],[27.544,50.007],[27.548,50.008],[27.598,50.003],[27.604,50.003],[27.609,50.004],[27.614,50.005],[27.619,50.007],[27.622,50.009],[27.628,50.014],[27.632,50.017],[27.635,50.019],[27.64,50.02],[27.657,50.022],[27.66,50.025],[27.662,50.028],[27.664,50.033],[27.665,50.044],[27.663,50.053],[27.661,50.058],[27.657,50.061],[27.653,50.063],[27.633,50.068],[27.626,50.072],[27.622,50.076],[27.621,50.079],[27.621,50.082],[27.622,50.085],[27.624,50.088],[27.627,50.095],[27.633,50.102],[27.646,50.112],[27.648,50.117],[27.646,50.12],[27.642,50.123],[27.63,50.13],[27.627,50.134],[27.627,50.138],[27.63,50.141],[27.634,50.143],[27.643,50.146],[27.647,50.149],[27.65,50.153],[27.65,50.161],[27.648,50.165],[27.646,50.169],[27.635,50.18],[27.618,50.191],[27.611,50.198],[27.608,50.202],[27.606,50.207],[27.606,50.211],[27.609,50.234],[27.609,50.24],[27.607,50.249],[27.604,50.254],[27.599,50.256],[27.592,50.257],[27.587,50.256],[27.583,50.255],[27.58,50.252],[27.575,50.245],[27.572,50.242],[27.568,50.24],[27.565,50.237],[27.559,50.226],[27.557,50.223],[27.554,50.22],[27.55,50.218],[27.544,50.218],[27.5,50.221],[27.495,50.222],[27.488,50.224],[27.486,50.228],[27.486,50.24],[27.484,50.245],[27.481,50.248],[27.477,50.25],[27.472,50.252],[27.452,50.256],[27.443,50.259],[27.437,50.264],[27.432,50.272],[27.426,50.275],[27.421,50.276],[27.41,50.274],[27.404,50.275],[27.4,50.277],[27.398,50.28],[27.399,50.283],[27.406,50.289],[27.408,50.293],[27.407,50.296],[27.404,50.298],[27.394,50.302],[27.362,50.318],[27.319,50.334],[27.308,50.34],[27.303,50.345],[27.299,50.349],[27.295,50.361],[27.292,50.365],[27.289,50.368],[27.279,50.371],[27.252,50.374],[27.244,50.376],[27.235,50.38],[27.231,50.383],[27.228,50.387],[27.228,50.391],[27.229,50.395],[27.248,50.441],[27.251,50.445],[27.253,50.448],[27.256,50.451],[27.259,50.454],[27.267,50.458],[27.275,50.462],[27.297,50.47],[27.301,50.472],[27.304,50.475],[27.305,50.478],[27.301,50.48],[27.296,50.481],[27.276,50.484],[27.269,50.486],[27.26,50.49],[27.256,50.495],[27.251,50.501],[27.246,50.51],[27.24,50.514],[27.225,50.521],[27.211,50.533],[27.206,50.536],[27.192,50.541],[27.228,50.568],[27.236,50.583],[27.233,50.587],[27.23,50.589],[27.226,50.591],[27.207,50.598],[27.202,50.601],[27.197,50.605],[27.193,50.614],[27.192,50.618],[27.194,50.622],[27.195,50.624],[27.202,50.634],[27.211,50.653],[27.215,50.657],[27.235,50.673],[27.243,50.682],[27.266,50.72],[27.27,50.73],[27.272,50.737],[27.271,50.741],[27.268,50.748],[27.263,50.754],[27.261,50.757],[27.241,50.776],[27.231,50.788],[27.229,50.791],[27.227,50.795],[27.225,50.801],[27.223,50.812],[27.223,50.819],[27.224,50.825],[27.239,50.873],[27.24,50.883],[27.24,50.89],[27.235,50.896],[27.222,50.907],[27.219,50.911],[27.216,50.916],[27.218,50.919],[27.228,50.922],[27.233,50.925],[27.237,50.931],[27.236,50.935],[27.234,50.938],[27.226,50.942],[27.223,50.946],[27.22,50.95],[27.218,50.96],[27.217,50.965],[27.215,50.97],[27.204,50.982],[27.198,50.991],[27.199,50.994],[27.2,50.996],[27.206,51],[27.207,51.001],[27.216,51.021],[27.22,51.025],[27.223,51.027],[27.228,51.029],[27.232,51.03],[27.271,51.036],[27.295,51.044],[27.3,51.047],[27.305,51.052],[27.316,51.071],[27.32,51.075],[27.324,51.078],[27.335,51.085],[27.339,51.088],[27.343,51.092],[27.35,51.1],[27.352,51.107],[27.355,51.129],[27.356,51.137],[27.358,51.142],[27.361,51.145],[27.369,51.152],[27.372,51.155],[27.376,51.157],[27.38,51.161],[27.385,51.167],[27.398,51.192],[27.4,51.195],[27.404,51.198],[27.407,51.2],[27.43,51.208],[27.435,51.212],[27.441,51.217],[27.449,51.228],[27.452,51.235],[27.454,51.24],[27.454,51.244],[27.453,51.251],[27.452,51.253],[27.45,51.256],[27.418,51.298],[27.417,51.302],[27.418,51.305],[27.422,51.307],[27.478,51.315],[27.483,51.317],[27.487,51.319],[27.497,51.326],[27.5,51.329],[27.504,51.333],[27.509,51.342],[27.511,51.348],[27.511,51.353],[27.509,51.356],[27.506,51.358],[27.49,51.367],[27.488,51.375],[27.489,51.388],[27.499,51.432],[27.502,51.44],[27.505,51.442],[27.51,51.443],[27.516,51.443],[27.52,51.441],[27.524,51.439],[27.527,51.436],[27.532,51.431],[27.536,51.424],[27.538,51.421],[27.541,51.418],[27.544,51.415],[27.584,51.394],[27.589,51.392],[27.594,51.391],[27.6,51.392],[27.603,51.395],[27.604,51.399],[27.604,51.403],[27.602,51.406],[27.6,51.409],[27.594,51.414],[27.579,51.424],[27.577,51.429],[27.576,51.438],[27.58,51.457],[27.583,51.466],[27.586,51.472],[27.59,51.474],[27.599,51.477],[27.609,51.479],[27.633,51.487],[27.666,51.49],[27.67,51.485],[27.684,51.476],[27.7,51.468],[27.714,51.464],[27.73,51.466],[27.74,51.472],[27.787,51.511],[27.792,51.518],[27.797,51.531],[27.797,51.531],[27.796,51.542],[27.793,51.553],[27.793,51.565],[27.793,51.565],[27.799,51.586],[27.812,51.602],[27.831,51.613],[27.854,51.616],[27.875,51.608],[27.936,51.567],[27.955,51.561],[27.973,51.558],[28.071,51.558],[28.09,51.562],[28.114,51.576],[28.146,51.615],[28.166,51.633],[28.187,51.646],[28.21,51.652],[28.23,51.652],[28.245,51.641],[28.249,51.631],[28.249,51.631],[28.248,51.622],[28.248,51.622],[28.249,51.613],[28.258,51.602],[28.269,51.595],[28.298,51.583],[28.311,51.575],[28.317,51.564]]]
}
},
{
"type":"Feature",
"id":"02",
"properties":{
"name":"Автономная Республика Крым",
"Manager":"Региональный менеджер<br />Биднин Максим",
"Phone":"(0512) 50-02-26 (многоканальный)",
"Email":"[email protected]",
"ICQ":"266 507 873",
"Mobile":"+38 (067) 512-33-20"
},
"geometry":{
"type":"Polygon",
"coordinates":[
[
[35.045,45.67],
[35.332,45.371],
[35.481,45.298],
[35.518,45.296],
[35.695,45.33],
[35.716,45.341],
[35.743,45.361],
[35.748,45.371],
[35.749,45.38],
[35.753,45.387],
[35.768,45.389],
[35.773,45.392],
[35.789,45.408],
[35.792,45.412],
[35.795,45.431],
[35.804,45.449],
[35.817,45.464],
[35.834,45.471],
[35.858,45.47],
[35.86,45.46],
[35.852,45.444],
[35.847,45.426],
[35.854,45.414],
[35.871,45.404],
[35.947,45.372],
[35.986,45.363],
[36.023,45.368],
[36.052,45.395],
[36.065,45.426],
[36.069,45.43],
[36.097,45.442],
[36.118,45.457],
[36.138,45.462],
[36.253,45.462],
[36.268,45.467],
[36.284,45.477],
[36.3,45.473],
[36.308,45.461],
[36.299,45.443],
[36.312,45.444],
[36.321,45.448],
[36.33,45.454],
[36.341,45.457],
[36.36,45.455],
[36.392,45.44],
[36.412,45.436],
[36.471,45.446],
[36.491,45.443],
[36.516,45.42],
[36.533,45.409],
[36.549,45.412],
[36.567,45.425],
[36.584,45.427],
[36.599,45.421],
[36.614,45.409],
[36.631,45.375],
[36.639,45.351],
[36.631,45.341],
[36.599,45.334],
[36.586,45.334],
[36.575,45.336],
[36.545,45.348],
[36.522,45.35],
[36.503,45.347],
[36.489,45.336],
[36.485,45.316],
[36.488,45.309],
[36.495,45.305],
[36.497,45.301],
[36.491,45.292],
[36.482,45.289],
[36.46,45.288],
[36.45,45.285],
[36.437,45.272],
[36.426,45.252],
[36.418,45.23],
[36.41,45.171],
[36.409,45.15],
[36.415,45.128],
[36.442,45.107],
[36.456,45.092],
[36.454,45.077],
[36.44,45.068],
[36.368,45.049],
[36.279,45.046],
[36.268,45.044],
[36.258,45.039],
[36.254,45.033],
[36.248,45.016],
[36.244,45.011],
[36.225,45.008],
[36.136,45.021],
[36.079,45.047],
[36.079,45.039],
[36.048,45.049],
[36.026,45.033],
[36.009,45.01],
[35.994,44.998],
[35.917,45.001],
[35.848,44.993],
[35.828,44.999],
[35.819,45.022],
[35.813,45.032],
[35.783,45.058],
[35.771,45.066],
[35.707,45.095],
[35.634,45.115],
[35.591,45.12],
[35.548,45.12],
[35.506,45.114],
[35.47,45.101],
[35.417,45.071],
[35.408,45.063],
[35.406,45.051],
[35.401,45.043],
[35.398,45.035],
[35.401,45.025],
[35.407,45.02],
[35.436,45.011],
[35.436,45.005],
[35.422,45.001],
[35.39,45.002],
[35.374,44.998],
[35.362,44.987],
[35.361,44.974],
[35.367,44.943],
[35.32,44.97],
[35.315,44.966],
[35.305,44.961],
[35.298,44.956],
[35.273,44.967],
[35.256,44.959],
[35.233,44.926],
[35.215,44.914],
[35.172,44.907],
[35.154,44.901],
[35.13,44.869],
[35.109,44.825],
[35.081,44.794],
[35.038,44.799],
[35.027,44.809],
[35.018,44.823],
[35.006,44.835],
[34.986,44.84],
[34.953,44.842],
[34.942,44.84],
[34.93,44.836],
[34.923,44.831],
[34.916,44.825],
[34.908,44.821],
[34.89,44.818],
[34.857,44.824],
[34.843,44.817],
[34.827,44.812],
[34.757,44.821],
[34.721,44.811],
[34.651,44.777],
[34.613,44.765],
[34.533,44.753],
[34.5,44.743],
[34.475,44.724],
[34.475,44.726],
[34.475,44.729],
[34.473,44.73],
[34.469,44.73],
[34.43,44.69],
[34.424,44.683],
[34.414,44.674],
[34.38,44.631],
[34.341,44.559],
[34.331,44.546],
[34.323,44.544],
[34.3,44.546],
[34.286,44.545],
[34.276,44.546],
[34.271,44.546],
[34.266,44.542],
[34.266,44.539],
[34.266,44.536],
[34.264,44.532],
[34.243,44.508],
[34.23,44.5],
[34.183,44.493],
[34.17,44.482],
[34.161,44.467],
[34.148,44.45],
[34.137,44.442],
[34.103,44.425],
[34.089,44.422],
[34.066,44.42],
[33.958,44.383],
[33.938,44.381],
[33.915,44.384],
[33.852,44.402],
[33.84,44.401],
[33.819,44.396],
[33.808,44.395],
[33.741,44.396],
[33.721,44.4],
[33.646,44.425],
[33.632,44.434],
[33.626,44.453],
[33.62,44.462],
[33.59,44.49],
[33.579,44.497],
[33.561,44.496],
[33.539,44.492],
[33.518,44.491],
[33.5,44.501],
[33.487,44.51],
[33.38,44.565],
[33.372,44.577],
[33.372,44.588],
[33.371,44.589],
[33.375,44.585],
[33.406,44.59],
[33.414,44.593],
[33.436,44.605],
[33.445,44.607],
[33.467,44.606],
[33.478,44.607],
[33.486,44.61],
[33.5,44.614],
[33.551,44.615],
[33.572,44.621],
[33.558,44.624],
[33.525,44.629],
[33.516,44.634],
[33.515,44.649],
[33.524,44.662],
[33.536,44.672],
[33.544,44.683],
[33.549,44.699],
[33.547,44.71],
[33.537,44.73],
[33.531,44.757],
[33.525,44.773],
[33.516,44.785],
[33.524,44.79],
[33.528,44.793],
[33.531,44.799],
[33.538,44.819],
[33.546,44.837],
[33.56,44.85],
[33.598,44.859],
[33.61,44.872],
[33.616,44.889],
[33.62,44.909],
[33.62,44.932],
[33.609,44.971],
[33.606,44.988],
[33.603,44.994],
[33.585,45.019],
[33.582,45.028],
[33.579,45.053],
[33.563,45.094],
[33.538,45.117],
[33.469,45.149],
[33.414,45.185],
[33.397,45.19],
[33.355,45.186],
[33.318,45.176],
[33.283,45.161],
[33.26,45.156],
[33.25,45.166],
[33.24,45.18],
[33.219,45.188],
[33.174,45.197],
[33.159,45.207],
[33.123,45.238],
[33.099,45.248],
[33.09,45.257],
[33.079,45.272],
[33.07,45.277],
[33.052,45.282],
[33.043,45.285],
[32.977,45.326],
[32.941,45.343],
[32.9,45.354],
[32.75,45.363],
[32.729,45.361],
[32.713,45.353],
[32.678,45.326],
[32.663,45.32],
[32.592,45.32],
[32.57,45.325],
[32.536,45.338],
[32.513,45.341],
[32.486,45.395],
[32.482,45.409],
[32.495,45.436],
[32.525,45.458],
[32.644,45.522],
[32.663,45.526],
[32.686,45.527],
[32.705,45.531],
[32.721,45.537],
[32.735,45.546],
[32.744,45.553],
[32.75,45.56],
[32.758,45.565],
[32.773,45.567],
[32.783,45.565],
[32.803,45.56],
[32.814,45.559],
[32.828,45.562],
[32.83,45.57],
[32.827,45.58],
[32.825,45.587],
[32.827,45.596],
[32.831,45.601],
[32.838,45.608],
[32.868,45.63],
[32.937,45.663],
[33.164,45.736],
[33.176,45.743],
[33.181,45.755],
[33.177,45.759],
[33.167,45.763],
[33.159,45.769],
[33.161,45.779],
[33.169,45.785],
[33.179,45.78],
[33.195,45.765],
[33.23,45.751],
[33.266,45.754],
[33.338,45.786],
[33.375,45.797],
[33.38,45.803],
[33.41,45.827],
[33.425,45.831],
[33.467,45.85],
[33.482,45.855],
[33.49,45.852],
[33.508,45.843],
[33.52,45.841],
[33.53,45.842],
[33.554,45.847],
[33.579,45.868],
[33.599,45.877],
[33.61,45.881],
[33.62,45.882],
[33.631,45.88],
[33.642,45.876],
[33.651,45.871],
[33.654,45.865],
[33.659,45.859],
[33.67,45.859],
[33.692,45.861],
[33.693,45.873],
[33.691,45.896],
[33.694,45.915],
[33.709,45.91],
[33.725,45.916],
[33.76,45.922],
[33.777,45.93],
[33.759,45.941],
[33.74,45.948],
[33.683,45.959],
[33.657,45.957],
[33.646,45.954],
[33.639,45.947],
[33.632,45.944],
[33.62,45.951],
[33.639,45.968],
[33.647,45.98],
[33.644,45.985],
[33.632,45.988],
[33.631,45.997],
[33.637,46.006],
[33.644,46.015],
[33.642,46.022],
[33.63,46.057],
[33.62,46.136],
[33.635,46.141],
[33.615,46.226],
[33.645,46.23],
[33.686,46.205],
[33.739,46.186],
[33.789,46.202],
[33.828,46.204],
[34.043,46.109],
[33.739,46.186],
[34.248,46.053],
[34.336,46.06],
[34.412,45.989],
[34.499,45.944],
[34.566,45.994],
[34.753,45.910],
[34.799,45.902],
[34.800,45.805],
[34.960,45.76],
]
]
}
},
{
"type":"Feature",
"id":"02",
"properties":{
"name":"Херсонская область",
"Manager":"Региональный менеджер Полиш Дмитрий",
"Phone":"(0512) 50-02-26 (многоканальный)",
"Email":"[email protected]",
"ICQ":"576 977 082",
"Mobile":"+38 (067) 512-33-40"
},
"geometry":{
"type":"MultiPolygon",
"coordinates":[
[
[
[32.639,46.06],
[32.783,46.046],
[32.852,46.056],
[32.882,46.055],
[32.914,46.039],
[32.955,46.052],
[32.979,46.053],
[32.989,46.043],
[33,46.035],
[33.045,46.038],
[33.058,46.025],
[33.04,46.012],
[32.62,46.06],
[32.627,46.066],
[32.632,46.066],
[32.639,46.06]
]
],
[
[
[35.039,46.086],
[35,46.074],
[34.982,46.078],
[34.986,46.088],
[35.017,46.113],
[35.052,46.128],
[35.049,46.132],
[35.045,46.142],
[35.149,46.164],
[35.201,46.183],
[35.228,46.222],
[35.252,46.24],
[35.262,46.257],
[35.265,46.26],
[35.268,46.26],
[35.28,46.255],
[35.264,46.242],
[35.21,46.17],
[35.185,46.146],
[35.162,46.128],
[35.121,46.119],
[35.097,46.104],
[35.063,46.099],
[35.039,46.086]
]
],
[
[
[32.153,46.156],
[32.166,46.149],
[32.144,46.153],
[32.102,46.167],
[31.737,46.221],
[31.581,46.263],
[31.549,46.283],
[31.522,46.313],
[31.514,46.329],
[31.505,46.355],
[31.505,46.373],
[31.522,46.369],
[31.539,46.326],
[31.555,46.296],
[31.578,46.276],
[31.618,46.259],
[31.941,46.205],
[32.071,46.183],
[32.153,46.156]
]
],
[
[
[33.334,47.496],
[33.339,47.495],