-
Notifications
You must be signed in to change notification settings - Fork 3
/
2d-checkpoint.html
982 lines (944 loc) · 397 KB
/
2d-checkpoint.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="ie=edge" http-equiv="x-ua-compatible">
<!-- Global site tag (gtag.js) - Google Analytics -- szekelydata -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-57335320-4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-57335320-4');
</script>
<!-- Global site tag (gtag.js) - Google Analytics -- szekelydata-incidence -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-BGMHHC320Z"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-BGMHHC320Z');
</script>
<meta name="description" content="Map of locality-level COVID-19 incidence rates in Romania #dataviz #szekelydata @csaladenes" />
<meta name="keywords" content="harta incidenta covid, covid romania, harta incidenta, harta covid, harta incidenta uat, harta uat, covid uat, harta incidneta localitati, csaladenes, d3.js, data visualization, infographic, kepler, keplergl, choropleth map, map, interactive map, romania, covid19, coronavirus, incidence, incidence rates, stringency, covid, covid data, dataviz"
/>
<meta property="og:image" content="https://szekelydata.csaladen.es/incidence/snapshot.png" />
<meta property="twitter:image" content="https://szekelydata.csaladen.es/incidence/snapshot.png" />
<meta property="og:description" content="Map of locality-level COVID-19 incidence rates in Romania #dataviz #szekelydata @csaladenes" />
<meta property="twitter:description" content="Map of locality-level COVID-19 incidence rates in Romania #dataviz #szekelydata @csaladenes" />
<meta property="og:title" content="COVID-19 incidence rates in Romania on 📆 30.03.2021" />
<meta property="twitter:title" content="COVID-19 incidence rates in Romania on 📆 30.03.2021" />
<meta http-equiv="content-Type" content="text/html; charset=utf-8" />
<meta property="og:url" content="https://szekelydata.csaladen.es/incidence/" />
<meta property="twitter:url" content="https://szekelydata.csaladen.es/incidence/" />
<meta property="og:site_name" content="székelydata" />
<meta property="fb:admins" content="100943737036023614165" />
<link rel="shortcut icon" href="https://szekelydata.csaladen.es/favicon.ico" />
<link rel="shortcut icon" href="https://szekelydata.csaladen.es/blog/favicon.ico" />
<title>COVID-19 incidence rates in Romania on 📆 30.03.2021</title>
<link href="http://d1a3f4spazzrp4.cloudfront.net/kepler.gl/uber-fonts/4.0.0/superfine.css" rel="stylesheet">
<link href="https://api.tiles.mapbox.com/mapbox-gl-js/v1.1.1/mapbox-gl.css" rel="stylesheet">
<script src="https://unpkg.com/react@16.8.4/umd/react.production.min.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@16.8.4/umd/react-dom.production.min.js" crossorigin></script>
<script src="https://unpkg.com/redux@3.7.2/dist/redux.js" crossorigin></script>
<script src="https://unpkg.com/react-redux@7.1.3/dist/react-redux.min.js" crossorigin></script>
<script src="https://unpkg.com/react-intl@3.12.0/dist/react-intl.min.js" crossorigin></script>
<script src="https://unpkg.com/react-copy-to-clipboard@5.0.2/build/react-copy-to-clipboard.min.js" crossorigin></script>
<script src="https://unpkg.com/styled-components@4.1.3/dist/styled-components.min.js" crossorigin></script>
<script src="https://unpkg.com/kepler.gl@2.4.0/umd/keplergl.min.js" crossorigin></script>
<script src="https://d3js.org/d3-fetch.v2.min.js"></script>
<style>
font-family: ff-clan-web-pro,
'Helvetica Neue',
Helvetica,
sans-serif;
font-weight: 400;
font-size: 0.875em;
line-height: 1.71429;
*,
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
@font-face {
font-family: 'DINPro-Medium';
font-style: normal;
font-weight: normal;
src: local('DINPro-Medium'), url('DINPro-Medium_13936.woff') format('woff');
}
body {
margin: 0;
padding: 0;
}
.keplergl-widget-container {
background: none;
}
.map-control {
display: none;
}
#logo {
position: fixed;
bottom: 0;
left: 0;
z-index: 99;
padding-left: 20px;
display: none;
}
#top_logo {
position: fixed;
top: 0;
left: 0;
z-index: 99;
padding-left: 20px;
padding-top: 20px;
opacity: 0.8;
display: none;
}
#logo_img {
height: 45px;
margin-left: 10px;
opacity: 0.8;
display: none;
}
#logo_img2 {
height: 40px;
padding-bottom: 5px;
opacity: 0.8;
display: none;
}
a {
text-decoration: none;
font-family: 'DINPro-Medium', "Helvetica Neue", Helvetica, sans-serif;
font-weight: 700;
font-size: 1 em;
color: #D6DCE5;
}
</style>
</head>
<body>
<div id="app-content"></div>
<script>
var hash = window.location.hash.slice(1);
d3.json("./new_uat_daily2_2021-06-" + hash + ".json").then(function(rawdata) {
// console.log(rawdata)
window.__keplerglDataConfig = {
"config": {
"version": "v1",
"config": {
"visState": {
"filters": [],
"layers": [{
"id": "eixpike",
"type": "geojson",
"config": {
"dataId": "\ud83c\udf04",
"label": "\ud83c\udf04",
"color": [137, 218, 193],
"columns": {
"geojson": "_geojson"
},
"isVisible": true,
"visConfig": {
"opacity": 0.8,
"strokeOpacity": 0.8,
"thickness": 0.8,
"strokeColor": [45, 57, 70],
"colorRange": {
"name": "Global Warming",
"type": "sequential",
"category": "Uber",
"colors": ["#5A1846", "#900C3F", "#C70039", "#E3611C", "#F1920E", "#FFC300"]
},
"strokeColorRange": {
"name": "Global Warming",
"type": "sequential",
"category": "Uber",
"colors": ["#5A1846", "#900C3F", "#C70039", "#E3611C", "#F1920E", "#FFC300"]
},
"radius": 10,
"sizeRange": [0, 10],
"radiusRange": [0, 50],
"heightRange": [0, 500],
"elevationScale": 5,
"stroked": true,
"filled": false,
"enable3d": false,
"wireframe": false
},
"hidden": false,
"textLabel": [{
"field": null,
"color": [255, 255, 255],
"size": 18,
"offset": [0, 0],
"anchor": "start",
"alignment": "center"
}]
},
"visualChannels": {
"colorField": null,
"colorScale": "quantile",
"sizeField": null,
"sizeScale": "linear",
"strokeColorField": null,
"strokeColorScale": "quantile",
"heightField": null,
"heightScale": "linear",
"radiusField": null,
"radiusScale": "linear"
}
}, {
"id": "8m3o8mr",
"type": "geojson",
"config": {
"dataId": "\ud83c\udfe0",
"label": "\ud83c\udfe0",
"color": [231, 159, 213],
"columns": {
"geojson": "_geojson"
},
"isVisible": true,
"visConfig": {
"opacity": 1,
"strokeOpacity": 0.8,
"thickness": 0.3,
"strokeColor": [46, 52, 70],
"colorRange": {
"name": "Sunrise 7",
"type": "sequential",
"category": "Uber",
"colors": ["#355C7D", "#63617F", "#916681", "#C06C84", "#D28389", "#E59A8F", "#F8B195"]
},
"strokeColorRange": {
"name": "Global Warming",
"type": "sequential",
"category": "Uber",
"colors": ["#5A1846", "#900C3F", "#C70039", "#E3611C", "#F1920E", "#FFC300"]
},
"radius": 10,
"sizeRange": [0, 10],
"radiusRange": [0, 50],
"heightRange": [0, 500],
"elevationScale": 5,
"stroked": true,
"filled": true,
"enable3d": false,
"wireframe": false
},
"hidden": false,
"textLabel": [{
"field": null,
"color": [255, 255, 255],
"size": 18,
"offset": [0, 0],
"anchor": "start",
"alignment": "center"
}]
},
"visualChannels": {
"colorField": {
"name": "\u26ab",
"type": "integer"
},
"colorScale": "quantize",
"sizeField": null,
"sizeScale": "linear",
"strokeColorField": null,
"strokeColorScale": "quantile",
"heightField": null,
"heightScale": "linear",
"radiusField": null,
"radiusScale": "linear"
}
}],
"interactionConfig": {
"tooltip": {
"fieldsToShow": {
"\ud83c\udfe0": [{
"name": "\ud83c\udf04",
"format": null
}, {
"name": "\ud83c\udfe0",
"format": null
}, {
"name": "\ud83d\udcc8",
"format": ".2f"
}, {
"name": "\ud83d\udd34",
"format": null
}, {
"name": "\ud83d\udcc6",
"format": "L"
}, {
"name": "🚦",
"format": null
}],
"\ud83c\udf04": [{
"name": "\ud83c\udf04",
"format": null
}]
},
"compareMode": false,
"compareType": "absolute",
"enabled": true
},
"brush": {
"size": 0.5,
"enabled": false
},
"geocoder": {
"enabled": true
},
"coordinate": {
"enabled": false
}
},
"layerBlending": "normal",
"splitMaps": [],
"animationConfig": {
"currentTime": null,
"speed": 1
}
},
"mapState": {
"bearing": 0,
"dragRotate": false,
"latitude": 46,
"longitude": 25,
"pitch": 0,
"zoom": 6.000000000000001,
"isSplit": false
},
"mapStyle": {
"styleType": "ecrg3rj",
"topLayerGroups": {
"label": true
},
"visibleLayerGroups": {
"label": true
},
"threeDBuildingColor": [194.6103322548211, 191.81688250953655, 185.2988331038727],
"mapStyles": {
"ecrg3rj": {
"accessToken": "pk.eyJ1IjoiY3NhbGFkZW5lcyIsImEiOiJjajQ0YzFmcjkxOHlzMzNtZ3A0ZDlyZnZsIn0.iDOBmJibZ81VFxQvkOmS8A",
"custom": true,
// "icon": "https://api.mapbox.com/styles/v1/csaladenes/ckmv0lbmh02tk17nvva71n35b/static/-122.3391,37.7922,9,0,0/400x300?access_token=pk.eyJ1IjoiY3NhbGFkZW5lcyIsImEiOiJjajQ0YzFmcjkxOHlzMzNtZ3A0ZDlyZnZsIn0.iDOBmJibZ81VFxQvkOmS8A&logo=false&attribution=false",
"icon": "https://api.mapbox.com/styles/v1/csaladenes/ckmv982nz0b5f18pi95l70b47/static/-122.3391,37.7922,9,0,0/400x300?access_token=pk.eyJ1IjoiY3NhbGFkZW5lcyIsImEiOiJjajQ0YzFmcjkxOHlzMzNtZ3A0ZDlyZnZsIn0.iDOBmJibZ81VFxQvkOmS8A&logo=false&attribution=false",
"id": "ecrg3rj",
"label": "Monochrome-copy",
"url": "mapbox://styles/csaladenes/ckmv982nz0b5f18pi95l70b47"
}
}
}
}
},
"data": {
"\ud83c\udfe0": JSON.stringify(rawdata),
"\ud83c\udf04": "{\"type\": \"FeatureCollection\", \"features\": [{\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Alba\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[23.986853226675706, 46.43133595729521], [24.000622160742587, 46.42857490663273], [24.01587962822211, 46.441376141522404], [24.03336989582058, 46.44589422442464], [24.03671909599901, 46.40673750593858], [23.990946693560453, 46.38013101773651], [23.998761493976794, 46.370843847326356], [24.016996028281586, 46.36808279666388], [24.03002069564215, 46.3540265387458], [24.05197656347853, 46.343233340701566], [24.08881776544127, 46.33495018871413], [24.131240967701398, 46.33720923016525], [24.14910336865303, 46.32817306436077], [24.14873123529987, 46.29629547943942], [24.160639502600958, 46.291777396537185], [24.16324443607307, 46.27947817085887], [24.176641236786793, 46.2716970280828], [24.194875771091585, 46.28249022612703], [24.232833373113802, 46.25989981161584], [24.2346940398796, 46.247600585937526], [24.250695774065434, 46.24182748000689], [24.23060057299485, 46.23178729577969], [24.210133238571103, 46.23304231880809], [24.191898704266315, 46.224257157609294], [24.200085638035812, 46.21371496417074], [24.190410170853678, 46.19162655887091], [24.19599217115106, 46.17757030095284], [24.209761105217943, 46.17581326871307], [24.2183201723406, 46.16251002461204], [24.153196835537777, 46.13515052259293], [24.124914700697694, 46.13665655022701], [24.091050565560224, 46.11607417256126], [24.07504883137439, 46.09348375805007], [24.044533896415352, 46.07842348170927], [24.028532162229514, 46.06286119615712], [24.034114162526897, 46.04102379546297], [24.028532162229514, 46.02897557439034], [24.008809094512088, 46.0169273533177], [23.99243522697309, 46.018684385557464], [23.969362959077234, 46.034246671109614], [23.89307562167964, 46.04403585073113], [23.85176881947899, 46.0119072612041], [23.858467219835852, 46.00111406315987], [23.854001619597945, 45.98580278221339], [23.8625606867206, 45.977017621014596], [23.8543737529511, 45.95894528940565], [23.83725561870579, 45.94890510517845], [23.81790468434152, 45.92355364000478], [23.793716016386185, 45.92807172290702], [23.760224014601874, 45.92029058013094], [23.75129281412606, 45.92254962158206], [23.731569746408635, 45.909999391298065], [23.73194187976179, 45.89744916101407], [23.75129281412606, 45.885400939941434], [23.768410948371375, 45.88866399981527], [23.775109348728236, 45.88113386164488], [23.749060014007107, 45.8620575116132], [23.734174679880745, 45.84448718921561], [23.73268614646811, 45.83193695893162], [23.716312278929113, 45.82440682076122], [23.69584494450537, 45.82566184378962], [23.696961344564848, 45.80884453520907], [23.645979075182062, 45.80482846151819], [23.62848880758359, 45.80784051678635], [23.623651073992523, 45.7834930700354], [23.64002494153152, 45.7784729779218], [23.660492275955264, 45.763663706186684], [23.647095475241542, 45.746344388394775], [23.62923307428991, 45.75312151274813], [23.61806907369514, 45.745340369972055], [23.620301873814093, 45.735300185744855], [23.603928006275098, 45.7235029692779], [23.604672272981414, 45.71371378965639], [23.590531205561373, 45.70266958700647], [23.608021473159845, 45.68735830606], [23.592764005680326, 45.677067117227125], [23.59871813933087, 45.67054099747944], [23.627000274170953, 45.65924579022385], [23.646351208535222, 45.640420444797854], [23.646351208535222, 45.63038026057066], [23.634442941234134, 45.62059108094915], [23.64486267512259, 45.61130391053899], [23.650444675419973, 45.59448660195844], [23.631465874408864, 45.58896450063348], [23.62216254057989, 45.5761632657438], [23.622906807286206, 45.555580888078055], [23.6392806748252, 45.544787690033814], [23.653793875598403, 45.51918522025447], [23.653049608892086, 45.51140407747839], [23.666818542958968, 45.49358275047512], [23.705148278334345, 45.49709681495464], [23.69137934426746, 45.487056630727444], [23.689518677501667, 45.477267451105924], [23.676494010141102, 45.46722726687873], [23.641885608297315, 45.45593205962314], [23.61769694034198, 45.45693607804586], [23.61285920675091, 45.46697626227305], [23.59946240603719, 45.47274936820369], [23.596857472565077, 45.4925787320524], [23.578995071613445, 45.50789001299887], [23.573785204669218, 45.52094225249423], [23.555922803717586, 45.53098243672142], [23.538060402765954, 45.5500587867531], [23.519825868461165, 45.55106280517582], [23.504568400981647, 45.56386404006549], [23.49935853403742, 45.579928334829006], [23.455446798364658, 45.580179339434686], [23.430141730349845, 45.58896450063348], [23.42009412981455, 45.61381395659579], [23.427908930230892, 45.623352131611625], [23.41302359610453, 45.6336433204445], [23.389579194855514, 45.623101127005945], [23.371716793903882, 45.62761920990818], [23.36948399378493, 45.640671449403534], [23.385113594617607, 45.64769957836258], [23.39106772826815, 45.65748875798409], [23.403720262275556, 45.65949679482953], [23.42046626316771, 45.67430606656464], [23.40632519574767, 45.691625384356556], [23.385485727970767, 45.69639447186447], [23.367623327019135, 45.70718766990871], [23.363529860134385, 45.71597283110751], [23.382508661145494, 45.759396627890126], [23.377298794201266, 45.771193844357086], [23.358692126543318, 45.77646494107636], [23.349388792714343, 45.788513162148995], [23.338596925472732, 45.82039074707034], [23.325200124759007, 45.83821207407362], [23.33301492517535, 45.87636477413696], [23.312175457398443, 45.893182082717516], [23.314780390870556, 45.90372427615607], [23.335619858647462, 45.908995372875346], [23.32445585805269, 45.92154560315934], [23.299895056744198, 45.91853354789118], [23.266775188313044, 45.93384482883766], [23.253378387599323, 45.95969830322269], [23.25375052095248, 45.96973848744988], [23.236260253354008, 45.989818855904275], [23.24184225365139, 46.0093972151473], [23.235888120000848, 46.0269675375449], [23.210210918632878, 46.03650571256073], [23.185650117324386, 46.02746954675626], [23.13578424800108, 46.03725872637777], [23.115316913577335, 46.047549915210645], [23.10526931304204, 46.060602154706004], [23.085546245324615, 46.07114434814456], [23.099315179391496, 46.07992950934335], [23.08629051203093, 46.10327293767158], [23.065823177607186, 46.10954805281358], [23.06880024443246, 46.12159627388622], [23.05651984377821, 46.140923628523566], [23.078103578261434, 46.14569271603149], [23.099315179391496, 46.13966860549517], [23.106013579748357, 46.15071280814509], [23.092244645681475, 46.16602408909156], [23.097082379272543, 46.182590393066434], [23.071405177904573, 46.19890569243562], [23.069544511138776, 46.208192862845785], [23.052054243540304, 46.2142169733821], [23.041262376298693, 46.208945876662824], [23.013724508164927, 46.21522099180482], [23.004421174335953, 46.21195793193098], [22.98320957320589, 46.21823304707298], [22.978371839614823, 46.23304231880809], [22.958276638544238, 46.24584355369777], [22.957904505191078, 46.26015081622152], [22.94897330471526, 46.266425931363514], [22.9649750389011, 46.28324323994407], [22.959765171956874, 46.293283424171264], [22.944135571124196, 46.29930753470758], [22.93483223729522, 46.32691804133237], [22.922179703287814, 46.33244014265733], [22.8741745007303, 46.33821324858797], [22.84663663259654, 46.32817306436077], [22.813516764165385, 46.32591402290965], [22.779652629027918, 46.35001046505492], [22.75025409412836, 46.351516492689], [22.729786759704613, 46.36356471376163], [22.701876758217686, 46.36682777363548], [22.700388224805053, 46.37912699931379], [22.683642223912898, 46.386155128272826], [22.67806022361551, 46.40623549672722], [22.721227692581955, 46.43133595729521], [22.6899684909166, 46.442129155339444], [22.69406195780135, 46.45367536720072], [22.680665157087624, 46.468484638935834], [22.673966756730763, 46.48655697054478], [22.681409423793944, 46.492832085686786], [22.676199556849717, 46.507139348210536], [22.67843235696867, 46.52345464757973], [22.692945557741872, 46.51918756928317], [22.727926092938816, 46.54704908051364], [22.7789083623216, 46.54830410354204], [22.79788716333271, 46.56712944896803], [22.813516764165385, 46.56938849041915], [22.813516764165385, 46.55809328316356], [22.83770543212072, 46.54679807590796], [22.87975650102769, 46.536757891680764], [22.896874635273, 46.53901693313188], [22.92404037005361, 46.55357520026132], [22.94971757142158, 46.55558323710676], [22.960881572016348, 46.550312140387476], [23.00144410751068, 46.5488061127534], [23.002188374217, 46.534498850229646], [23.01298024145861, 46.5038762883367], [23.033819709235512, 46.50237026070262], [23.05726411048453, 46.492832085686786], [23.047960776655554, 46.47024167117559], [23.08777904544357, 46.466978611301755], [23.099315179391496, 46.47149669420399], [23.10936277992679, 46.492330076475426], [23.133923581235283, 46.492330076475426], [23.14545971518321, 46.50362528373102], [23.186766517383862, 46.509900398873015], [23.197558384625474, 46.492832085686786], [23.23886518682612, 46.49107505344703], [23.25077345412721, 46.49810318240606], [23.271240788550955, 46.49810318240606], [23.28426545591152, 46.509398389661655], [23.299895056744198, 46.509398389661655], [23.314780390870556, 46.520191587705895], [23.337108392060095, 46.52420766139677], [23.344923192476436, 46.53324382720125], [23.393300528387105, 46.5400209515546], [23.402231728862922, 46.53073378114445], [23.4323745304688, 46.52998076732741], [23.456191065070975, 46.51768154164909], [23.464377998840472, 46.50462930215374], [23.51722093498905, 46.493083090292465], [23.52466360205223, 46.4863059659391], [23.545503069829135, 46.50312327451966], [23.561132670661813, 46.48856500739022], [23.575645871435015, 46.49735016858902], [23.597973872624554, 46.48730998436182], [23.604672272981414, 46.46973966196423], [23.590531205561373, 46.44965929350984], [23.593880405739803, 46.43635604940881], [23.604300139628258, 46.42932792044977], [23.60616080639405, 46.414769653320334], [23.63555934129361, 46.40322344145906], [23.660864409308424, 46.399458372373864], [23.68095961037901, 46.4089965473897], [23.65788734248315, 46.41677769016577], [23.652677475538926, 46.42782189281569], [23.67388907666899, 46.42982992966113], [23.670167743137398, 46.439368104676966], [23.679098943613216, 46.44991029811552], [23.70328761156855, 46.45794244549728], [23.73231401311495, 46.45191833496096], [23.767294548311895, 46.46246052839952], [23.781807749085097, 46.45869545931432], [23.815671884222567, 46.466727606696075], [23.84469828576897, 46.46371555142792], [23.85660655307006, 46.45116532114392], [23.87781815420012, 46.45367536720072], [23.91131015598443, 46.46371555142792], [23.924706956698152, 46.44965929350984], [23.948523491300328, 46.44940828890416], [23.965641625545643, 46.43685805862017], [23.986853226675706, 46.43133595729521]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Arad\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[22.67806022361551, 46.40623549672722], [22.683642223912898, 46.386155128272826], [22.700388224805053, 46.37912699931379], [22.701876758217686, 46.36682777363548], [22.729786759704613, 46.36356471376163], [22.75025409412836, 46.351516492689], [22.73015889305777, 46.33620521174253], [22.67843235696867, 46.318634889344935], [22.684014357266054, 46.31010073275182], [22.676571690202877, 46.28801232745199], [22.662430622782836, 46.2716970280828], [22.656848622485448, 46.25764077016472], [22.66391915619547, 46.248855608965926], [22.658337155898085, 46.23505035565353], [22.63749768812118, 46.22626519445473], [22.62745008758589, 46.23153629117401], [22.607354886515303, 46.21873505628434], [22.58874821885735, 46.225261176032014], [22.58577115203208, 46.23379533262513], [22.51506581493187, 46.225010171426334], [22.487900080151263, 46.23630537868193], [22.47040981255279, 46.23304231880809], [22.439150610887435, 46.208443867451464], [22.449570344775886, 46.19338359111067], [22.454780211720113, 46.16326303842908], [22.468549145786994, 46.14870477129965], [22.446965411303776, 46.11632517716694], [22.43319647723689, 46.1067870021511], [22.41533407628526, 46.10854403439086], [22.4067750091626, 46.09574279950119], [22.41905540981685, 46.08143553697744], [22.430591543764777, 46.07867448631495], [22.435801410709004, 46.04905594284473], [22.429103010352144, 46.033744661898254], [22.442871944419025, 46.02772055136194], [22.438778477534278, 46.01140525199274], [22.414217676225782, 46.00989922435866], [22.406402875809444, 46.00262009079395], [22.391889675036243, 46.00839319672458], [22.384819141326222, 45.99534095722923], [22.350210739482435, 45.99835301249739], [22.339418872240824, 45.99257990656675], [22.34127953900662, 45.979025657860035], [22.353932073014025, 45.97300154732372], [22.324533538114466, 45.97174652429532], [22.30369407033756, 45.9320877965979], [22.261270868077435, 45.934597842654696], [22.24787406736371, 45.92129459855366], [22.245269133891597, 45.90297126233903], [22.223313266055218, 45.90347327155039], [22.219591932523628, 45.91276044196054], [22.204706598397266, 45.92154560315934], [22.168237529787685, 45.92807172290702], [22.15558499578028, 45.92104359394798], [22.12841926099967, 45.92731870908998], [22.126930727587037, 45.936856884105815], [22.101625659572225, 45.94187697621941], [22.067761524434754, 45.96070232164541], [22.047294190011012, 45.962710358490845], [22.01045298804827, 45.97124451508396], [22.000033254159817, 45.9682324598158], [21.98886925356505, 45.977770634831636], [21.989241386918206, 45.988563832875876], [21.96989045255394, 45.99458794341219], [21.95909858531233, 45.98806182366451], [21.938259117535424, 45.988312828270196], [21.92151311664327, 45.979527667071395], [21.91779178311168, 45.963463372307885], [21.895091648568982, 45.952921178869325], [21.875368580851553, 45.95769026637725], [21.867181647082056, 45.94890510517845], [21.853040579662014, 45.94739907754437], [21.82475844482193, 45.962710358490845], [21.809500977342413, 45.94488903148757], [21.800941910219755, 45.92556167685022], [21.770799108613875, 45.91727852486278], [21.77005484190756, 45.938864920951254], [21.77712537561758, 45.94790108675573], [21.76447284161017, 45.95668624795452], [21.74400550718643, 45.978523648648675], [21.724282439469, 45.977519630225956], [21.726143106234797, 45.96873446902716], [21.70530363845789, 45.94463802688189], [21.694139637863124, 45.91677651565142], [21.669206703201468, 45.90648532681855], [21.66846243649515, 45.9270677044843], [21.65022790219036, 45.94765008215005], [21.63199336788557, 45.94514003609325], [21.6435295018335, 45.97425657035212], [21.592547232450716, 45.990822874326994], [21.593291499157033, 45.99483894801787], [21.525935362235256, 46.01040123357002], [21.538215762889504, 46.033242652686894], [21.517376295112598, 46.0681322928764], [21.49914176080781, 46.0693873159048], [21.47904655973722, 46.06361420997416], [21.436995490830256, 46.04378484612545], [21.451136558250298, 46.02972858820738], [21.418388823172304, 46.01717835792338], [21.422854423410215, 46.01215826580978], [21.3830361546222, 46.00086305855419], [21.36926722055532, 45.990822874326994], [21.346939219365776, 46.00011004473715], [21.33540308541785, 46.00914621054162], [21.31605215105358, 46.0093972151473], [21.28628148280086, 46.02044141779722], [21.275489615559252, 46.01592333489498], [21.263581348258164, 45.99508995262355], [21.239392680302828, 45.98755981445315], [21.238648413596508, 45.971997528901], [21.193248144511113, 45.98530077300203], [21.173152943440527, 45.99960803552579], [21.12738054100197, 45.977519630225956], [21.11175094016929, 45.977519630225956], [21.086445872154478, 45.99734899407467], [21.076026138266027, 46.01240927041546], [21.070444137968643, 46.04001977704025], [21.051465336957534, 46.03650571256073], [20.97889933309153, 46.03876475401185], [20.94243026448195, 46.03750973098345], [20.91191532952291, 46.073152384989996], [20.890331595039687, 46.084447592245596], [20.87060852732226, 46.08294156461152], [20.858700260021173, 46.09072270738759], [20.83339519200636, 46.09122471659895], [20.805113057166277, 46.10779102057382], [20.799158923515733, 46.1218472784919], [20.783529322683055, 46.12485933376006], [20.77459812220724, 46.14318266997469], [20.765666921731423, 46.14669673445421], [20.72994211982816, 46.14519070682013], [20.71877811923339, 46.15949796934388], [20.706869851932304, 46.16125500158364], [20.715428919054958, 46.16627509369724], [20.728825719768682, 46.20769085363442], [20.76343412161247, 46.20467879836626], [20.750409454251905, 46.250863645811364], [20.77720305567935, 46.276215110985035], [20.790971989746236, 46.27345406032256], [20.87507412756017, 46.28776132284631], [20.892192261805484, 46.2716970280828], [20.923823596823997, 46.26215885306696], [20.92680066364927, 46.276466115590715], [20.948384398132493, 46.27947817085887], [20.953966398429877, 46.265170908335115], [20.991924000452094, 46.25989981161584], [21.02653240229588, 46.266927940574874], [21.03844066959697, 46.248102595148886], [21.06746707114337, 46.24308250303529], [21.096121339336612, 46.26266086227832], [21.10468040645927, 46.262911866884], [21.116960807113518, 46.302068585370066], [21.147103608719394, 46.305080640638224], [21.17166441002789, 46.29830351628486], [21.18208414391634, 46.304327626821184], [21.17464147685316, 46.318634889344935], [21.177618543678435, 46.33595420713685], [21.20106294492745, 46.34825343281516], [21.19808587810218, 46.371094851932035], [21.20776134528431, 46.40347444606474], [21.22711227964858, 46.413765634897615], [21.276978148971885, 46.40698851054426], [21.291119216391927, 46.413765634897615], [21.319029217878853, 46.45116532114392], [21.29781761674879, 46.47651678631759], [21.27586174891241, 46.47676779092327], [21.262092814845527, 46.50237026070262], [21.281815882562952, 46.54529204827388], [21.295212683276677, 46.5525711818386], [21.322378418057284, 46.58319374373154], [21.302655350339858, 46.590974886507624], [21.315680017700423, 46.617832379315374], [21.3313096185331, 46.631888637233445], [21.354754019782117, 46.630633614205045], [21.367034420436365, 46.63816375237544], [21.3830361546222, 46.62862557735961], [21.410946156109127, 46.62235046221761], [21.418016689819147, 46.64293283988336], [21.443321757833957, 46.65171800108216], [21.457462825253998, 46.66728028663431], [21.473464559439837, 46.66175818530935], [21.488722026919355, 46.64694891357424], [21.51328282822785, 46.63665772474136], [21.540448563008457, 46.629880600388006], [21.547891230071635, 46.60176808455186], [21.56873069784854, 46.60051306152346], [21.562776564197996, 46.62009142076649], [21.56463723096379, 46.63841475698112], [21.578034031677515, 46.65071398265944], [21.61227030016814, 46.64418786291176], [21.63162123453241, 46.64945895963104], [21.648739368777726, 46.66502124518319], [21.660275502725653, 46.66251119912639], [21.69079043768469, 46.66527224978887], [21.698977371454188, 46.660252157675274], [21.727259506294274, 46.659248139252554], [21.75777444125331, 46.66351521754911], [21.784940176033917, 46.65422804713896], [21.810989510755046, 46.656236083984396], [21.84038804565461, 46.66878631426839], [21.863832446903626, 46.672802387959266], [21.870902980613646, 46.68133654455239], [21.908116315929547, 46.66828430505703], [21.911465516107977, 46.66100517149231], [21.882811247914734, 46.631386628022085], [21.912209782814294, 46.630633614205045], [21.91704751640536, 46.62586452669713], [21.949050984777035, 46.62059342997785], [22.00226605427877, 46.62486050827441], [22.011197254754588, 46.63766174316408], [22.030176055765697, 46.64519188133448], [22.046177789951535, 46.6374107385584], [22.08078619179532, 46.63715973395272], [22.090833792330614, 46.633143660261844], [22.090461658977453, 46.61833438852673], [22.109440459988562, 46.615824342469935], [22.117627393758063, 46.603023107580256], [22.167865396434525, 46.604529135214335], [22.176796596910343, 46.59775201086098], [22.16637686302189, 46.57214954108163], [22.18163433050141, 46.54152697918868], [22.1771687302635, 46.536757891680764], [22.199496731453042, 46.51416747716957], [22.25829380125216, 46.507390352816216], [22.274295535438, 46.50111523767422], [22.316346604344965, 46.51542250019797], [22.328999138352373, 46.50186825149126], [22.324533538114466, 46.483544915276624], [22.34016313894714, 46.47651678631759], [22.34797793936348, 46.45367536720072], [22.371050207259337, 46.42782189281569], [22.40342580898417, 46.41000056581242], [22.413101276166305, 46.40924755199538], [22.42575381017371, 46.3939362710489], [22.454408078366953, 46.385402114455786], [22.51543794828503, 46.386657137484185], [22.57497928479047, 46.398203349345465], [22.58949248556367, 46.398203349345465], [22.620379553875868, 46.39092421578074], [22.650522355481748, 46.39192823420346], [22.66764048972706, 46.40447846448746], [22.67806022361551, 46.40623549672722]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Arge\\u0219\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[25.323184097869664, 45.381383691736204], [25.318346364278597, 45.37008848448061], [25.326905431401254, 45.35628323116821], [25.326161164694938, 45.34549003312398], [25.311275830568576, 45.336202862713826], [25.31760209757228, 45.32289961861279], [25.304949563564875, 45.29880317646752], [25.30681023033067, 45.29252806132552], [25.282621562375333, 45.27144367444841], [25.286715029260083, 45.240821112555466], [25.29527409638274, 45.232286955962344], [25.271085428427405, 45.213712615142036], [25.249129560591026, 45.21120256908524], [25.256572227654203, 45.18334105785477], [25.230522892933074, 45.16752776769693], [25.20893915844985, 45.163511694006054], [25.196658757795607, 45.172045850599176], [25.18102915696293, 45.19564028353308], [25.166515956189727, 45.2079395092114], [25.14790928853178, 45.19890334340692], [25.153863422182322, 45.189616172996764], [25.1549798222418, 45.15723657886406], [25.14828142188494, 45.13163410908471], [25.159445422479706, 45.118832874195036], [25.178052090137655, 45.107537666939436], [25.18065702360977, 45.09046935375321], [25.170609423074477, 45.08068017413169], [25.143815821647028, 45.08444524321689], [25.126697687401716, 45.065870902396576], [25.150142088650732, 45.052065649084184], [25.148653555238095, 45.038511400377466], [25.173586489899748, 45.040770441828585], [25.18884395737927, 45.03349130826387], [25.1985194245614, 45.01893304113444], [25.197030891148763, 44.99056952069261], [25.178424223490815, 44.98956550226989], [25.170609423074477, 44.972748193689334], [25.16874875630868, 44.92254727255336], [25.19926369126772, 44.903470922521684], [25.193309557617177, 44.88539859091273], [25.19479809102981, 44.87109132838898], [25.20558995827142, 44.8545250244141], [25.197775157855084, 44.847998904666426], [25.190332490791903, 44.8284205454234], [25.201496491386674, 44.81135223223716], [25.19889155791456, 44.806081135517886], [25.21452115874724, 44.782486702583974], [25.211544091921965, 44.764163366369345], [25.193681690970333, 44.736050850533196], [25.184006223788202, 44.737556878167275], [25.186983290613473, 44.7159704820788], [25.192565290910856, 44.711452399176565], [25.233872093111508, 44.700659201132325], [25.23908196005573, 44.69513709980737], [25.197775157855084, 44.66677357936554], [25.189588224085586, 44.670789653056424], [25.169865156368157, 44.66200449185762], [25.18102915696293, 44.64970526617931], [25.20633422497774, 44.632887957598754], [25.194425957676653, 44.62008672270908], [25.201496491386674, 44.60778749703077], [25.215265425453556, 44.615066630595486], [25.22196382581042, 44.60201439110013], [25.25508369424157, 44.562606668008385], [25.276667428724792, 44.56762676012198], [25.29899542991433, 44.55658255747207], [25.28150516231586, 44.52821903703024], [25.259177161126317, 44.51215474226672], [25.266991961542658, 44.50688364554745], [25.281877295669016, 44.47525706523178], [25.271457561780565, 44.46270683494779], [25.278900228843746, 44.453419664537634], [25.236477026583618, 44.424554134884445], [25.204845691565104, 44.45668272441147], [25.156840489007593, 44.43810838359116], [25.159073289126546, 44.43459431911164], [25.112556619981675, 44.416270982897004], [25.09581061908952, 44.415266964474284], [25.066784217543116, 44.397696642076696], [25.047805416532007, 44.397696642076696], [25.012080614628744, 44.41125089078341], [25.007242881037676, 44.40397175721869], [24.978216479491273, 44.38313837494726], [24.9625868786586, 44.37962431046774], [24.885555274554683, 44.38288737034158], [24.882206074376253, 44.39443358220286], [24.789172736086506, 44.3926765499631], [24.78768420267387, 44.398449655893735], [24.756052867655352, 44.39167253154038], [24.755680734302196, 44.40296773879597], [24.7456331337669, 44.423299111856046], [24.756052867655352, 44.43534733292868], [24.756797134361673, 44.46521688100459], [24.735585533231607, 44.465467885610266], [24.736329799937927, 44.492074373812336], [24.728887132874746, 44.492576383023696], [24.732980599759497, 44.522445931099604], [24.744144600354264, 44.538259221257434], [24.7311199329937, 44.55357050220391], [24.730003532934223, 44.5723958476299], [24.71214113198259, 44.58268703646278], [24.710280465216798, 44.616823662835245], [24.714373932101545, 44.6198357181034], [24.703954198213093, 44.643430151037315], [24.706559131685207, 44.656231385926986], [24.69055739749937, 44.70266723797777], [24.71214113198259, 44.710699385359526], [24.71772313227998, 44.71822952352992], [24.704326331566254, 44.73278779065936], [24.684975397201985, 44.738058887378635], [24.632876727759726, 44.73303879526503], [24.608315926451233, 44.754123182142145], [24.59268632561855, 44.75010710845127], [24.589337125440125, 44.7759605828363], [24.59008139214644, 44.79779798353045], [24.57854525819851, 44.79930401116453], [24.570730457782172, 44.81938437961892], [24.558077923774768, 44.831432600691556], [24.552123790124224, 44.859545116527705], [24.544308989707883, 44.862055162584504], [24.54244832294209, 44.89142270144905], [24.525702322049934, 44.89468576132289], [24.510816987923576, 44.86632224088106], [24.511561254629893, 44.847245890849386], [24.50039725403512, 44.84573986321531], [24.494815253737737, 44.8296755684518], [24.481790586377173, 44.822396434887075], [24.44941498465234, 44.814615292111], [24.42299351657805, 44.82741652700068], [24.439739517470205, 44.84573986321531], [24.464672452131857, 44.862557171795864], [24.469510185722925, 44.88138251722185], [24.481418453024013, 44.89945484883081], [24.465044585485018, 44.904474940944404], [24.465788852191334, 44.91476612977728], [24.48662831996824, 44.93685453507711], [24.50114152074144, 44.945639696275904], [24.480674186317696, 44.96396303249054], [24.48253485308349, 44.97601125356317], [24.50858418780462, 45.0006097049198], [24.484767653202443, 45.013912949020835], [24.48997752014667, 45.022949114825316], [24.51974818839939, 45.041272451039944], [24.513421921395686, 45.05532870895802], [24.48290698643665, 45.06135281949434], [24.4933267203251, 45.07691510504649], [24.50858418780462, 45.08494725242825], [24.494443120384577, 45.11080072681328], [24.514166188102006, 45.108541685362155], [24.52012032175255, 45.137658219621024], [24.501513654094598, 45.15849160189246], [24.514538321455163, 45.16602174006285], [24.514910454808323, 45.189114163785405], [24.489233253440354, 45.19639329735012], [24.498536587269328, 45.20819051381708], [24.474347919313992, 45.21220658750796], [24.469510185722925, 45.232035951356664], [24.485139786555603, 45.257387416530335], [24.481046319670853, 45.268682623785935], [24.4933267203251, 45.27796979419609], [24.48253485308349, 45.3028192501584], [24.49369885367826, 45.31486747123103], [24.484767653202443, 45.33218678902295], [24.491466053559307, 45.35829126801365], [24.502630054154075, 45.363060355521576], [24.495559520444054, 45.379124650285085], [24.507095654391982, 45.38314072397596], [24.4933267203251, 45.39870300952812], [24.484767653202443, 45.41702634574275], [24.480674186317696, 45.43785972801418], [24.4870004533214, 45.46270918397649], [24.517515388280437, 45.46647425306169], [24.52644658875625, 45.476012428077524], [24.529423655581525, 45.49684581034896], [24.515282588161483, 45.51115307287271], [24.521608855165184, 45.52495832618511], [24.54207618958893, 45.53600252883502], [24.53537778923207, 45.55056079596446], [24.514538321455163, 45.572147192052924], [24.514538321455163, 45.58720746839372], [24.528307255522048, 45.580430344040366], [24.555100856949494, 45.58796048221076], [24.567381257603742, 45.579426325617646], [24.59826832591594, 45.596494638803875], [24.64552926176713, 45.60452678618563], [24.674183529960374, 45.595239615775476], [24.68646393061462, 45.60452678618563], [24.700604998034663, 45.60276975394587], [24.71772313227998, 45.60753884145379], [24.737074066644244, 45.60352276776291], [24.773915268606984, 45.61155491514467], [24.79438260303073, 45.60251874934019], [24.81001220386341, 45.60904486908787], [24.83122380499347, 45.60678582763675], [24.83792220535033, 45.59222756050732], [24.860250206539874, 45.59448660195844], [24.918303009632677, 45.59473760656412], [24.94286381094117, 45.582438380885804], [24.959609811833324, 45.59298057432436], [24.982682079729184, 45.5874584729994], [25.015057681454017, 45.586203449971], [25.038874216056193, 45.592478565113], [25.05338741682939, 45.58695646378804], [25.08315808508211, 45.581936371674445], [25.104741819565334, 45.58545043615396], [25.131163287639623, 45.56562107230525], [25.147165021825458, 45.55884394795189], [25.153491288829162, 45.546042713062214], [25.177679956784498, 45.53575152422934], [25.190704624145063, 45.52295028933967], [25.204845691565104, 45.51993823407151], [25.213032625334602, 45.527217367636226], [25.230522892933074, 45.51767919262039], [25.243547560293642, 45.49408475968648], [25.239826226762048, 45.475761423471845], [25.259921427832637, 45.45166498132657], [25.263642761364224, 45.43785972801418], [25.257688627713684, 45.42556050233587], [25.27443462860584, 45.407739175332594], [25.302716763445922, 45.42330146088475], [25.31350863068753, 45.39995803255652], [25.309415163802782, 45.38991784832932], [25.323184097869664, 45.381383691736204]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Bac\\u0103u\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[27.20766739826683, 46.770192174963064], [27.212505131857895, 46.76115600915859], [27.238554466579025, 46.74785276505756], [27.24078726669798, 46.73555353937924], [27.290281002668127, 46.71622618474189], [27.328238604690345, 46.698153853132936], [27.294374469552874, 46.67706946625583], [27.321168070980324, 46.6537260379276], [27.294746602906034, 46.63941877540384], [27.27800060201388, 46.62561352209145], [27.2995843364971, 46.606788176665454], [27.32972713810298, 46.58570378978835], [27.33754193851932, 46.56562342133395], [27.369173273537832, 46.533745836412606], [27.399316075143712, 46.47224970802103], [27.412712875857437, 46.457691440891594], [27.42164407633325, 46.43133595729521], [27.43429661034066, 46.413012621080576], [27.450670477879655, 46.400462390796584], [27.453647544704925, 46.37912699931379], [27.46034594506179, 46.360552658493475], [27.4774640793071, 46.33093411502325], [27.475603412541307, 46.32340397685285], [27.457741011589675, 46.32139594000741], [27.468532878831287, 46.302570594581425], [27.465183678652856, 46.2965464840451], [27.48490674637028, 46.28173721230999], [27.471137812303397, 46.26818296360327], [27.480441146132375, 46.220994097735456], [27.50797901426614, 46.21973907470706], [27.510211814385094, 46.19338359111067], [27.502024880615597, 46.16476906606316], [27.494582213552416, 46.15949796934388], [27.483046079604485, 46.16652609830292], [27.460718078414946, 46.15774093710412], [27.449554077820178, 46.18434742530619], [27.395222608258962, 46.194638614139066], [27.38070940748576, 46.19012053123683], [27.382197940898397, 46.16527107527452], [27.376615940601013, 46.15824294631548], [27.35168300593936, 46.153222854201886], [27.35168300593936, 46.169036144359715], [27.335309138400365, 46.168785139754036], [27.324517271158754, 46.18434742530619], [27.319307404214527, 46.2029217661265], [27.30702700356028, 46.20568281678898], [27.264231667946994, 46.20066272467538], [27.271302201657015, 46.18334340688347], [27.24078726669798, 46.17857431937556], [27.23706593316639, 46.18961852202547], [27.223296999099507, 46.19162655887091], [27.20282966467576, 46.179829342403956], [27.179757396779905, 46.180582356220995], [27.171570463010404, 46.169789158176755], [27.13249646092871, 46.15021079893373], [27.131007927516073, 46.13866458707245], [27.141055528051368, 46.13163645811341], [27.123193127099736, 46.102017914643184], [27.107935659620217, 46.113313121898784], [27.10384219273547, 46.08946768435919], [27.087468325196472, 46.09423677186711], [27.075560057895384, 46.08771065211943], [27.033508988988416, 46.099256863980706], [26.99183005343461, 46.113313121898784], [26.955360984825028, 46.1055319791227], [26.953128184706074, 46.086204624485354], [26.94308058417078, 46.083192569217196], [26.934521517048125, 46.06512023760824], [26.900285248557495, 46.07842348170927], [26.878329380721116, 46.08218855079447], [26.849302979174716, 46.07867448631495], [26.846325912349442, 46.07164635735592], [26.82437004451306, 46.0718973619616], [26.80911257703354, 46.06612425603096], [26.787156709197163, 46.08896567514783], [26.720544838981702, 46.08896567514783], [26.7060316382085, 46.09498978568415], [26.696356171026366, 46.08896567514783], [26.6688183028926, 46.08971868896487], [26.641280434758833, 46.07089334353888], [26.64239683481831, 46.06587325142528], [26.610021233093477, 46.04529087375953], [26.587693231903938, 46.04077279085729], [26.581366964900237, 46.02169644082562], [26.574296431190213, 46.01717835792338], [26.536710962521155, 46.02872456978466], [26.517360028156887, 46.02721854215058], [26.492799226848394, 46.045541878365206], [26.458190825004607, 46.03449767571529], [26.441444824112452, 46.03926676322321], [26.430280823517684, 46.07917649552631], [26.3938117549081, 46.101264900826145], [26.37446082054383, 46.1080420251795], [26.369250953599607, 46.11858421861806], [26.385996954491763, 46.125863352182776], [26.388229754610716, 46.143935683791725], [26.372972287131198, 46.14619472524285], [26.344690152291115, 46.13791157325541], [26.349155752529022, 46.16225902000636], [26.332037618283707, 46.18384541609483], [26.34245735217216, 46.20091372928106], [26.339852418700048, 46.2154719964105], [26.32831628475212, 46.23028126814561], [26.311570283859965, 46.239066429344405], [26.280683215547768, 46.24709857672617], [26.26468148136193, 46.24709857672617], [26.255006014179795, 46.267178945180554], [26.255006014179795, 46.277470134013434], [26.27175201507195, 46.28751031824063], [26.280311082194608, 46.29955853931326], [26.285148815785675, 46.32139594000741], [26.29445214961465, 46.33444817950277], [26.272496281778267, 46.345241377547005], [26.237515746581323, 46.33545219792549], [26.22784027939919, 46.318634889344935], [26.210350011800713, 46.31210876959726], [26.1787186767822, 46.31085374656886], [26.157879209005298, 46.3153718294711], [26.150808675295277, 46.32716904593805], [26.165694009421635, 46.3477514236038], [26.166438276127955, 46.385151109850106], [26.111362539860423, 46.40096440000794], [26.06335733730291, 46.40096440000794], [26.06335733730291, 46.412008602657856], [26.035447335815988, 46.41753070398281], [26.021678401749103, 46.40924755199538], [25.998978267206404, 46.42054275925097], [26.00381600079747, 46.42731988360433], [25.98930280002427, 46.439619109282646], [26.005676667563268, 46.44463920139624], [26.018329201570673, 46.47752080474031], [26.021306268395946, 46.492832085686786], [26.061124537183957, 46.494087108715185], [26.07600987131032, 46.484799938305024], [26.084568938432973, 46.51266144953549], [26.07563773795716, 46.52596469363653], [26.051449070001823, 46.53123579035581], [26.03693586922862, 46.54428802985116], [26.034703069109668, 46.57139652726459], [26.0235390685149, 46.588715845056505], [26.00046680061904, 46.6012660753405], [25.992279866849543, 46.616326351681295], [26.00939800109486, 46.63540270171296], [26.00753733432906, 46.66075416688663], [25.979627332842135, 46.68886668272278], [25.995629067027973, 46.699157871555656], [26.014235734685926, 46.69438878404774], [26.04251786952601, 46.71396714329077], [26.069311470953455, 46.712461115656694], [26.077498404722952, 46.69438878404774], [26.074149204544522, 46.68108553994671], [26.08308040502034, 46.673806406381985], [26.080847604901386, 46.658495125435515], [26.09759360579354, 46.648705945814], [26.129224940812055, 46.659499143858234], [26.14894800852948, 46.657491107012795], [26.160856275830568, 46.64192882146064], [26.179835076841677, 46.65046297805376], [26.217792678863894, 46.656738093195756], [26.220025478982848, 46.68033252612967], [26.233794413049733, 46.685101613637585], [26.24123708011291, 46.69539280247046], [26.267286414834043, 46.70342494985221], [26.265425748068246, 46.69288275641366], [26.28589308249199, 46.68058353073535], [26.302639083384147, 46.6537260379276], [26.340968818759524, 46.66050316228095], [26.34729508576323, 46.6512159918708], [26.391578954789146, 46.65071398265944], [26.410557755800255, 46.66477024057751], [26.41986108962923, 46.68234056297511], [26.477169626015716, 46.67882649849559], [26.495404160320508, 46.68183855376375], [26.508056694327912, 46.69463978865342], [26.531501095576928, 46.69263175180798], [26.548247096469083, 46.67857549388991], [26.571691497718103, 46.67882649849559], [26.589926032022895, 46.68936869193414], [26.60964909974032, 46.712963124868054], [26.62490656721984, 46.72049326303845], [26.6461181683499, 46.72174828606685], [26.666585502773646, 46.73655755780196], [26.677749503368418, 46.73630655319628], [26.67253963642419, 46.755633907833634], [26.677377370015257, 46.767933133511946], [26.707148038267977, 46.767431124300586], [26.735058039754904, 46.76341505060971], [26.732825239635947, 46.74935879269164], [26.756269640884966, 46.75663792625635], [26.760363107769713, 46.73705956701332], [26.78790097590348, 46.71723020316461], [26.818788044215676, 46.73279248871676], [26.82437004451306, 46.74333468215532], [26.84334884552417, 46.751617834142756], [26.823253644453583, 46.77345523483691], [26.85116364594051, 46.780232359190265], [26.85116364594051, 46.804830810546896], [26.867537513479505, 46.806838847392335], [26.88428351437166, 46.81612601780249], [26.88353924766534, 46.82792323426944], [26.91107711579911, 46.82742122505808], [26.916286982743333, 46.81085492108321], [26.897308181732225, 46.796045649348095], [26.912565649211743, 46.794037612502656], [26.915542716037017, 46.78299340985274], [26.935637917107602, 46.78550345590954], [26.947918317761847, 46.770443179568744], [26.948290451115007, 46.75889696770747], [26.964292185300845, 46.754127880199555], [26.98066605283984, 46.76291304139835], [27.011553121152037, 46.769439161146025], [27.040579522698437, 46.770443179568744], [27.053604190059005, 46.76015199073587], [27.06662885741957, 46.75914797231315], [27.07742072466118, 46.766929115089226], [27.104214326088627, 46.768686147328985], [27.11686686009603, 46.74885678348028], [27.131380060869233, 46.7473507558462], [27.16226712918143, 46.73454952095652], [27.164872062653544, 46.74960979729732], [27.187200063843083, 46.749860801903], [27.190177130668356, 46.76115600915859], [27.20766739826683, 46.770192174963064]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Bihor\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[22.614425420225324, 47.334952537742836], [22.579444885028376, 47.30558499887829], [22.56307101748938, 47.30759303572373], [22.55265128360093, 47.300313902159004], [22.54855781671618, 47.28148855673302], [22.561954617429905, 47.26492225275814], [22.564187417548858, 47.24860695338895], [22.53776594947457, 47.23655873231631], [22.5184150151103, 47.232542658625434], [22.52957901570507, 47.22024343294712], [22.50799528122185, 47.20970123950856], [22.513205148166076, 47.19589598619617], [22.495342747214444, 47.18585580196898], [22.5120887481066, 47.1667794519373], [22.541115149653002, 47.162010364429385], [22.536277416061935, 47.14996214335675], [22.555256217073044, 47.14192999597499], [22.558605417251474, 47.11657853080132], [22.519903548522937, 47.109550401842284], [22.547069283303543, 47.0882150103595], [22.569769417846242, 47.082943913640214], [22.594702352507895, 47.064369572819906], [22.649405955422267, 47.05759244846655], [22.668756889786536, 47.05056431950751], [22.687363557444485, 47.05181934253591], [22.692945557741872, 47.0332450017156], [22.71118009204666, 47.010905591810086], [22.73053102641093, 47.00739152733057], [22.69778329133294, 46.98103604373418], [22.676571690202877, 46.971246864112665], [22.677315956909194, 46.95442955553211], [22.687363557444485, 46.93911827458564], [22.71973915916932, 46.933345168655], [22.732391693176726, 46.919288910736924], [22.7498819607752, 46.91226078177789], [22.776675562202644, 46.91075475414381], [22.780396895734235, 46.8972005054371], [22.755836094425742, 46.876367123165664], [22.74467209383097, 46.84474054285], [22.73462449329568, 46.83419834941144], [22.728670359645136, 46.81687903161953], [22.705598091749277, 46.805834828969616], [22.658709289251245, 46.805332819758256], [22.638986221533816, 46.79981071843329], [22.71564569228457, 46.76316404600403], [22.71936702581616, 46.755131898622274], [22.710063691987184, 46.73906760385876], [22.74132289365254, 46.71622618474189], [22.747649160656245, 46.69514179786478], [22.772582095317897, 46.66677827742295], [22.775559162143168, 46.65146699647648], [22.795282229860597, 46.6399207846152], [22.809423297280638, 46.61080425035633], [22.809795430633798, 46.589217854267865], [22.818726631109612, 46.58469977136563], [22.813516764165385, 46.56938849041915], [22.79788716333271, 46.56712944896803], [22.7789083623216, 46.54830410354204], [22.727926092938816, 46.54704908051364], [22.692945557741872, 46.51918756928317], [22.67843235696867, 46.52345464757973], [22.676199556849717, 46.507139348210536], [22.681409423793944, 46.492832085686786], [22.673966756730763, 46.48655697054478], [22.680665157087624, 46.468484638935834], [22.69406195780135, 46.45367536720072], [22.6899684909166, 46.442129155339444], [22.721227692581955, 46.43133595729521], [22.67806022361551, 46.40623549672722], [22.66764048972706, 46.40447846448746], [22.650522355481748, 46.39192823420346], [22.620379553875868, 46.39092421578074], [22.58949248556367, 46.398203349345465], [22.57497928479047, 46.398203349345465], [22.51543794828503, 46.386657137484185], [22.454408078366953, 46.385402114455786], [22.42575381017371, 46.3939362710489], [22.413101276166305, 46.40924755199538], [22.40342580898417, 46.41000056581242], [22.371050207259337, 46.42782189281569], [22.34797793936348, 46.45367536720072], [22.34016313894714, 46.47651678631759], [22.324533538114466, 46.483544915276624], [22.328999138352373, 46.50186825149126], [22.316346604344965, 46.51542250019797], [22.274295535438, 46.50111523767422], [22.25829380125216, 46.507390352816216], [22.199496731453042, 46.51416747716957], [22.1771687302635, 46.536757891680764], [22.18163433050141, 46.54152697918868], [22.16637686302189, 46.57214954108163], [22.176796596910343, 46.59775201086098], [22.167865396434525, 46.604529135214335], [22.117627393758063, 46.603023107580256], [22.109440459988562, 46.615824342469935], [22.090461658977453, 46.61833438852673], [22.090833792330614, 46.633143660261844], [22.08078619179532, 46.63715973395272], [22.046177789951535, 46.6374107385584], [22.030176055765697, 46.64519188133448], [22.011197254754588, 46.63766174316408], [22.00226605427877, 46.62486050827441], [21.949050984777035, 46.62059342997785], [21.91704751640536, 46.62586452669713], [21.912209782814294, 46.630633614205045], [21.882811247914734, 46.631386628022085], [21.911465516107977, 46.66100517149231], [21.908116315929547, 46.66828430505703], [21.870902980613646, 46.68133654455239], [21.863832446903626, 46.672802387959266], [21.84038804565461, 46.66878631426839], [21.810989510755046, 46.656236083984396], [21.784940176033917, 46.65422804713896], [21.75777444125331, 46.66351521754911], [21.727259506294274, 46.659248139252554], [21.698977371454188, 46.660252157675274], [21.69079043768469, 46.66527224978887], [21.660275502725653, 46.66251119912639], [21.648739368777726, 46.66502124518319], [21.63162123453241, 46.64945895963104], [21.61227030016814, 46.64418786291176], [21.578034031677515, 46.65071398265944], [21.56463723096379, 46.63841475698112], [21.562776564197996, 46.62009142076649], [21.56873069784854, 46.60051306152346], [21.547891230071635, 46.60176808455186], [21.540448563008457, 46.629880600388006], [21.51328282822785, 46.63665772474136], [21.488722026919355, 46.64694891357424], [21.473464559439837, 46.66175818530935], [21.457462825253998, 46.66728028663431], [21.444066024540277, 46.66677827742295], [21.43178562388603, 46.68033252612967], [21.43587909077078, 46.69589481168182], [21.452625091662934, 46.68886668272278], [21.471231759320883, 46.69564380707614], [21.492071227097785, 46.686105632060304], [21.5091893613431, 46.698404857738616], [21.51291069487469, 46.712210111051014], [21.530773095826323, 46.72099527224981], [21.52816816235421, 46.73956961307012], [21.51328282822785, 46.74534271900076], [21.48611709344724, 46.76517208284947], [21.511050028108894, 46.7834954190641], [21.523702562116302, 46.808846884237774], [21.52072549529103, 46.83620638625688], [21.539704296302137, 46.847752598118156], [21.596640699335467, 46.86080483761351], [21.604827633104964, 46.86908798960095], [21.60519976645812, 46.88540328897014], [21.615991633699732, 46.88690931660422], [21.60892109998971, 46.90473064360749], [21.600734166220214, 46.90949973111541], [21.600362032867054, 46.92782306733004], [21.607804699930234, 46.93284315944364], [21.639808168301908, 46.933345168655], [21.66176403613829, 46.95618658777187], [21.674788703498855, 46.95392754632075], [21.683347770621513, 46.96723079042179], [21.669578836554628, 46.970493850295625], [21.6807428371494, 46.998355361526094], [21.679626437089922, 47.01868673458616], [21.663252569550927, 47.0206947714316], [21.65022790219036, 47.040524135280315], [21.68409203732783, 47.04604623660527], [21.702698704985778, 47.068636651116464], [21.71758403911214, 47.07541377546982], [21.714979105640026, 47.083445922851574], [21.72763163964743, 47.09900820840373], [21.774520442145466, 47.109299397236605], [21.792382843097098, 47.10628734196845], [21.79498777656921, 47.12661871502852], [21.819176444524544, 47.1730545670793], [21.84038804565461, 47.177823654587215], [21.85936684666572, 47.187361829603056], [21.859738980018875, 47.2204944375528], [21.848574979424107, 47.224259506638], [21.853412713015175, 47.23957078758447], [21.87350791408576, 47.26366722972974], [21.889881781624755, 47.27822549685918], [21.88727684815264, 47.28952070411477], [21.896952315334776, 47.31512317389412], [21.924862316821702, 47.34449071275867], [21.94011978430122, 47.37335624241186], [21.963192052197076, 47.38163939439929], [21.996684053981387, 47.381388389793614], [22.01343005487354, 47.37611729307434], [22.037246589475718, 47.41376798392632], [22.036874456122558, 47.42782424184439], [22.027571122293583, 47.44263351357951], [22.008592321282475, 47.48354726430533], [22.01417432157986, 47.501619595914285], [22.02571045552779, 47.52019393673459], [22.046922056657852, 47.54002330058331], [22.06292379084369, 47.529230102539074], [22.07259925802582, 47.53801526373787], [22.056225390486826, 47.54730243414802], [22.08078619179532, 47.5626137150945], [22.09232232574325, 47.55784462758658], [22.105346993103815, 47.571900885504654], [22.130652061118628, 47.58972221250793], [22.129907794412308, 47.598507373706724], [22.172703130025592, 47.59198125395905], [22.182378597207727, 47.60051541055216], [22.208800065282016, 47.596750341466965], [22.21512633228572, 47.586208148028405], [22.231500199824715, 47.58269408354889], [22.237826466828416, 47.5651237611513], [22.257921667899005, 47.56713179799674], [22.26313153484323, 47.5563385999525], [22.256805267839525, 47.54052530979467], [22.287320202798565, 47.53525421307539], [22.29364646980227, 47.52295498739707], [22.28992513627068, 47.50689069263356], [22.327882738292896, 47.499611559068846], [22.342023805712937, 47.490575393264365], [22.342768072419254, 47.45593675768054], [22.361002606724046, 47.42882826026711], [22.384447007973062, 47.42857725566143], [22.409007809281555, 47.434350361592074], [22.431335810471097, 47.422804149730794], [22.461106478723817, 47.432091320140955], [22.471526212612268, 47.422804149730794], [22.491993547036014, 47.42556520039327], [22.5329282158835, 47.41678003919448], [22.537021682768252, 47.39971172600825], [22.55227915024777, 47.40171976285369], [22.56753661772729, 47.392934601654886], [22.561210350723584, 47.380635375976574], [22.58577115203208, 47.35854697067674], [22.613681153519003, 47.34047463906779], [22.614425420225324, 47.334952537742836]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Bistri\\u021ba-N\\u0103s\\u0103ud\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[24.9625868786586, 47.597001346072645], [24.99086901349868, 47.586208148028405], [25.006870747684516, 47.570143853264895], [25.04631688311937, 47.5601036690377], [25.067900617602593, 47.53073613017315], [25.0950663523832, 47.51241279395852], [25.093949952323722, 47.502121605125645], [25.066784217543116, 47.48480228733373], [25.049293949944644, 47.48103721824853], [25.067528484249436, 47.45066566096126], [25.089112218732655, 47.447653605693105], [25.075343284665774, 47.43761342146591], [25.05413168353571, 47.431589310929596], [25.052643150123075, 47.41828606682856], [25.025849548695625, 47.43585638922615], [25.000916614033976, 47.420545108279676], [25.005010080918723, 47.41326597471496], [25.037385682643556, 47.39218158783785], [25.036641415937236, 47.38515345887881], [25.070505551074707, 47.36934016872098], [25.06194648395205, 47.353777883168824], [25.078692484844204, 47.34097664827915], [25.074226884606297, 47.32943043641787], [25.080925284963158, 47.31487216928844], [25.048177549885168, 47.30357696203285], [25.029570882227215, 47.28701065805797], [25.052643150123075, 47.270946363294456], [25.081297418316318, 47.257643119193425], [25.07608755137209, 47.24634791193783], [25.048549683238324, 47.22124745136984], [25.05822515042046, 47.203426124366565], [25.06231861730521, 47.17857666840426], [25.06901701766207, 47.16602643812026], [25.060085817186255, 47.15272319401923], [25.064923550777323, 47.136658899255714], [25.044456216353577, 47.13264282556484], [25.019895415045085, 47.11256245711044], [24.996451013796065, 47.11256245711044], [24.952539278123304, 47.118837572252446], [24.941375277528536, 47.10076524064349], [24.9316998103464, 47.09574514852989], [24.899324208621568, 47.109048392630925], [24.87141420713464, 47.10528332354573], [24.855784606301967, 47.09624715774125], [24.837177938644015, 47.07842583073798], [24.789172736086506, 47.04378719515415], [24.769449668369077, 47.00186942600561], [24.754936467595876, 46.996096320074976], [24.74191180023531, 46.98128704833986], [24.746749533826378, 46.972250882535384], [24.742656066941628, 46.95342553710939], [24.72404939928368, 46.93560421010612], [24.747865933885855, 46.916778864680126], [24.730375666287383, 46.91276279098925], [24.725910066049472, 46.903977629790454], [24.660414595893492, 46.91025274493245], [24.64515712841397, 46.93811425616292], [24.627294727462342, 46.95392754632075], [24.614642193454934, 46.944891380516275], [24.596035525796985, 46.945644394333314], [24.587104325321167, 46.929329094964125], [24.58598792526169, 46.915523841651726], [24.534633522525752, 46.90724068966429], [24.523841655284137, 46.8984555284655], [24.52681872210941, 46.8808852060679], [24.536494189291545, 46.874610090925906], [24.52681872210941, 46.85327469944311], [24.510072721217256, 46.850764653386314], [24.48253485308349, 46.83143729874896], [24.468765919016608, 46.82867624808648], [24.46020685189395, 46.81938907767633], [24.452019918124453, 46.78926852499474], [24.473603652607675, 46.78299340985274], [24.45350845153709, 46.76617610127219], [24.417039382927506, 46.77420824865395], [24.402526182154304, 46.76441906903243], [24.40029338203535, 46.751868838748436], [24.361963646659973, 46.74709975124052], [24.339263512117277, 46.75814395389043], [24.302794443507693, 46.753625870988195], [24.22576283940378, 46.781236377612984], [24.200085638035812, 46.80006172303897], [24.181106837024704, 46.805081815152576], [24.198597104623175, 46.820142091493366], [24.190410170853678, 46.83143729874896], [24.212366038690057, 46.8397204507364], [24.20790043845215, 46.86080483761351], [24.220552972459558, 46.874359086320226], [24.216459505574807, 46.90724068966429], [24.191526570913155, 46.92004192455396], [24.184456037203134, 46.928576081147085], [24.162128036013595, 46.93560421010612], [24.172175636548886, 46.958445629222986], [24.120076967106627, 46.970493850295625], [24.109657233218176, 46.985554126636416], [24.10779656645238, 47.00463047666809], [24.1230540339319, 47.02094577603728], [24.105563766333425, 47.02847591420768], [24.118216300340833, 47.041779158308714], [24.120449100459787, 47.05859646688927], [24.1375672347051, 47.082943913640214], [24.121193367166104, 47.09825519458669], [24.12193763387242, 47.10603633736277], [24.098865365976565, 47.12737172884556], [24.08956203214759, 47.1155745123786], [24.07169963119596, 47.118586567646766], [24.065745497545414, 47.13163880714212], [24.04192896294324, 47.13289383017052], [24.027415762170037, 47.14619707427155], [24.03002069564215, 47.16452041048618], [24.01587962822211, 47.177823654587215], [23.998389360623634, 47.16878748878274], [23.975689226080934, 47.16903849338842], [23.95187269147876, 47.178827673009934], [23.937731624058717, 47.20066507370409], [23.920985623166562, 47.25287403168551], [23.92284628993236, 47.273456409351255], [23.93624309064608, 47.285253625818214], [23.928800423582903, 47.297301846890846], [23.94033655753083, 47.30809504493509], [23.967874425664597, 47.312362123231644], [23.98983029350098, 47.31964125679636], [24.008064827805768, 47.311609109414604], [24.028532162229514, 47.32139828903612], [24.01922882840054, 47.34474171736435], [24.024438695344763, 47.36231203976194], [24.039324029471125, 47.37436026083458], [24.062024164013824, 47.378125329919776], [24.073560297961752, 47.407994877995684], [24.110029366571332, 47.42556520039327], [24.11896056704715, 47.447904610298785], [24.12975243428876, 47.4627138820339], [24.120449100459787, 47.47902918140309], [24.13384590117351, 47.49434046234957], [24.143149235002483, 47.48756333799621], [24.15505750230357, 47.503125623548364], [24.183711770496814, 47.50739270184492], [24.24511377376805, 47.502121605125645], [24.253672840890708, 47.519189918311874], [24.269302441723383, 47.517683890677795], [24.27786150884604, 47.527222065693635], [24.279350042258677, 47.541529328217386], [24.303538710214013, 47.5588486460093], [24.305399376979807, 47.57943102367505], [24.32698311146303, 47.56738280260242], [24.34782257923993, 47.56738280260242], [24.364940713485247, 47.57892901446369], [24.388012981381106, 47.60854755793392], [24.438623117410728, 47.59122824014201], [24.457974051774997, 47.595495318438566], [24.472859385901355, 47.58846718947953], [24.4933267203251, 47.586710157239764], [24.52309738857782, 47.57767399143529], [24.558822190481084, 47.571398876293294], [24.573335391254286, 47.5626137150945], [24.583755125142737, 47.571398876293294], [24.613525793395457, 47.570143853264895], [24.633620994466042, 47.57616796380121], [24.654088328889788, 47.56738280260242], [24.654088328889788, 47.55834663679794], [24.692045930912006, 47.55859764140362], [24.71735099892682, 47.57265389932169], [24.77242673519435, 47.572402894716014], [24.789544869439663, 47.57666997301257], [24.80889580380393, 47.56688079339106], [24.828246738168197, 47.596499336861285], [24.874019140606755, 47.59424029541017], [24.900812742034205, 47.60302545660896], [24.918303009632677, 47.598507373706724], [24.9625868786586, 47.597001346072645]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Boto\\u0219ani\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[27.392617674786848, 47.58972221250793], [27.34833380576093, 47.57541494998417], [27.330099271456138, 47.572402894716014], [27.317818870801894, 47.57692097761825], [27.296979403024988, 47.56738280260242], [27.264975934653314, 47.571398876293294], [27.250090600526953, 47.56286471970018], [27.247857800408, 47.543035355851465], [27.260882467768564, 47.529481107144754], [27.205062464794715, 47.519189918311874], [27.17045406295093, 47.52395900581979], [27.160778595768797, 47.53525421307539], [27.146265394995595, 47.541780332823066], [27.101609392616513, 47.54805544796506], [27.093050325493856, 47.542784351245786], [27.07704859130802, 47.51442083080396], [27.08374699166488, 47.46472191887934], [27.06625672406641, 47.462211872822536], [27.05099925658689, 47.4664789511191], [27.05099925658689, 47.45116767017262], [27.04355658952371, 47.43836643528295], [27.016018721389944, 47.472754066261096], [26.992202186787768, 47.49283443471549], [26.955733118178188, 47.49710151301205], [26.928939516750738, 47.49233242550413], [26.878329380721116, 47.492081420898444], [26.845581645643122, 47.49609749458933], [26.819160177568836, 47.50814571566196], [26.795715776319817, 47.501117586702925], [26.755153240825486, 47.503125623548364], [26.723521905806972, 47.51467183540964], [26.700077504557957, 47.50965174329604], [26.70565950485534, 47.49860754064613], [26.72835963939804, 47.473005070866776], [26.70268243803007, 47.47175004783838], [26.6397919013462, 47.46974201099294], [26.60927696638716, 47.46296488663958], [26.589926032022895, 47.46723196493614], [26.59067029872921, 47.490826397870045], [26.55420123011963, 47.50940073869036], [26.567225897480192, 47.51416982619828], [26.60629989956189, 47.52069594594595], [26.60555563285557, 47.53299517162427], [26.583971898372347, 47.53927028676627], [26.570202964305466, 47.5488084617821], [26.56127176382965, 47.57340691313873], [26.543409362878016, 47.58269408354889], [26.54973562988172, 47.59147924474769], [26.549363496528564, 47.61708171452703], [26.53894376264011, 47.61858774216111], [26.537827362580632, 47.64895929944838], [26.511405894506346, 47.651971354716544], [26.508800961034233, 47.663768571183496], [26.498381227145778, 47.67205172317093], [26.46079575847672, 47.71396949231948], [26.447771091116156, 47.733798856168185], [26.422466023101343, 47.747604109480584], [26.402742955383918, 47.7410779897329], [26.395300288320737, 47.747102100269224], [26.404231488796555, 47.762664385821374], [26.400510155264964, 47.78299575888145], [26.377065754015945, 47.77395959307697], [26.354737752826406, 47.78525480033257], [26.349155752529022, 47.79454197074272], [26.325711351280006, 47.80834722405512], [26.318268684216825, 47.82667056026975], [26.302266950030987, 47.83570672607422], [26.3048718835031, 47.855787094528615], [26.284032415726198, 47.856540108345655], [26.270263481659313, 47.86959234784101], [26.27472908189722, 47.87561645837733], [26.250540413941888, 47.88615865181588], [26.230073079518142, 47.900465914339634], [26.214815612038624, 47.88917070708404], [26.18616134384538, 47.89268477156356], [26.1932318775554, 47.908247057115716], [26.171276009719023, 47.91954226437131], [26.164205476009002, 47.92857843017578], [26.14932014188264, 47.924562356484905], [26.127364274046258, 47.93309651307803], [26.13034134087153, 47.95493391377217], [26.10057067261881, 47.979030355917445], [26.13890040799419, 47.98430145263672], [26.18951054402381, 47.995596659892314], [26.200674544618582, 48.00814689017631], [26.209605745094397, 48.02923127705343], [26.213699211979147, 48.05106867774757], [26.26840281489352, 48.07667114752692], [26.276961882016174, 48.08646032714844], [26.28663734919831, 48.11356882456187], [26.299662016558877, 48.13390019762194], [26.335758951815297, 48.15975367200697], [26.329432684811593, 48.17631997598184], [26.336131085168457, 48.184352123363595], [26.359203353064316, 48.18510513718064], [26.37185588707172, 48.191882261534], [26.402370822030758, 48.18912121087152], [26.422093889748183, 48.20167144115551], [26.448515357822473, 48.20418148721231], [26.473820425837285, 48.220496786581506], [26.48386802637258, 48.21522568986222], [26.503963227443165, 48.21723372670767], [26.53187322893009, 48.210205597748626], [26.571691497718103, 48.21974377276447], [26.57280789777758, 48.238569118190455], [26.591414565435528, 48.24609925636085], [26.599601499205026, 48.238569118190455], [26.622673767100885, 48.24133016885293], [26.63197710092986, 48.26040651888461], [26.685564303784755, 48.249864325446055], [26.697100437732683, 48.262916564941406], [26.722777639100656, 48.24660126557221], [26.742128573464925, 48.24534624254382], [26.790133776022433, 48.250366334657414], [26.807996176974065, 48.25463341295397], [26.82809137804465, 48.2443422241211], [26.83553404510783, 48.22626989251214], [26.853396446059463, 48.2343020398939], [26.862327646535277, 48.21823774513039], [26.889865514669044, 48.20116943194415], [26.89507538161327, 48.18887020626584], [26.911449249152266, 48.18008504506704], [26.922613249747037, 48.18234408651816], [26.915170582683857, 48.19865938588735], [26.9438248508771, 48.196651349041915], [26.951639651293437, 48.18761518323744], [26.934893650401285, 48.171299883868244], [26.94754618440869, 48.16050668582401], [26.970990585657706, 48.16201271345809], [26.993318586847245, 48.14996449238545], [26.978061119367727, 48.144442391060494], [26.960570851769255, 48.152223533836576], [26.956105251531348, 48.13741426210146], [26.96950205224507, 48.12963311932538], [27.00671538756097, 48.12335800418339], [27.018251521508898, 48.1369122528901], [27.041323789404757, 48.128378096296984], [27.035369655754213, 48.115576861407305], [27.042068056111074, 48.10704270481419], [27.02941552210367, 48.08746434557116], [27.042812322817394, 48.08244425345756], [27.04765005640846, 48.06889000475085], [27.07704859130802, 48.05458274222709], [27.08374699166488, 48.03801643825222], [27.11016845973917, 48.02898027244775], [27.093794592200176, 48.021952143488704], [27.100492992557037, 48.005887848725195], [27.11686686009603, 48.01517501913535], [27.132124327575553, 48.01166095465583], [27.11835539350867, 48.00036574740024], [27.13658992781346, 47.99158058620144], [27.167849129478817, 47.995094650680954], [27.15482446211825, 47.97175122235273], [27.14291619481716, 47.96723313945049], [27.179757396779905, 47.9471527709961], [27.152591661999296, 47.92155030121675], [27.201713264616284, 47.90197194197371], [27.210644465092102, 47.84951197938662], [27.247485667054843, 47.829682615537905], [27.216226465389486, 47.82114845894479], [27.250462733880113, 47.7947929753484], [27.25567260082434, 47.77872868058489], [27.266836601419108, 47.78123872664169], [27.268697268184905, 47.760405344370255], [27.28172193554547, 47.76442141806113], [27.287676069196014, 47.744843058818105], [27.28209406889863, 47.736057897619304], [27.25157913393959, 47.719742598250114], [27.267580868125428, 47.71296547389676], [27.276884201954402, 47.68761400872309], [27.298095803084465, 47.68008387055269], [27.315958204036097, 47.64393920733478], [27.33344847163457, 47.62887893099399], [27.360242073062018, 47.62109778821792], [27.37475527383522, 47.597252350678325], [27.392617674786848, 47.58972221250793]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Bra\\u0219ov\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[25.452686504768998, 46.1042769560943], [25.456779971653745, 46.06988932511616], [25.483573573081195, 46.059849140888964], [25.50627370762389, 46.045541878365206], [25.528601708813433, 46.05156598890153], [25.55241824341561, 46.05282101192993], [25.560977310538263, 46.03876475401185], [25.582933178374645, 46.02621452372786], [25.571397044426718, 46.00312210000531], [25.560605177185106, 46.00136506776555], [25.542370642880314, 45.98354374076227], [25.54050997611452, 45.96597341836468], [25.551301843356132, 45.950160128206846], [25.541254242820838, 45.936605879500135], [25.564698644069857, 45.91501948341166], [25.550185443296655, 45.90698733602991], [25.554651043534562, 45.89042103205503], [25.571024911073557, 45.896445142591354], [25.60712184632998, 45.89142505047775], [25.600795579326277, 45.881886875461916], [25.58479384514044, 45.883141898490315], [25.55948877712563, 45.87812180637672], [25.56581504412933, 45.86055148397912], [25.569164244307764, 45.83670604643954], [25.587398778612553, 45.82792088524074], [25.60823824638946, 45.83143494972026], [25.624239980575293, 45.814617641139705], [25.6450794483522, 45.80909553981475], [25.64024171476113, 45.80206741085571], [25.669268116307535, 45.787007134514916], [25.67745505007703, 45.77495891344228], [25.673361583192282, 45.746093383789095], [25.71169131856766, 45.77018982593437], [25.74518332035197, 45.77018982593437], [25.767883454894665, 45.75738859104469], [25.828169058106425, 45.7435833377323], [25.823331324515358, 45.7260130153347], [25.85570692624019, 45.72274995546086], [25.85980039312494, 45.71019972517687], [25.91487612939247, 45.71019972517687], [25.943530397585715, 45.691625384356556], [25.972928932485274, 45.68811131987704], [25.965486265422093, 45.6474485737569], [26.001211067325357, 45.6461935507285], [26.02242266845542, 45.637157384924016], [26.014607868039082, 45.62084208555483], [26.053309736767616, 45.61858304410371], [26.06298520394975, 45.60427578157995], [26.05628680359289, 45.59398459274708], [26.073404937838205, 45.57817130258924], [26.094616538968268, 45.57290020586996], [26.09684933908722, 45.556835911106454], [26.10503627285672, 45.5500587867531], [26.096105072380904, 45.53575152422934], [26.092383738849314, 45.51717718340903], [26.073777071191365, 45.50663498997047], [26.0670786708345, 45.48555060309336], [26.04214573617285, 45.47877347874], [26.0235390685149, 45.48931567217856], [25.99711760044061, 45.51391412353519], [25.962881331949983, 45.51090206826703], [25.934971330463057, 45.51441613274655], [25.92343519651513, 45.52244828012831], [25.908549862388767, 45.500861884039836], [25.892175994849772, 45.487809644544484], [25.896269461734523, 45.473000372809366], [25.888826794671342, 45.46647425306169], [25.888826794671342, 45.44589187539594], [25.87803492742973, 45.44237781091642], [25.857939726359145, 45.42706652996995], [25.83040185822538, 45.42982758063243], [25.828541191459585, 45.44212680631074], [25.81105092386111, 45.46823128530145], [25.789839322731048, 45.48103252019112], [25.773465455192053, 45.474506400443445], [25.76751132154151, 45.46572123924465], [25.74518332035197, 45.46823128530145], [25.727693052753494, 45.46572123924465], [25.70424865150448, 45.48103252019112], [25.70089945132605, 45.491323709024], [25.682664917021256, 45.500861884039836], [25.66964024966069, 45.49609279653192], [25.630938380932157, 45.49031969060128], [25.608982513095775, 45.477016446500244], [25.604144779504708, 45.46371320239921], [25.590747978790986, 45.461454160948094], [25.5788397114899, 45.46798028069577], [25.55204611006245, 45.46521923003329], [25.53306730905134, 45.459446124102655], [25.515204908099708, 45.46998831754121], [25.49957530726703, 45.46772927609009], [25.486550639906465, 45.45593205962314], [25.462361971951132, 45.45417502738337], [25.453058638122155, 45.44112278788802], [25.42552076998839, 45.43610269577442], [25.411751835921507, 45.42681552536427], [25.41026330250887, 45.391172871357725], [25.40356490215201, 45.38690579306116], [25.36337450001084, 45.391925885174764], [25.323184097869664, 45.381383691736204], [25.309415163802782, 45.38991784832932], [25.31350863068753, 45.39995803255652], [25.302716763445922, 45.42330146088475], [25.27443462860584, 45.407739175332594], [25.257688627713684, 45.42556050233587], [25.263642761364224, 45.43785972801418], [25.259921427832637, 45.45166498132657], [25.239826226762048, 45.475761423471845], [25.243547560293642, 45.49408475968648], [25.230522892933074, 45.51767919262039], [25.213032625334602, 45.527217367636226], [25.204845691565104, 45.51993823407151], [25.190704624145063, 45.52295028933967], [25.177679956784498, 45.53575152422934], [25.153491288829162, 45.546042713062214], [25.147165021825458, 45.55884394795189], [25.131163287639623, 45.56562107230525], [25.104741819565334, 45.58545043615396], [25.08315808508211, 45.581936371674445], [25.05338741682939, 45.58695646378804], [25.038874216056193, 45.592478565113], [25.015057681454017, 45.586203449971], [24.982682079729184, 45.5874584729994], [24.959609811833324, 45.59298057432436], [24.94286381094117, 45.582438380885804], [24.918303009632677, 45.59473760656412], [24.860250206539874, 45.59448660195844], [24.83792220535033, 45.59222756050732], [24.83122380499347, 45.60678582763675], [24.81001220386341, 45.60904486908787], [24.79438260303073, 45.60251874934019], [24.773915268606984, 45.61155491514467], [24.737074066644244, 45.60352276776291], [24.71772313227998, 45.60753884145379], [24.700604998034663, 45.60276975394587], [24.68646393061462, 45.60452678618563], [24.676416330079327, 45.61632400265259], [24.6712064631351, 45.640671449403534], [24.67976553025776, 45.64694656454554], [24.67902126355144, 45.663763873126086], [24.684603263848825, 45.6710430066908], [24.67864913019828, 45.692629402779275], [24.68237046372987, 45.71195675741663], [24.673811396607213, 45.720490914009744], [24.660414595893492, 45.74835242524021], [24.647762061886084, 45.76491872921508], [24.640691528176063, 45.79529028650235], [24.658553929127695, 45.814868645745385], [24.6857196639083, 45.82490882997258], [24.69130166420569, 45.83494901419978], [24.711024731923114, 45.816876682590824], [24.735957666584767, 45.83645504183386], [24.756052867655352, 45.842479152370174], [24.770193935075397, 45.839216092496336], [24.776892335432258, 45.85051129975193], [24.773171001900668, 45.868583631360885], [24.756425001008513, 45.87134468202336], [24.72739859946211, 45.89192705968911], [24.716606732220498, 45.895943133379994], [24.70507059827257, 45.94062195319101], [24.722560865871046, 45.94614405451597], [24.736701933291087, 45.938864920951254], [24.752703667476922, 45.94212798082509], [24.772798868547508, 45.962208349279486], [24.770193935075397, 45.9757625979862], [24.793266202971253, 45.9732525519294], [24.837177938644015, 45.978021639437316], [24.840155005469285, 45.98705780524179], [24.821176204458176, 46.005883150667785], [24.866948606896734, 46.00989922435866], [24.87699620743203, 46.030230597418736], [24.898952075268408, 46.04177680928001], [24.908999675803702, 46.03826274480049], [24.94658514447276, 46.05156598890153], [24.963703278718075, 46.06612425603096], [24.948073677885397, 46.07942750013199], [24.947701544532237, 46.09373476265575], [24.959609811833324, 46.112309103476065], [24.97970501290391, 46.125863352182776], [25.021383948457718, 46.142178651551966], [25.052643150123075, 46.13389549956453], [25.080553151609998, 46.14970878972237], [25.103253286152697, 46.15046180353941], [25.129674754226986, 46.14669673445421], [25.174702889959224, 46.167530116725636], [25.190332490791903, 46.171797195022194], [25.226801559401487, 46.15121481735645], [25.25136236070998, 46.141676642340606], [25.275178895312155, 46.170291167388115], [25.299367563267488, 46.17757030095284], [25.32169556445703, 46.17380523186763], [25.32913823152021, 46.1780723101642], [25.34700063247184, 46.16627509369724], [25.36597943348295, 46.142178651551966], [25.39649436844199, 46.13013043047933], [25.40654196897728, 46.13289148114181], [25.42663717004787, 46.12285129691462], [25.45603570494743, 46.12034125085782], [25.452686504768998, 46.1042769560943]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Br\\u0103ila\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[28.031942775514008, 45.404476115458756], [28.028593575335577, 45.39569095425996], [28.028221441982417, 45.366072410789734], [28.00142784055497, 45.309094365300396], [27.996217973610744, 45.28700596000056], [28.019290241506603, 45.269937646814334], [28.047572376346686, 45.258140430347375], [28.086274245075224, 45.24985727835994], [28.117533446740577, 45.258140430347375], [28.131302380807462, 45.232537960568024], [28.092972645432084, 45.190620191419484], [28.14246638140223, 45.16878279072533], [28.173353449714426, 45.148451417665264], [28.197914251022922, 45.14016826567783], [28.19530931755081, 45.134646164352866], [28.170748516242313, 45.120840911040474], [28.180051850071287, 45.108541685362155], [28.173725583067586, 45.10076054258608], [28.136512247751686, 45.09900351034632], [28.140233581283276, 45.064615879368176], [28.154002515350157, 45.038260395771786], [28.133163047573255, 45.024455142459395], [28.129813847394825, 45.013912949020835], [28.143954914814866, 44.97977632264837], [28.152141848584364, 44.970489152238216], [28.1309302474543, 44.94036859955663], [28.126464647216395, 44.92254727255336], [28.12906958068851, 44.904474940944404], [28.143954914814866, 44.89041868302633], [28.138372914517483, 44.88238653564457], [28.1100907796774, 44.87008730996626], [28.099671045788945, 44.85778808428795], [28.09892677908263, 44.846994886243706], [28.07548237783361, 44.81436428750532], [28.07548237783361, 44.80407309867245], [28.06766757741727, 44.78574976245781], [28.046828109640366, 44.7734505367795], [28.03789690916455, 44.76115131110118], [28.026360775216624, 44.764163366369345], [28.002916373967608, 44.75864126504438], [27.97463423912752, 44.77269752296246], [27.94932917111271, 44.780729670344215], [27.898719035083086, 44.77269752296246], [27.882717300897248, 44.7634103525523], [27.87080903359616, 44.77570957823062], [27.835456365046056, 44.778470628893096], [27.822059564332335, 44.79754697892477], [27.828013697982875, 44.820388398041636], [27.787451162488548, 44.82013739343596], [27.7751707618343, 44.80306908024973], [27.743167293462626, 44.807085153940605], [27.7297704927489, 44.80206506182701], [27.74502796022842, 44.78876181772597], [27.74577222693474, 44.779474647315816], [27.724188492451518, 44.778219624287416], [27.721955692332564, 44.7671754216375], [27.650506088526036, 44.77043848151134], [27.650506088526036, 44.7759605828363], [27.59282541878639, 44.778219624287416], [27.59319755213955, 44.78374172561237], [27.54072674934413, 44.78374172561237], [27.528446348689883, 44.77420355059654], [27.504629814087707, 44.7747055598079], [27.4856510130766, 44.780729670344215], [27.479696879426058, 44.77545857362494], [27.438017943872246, 44.79905300655885], [27.409363675679003, 44.77319953217382], [27.39336194149317, 44.78349072100669], [27.383686474311034, 44.7747055598079], [27.36694047341888, 44.78976583614869], [27.342379672110386, 44.80256707103837], [27.31112047044503, 44.77495656441358], [27.289536735961807, 44.78549875785213], [27.25902180100277, 44.75010710845127], [27.22850686604373, 44.77068948611702], [27.225157665865304, 44.78298871179533], [27.205062464794715, 44.78750679469757], [27.23297246628164, 44.859545116527705], [27.21436579862369, 44.86406319942994], [27.217342865448963, 44.87159333760034], [27.23632166646007, 44.86933429614922], [27.246369266995366, 44.89744681198537], [27.26795300147859, 44.94840074693838], [27.283210468958103, 44.997848654257325], [27.250834867233273, 44.99508760359485], [27.254556200764863, 45.02119208258556], [27.249346333820636, 45.02746719772755], [27.19910833114417, 45.02822021154459], [27.20803953161999, 45.10126255179744], [27.196875531025217, 45.10000752876904], [27.18943286396204, 45.08795930769641], [27.168593396185134, 45.11004771299624], [27.153335928705616, 45.15723657886406], [27.15147526193982, 45.17079082757077], [27.1135176599176, 45.1567345696527], [27.116122593389715, 45.137658219621024], [27.097888059084923, 45.13012808145063], [27.09230605878754, 45.13941525186078], [27.068117390832207, 45.15899361110382], [27.08523552507752, 45.18007799798093], [27.116494726742875, 45.202417407886436], [27.125053793865533, 45.213963619747716], [27.17678032995463, 45.24960627375426], [27.212132998504735, 45.22400380397491], [27.24115940005114, 45.21019855066252], [27.24488073358273, 45.22048973949539], [27.2850711357239, 45.200409371041], [27.294002336199718, 45.213712615142036], [27.336797671813002, 45.21120256908524], [27.353171539351997, 45.231784946750984], [27.32935500474982, 45.23906408031571], [27.34126327205091, 45.2528693336281], [27.320795937627164, 45.26190549943257], [27.336797671813002, 45.284495913943765], [27.369545406890992, 45.27269869747681], [27.373266740422583, 45.281985867886966], [27.3885242079021, 45.29001801526872], [27.390384874667895, 45.312608429779914], [27.382197940898397, 45.33017875217751], [27.40824727561953, 45.34046994101038], [27.40117674190951, 45.35804026340797], [27.443227810816474, 45.37586159041125], [27.435413010400136, 45.39468693583724], [27.43057527680907, 45.405982143092835], [27.44136714405068, 45.41476730429163], [27.48192967954501, 45.43660470498578], [27.5600776837084, 45.48856265836152], [27.581661418191622, 45.49107270441832], [27.601384485909048, 45.48429558006496], [27.625573153864384, 45.46647425306169], [27.628550220689654, 45.45568105501746], [27.647529021700763, 45.46245817937081], [27.64604048828813, 45.47827146952864], [27.662042222473964, 45.47274936820369], [27.688463690548254, 45.4825385478252], [27.69367355749248, 45.47199635438665], [27.674694756481372, 45.446393884607296], [27.706698224853042, 45.43585169116874], [27.744655826875263, 45.447397903030016], [27.7524706272916, 45.41752835495411], [27.783729828956957, 45.42254844706771], [27.786706895782228, 45.407488170726914], [27.809779163678087, 45.40372310164172], [27.816849697388108, 45.39468693583724], [27.84215476540292, 45.4002090371622], [27.8641106332393, 45.39694597728836], [27.88569436772252, 45.420791414827946], [27.9158371693284, 45.408492189149634], [27.95714397152905, 45.40322109243036], [27.987658906488086, 45.39092186675204], [28.031942775514008, 45.404476115458756]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Bucharest\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[26.027632535399647, 44.39217454075174], [26.01200293456697, 44.40723481709253], [26.004932400856948, 44.40321874340165], [25.99711760044061, 44.40547778485277], [25.994512666968497, 44.40924285393797], [25.99004706673059, 44.40874084472661], [25.976650266016865, 44.40748582169821], [25.965858398775254, 44.43283728687188], [25.96436986536262, 44.43359030068892], [25.965486265422093, 44.43660235595708], [25.962881331949983, 44.43710436516844], [25.962509198596823, 44.439363406619556], [25.9636255986563, 44.439112402013876], [25.96399773200946, 44.439112402013876], [25.964741998715777, 44.439112402013876], [25.966230532128414, 44.438861397408196], [25.96697479883473, 44.438861397408196], [25.966230532128414, 44.442626466493394], [26.01274720127329, 44.44463450333883], [26.014235734685926, 44.453670669143314], [26.014235734685926, 44.45643171980579], [26.01274720127329, 44.45869076125691], [26.002327467384838, 44.46170281652507], [26.00009466726588, 44.46170281652507], [25.999722533912724, 44.46220482573643], [25.992279866849543, 44.46446386718755], [25.988558533317953, 44.465969894821626], [25.979627332842135, 44.466973913244345], [25.976650266016865, 44.467475922455705], [25.984465066433202, 44.495086429080494], [25.984092933080046, 44.49759647513729], [25.987814266611636, 44.49985551658841], [25.988930666671113, 44.50035752579977], [25.99376840026218, 44.49659245671457], [26.00046680061904, 44.50161254882817], [26.003071734091154, 44.50136154422249], [26.011630801213812, 44.51742583898601], [26.013491467979605, 44.51642182056329], [26.034703069109668, 44.52470497255072], [26.046239203057596, 44.53047807848136], [26.068195070893978, 44.535247165989276], [26.073404937838205, 44.54252629955399], [26.080103338195066, 44.538259221257434], [26.10503627285672, 44.54026725810287], [26.103547739444082, 44.52997606927], [26.103919872797242, 44.520186889648485], [26.10540840620988, 44.519935885042806], [26.105780539563035, 44.51617081595761], [26.104664139503562, 44.50211455803953], [26.11582814009833, 44.48805830012146], [26.186533477198537, 44.47977514813402], [26.18244001031379, 44.47952414352834], [26.177230143369563, 44.47651208826018], [26.17462520989745, 44.47425304680906], [26.17164814307218, 44.47174300075226], [26.160856275830568, 44.46120080731371], [26.158251342358454, 44.45869076125691], [26.167182542834272, 44.452415646114915], [26.169043209600066, 44.451913636903555], [26.170159609659542, 44.452666650720595], [26.170903876365863, 44.452917655326274], [26.17164814307218, 44.452917655326274], [26.173136676484816, 44.453168659931954], [26.17462520989745, 44.454172678354674], [26.176113743310086, 44.45442368296035], [26.177602276722723, 44.451662632297875], [26.176858010016407, 44.44990560005811], [26.17499734325061, 44.44463450333883], [26.18616134384538, 44.44488550794451], [26.18988267737697, 44.44563852176155], [26.203651611443853, 44.44463450333883], [26.206256544915966, 44.44488550794451], [26.2241189458676, 44.441120438859315], [26.226723879339712, 44.441120438859315], [26.23416654640289, 44.43735536977412], [26.217420545510738, 44.41802801513676], [26.218164812217054, 44.40949385854365], [26.217420545510738, 44.40773682630389], [26.20848934503492, 44.40648180327549], [26.207372944975443, 44.40422276182437], [26.207745078328603, 44.40346974800733], [26.20216307803122, 44.39568860523126], [26.179462943488517, 44.39493559141422], [26.16160054253689, 44.399453674316455], [26.147459475116847, 44.37811828283366], [26.144854541644733, 44.373349195325744], [26.16011200912425, 44.346742707123674], [26.16346120930268, 44.34799773015207], [26.15564640888634, 44.33996558277032], [26.154902142180024, 44.33594950907944], [26.148203741823163, 44.3364515182908], [26.140388941406826, 44.33720453210784], [26.12959707416521, 44.35577887292815], [26.112851073273056, 44.36657207097239], [26.09350013890879, 44.36782709400079], [26.091267338789837, 44.36958412624055], [26.045122802998122, 44.37962431046774], [26.027632535399647, 44.39217454075174]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Buz\\u0103u\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[27.435413010400136, 45.39468693583724], [27.443227810816474, 45.37586159041125], [27.40117674190951, 45.35804026340797], [27.40824727561953, 45.34046994101038], [27.382197940898397, 45.33017875217751], [27.390384874667895, 45.312608429779914], [27.3885242079021, 45.29001801526872], [27.373266740422583, 45.281985867886966], [27.369545406890992, 45.27269869747681], [27.336797671813002, 45.284495913943765], [27.320795937627164, 45.26190549943257], [27.34126327205091, 45.2528693336281], [27.32935500474982, 45.23906408031571], [27.353171539351997, 45.231784946750984], [27.336797671813002, 45.21120256908524], [27.294002336199718, 45.213712615142036], [27.2850711357239, 45.200409371041], [27.24488073358273, 45.22048973949539], [27.24115940005114, 45.21019855066252], [27.212132998504735, 45.22400380397491], [27.17678032995463, 45.24960627375426], [27.125053793865533, 45.213963619747716], [27.116494726742875, 45.202417407886436], [27.08523552507752, 45.18007799798093], [27.068117390832207, 45.15899361110382], [27.09230605878754, 45.13941525186078], [27.097888059084923, 45.13012808145063], [27.116122593389715, 45.137658219621024], [27.1135176599176, 45.1567345696527], [27.15147526193982, 45.17079082757077], [27.153335928705616, 45.15723657886406], [27.168593396185134, 45.11004771299624], [27.18943286396204, 45.08795930769641], [27.196875531025217, 45.10000752876904], [27.20803953161999, 45.10126255179744], [27.19910833114417, 45.02822021154459], [27.249346333820636, 45.02746719772755], [27.254556200764863, 45.02119208258556], [27.250834867233273, 44.99508760359485], [27.283210468958103, 44.997848654257325], [27.26795300147859, 44.94840074693838], [27.246369266995366, 44.89744681198537], [27.23632166646007, 44.86933429614922], [27.217342865448963, 44.87159333760034], [27.21436579862369, 44.86406319942994], [27.23297246628164, 44.859545116527705], [27.205062464794715, 44.78750679469757], [27.157057262237206, 44.78901282233165], [27.15482446211825, 44.764916380186385], [27.171570463010404, 44.7571352374103], [27.19538699761258, 44.752617154508066], [27.18533939707729, 44.73454482289912], [27.140683394698208, 44.74533802094335], [27.135473527753984, 44.73579984592752], [27.09937659249756, 44.74508701633767], [27.112401259858125, 44.782235697978294], [27.058441923650072, 44.79779798353045], [27.009320321033083, 44.824655476338194], [26.974711919189296, 44.78851081312029], [26.911821382505426, 44.807838167757644], [26.880190047486913, 44.820639402647316], [26.867165380126345, 44.806332140123565], [26.84781444576208, 44.81536830592804], [26.83181271157624, 44.79804898813613], [26.811717510505655, 44.79553894207933], [26.77785337536819, 44.81536830592804], [26.720172705628542, 44.80934419539172], [26.715334972037475, 44.8196353842246], [26.678865903427894, 44.8095951999974], [26.647606701762538, 44.821894425675715], [26.63234923428302, 44.81386227829396], [26.619324566922455, 44.84046876649603], [26.607044166268206, 44.85728607507658], [26.610021233093477, 44.87234635141738], [26.594763765613962, 44.88640260933545], [26.58657683184446, 44.88263754025025], [26.562388163889125, 44.90899302384664], [26.537827362580632, 44.916774166622716], [26.534478162402202, 44.93986659034527], [26.601462165970823, 44.956181889714465], [26.57913416478128, 44.971493170660935], [26.55680616359174, 44.999856691102764], [26.53596669581484, 45.00337075558228], [26.53112896222377, 45.01516797204924], [26.511778027859503, 45.013159935203795], [26.49354349355471, 45.0056297970334], [26.478658159428353, 45.03449532668659], [26.47940242613467, 45.04779857078763], [26.46451709200831, 45.07038898529881], [26.447398957762996, 45.07365204517265], [26.45707442494513, 45.092226385992966], [26.451492424647746, 45.12661401697111], [26.47121549236517, 45.14292931634031], [26.463400691948834, 45.15874260649814], [26.461912158536197, 45.19840133419556], [26.423210289807663, 45.17555991507869], [26.398649488499167, 45.17882297495253], [26.378182154075425, 45.15874260649814], [26.35436561947325, 45.16476671703445], [26.352877086060612, 45.186855122334286], [26.34729508576323, 45.19614229274444], [26.358459086357996, 45.213461610536356], [26.33501468510898, 45.21797969343859], [26.30859321703469, 45.20869252302844], [26.269147081599836, 45.20643348157732], [26.251656814001365, 45.212959601325], [26.22746814604603, 45.24458618164066], [26.232678012990256, 45.2516143105997], [26.228584546105505, 45.267176596151856], [26.21928121227653, 45.27771878959041], [26.20551227820965, 45.27420472511089], [26.186905610551698, 45.27897381261881], [26.23528294646237, 45.31461646662535], [26.2241189458676, 45.326413683092305], [26.212954945272827, 45.326915692303665], [26.1932318775554, 45.34699606075806], [26.187649877258018, 45.35753825419661], [26.16867107624691, 45.363813369338615], [26.155274275533184, 45.37711661343965], [26.166438276127955, 45.40171506479628], [26.146343075057366, 45.40874319375531], [26.151925075354754, 45.450409958298174], [26.140388941406826, 45.46572123924465], [26.118805206923604, 45.477016446500244], [26.093872272261947, 45.48429558006496], [26.087918138611407, 45.49584179192624], [26.073777071191365, 45.50663498997047], [26.092383738849314, 45.51717718340903], [26.099454272559335, 45.528723395270305], [26.12327080716151, 45.54955677754174], [26.139272541347346, 45.56788011375637], [26.144854541644733, 45.580681348646046], [26.15676280894582, 45.58519943154828], [26.164205476009002, 45.569637145996126], [26.176113743310086, 45.579928334829006], [26.187649877258018, 45.60829185527083], [26.214815612038624, 45.621846103977546], [26.247563347116614, 45.62661519148546], [26.256494547592432, 45.61808103489235], [26.254633880826635, 45.60076171710043], [26.277334015369334, 45.59172555129596], [26.296684949733603, 45.598000666437954], [26.32794415139896, 45.624858159245704], [26.33092121822423, 45.638914417163775], [26.325711351280006, 45.649456610602336], [26.33538681846214, 45.677569126438485], [26.333898285049504, 45.68635428763728], [26.343201618878478, 45.70041054555535], [26.358459086357996, 45.71070173438823], [26.37148375371856, 45.734045162716455], [26.385996954491763, 45.736555208773254], [26.382275620960172, 45.74935644366293], [26.39083468808283, 45.76491872921508], [26.385252687785446, 45.77922599173884], [26.393439621554943, 45.80282042467275], [26.411302022506575, 45.790270194388754], [26.42804802339873, 45.789015171360354], [26.44293335752509, 45.77571192725932], [26.444421890937726, 45.75086247129701], [26.437723490580865, 45.7398182686471], [26.443677624231405, 45.73128411205398], [26.4682384255399, 45.719737900192705], [26.46861055889306, 45.704928628457594], [26.484612293078897, 45.70141456397807], [26.49428776026103, 45.677067117227125], [26.50954522774055, 45.667277937605604], [26.531501095576928, 45.641424463220574], [26.5426650961717, 45.64192647243193], [26.562388163889125, 45.62812121911954], [26.58025056484076, 45.63665537571266], [26.591414565435528, 45.63414532965586], [26.59513589896712, 45.62059108094915], [26.61634750009718, 45.62812121911954], [26.649467368528335, 45.60929587369355], [26.667701902833123, 45.61180591975035], [26.68630857049107, 45.60201674012883], [26.72166123904118, 45.571394178235884], [26.738035106580174, 45.571143173630205], [26.748454840468625, 45.56286002164277], [26.749571240528102, 45.54905476833038], [26.768177908186054, 45.55156481438718], [26.806879776914588, 45.54805074990766], [26.826230711278857, 45.52320129394535], [26.834045511695194, 45.51868321104311], [26.85451284611894, 45.52546033539647], [26.886888447843774, 45.51667517419767], [26.901401648616975, 45.52345229855103], [26.902145915323292, 45.5349985104123], [26.929683783457058, 45.5349985104123], [26.956849518237664, 45.529225404481664], [26.97322338577666, 45.5349985104123], [27.00299405402938, 45.491323709024], [27.049882856527415, 45.45191598593225], [27.091561792081222, 45.44614288000162], [27.11091272644549, 45.475259414260485], [27.137706327872937, 45.46597224385033], [27.160034329062476, 45.46547023463897], [27.144404728229798, 45.45166498132657], [27.12207672704026, 45.447899912241375], [27.106074992854424, 45.42631351615291], [27.120960326980782, 45.421544428644985], [27.116122593389715, 45.40949620757235], [27.144776861582958, 45.41075123060075], [27.149242461820865, 45.41652433653139], [27.17640819660147, 45.42857255760403], [27.19575913096574, 45.45367301817201], [27.205806731501035, 45.45317100896065], [27.225157665865304, 45.42781954378699], [27.238182333225865, 45.432588631294905], [27.258277534296454, 45.449405939875454], [27.28097766883915, 45.45467703659474], [27.28172193554547, 45.42781954378699], [27.26572020135963, 45.421293424039305], [27.271674335010175, 45.39041985754068], [27.34126327205091, 45.383893737793], [27.338286205225636, 45.37159451211469], [27.379965140779444, 45.37510857659421], [27.395222608258962, 45.38339172858164], [27.402293141968983, 45.37711661343965], [27.435413010400136, 45.39468693583724]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"C\\u0103l\\u0103ra\\u0219i\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[28.02003450821292, 44.340216587376], [28.01333610785606, 44.32239526037272], [27.999939307142334, 44.304824937975134], [27.97835557265911, 44.2865016017605], [27.97500637248068, 44.27947347280146], [27.94932917111271, 44.25713406289595], [27.935560237045827, 44.250105933936915], [27.90839450226522, 44.248097897091476], [27.87899596736566, 44.251862966176674], [27.86485489994562, 44.24558785103468], [27.81573329732863, 44.24583885564036], [27.777775695306413, 44.22977456087684], [27.73498035969313, 44.2016620450407], [27.70855889161884, 44.196390948321415], [27.68660302378246, 44.20141104043502], [27.631155154161767, 44.206180127942936], [27.562682617180513, 44.18835880093966], [27.547053016347835, 44.17656158447271], [27.529190615396203, 44.17103948314775], [27.50425768073455, 44.15798724365239], [27.461090211768106, 44.126862672548086], [27.435413010400136, 44.12385061727993], [27.390757008021055, 44.1328867830844], [27.35466007276463, 44.129372718604884], [27.327122204630868, 44.140416921254804], [27.298840069790785, 44.137906875198006], [27.272790735069652, 44.126611667942406], [27.234833133047434, 44.11682248832089], [27.186827930489926, 44.12083856201177], [27.14700966170191, 44.138659889015045], [27.125053793865533, 44.140416921254804], [27.091561792081222, 44.13338879229576], [27.06253539053482, 44.13589883835256], [27.04355658952371, 44.14493500415704], [27.023833521806285, 44.14242495810024], [26.99592352031936, 44.1341418061128], [26.963547918594525, 44.13640084756392], [26.89991311520434, 44.131631760056], [26.87646871395532, 44.12134057122313], [26.842232445464692, 44.111802396207295], [26.77934190878082, 44.08268586194843], [26.764456574654464, 44.07816777904619], [26.72538257257277, 44.072896682326906], [26.69189057078846, 44.07465371456667], [26.664352702654693, 44.06511553955083], [26.61634750009718, 44.05658138295772], [26.594391632260802, 44.05030626781572], [26.57206363107126, 44.0543223415066], [26.53931589599327, 44.05457334611228], [26.436234957168228, 44.033488959235164], [26.381531354253855, 44.043278138856685], [26.359947619770633, 44.10828833172778], [26.381531354253855, 44.11983454358905], [26.418372556216596, 44.12535664491401], [26.429908690164524, 44.14568801797408], [26.428420156751887, 44.15748523444103], [26.415023356038162, 44.17631057986703], [26.40162655532444, 44.1840917226431], [26.4019986886776, 44.224252459551884], [26.362552553242747, 44.223499445734845], [26.36143615318327, 44.24232479116084], [26.34245735217216, 44.24232479116084], [26.32012935098262, 44.25864009053003], [26.30524401685626, 44.25613004447323], [26.284404549079355, 44.277214431350345], [26.2613322811835, 44.29503575835362], [26.25575028088611, 44.29829881822746], [26.2758454819567, 44.316622154442086], [26.253889614120318, 44.330427407754485], [26.28254388231356, 44.34900174857479], [26.307104683622054, 44.35126079002591], [26.31715228415735, 44.371592163085985], [26.314175217332075, 44.39066851311766], [26.300034149912033, 44.39041750851198], [26.288125882610945, 44.40547778485277], [26.29408001626149, 44.41702399671404], [26.311570283859965, 44.40171271576757], [26.324594951220526, 44.396441619048296], [26.34543441899743, 44.40296773879597], [26.35697055294536, 44.412756918417486], [26.392323221495467, 44.42982523160372], [26.407208555621825, 44.42781719475828], [26.46414495865515, 44.453419664537634], [26.45298095806038, 44.46245583034211], [26.42804802339873, 44.45668272441147], [26.396044555027053, 44.45743573822851], [26.361808286536426, 44.48605026327602], [26.417628289510276, 44.521441912676885], [26.429908690164524, 44.521441912676885], [26.459307225064084, 44.54102027191991], [26.437351357227705, 44.549303423907354], [26.45744655829829, 44.56687374630494], [26.47940242613467, 44.57314886144694], [26.50917309438739, 44.55582954365503], [26.52368629516059, 44.55859059431751], [26.564248830654922, 44.52671300939616], [26.600717899264502, 44.52319894491664], [26.626022967279315, 44.54177328573695], [26.637559101227247, 44.54177328573695], [26.666213369420486, 44.59573927595813], [26.685192170431595, 44.591221193055894], [26.677377370015257, 44.57465488908102], [26.684075770372118, 44.56536771867086], [26.70565950485534, 44.55934360813455], [26.727243239338563, 44.55909260352887], [26.72426617251329, 44.538008216651754], [26.755897507531806, 44.5287210462416], [26.76185164118235, 44.55030744233007], [26.78827310925664, 44.54202429034263], [26.78083044219346, 44.521190908071205], [26.79794857643877, 44.511401728449684], [26.812833910565132, 44.521692917282564], [26.82511431121938, 44.511903737661044], [26.83144057822308, 44.52796803242456], [26.87721298066164, 44.51792784819737], [26.894331114906954, 44.51642182056329], [26.973967652482976, 44.52947406005864], [27.004854720795173, 44.52922305545296], [27.005226854148333, 44.508891682392886], [27.093050325493856, 44.509142686998565], [27.093050325493856, 44.48529724945898], [27.13696206116662, 44.48328921261354], [27.141055528051368, 44.50136154422249], [27.189804997315196, 44.492074373812336], [27.20766739826683, 44.48404222643058], [27.212132998504735, 44.50136154422249], [27.207295264913668, 44.51591981135193], [27.227018332631097, 44.51366076990081], [27.22962326610321, 44.493831406052095], [27.264603801300154, 44.48931332314986], [27.26944153489122, 44.50663264094177], [27.291769536080764, 44.50412259488497], [27.28916460260865, 44.4900663369669], [27.347217405701453, 44.4863012678817], [27.353915806058314, 44.51742583898601], [27.371778207009946, 44.51642182056329], [27.371406073656786, 44.50638163633609], [27.391501274727375, 44.50613063173041], [27.390012741314738, 44.496341452108894], [27.50388554738139, 44.493831406052095], [27.51988728156723, 44.49734547053161], [27.52658568192409, 44.54403232718807], [27.547053016347835, 44.54227529494831], [27.54779728305415, 44.562355663402705], [27.57347448442212, 44.55934360813455], [27.571613817656328, 44.467977931667065], [27.61552555332909, 44.467977931667065], [27.640458487990742, 44.47098998693522], [27.650878221879196, 44.46496587639891], [27.650133955172876, 44.451160623086515], [27.660553689061327, 44.441622448070675], [27.655715955470264, 44.42129107501061], [27.732747559574175, 44.41953404277085], [27.73498035969313, 44.40648180327549], [27.75209849393844, 44.397696642076696], [27.77144942830271, 44.39493559141422], [27.747260760347373, 44.38213435652454], [27.757680494235828, 44.36607006176103], [27.749865693819487, 44.36205398807015], [27.773310095068503, 44.344483665672556], [27.790800362666978, 44.35527686371679], [27.80122009655543, 44.33871055974192], [27.814989030622314, 44.33444348144536], [27.835828498399216, 44.347244716335034], [27.84550396558135, 44.370588144663266], [27.85666796617612, 44.38037732428478], [28.02003450821292, 44.340216587376]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Cara\\u0219-Severin\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[22.683642223912898, 45.25061029217698], [22.666524089667583, 45.23630302965323], [22.650522355481748, 45.2340439882021], [22.65163875554122, 45.22475681779195], [22.628194354292205, 45.2091945322398], [22.601772886217915, 45.2054294631546], [22.5783284849689, 45.18309005324909], [22.561954617429905, 45.15648356504702], [22.58242195185365, 45.13841123343806], [22.606610619808983, 45.13816022883238], [22.64159115500593, 45.12812004460519], [22.650894488834904, 45.12812004460519], [22.657965022544925, 45.108039676150796], [22.638986221533816, 45.095238441261124], [22.621123820582184, 45.07515807280673], [22.588376085504194, 45.04478651551946], [22.565303817608335, 45.03474633129227], [22.560466084017268, 45.022949114825316], [22.531067549117708, 44.997346645045965], [22.505762481102895, 44.98504741936765], [22.49310994709549, 44.97400321671773], [22.51246088145976, 44.96647307854734], [22.51581008163819, 44.953922848263346], [22.493854213801807, 44.946141705487264], [22.487155813444947, 44.93258745678055], [22.49608701392076, 44.92254727255336], [22.495714880567604, 44.91024804687504], [22.483806613266516, 44.90723599160688], [22.490505013623377, 44.89443475671721], [22.487900080151263, 44.88238653564457], [22.472270479318585, 44.86908329154354], [22.471526212612268, 44.860298130344745], [22.458501545251703, 44.850257946117544], [22.448081811363252, 44.822647439492755], [22.425381676820553, 44.80106104340429], [22.42649807688003, 44.779725651921495], [22.41905540981685, 44.7709404907227], [22.41979967652317, 44.75638222359326], [22.38965687491729, 44.75763724662166], [22.384447007973062, 44.74533802094335], [22.364723940255637, 44.74533802094335], [22.355420606426662, 44.75111112687399], [22.343140205772414, 44.77445455520222], [22.33309260523712, 44.778219624287416], [22.312625270813378, 44.77545857362494], [22.298856336746493, 44.780478665738535], [22.264620068255866, 44.78499674864077], [22.245269133891597, 44.807587163151965], [22.216614865698354, 44.81737634277348], [22.20061313151252, 44.79076985457141], [22.198008198040405, 44.7721955137511], [22.205822998456743, 44.76165332031254], [22.186472064092477, 44.74132194725247], [22.168609663140845, 44.74157295185815], [22.15893419595871, 44.73052874920823], [22.14069966165392, 44.66074946882922], [22.1481423287171, 44.65372133987019], [22.173075263378752, 44.64895225236227], [22.179029397029296, 44.62560882403404], [22.167865396434525, 44.616823662835245], [22.149258728776577, 44.587456123970696], [22.136234061416012, 44.60000635425469], [22.119115927170697, 44.59222521147861], [22.10757979322277, 44.59925334043765], [22.092694459096407, 44.61933370889204], [22.078553391676365, 44.62209475955452], [22.06255165749053, 44.61004653848189], [22.031292455825174, 44.606281469396684], [22.017523521758292, 44.59950434504333], [22.007103787869838, 44.60728548781941], [22.000405387512977, 44.62887188390788], [21.991102053684003, 44.63414298062715], [21.952400184955465, 44.63539800365555], [21.92188524999643, 44.64719522012251], [21.889881781624755, 44.64594019709411], [21.84373724583304, 44.65472535829291], [21.811361644108207, 44.65221531223611], [21.79796484339448, 44.66325951488602], [21.772659775379672, 44.66150248264626], [21.730236573119544, 44.65397234447587], [21.69823310474787, 44.66401252870306], [21.67739363697097, 44.66526755173146], [21.64278523512718, 44.659745450406504], [21.62417856746923, 44.66677357936554], [21.61301456687446, 44.686602943214254], [21.616735900406052, 44.713711440627684], [21.610781766755508, 44.73203477684231], [21.592919365803876, 44.755880214381904], [21.56575363102327, 44.76742642624318], [21.532633762592116, 44.77319953217382], [21.50584016116467, 44.77144249993406], [21.46155629213875, 44.7772156058647], [21.426203623588645, 44.77370154138518], [21.39382802186381, 44.78323971640101], [21.38675748815379, 44.805328121700846], [21.378198421031133, 44.81561931053372], [21.35996388672634, 44.822145430281395], [21.36591802037689, 44.8296755684518], [21.355498286488434, 44.83871173425627], [21.368522953849, 44.86481621324698], [21.413551089581237, 44.86933429614922], [21.44257749112764, 44.87008730996626], [21.455974291841365, 44.873852379051456], [21.467882559142453, 44.8683302777265], [21.4864892268004, 44.86883228693786], [21.51216642816837, 44.88037849879913], [21.56166016413852, 44.889414664603606], [21.559799497372722, 44.9069849870012], [21.548263363424795, 44.930830424540794], [21.52146976199735, 44.93836056271119], [21.470859625967723, 44.95869193577126], [21.43960042430237, 44.96095097722238], [21.408341222637013, 44.97877230422565], [21.41615602305335, 44.98705545621309], [21.39010668833222, 44.998350663468685], [21.361824553492138, 45.0206900733742], [21.406480555871216, 45.03499733589795], [21.457834958607158, 45.040770441828585], [21.448531624778184, 45.05608172277506], [21.46155629213875, 45.07264802674993], [21.485000693387764, 45.091724376781606], [21.471603892674043, 45.1042746070656], [21.480162959796697, 45.121593924857514], [21.497281094042012, 45.12485698473135], [21.528912429060526, 45.13816022883238], [21.530400962473163, 45.147698403848224], [21.518120561818918, 45.16928479993669], [21.4946761605699, 45.173802882838935], [21.47904655973722, 45.19388325129332], [21.501002427573603, 45.19639329735012], [21.518492695172075, 45.22550983160899], [21.52816816235421, 45.232035951356664], [21.522958295409982, 45.24508819085202], [21.5318894958858, 45.24885325993722], [21.536355096123707, 45.26466655009505], [21.55756669725377, 45.27269869747681], [21.566497897729587, 45.2865039507892], [21.56203229749168, 45.31662450347079], [21.533378029298436, 45.31587148965375], [21.527423895647892, 45.33143377520591], [21.49542042727622, 45.34323099167286], [21.473092426086676, 45.336453867319506], [21.454113625075568, 45.352518162083015], [21.4656497590235, 45.35879327722501], [21.451880824956614, 45.36933547066357], [21.451508691603458, 45.38665478845548], [21.44220535777448, 45.407488170726914], [21.462672692198225, 45.41526931350299], [21.49021056033199, 45.41928538719387], [21.4864892268004, 45.435098677351704], [21.45857922531348, 45.44363283394482], [21.45634642519452, 45.45417502738337], [21.433646290651826, 45.45543005041178], [21.43513482406446, 45.47124334056961], [21.45374149172241, 45.46848228990713], [21.49132696039147, 45.486303616910405], [21.50174669427992, 45.488060649150164], [21.51291069487469, 45.47776946031728], [21.530028829120006, 45.48027950637408], [21.56128803078536, 45.500610879434156], [21.582127498562265, 45.50613298075911], [21.574684831499084, 45.52269928473399], [21.57915043173699, 45.544787690033814], [21.599245632807577, 45.557086915712134], [21.60147843292653, 45.571394178235884], [21.629388434413457, 45.568382122967726], [21.649483635484042, 45.580430344040366], [21.676277236911492, 45.58595244536532], [21.689301904272057, 45.5786733118006], [21.70195443827946, 45.56386404006549], [21.725770972881637, 45.56311102624845], [21.74661044065854, 45.55231782820422], [21.749215374130653, 45.545038694639494], [21.789405776271824, 45.53349248277822], [21.83294537859143, 45.529225404481664], [21.840760179007766, 45.53675554265206], [21.882811247914734, 45.53675554265206], [21.893603115156345, 45.546042713062214], [21.908488449282704, 45.5400186025259], [21.931932850531723, 45.5400186025259], [21.938631250888584, 45.53399449198958], [21.94719031801124, 45.50613298075911], [21.9765888529108, 45.51291010511247], [22.008592321282475, 45.50437594851935], [22.03575805606308, 45.501865902462555], [22.053620457014713, 45.51014905444999], [22.05138765689576, 45.51918522025447], [22.06292379084369, 45.528472390664625], [22.089717392271137, 45.530480427510064], [22.109440459988562, 45.5362535334407], [22.09902072610011, 45.54629371766789], [22.087112458799023, 45.54754874069629], [22.07408779143846, 45.56587207691093], [22.048782723423646, 45.5500587867531], [22.051015523542603, 45.57440623350404], [22.038362989535194, 45.5874584729994], [22.046922056657852, 45.59197655590164], [22.075204191497935, 45.572147192052924], [22.108696193282245, 45.595239615775476], [22.116510993698583, 45.59097253747892], [22.13586192806285, 45.59448660195844], [22.163771929549778, 45.60879386448219], [22.173075263378752, 45.60427578157995], [22.189076997564587, 45.61833203949803], [22.21066073204781, 45.60603281381971], [22.238570733534736, 45.60527980000267], [22.256061001133208, 45.58695646378804], [22.27057420190641, 45.58570144075964], [22.292157936389632, 45.60527980000267], [22.29327433644911, 45.62008907173779], [22.311881004107057, 45.65472770732161], [22.32267287134867, 45.66250885009769], [22.35914193995825, 45.667528942211284], [22.390773274976766, 45.66275985470337], [22.398215942039947, 45.66878396523968], [22.420916076582643, 45.664014877731766], [22.427986610292663, 45.66928597445104], [22.45552447842643, 45.66075181785793], [22.455152345073273, 45.6474485737569], [22.477852479615972, 45.62636418687978], [22.49943621409919, 45.61582199344123], [22.513949414872393, 45.595490620381156], [22.545952883244066, 45.595490620381156], [22.54558074989091, 45.58796048221076], [22.583166218559967, 45.58394440851988], [22.59730728598001, 45.57390422429268], [22.593958085801578, 45.56185600322005], [22.63452062129591, 45.571394178235884], [22.643079688418567, 45.56511906309389], [22.642707555065407, 45.553321846626936], [22.6590814226044, 45.52420531236807], [22.67880449032183, 45.516173164986306], [22.677688090262354, 45.49684581034896], [22.692573424388712, 45.49057069520696], [22.69368982444819, 45.476012428077524], [22.705598091749277, 45.45618306422882], [22.705598091749277, 45.433592649717625], [22.714529292225095, 45.41602232732003], [22.700388224805053, 45.39920501873948], [22.682525823853418, 45.38615277924412], [22.669873289846013, 45.38288971937028], [22.658337155898085, 45.37159451211469], [22.670245423199173, 45.36180533249318], [22.668384756433376, 45.352518162083015], [22.692573424388712, 45.327668706120704], [22.69778329133294, 45.30307025476408], [22.67880449032183, 45.282989886309686], [22.69034062426976, 45.27495773892793], [22.683642223912898, 45.25061029217698]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Cluj\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[24.024438695344763, 47.36231203976194], [24.01922882840054, 47.34474171736435], [24.028532162229514, 47.32139828903612], [24.008064827805768, 47.311609109414604], [23.98983029350098, 47.31964125679636], [23.967874425664597, 47.312362123231644], [23.94033655753083, 47.30809504493509], [23.928800423582903, 47.297301846890846], [23.93624309064608, 47.285253625818214], [23.92284628993236, 47.273456409351255], [23.920985623166562, 47.25287403168551], [23.937731624058717, 47.20066507370409], [23.95187269147876, 47.178827673009934], [23.975689226080934, 47.16903849338842], [23.998389360623634, 47.16878748878274], [24.01587962822211, 47.177823654587215], [24.03002069564215, 47.16452041048618], [24.027415762170037, 47.14619707427155], [24.04192896294324, 47.13289383017052], [24.065745497545414, 47.13163880714212], [24.07169963119596, 47.118586567646766], [24.08956203214759, 47.1155745123786], [24.098865365976565, 47.12737172884556], [24.12193763387242, 47.10603633736277], [24.121193367166104, 47.09825519458669], [24.1375672347051, 47.082943913640214], [24.120449100459787, 47.05859646688927], [24.118216300340833, 47.041779158308714], [24.105563766333425, 47.02847591420768], [24.1230540339319, 47.02094577603728], [24.10779656645238, 47.00463047666809], [24.109657233218176, 46.985554126636416], [24.120076967106627, 46.970493850295625], [24.172175636548886, 46.958445629222986], [24.162128036013595, 46.93560421010612], [24.184456037203134, 46.928576081147085], [24.191526570913155, 46.92004192455396], [24.216459505574807, 46.90724068966429], [24.220552972459558, 46.874359086320226], [24.20790043845215, 46.86080483761351], [24.212366038690057, 46.8397204507364], [24.190410170853678, 46.83143729874896], [24.198597104623175, 46.820142091493366], [24.181106837024704, 46.805081815152576], [24.18966590414736, 46.79328459868562], [24.17105923648941, 46.78249140064138], [24.150964035418824, 46.780232359190265], [24.117099900281353, 46.769188156540345], [24.127891767522964, 46.74684874663484], [24.116727766928197, 46.74308367754964], [24.093655499032337, 46.75061381572004], [24.076165231433865, 46.74559372360644], [24.069466831077, 46.7348005255622], [24.090678432207067, 46.711457097233975], [24.12603110075717, 46.700412894584055], [24.117099900281353, 46.68961969653982], [24.10407523292079, 46.66200918991503], [24.095516165798134, 46.66175818530935], [24.035230562586374, 46.64519188133448], [24.03336989582058, 46.63414767868456], [24.02220589522581, 46.62837457275393], [24.027787895523197, 46.617832379315374], [24.049743763359576, 46.60980023193361], [24.065745497545414, 46.60954922732793], [24.067978297664368, 46.59725000164962], [24.054209363597483, 46.57516159634979], [24.054209363597483, 46.562109356854435], [24.038951896117965, 46.5575912739522], [24.047138829887462, 46.54529204827388], [24.028532162229514, 46.53249081338421], [24.004715627627338, 46.54152697918868], [23.986853226675706, 46.541275974583], [23.960803891954576, 46.51466948638093], [23.975317092727778, 46.482038887642545], [23.968990825724074, 46.47350473104943], [23.98164335973148, 46.45869545931432], [24.006204161039975, 46.442380159945124], [23.986853226675706, 46.43133595729521], [23.965641625545643, 46.43685805862017], [23.948523491300328, 46.44940828890416], [23.924706956698152, 46.44965929350984], [23.91131015598443, 46.46371555142792], [23.87781815420012, 46.45367536720072], [23.85660655307006, 46.45116532114392], [23.84469828576897, 46.46371555142792], [23.815671884222567, 46.466727606696075], [23.781807749085097, 46.45869545931432], [23.767294548311895, 46.46246052839952], [23.73231401311495, 46.45191833496096], [23.70328761156855, 46.45794244549728], [23.679098943613216, 46.44991029811552], [23.670167743137398, 46.439368104676966], [23.67388907666899, 46.42982992966113], [23.652677475538926, 46.42782189281569], [23.65788734248315, 46.41677769016577], [23.68095961037901, 46.4089965473897], [23.660864409308424, 46.399458372373864], [23.63555934129361, 46.40322344145906], [23.60616080639405, 46.414769653320334], [23.604300139628258, 46.42932792044977], [23.593880405739803, 46.43635604940881], [23.590531205561373, 46.44965929350984], [23.604672272981414, 46.46973966196423], [23.597973872624554, 46.48730998436182], [23.575645871435015, 46.49735016858902], [23.561132670661813, 46.48856500739022], [23.545503069829135, 46.50312327451966], [23.52466360205223, 46.4863059659391], [23.51722093498905, 46.493083090292465], [23.464377998840472, 46.50462930215374], [23.456191065070975, 46.51768154164909], [23.4323745304688, 46.52998076732741], [23.402231728862922, 46.53073378114445], [23.393300528387105, 46.5400209515546], [23.344923192476436, 46.53324382720125], [23.337108392060095, 46.52420766139677], [23.314780390870556, 46.520191587705895], [23.299895056744198, 46.509398389661655], [23.28426545591152, 46.509398389661655], [23.271240788550955, 46.49810318240606], [23.25077345412721, 46.49810318240606], [23.23886518682612, 46.49107505344703], [23.197558384625474, 46.492832085686786], [23.186766517383862, 46.509900398873015], [23.14545971518321, 46.50362528373102], [23.133923581235283, 46.492330076475426], [23.10936277992679, 46.492330076475426], [23.099315179391496, 46.47149669420399], [23.08777904544357, 46.466978611301755], [23.047960776655554, 46.47024167117559], [23.05726411048453, 46.492832085686786], [23.033819709235512, 46.50237026070262], [23.01298024145861, 46.5038762883367], [23.002188374217, 46.534498850229646], [23.00144410751068, 46.5488061127534], [22.960881572016348, 46.550312140387476], [22.94971757142158, 46.55558323710676], [22.92404037005361, 46.55357520026132], [22.896874635273, 46.53901693313188], [22.87975650102769, 46.536757891680764], [22.83770543212072, 46.54679807590796], [22.813516764165385, 46.55809328316356], [22.813516764165385, 46.56938849041915], [22.818726631109612, 46.58469977136563], [22.809795430633798, 46.589217854267865], [22.809423297280638, 46.61080425035633], [22.795282229860597, 46.6399207846152], [22.775559162143168, 46.65146699647648], [22.772582095317897, 46.66677827742295], [22.747649160656245, 46.69514179786478], [22.74132289365254, 46.71622618474189], [22.710063691987184, 46.73906760385876], [22.71936702581616, 46.755131898622274], [22.71564569228457, 46.76316404600403], [22.638986221533816, 46.79981071843329], [22.658709289251245, 46.805332819758256], [22.705598091749277, 46.805834828969616], [22.728670359645136, 46.81687903161953], [22.73462449329568, 46.83419834941144], [22.74467209383097, 46.84474054285], [22.755836094425742, 46.876367123165664], [22.780396895734235, 46.8972005054371], [22.776675562202644, 46.91075475414381], [22.7498819607752, 46.91226078177789], [22.732391693176726, 46.919288910736924], [22.71973915916932, 46.933345168655], [22.687363557444485, 46.93911827458564], [22.677315956909194, 46.95442955553211], [22.676571690202877, 46.971246864112665], [22.69778329133294, 46.98103604373418], [22.73053102641093, 47.00739152733057], [22.735740893355157, 47.00839554575329], [22.78151329579371, 46.98957020032729], [22.796398629920073, 46.97752197925466], [22.822820097994363, 46.9832950851853], [22.832867698529654, 46.99433928783522], [22.86449903354817, 46.98229106676258], [22.893153301741414, 46.9757649470149], [22.90059596880459, 46.969740836478586], [22.898363168685638, 46.943887362093555], [22.919202636462543, 46.93384717786636], [22.939669970886285, 46.916276855468766], [22.965719305607415, 46.91451982322901], [22.989163706856434, 46.902973611367734], [23.00590970774859, 46.90473064360749], [23.015213041577564, 46.89795351925414], [23.033075442529196, 46.901718588339335], [23.04944931006819, 46.891427399506455], [23.062473977428755, 46.901718588339335], [23.081080645086708, 46.8984555284655], [23.093733179094112, 46.890674385689415], [23.085174111971455, 46.86758196196687], [23.095965979213066, 46.85954981458511], [23.11680544698997, 46.85678876392263], [23.1346678479416, 46.85904780537375], [23.16146144936905, 46.875614109348625], [23.177835316908045, 46.8796301830395], [23.193464917740723, 46.87034301262935], [23.20202398486338, 46.88239123370198], [23.222491319287126, 46.89343543635189], [23.21244371875183, 46.902471602156375], [23.206117451748128, 46.92430900285052], [23.22807331958451, 46.93234115023228], [23.21765358569606, 46.939620283797], [23.239237320179278, 46.94765243117875], [23.260448921309344, 46.9346001916834], [23.25784398783723, 46.918033887708525], [23.277939188907816, 46.901969592945015], [23.292080256327857, 46.89795351925414], [23.310686923985806, 46.91125676335517], [23.326688658171644, 46.91451982322901], [23.340829725591686, 46.90899772190405], [23.356459326424364, 46.92029292915964], [23.384741461264447, 46.94966046802419], [23.378043060907586, 46.96647777660475], [23.386602128030244, 46.97752197925466], [23.408557995866623, 46.98103604373418], [23.40669732910083, 46.99057421875001], [23.434235197234596, 46.99408828322954], [23.475914132788404, 47.0169297023464], [23.474797732728923, 47.05533340701543], [23.452097598186228, 47.06386756360855], [23.448004131301477, 47.0769198031039], [23.433490930528276, 47.08520295509133], [23.45433039830518, 47.092984097867415], [23.48670600003001, 47.091227065627656], [23.484845333264218, 47.10453030972869], [23.49154373362108, 47.117582549224046], [23.503452000922167, 47.11708054001268], [23.49973066739058, 47.15498223547035], [23.542526003003864, 47.159751322978266], [23.55517853701127, 47.177572649981535], [23.575645871435015, 47.1805847052497], [23.603555872921937, 47.16477141509186], [23.63555934129361, 47.18284374670082], [23.62848880758359, 47.19413895395641], [23.645234808475745, 47.22225146979256], [23.663469342780537, 47.23706074152767], [23.683936677204283, 47.23756275073903], [23.716312278929113, 47.25011298102303], [23.754269880951334, 47.242331838246955], [23.76357321478031, 47.283747598184135], [23.8108341506315, 47.25136800405143], [23.81455548416309, 47.26818531263198], [23.80041441674305, 47.281739561338696], [23.83725561870579, 47.3229043166702], [23.842837619003173, 47.34022363446211], [23.838744152118423, 47.34976180947795], [23.8543737529511, 47.36833615029826], [23.874841087374847, 47.37134820556642], [23.894936288445432, 47.35678993843698], [23.924334823344992, 47.352522860140425], [23.942197224296628, 47.35980199370514], [23.970851492489867, 47.36582610424146], [24.024438695344763, 47.36231203976194]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Constan\\u021ba\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[28.994279626783175, 44.68057883267794], [28.97083522553416, 44.658239422772425], [28.93176122345246, 44.614062612172766], [28.909433222262926, 44.57942397658894], [28.875196953772296, 44.53273711993248], [28.850264019110643, 44.50261656725089], [28.823098284330037, 44.47676309286586], [28.80002601643418, 44.45919277046827], [28.760952014352483, 44.425307148701485], [28.710714011676018, 44.37585924138254], [28.68466467695489, 44.33670252289648], [28.64000867457581, 44.328168366303366], [28.631077474099996, 44.31210407153985], [28.62140200691786, 44.2802264866185], [28.62549547380261, 44.23830871746996], [28.634798807631583, 44.221993418100766], [28.645590674873194, 44.21948337204397], [28.65861534223376, 44.19940300358958], [28.65526614205533, 44.18635076409422], [28.66531374259062, 44.17078847854207], [28.65414974199585, 44.152716146933116], [28.667174409356416, 44.14468399955136], [28.657498942174282, 44.129623723210564], [28.644846408166877, 44.126611667942406], [28.642613608047924, 44.09699312447218], [28.65898747558692, 44.100256184346016], [28.671267876241167, 44.0892119816961], [28.644102141460557, 44.083689880371146], [28.638892274516333, 44.07641074680643], [28.645590674873194, 44.04603918951916], [28.66531374259062, 44.00838849866717], [28.667918676062733, 43.98680210257871], [28.656010408761645, 43.97550689532311], [28.65526614205533, 43.96621972491295], [28.641125074635287, 43.95517552226304], [28.636659474397376, 43.923297937341694], [28.61358720650152, 43.89769546756234], [28.6065166727915, 43.87711308989659], [28.609493739616774, 43.85125961551156], [28.59386413878409, 43.842474454312764], [28.594236272137252, 43.82992422402877], [28.57972307136405, 43.801058694375584], [28.58009520471721, 43.76867910024288], [28.57414107106667, 43.75562686074752], [28.57972307136405, 43.74031557980105], [28.503435733966455, 43.73855854756129], [28.46994373218215, 43.73554649229313], [28.437195997104155, 43.73604850150449], [28.38025959407083, 43.746841699548725], [28.350116792464952, 43.75562686074752], [28.25447852070309, 43.76616905418608], [28.226940652569322, 43.77018512787696], [28.191215850666058, 43.78072732131551], [28.175214116480223, 43.78198234434391], [28.117533446740577, 43.797544629896066], [28.017429574740806, 43.83720335759349], [27.995845840257587, 43.843227468129804], [27.977611305952795, 43.90120953204186], [27.955655438116413, 43.94036625052792], [27.94560783758112, 43.98504507033895], [27.918442102800512, 44.00838849866717], [27.84513183222819, 43.96672173412431], [27.75581982747003, 43.95868958674256], [27.739445959931036, 43.95392049923464], [27.71153595844411, 43.95969360516528], [27.67506688983453, 44.02997489475565], [27.64492408822865, 44.04829823097028], [27.613292753210136, 44.01240457235806], [27.47039354559708, 44.02269576119093], [27.40080460855635, 44.01265557696374], [27.372150340363106, 44.0392620651658], [27.357637139589905, 44.059091429014515], [27.29251380278708, 44.07540672838371], [27.27762846866072, 44.10577828567098], [27.279489135426516, 44.12259559425153], [27.272790735069652, 44.126611667942406], [27.298840069790785, 44.137906875198006], [27.327122204630868, 44.140416921254804], [27.35466007276463, 44.129372718604884], [27.390757008021055, 44.1328867830844], [27.435413010400136, 44.12385061727993], [27.461090211768106, 44.126862672548086], [27.50425768073455, 44.15798724365239], [27.529190615396203, 44.17103948314775], [27.547053016347835, 44.17656158447271], [27.562682617180513, 44.18835880093966], [27.631155154161767, 44.206180127942936], [27.68660302378246, 44.20141104043502], [27.70855889161884, 44.196390948321415], [27.73498035969313, 44.2016620450407], [27.777775695306413, 44.22977456087684], [27.81573329732863, 44.24583885564036], [27.86485489994562, 44.24558785103468], [27.87899596736566, 44.251862966176674], [27.90839450226522, 44.248097897091476], [27.935560237045827, 44.250105933936915], [27.94932917111271, 44.25713406289595], [27.97500637248068, 44.27947347280146], [27.97835557265911, 44.2865016017605], [27.999939307142334, 44.304824937975134], [28.01333610785606, 44.32239526037272], [28.02003450821292, 44.340216587376], [28.029709975395054, 44.36832910321215], [28.059480643647774, 44.396441619048296], [28.071016777595702, 44.41125089078341], [28.10264811261422, 44.42831920396964], [28.110462913030556, 44.441120438859315], [28.101159579201582, 44.454172678354674], [28.091111978666287, 44.48856030933282], [28.080320111424676, 44.49834948895433], [28.055387176763027, 44.508389673181526], [28.03157064216085, 44.55331949759823], [28.018173841447126, 44.565116714065184], [28.018173841447126, 44.5824360318571], [28.034919842339278, 44.61180357072165], [28.03157064216085, 44.62711485166812], [28.014080374562376, 44.64694421551683], [27.998450773729697, 44.65171330302475], [27.970168638889614, 44.670036639239385], [27.959748905001163, 44.68032782807226], [27.933327436926874, 44.67932380964954], [27.91695356938788, 44.69413308138465], [27.88197303419093, 44.70919335772545], [27.873786100421434, 44.725759661700316], [27.877135300599864, 44.75136213147967], [27.882717300897248, 44.7634103525523], [27.898719035083086, 44.77269752296246], [27.94932917111271, 44.780729670344215], [27.97463423912752, 44.77269752296246], [28.002916373967608, 44.75864126504438], [28.026360775216624, 44.764163366369345], [28.03789690916455, 44.76115131110118], [28.046828109640366, 44.7734505367795], [28.06766757741727, 44.78574976245781], [28.07548237783361, 44.80407309867245], [28.1164170466811, 44.79327990062821], [28.133907314279575, 44.80106104340429], [28.154374648703318, 44.80081003879861], [28.18302891689656, 44.78574976245781], [28.1826567835434, 44.76115131110118], [28.196425717610285, 44.754625191353504], [28.218009452093508, 44.754876195959184], [28.217265185387188, 44.76240633412958], [28.241081719989364, 44.764916380186385], [28.245547320227274, 44.7235006202492], [28.232522652866706, 44.711703403782245], [28.27531798847999, 44.69764714586417], [28.293180389431626, 44.70894235311977], [28.31439199056169, 44.711703403782245], [28.32853305798173, 44.70743632548569], [28.31625265732748, 44.69639212283577], [28.351233192524425, 44.69087002151081], [28.366490660003947, 44.69187403993353], [28.38695799442769, 44.68082983728362], [28.378398927305035, 44.66526755173146], [28.38844652784033, 44.65196430763043], [28.38807439448717, 44.6399160865578], [28.41375159585514, 44.62711485166812], [28.414867995914616, 44.61305859375005], [28.43607959704468, 44.616823662835245], [28.44687146428629, 44.65271732144747], [28.42826479662834, 44.65598038132131], [28.436451730397838, 44.6748057267473], [28.451709197877356, 44.67455472214162], [28.450220664464723, 44.6635105194917], [28.470315865535305, 44.658741431983785], [28.471060132241625, 44.64845024315091], [28.52948506868759, 44.633138962204434], [28.533950668925495, 44.66150248264626], [28.582328004836164, 44.658239422772425], [28.5920034720183, 44.65422334908155], [28.60688880614466, 44.659996455012184], [28.68466467695489, 44.66903262081666], [28.67350067636012, 44.65497636289859], [28.68466467695489, 44.65020727539067], [28.722250145623946, 44.65472535829291], [28.779930815363592, 44.65522736750427], [28.790722682605203, 44.63615101747259], [28.82607535115531, 44.632385948387395], [28.85212468587644, 44.65372133987019], [28.89268722137077, 44.67756677740978], [28.9187365560919, 44.68861098005969], [28.932505490158782, 44.69789815046985], [28.965997491943092, 44.69237604914489], [28.98534842630736, 44.67882180043818], [28.994279626783175, 44.68057883267794]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Covasna\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[26.26468148136193, 46.24709857672617], [26.280683215547768, 46.24709857672617], [26.311570283859965, 46.239066429344405], [26.32831628475212, 46.23028126814561], [26.339852418700048, 46.2154719964105], [26.34245735217216, 46.20091372928106], [26.332037618283707, 46.18384541609483], [26.349155752529022, 46.16225902000636], [26.344690152291115, 46.13791157325541], [26.372972287131198, 46.14619472524285], [26.388229754610716, 46.143935683791725], [26.385996954491763, 46.125863352182776], [26.369250953599607, 46.11858421861806], [26.37446082054383, 46.1080420251795], [26.3938117549081, 46.101264900826145], [26.430280823517684, 46.07917649552631], [26.441444824112452, 46.03926676322321], [26.44702682440984, 46.02019041319154], [26.433630023696114, 46.00036104934283], [26.438839890640338, 45.989316846692915], [26.399393755205487, 45.96622442297036], [26.39083468808283, 45.95543122492613], [26.388974021317033, 45.93936693016261], [26.396044555027053, 45.92104359394798], [26.377065754015945, 45.90748934524127], [26.37855428742858, 45.88966801823799], [26.389346154670193, 45.87385472808016], [26.375949353956468, 45.858041437922324], [26.372600153778038, 45.84373417539857], [26.376693620662788, 45.82315179773282], [26.393439621554943, 45.80282042467275], [26.385252687785446, 45.77922599173884], [26.39083468808283, 45.76491872921508], [26.382275620960172, 45.74935644366293], [26.385996954491763, 45.736555208773254], [26.37148375371856, 45.734045162716455], [26.358459086357996, 45.71070173438823], [26.343201618878478, 45.70041054555535], [26.333898285049504, 45.68635428763728], [26.33538681846214, 45.677569126438485], [26.325711351280006, 45.649456610602336], [26.33092121822423, 45.638914417163775], [26.32794415139896, 45.624858159245704], [26.296684949733603, 45.598000666437954], [26.277334015369334, 45.59172555129596], [26.254633880826635, 45.60076171710043], [26.256494547592432, 45.61808103489235], [26.247563347116614, 45.62661519148546], [26.214815612038624, 45.621846103977546], [26.187649877258018, 45.60829185527083], [26.176113743310086, 45.579928334829006], [26.164205476009002, 45.569637145996126], [26.15676280894582, 45.58519943154828], [26.144854541644733, 45.580681348646046], [26.139272541347346, 45.56788011375637], [26.12327080716151, 45.54955677754174], [26.099454272559335, 45.528723395270305], [26.092383738849314, 45.51717718340903], [26.096105072380904, 45.53575152422934], [26.10503627285672, 45.5500587867531], [26.09684933908722, 45.556835911106454], [26.094616538968268, 45.57290020586996], [26.073404937838205, 45.57817130258924], [26.05628680359289, 45.59398459274708], [26.06298520394975, 45.60427578157995], [26.053309736767616, 45.61858304410371], [26.014607868039082, 45.62084208555483], [26.02242266845542, 45.637157384924016], [26.001211067325357, 45.6461935507285], [25.965486265422093, 45.6474485737569], [25.972928932485274, 45.68811131987704], [25.943530397585715, 45.691625384356556], [25.91487612939247, 45.71019972517687], [25.85980039312494, 45.71019972517687], [25.85570692624019, 45.72274995546086], [25.823331324515358, 45.7260130153347], [25.828169058106425, 45.7435833377323], [25.767883454894665, 45.75738859104469], [25.74518332035197, 45.77018982593437], [25.71169131856766, 45.77018982593437], [25.673361583192282, 45.746093383789095], [25.67745505007703, 45.77495891344228], [25.669268116307535, 45.787007134514916], [25.64024171476113, 45.80206741085571], [25.6450794483522, 45.80909553981475], [25.624239980575293, 45.814617641139705], [25.60823824638946, 45.83143494972026], [25.587398778612553, 45.82792088524074], [25.569164244307764, 45.83670604643954], [25.56581504412933, 45.86055148397912], [25.55948877712563, 45.87812180637672], [25.58479384514044, 45.883141898490315], [25.600795579326277, 45.881886875461916], [25.60712184632998, 45.89142505047775], [25.571024911073557, 45.896445142591354], [25.554651043534562, 45.89042103205503], [25.550185443296655, 45.90698733602991], [25.564698644069857, 45.91501948341166], [25.541254242820838, 45.936605879500135], [25.551301843356132, 45.950160128206846], [25.54050997611452, 45.96597341836468], [25.542370642880314, 45.98354374076227], [25.560605177185106, 46.00136506776555], [25.571397044426718, 46.00312210000531], [25.582933178374645, 46.02621452372786], [25.560977310538263, 46.03876475401185], [25.55241824341561, 46.05282101192993], [25.528601708813433, 46.05156598890153], [25.50627370762389, 46.045541878365206], [25.483573573081195, 46.059849140888964], [25.456779971653745, 46.06988932511616], [25.452686504768998, 46.1042769560943], [25.467943972248516, 46.10603398833406], [25.479480106196444, 46.12410631994302], [25.479852239549604, 46.144437693003084], [25.496970373794916, 46.14820276208829], [25.51036717450864, 46.16200801540068], [25.507762241036527, 46.18560244833459], [25.5624658439509, 46.21748003325594], [25.576606911370945, 46.21321295495938], [25.604144779504708, 46.24182748000689], [25.63242691434479, 46.24458853066937], [25.675966516664396, 46.262911866884], [25.68154851696178, 46.27194803268848], [25.701643718032365, 46.276968124802075], [25.727320919400338, 46.274960087956636], [25.735879986522995, 46.263664880701036], [25.728065186106654, 46.25236967344544], [25.746671853764603, 46.23831341552737], [25.770116255013622, 46.21070290890258], [25.795049189675275, 46.19037153584251], [25.789467189377888, 46.180080347009635], [25.805468923563726, 46.17229920423355], [25.828169058106425, 46.14770075287693], [25.83821665864172, 46.142931665369005], [25.84826425917701, 46.12511033836574], [25.859428259771782, 46.11958823704078], [25.879523460842368, 46.1243573245487], [25.90408426215086, 46.12285129691462], [25.92269092980881, 46.13088344429637], [25.94874026452994, 46.12987942587365], [25.984092933080046, 46.13414650417021], [26.020562001689626, 46.128122393633895], [26.039912936053895, 46.15146582196213], [26.058519603711844, 46.15999997855524], [26.08605747184561, 46.15874495552684], [26.10057067261881, 46.1655220798802], [26.11954947362992, 46.16276102921772], [26.140388941406826, 46.171546190416514], [26.174253076544293, 46.1605019877666], [26.1787186767822, 46.17832331476988], [26.210350011800713, 46.180582356220995], [26.220769745689168, 46.20618482600034], [26.253145347413998, 46.2104519042969], [26.262448681242976, 46.21572300101618], [26.256866680945592, 46.22726921287745], [26.26468148136193, 46.24709857672617]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"D\\u00e2mbovi\\u021ba\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[25.453058638122155, 45.44112278788802], [25.47427023925222, 45.42631351615291], [25.471665305780107, 45.41075123060075], [25.48580637320015, 45.39543994965428], [25.472781705839584, 45.36707642921245], [25.469432505661153, 45.34724706536374], [25.47427023925222, 45.32842171993775], [25.48915557337858, 45.31486747123103], [25.504413040858097, 45.31813053110487], [25.551301843356132, 45.27947582183017], [25.55576744359404, 45.270690660631374], [25.52636890869448, 45.24433517703498], [25.519670508337615, 45.232286955962344], [25.524136108575526, 45.21873270725563], [25.535672242523454, 45.215971656593155], [25.54088210946768, 45.20392343552052], [25.536044375876614, 45.188361149968365], [25.55911664377247, 45.1928792328706], [25.56655931083565, 45.172045850599176], [25.5996791792668, 45.147698403848224], [25.594841445675733, 45.14368233015735], [25.62572851398793, 45.106784653122396], [25.64135811482061, 45.092226385992966], [25.672989449839122, 45.08394323400553], [25.688246917318644, 45.0593447826489], [25.70276011809184, 45.0455395293365], [25.703132251445002, 45.03524834050363], [25.688246917318644, 45.02947523457299], [25.677082916723872, 45.00989687532996], [25.68526985049337, 44.97902330883133], [25.679687850195986, 44.96421403709622], [25.689363317378117, 44.94764773312134], [25.71169131856766, 44.94162362258503], [25.747043987117763, 44.942627641007746], [25.78909505602473, 44.95316983444631], [25.80360825679793, 44.92129224952495], [25.812539457273747, 44.92279827715904], [25.824447724574835, 44.903470922521684], [25.809190257095317, 44.89167370605473], [25.81514439074586, 44.874856397474176], [25.80435252350425, 44.86782826851514], [25.80360825679793, 44.85251698756866], [25.775698255311006, 44.83720570662219], [25.77830318878312, 44.82515748554955], [25.802119723385296, 44.821392416464356], [25.843426525585944, 44.81034821381444], [25.84528719235174, 44.823149448704115], [25.85607905959335, 44.83067958687452], [25.8746857272513, 44.82616150397227], [25.887710394611865, 44.807085153940605], [25.906689195622974, 44.795789946685005], [25.91934172963038, 44.782235697978294], [25.9264122633404, 44.76290834334094], [25.94129759746676, 44.75763724662166], [25.935715597169377, 44.74759706239447], [25.909666262448248, 44.73429381829344], [25.91934172963038, 44.713460436022004], [25.927900796753036, 44.70919335772545], [25.93683199722885, 44.69287805835625], [25.959532131771553, 44.69589011362441], [25.95283373141469, 44.71672349589584], [25.97032399901316, 44.7209905741924], [25.976278132663708, 44.700157191920965], [25.991163466790066, 44.69137203072217], [25.95990426512471, 44.684092897157456], [25.973301065838434, 44.67555874056434], [25.967719065541047, 44.658741431983785], [25.94390253093887, 44.657988418166745], [25.940553330760444, 44.64619120169979], [25.968835465600527, 44.632385948387395], [25.984092933080046, 44.62887188390788], [25.99339626690902, 44.61230557993301], [25.958415731712073, 44.588209137787736], [25.931249996931466, 44.57189383841854], [25.906689195622974, 44.563610686431105], [25.888454661318182, 44.58093000422302], [25.87766279407657, 44.56586972788222], [25.892175994849772, 44.54152228113127], [25.876546394017094, 44.534243147566556], [25.854962659533875, 44.53926323968015], [25.847519992470694, 44.5274660232132], [25.833378925050653, 44.54152228113127], [25.81179519056743, 44.549052419301674], [25.790583589437368, 44.53047807848136], [25.765650654775712, 44.536000179806315], [25.731414386285085, 44.536753193623355], [25.723599585868747, 44.545538354822156], [25.709458518448706, 44.54478534100512], [25.683781317080733, 44.52344994952232], [25.672245183132805, 44.53223511072112], [25.637264647935858, 44.549554428513034], [25.61828584692475, 44.55106045614711], [25.602284112738914, 44.52897205084728], [25.565070777423013, 44.53173310150976], [25.54050997611452, 44.53926323968015], [25.51743770821866, 44.519433875831446], [25.50031957397335, 44.51767684359169], [25.482829306374875, 44.49910250277137], [25.501435974032823, 44.48805830012146], [25.49957530726703, 44.466220899427306], [25.481712906315398, 44.452164641509235], [25.4299863702263, 44.47400204220338], [25.45119797135636, 44.49157236460098], [25.44040610411475, 44.50161254882817], [25.39649436844199, 44.51842985740873], [25.37044503372086, 44.49759647513729], [25.359281033126088, 44.47977514813402], [25.367840100248745, 44.47450405141474], [25.357420366360294, 44.45969477967963], [25.342907165587093, 44.46496587639891], [25.323928364575984, 44.44689354478995], [25.323556231222824, 44.440869434253635], [25.29899542991433, 44.43057824542076], [25.304949563564875, 44.424303130278766], [25.260293561185794, 44.40924285393797], [25.252106627416296, 44.40372075261301], [25.236477026583618, 44.424554134884445], [25.278900228843746, 44.453419664537634], [25.271457561780565, 44.46270683494779], [25.281877295669016, 44.47525706523178], [25.266991961542658, 44.50688364554745], [25.259177161126317, 44.51215474226672], [25.28150516231586, 44.52821903703024], [25.29899542991433, 44.55658255747207], [25.276667428724792, 44.56762676012198], [25.25508369424157, 44.562606668008385], [25.22196382581042, 44.60201439110013], [25.215265425453556, 44.615066630595486], [25.201496491386674, 44.60778749703077], [25.194425957676653, 44.62008672270908], [25.20633422497774, 44.632887957598754], [25.18102915696293, 44.64970526617931], [25.169865156368157, 44.66200449185762], [25.189588224085586, 44.670789653056424], [25.197775157855084, 44.66677357936554], [25.23908196005573, 44.69513709980737], [25.233872093111508, 44.700659201132325], [25.192565290910856, 44.711452399176565], [25.186983290613473, 44.7159704820788], [25.184006223788202, 44.737556878167275], [25.193681690970333, 44.736050850533196], [25.211544091921965, 44.764163366369345], [25.21452115874724, 44.782486702583974], [25.19889155791456, 44.806081135517886], [25.201496491386674, 44.81135223223716], [25.190332490791903, 44.8284205454234], [25.197775157855084, 44.847998904666426], [25.20558995827142, 44.8545250244141], [25.19479809102981, 44.87109132838898], [25.193309557617177, 44.88539859091273], [25.19926369126772, 44.903470922521684], [25.16874875630868, 44.92254727255336], [25.170609423074477, 44.972748193689334], [25.178424223490815, 44.98956550226989], [25.197030891148763, 44.99056952069261], [25.1985194245614, 45.01893304113444], [25.18884395737927, 45.03349130826387], [25.173586489899748, 45.040770441828585], [25.148653555238095, 45.038511400377466], [25.150142088650732, 45.052065649084184], [25.126697687401716, 45.065870902396576], [25.143815821647028, 45.08444524321689], [25.170609423074477, 45.08068017413169], [25.18065702360977, 45.09046935375321], [25.178052090137655, 45.107537666939436], [25.159445422479706, 45.118832874195036], [25.14828142188494, 45.13163410908471], [25.1549798222418, 45.15723657886406], [25.153863422182322, 45.189616172996764], [25.14790928853178, 45.19890334340692], [25.166515956189727, 45.2079395092114], [25.18102915696293, 45.19564028353308], [25.196658757795607, 45.172045850599176], [25.20893915844985, 45.163511694006054], [25.230522892933074, 45.16752776769693], [25.256572227654203, 45.18334105785477], [25.249129560591026, 45.21120256908524], [25.271085428427405, 45.213712615142036], [25.29527409638274, 45.232286955962344], [25.286715029260083, 45.240821112555466], [25.282621562375333, 45.27144367444841], [25.30681023033067, 45.29252806132552], [25.304949563564875, 45.29880317646752], [25.31760209757228, 45.32289961861279], [25.311275830568576, 45.336202862713826], [25.326161164694938, 45.34549003312398], [25.326905431401254, 45.35628323116821], [25.318346364278597, 45.37008848448061], [25.323184097869664, 45.381383691736204], [25.36337450001084, 45.391925885174764], [25.40356490215201, 45.38690579306116], [25.41026330250887, 45.391172871357725], [25.411751835921507, 45.42681552536427], [25.42552076998839, 45.43610269577442], [25.453058638122155, 45.44112278788802]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Dolj\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[23.782552015791417, 44.713711440627684], [23.787017616029324, 44.69363107217329], [23.782179882438257, 44.68911298927105], [23.792599616326708, 44.669534630028025], [23.78850614944196, 44.66325951488602], [23.789622549501438, 44.63765704510667], [23.81827681769468, 44.64794823393955], [23.82944081828945, 44.63640202207827], [23.84395401906265, 44.6386610635294], [23.861072153307965, 44.62560882403404], [23.87744602084696, 44.630628916147636], [23.900890422095976, 44.62585982863972], [23.883028021144344, 44.614815625989806], [23.899401888683343, 44.57515689829238], [23.912426556043904, 44.57892196737758], [23.92321842328552, 44.563359681825425], [23.92991682364238, 44.53047807848136], [23.891959221620162, 44.508389673181526], [23.905728155687044, 44.49935350737705], [23.890098554854365, 44.48479524024762], [23.865537753545873, 44.469734963906824], [23.87335255396221, 44.46371085337051], [23.899029755330183, 44.45793774743987], [23.89605268850491, 44.44614053097291], [23.883772287850665, 44.4338413052946], [23.883400154497505, 44.423550116461726], [23.900890422095976, 44.425307148701485], [23.952989091538235, 44.41652198750268], [23.97010722578355, 44.41074888157205], [23.9596874918951, 44.38188335191886], [23.979410559612525, 44.38037732428478], [23.98610895996939, 44.373349195325744], [24.016623894928426, 44.37736526901662], [24.046766696534306, 44.36858010781783], [24.043789629709032, 44.35000576699751], [24.070955364489638, 44.33318845841696], [24.09291123232602, 44.29955384125586], [24.110029366571332, 44.301059868889936], [24.113378566749766, 44.26717424712315], [24.14798696859355, 44.26391118724931], [24.151336168771984, 44.25638104907891], [24.175524836727316, 44.251611961570994], [24.17105923648941, 44.235296662201804], [24.20790043845215, 44.235798671413164], [24.213854572102694, 44.21898136283261], [24.23097270634801, 44.21496528914173], [24.213854572102694, 44.17405153841591], [24.236182573292233, 44.17129048775343], [24.213854572102694, 44.110296368573216], [24.272279508548657, 44.10853933633346], [24.272651641901817, 44.08946298630178], [24.201946304801606, 44.0917220277529], [24.191154437559995, 44.06938261784739], [24.175524836727316, 44.006631466427415], [24.212738172043217, 44.004874434187656], [24.266325374898113, 43.99910132825702], [24.261487641307045, 43.97425187229471], [24.253300707537548, 43.95743456371416], [24.23394977317328, 43.961701642010716], [24.225018572697465, 43.94162127355632], [24.249579374005958, 43.93057707090641], [24.228739906229055, 43.885396241884024], [24.235810439939076, 43.883639209644265], [24.22613497275694, 43.86380984579556], [24.228367772875895, 43.85176162472292], [24.20082990474213, 43.8582877444706], [24.203062704861082, 43.84724354182068], [24.193759371032108, 43.827414177971974], [24.193759371032108, 43.8108478739971], [24.177757636846273, 43.80909084175734], [24.156918169069368, 43.814361938476615], [24.136822967998782, 43.774954215384874], [24.130496700995078, 43.774954215384874], [24.114122833456083, 43.69990383828659], [24.088073498734953, 43.702413884343386], [24.06239629736698, 43.719231192923935], [24.021089495166333, 43.729522381756816], [23.968246559017757, 43.744833662703286], [23.928056156876583, 43.745335671914646], [23.874841087374847, 43.7533678192964], [23.832790018467882, 43.76616905418608], [23.811950550690977, 43.77595823380759], [23.783296282497734, 43.77997430749847], [23.76655028160558, 43.786249422640466], [23.75129281412606, 43.801560703586944], [23.70217121150907, 43.80432175424942], [23.67761041020058, 43.8020627127983], [23.6329544078215, 43.79177152396542], [23.613975606810392, 43.79177152396542], [23.582344271791875, 43.797293625290386], [23.545503069829135, 43.8121028970255], [23.51684880163589, 43.83143025166285], [23.46586653225311, 43.840466417467326], [23.437584397413026, 43.85050660169452], [23.41674492963612, 43.85301664775132], [23.375065994082313, 43.84799655563772], [23.337852658766415, 43.85025559708884], [23.269380121785158, 43.84724354182068], [23.24035372023876, 43.83745436219917], [23.230306119703464, 43.83770536680485], [23.176718916848568, 43.82139006743565], [23.132435047822646, 43.80557677727782], [23.055403443718735, 43.79603860226199], [23.030470509057082, 43.80407074964374], [22.98693090673748, 43.80984385557438], [22.976883306202186, 43.80883983715166], [22.93557650400154, 43.823900113492456], [22.896502501919844, 43.82917121021173], [22.868220367079758, 43.83870938522757], [22.844031699124425, 43.86406085040124], [22.839938232239675, 43.88715327412379], [22.86375476684185, 43.92430195576441], [22.861894100076057, 43.93409113538593], [22.869708900492395, 43.94789638869832], [22.880128634380846, 43.98178201046511], [22.893153301741414, 43.992073199297984], [22.93036663705731, 44.00161137431382], [22.971301305904802, 44.00889050787853], [22.980232506380617, 44.006631466427415], [23.00553757439543, 44.01140055393533], [23.034191842588672, 44.0380070421374], [23.047216509949237, 44.058338415197476], [23.03865744282658, 44.07992481128595], [23.026004908819175, 44.08971399090746], [22.99325717374118, 44.0979971428949], [22.967952105726372, 44.09875015671194], [22.985442373324844, 44.12510564030833], [23.006281841101746, 44.139914912043444], [23.006653974454906, 44.15848925286375], [23.087034778737248, 44.15723422983535], [23.098943046038336, 44.1466920363968], [23.111595580045744, 44.150457105482], [23.11941038046208, 44.18986482857374], [23.096710245919382, 44.19965400819525], [23.113828380164698, 44.21772633980421], [23.095593845859906, 44.222997436523485], [23.099315179391496, 44.24081876352676], [23.09075611226884, 44.24332880958356], [23.095593845859906, 44.262907168826594], [23.110107046633107, 44.27194333463107], [23.132435047822646, 44.31612014523073], [23.177835316908045, 44.32490530642953], [23.19495345115336, 44.35301782226567], [23.19085998426861, 44.36155197885879], [23.207978118513925, 44.36782709400079], [23.22472411940608, 44.38364038415862], [23.250029187420893, 44.385397416398376], [23.199419051391267, 44.413760936840205], [23.206861718454448, 44.43660235595708], [23.19793051797863, 44.452917655326274], [23.20127971815706, 44.468228936272745], [23.237376653413484, 44.47475505602042], [23.248540654008256, 44.4825361987965], [23.245563587182982, 44.495337433686174], [23.28091625573309, 44.50186355343385], [23.285381855970996, 44.51591981135193], [23.267147321666204, 44.53022707387568], [23.289103189502587, 44.53876123046879], [23.319245991108463, 44.54001625349719], [23.338224792119572, 44.52420296333936], [23.36092492666227, 44.54302830876535], [23.37990372767338, 44.54302830876535], [23.405580929041353, 44.5337411383552], [23.430885997056162, 44.534494152172236], [23.445399197829364, 44.55131146075279], [23.45358613159886, 44.55281748838687], [23.456563198424135, 44.5698858015731], [23.46586653225311, 44.57641192132078], [23.5068012011006, 44.58268703646278], [23.516104534929575, 44.60176338649445], [23.557039203777062, 44.607034483213724], [23.590531205561373, 44.615317635201166], [23.60243947286246, 44.605528455579645], [23.60616080639405, 44.59473525753541], [23.62513960740516, 44.588962151604775], [23.640397074884678, 44.59573927595813], [23.69882201133064, 44.60251640031149], [23.712218812044366, 44.60778749703077], [23.72152214587334, 44.62761686087948], [23.71073027863173, 44.64594019709411], [23.709986011925412, 44.657988418166745], [23.724127079345454, 44.682837874129056], [23.7218942792265, 44.70241623337209], [23.71407947881016, 44.71496646365608], [23.720777879167024, 44.728520712362794], [23.747199347241313, 44.71647249129016], [23.782552015791417, 44.713711440627684]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Gala\\u021bi\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[28.117533446740577, 46.1080420251795], [28.09036771195997, 46.0693873159048], [28.1019038459079, 46.06486923300256], [28.106369446145806, 46.05282101192993], [28.092600512078924, 46.03625470795505], [28.087390645134697, 46.0093972151473], [28.09781037902315, 45.99810200789171], [28.119394113506374, 45.94539104069893], [28.115672779974783, 45.936856884105815], [28.12683678056955, 45.92129459855366], [28.114556379915307, 45.89970820246519], [28.121999046978488, 45.883894912307355], [28.133535180926415, 45.87611376953128], [28.12051051356585, 45.86356353924729], [28.115672779974783, 45.84950728132921], [28.11306784650267, 45.814868645745385], [28.122743313684804, 45.80658549375795], [28.121999046978488, 45.79127421281147], [28.136884381104846, 45.7784729779218], [28.155491048762794, 45.78274005621836], [28.145071314874343, 45.760651650918525], [28.152513981937524, 45.744587356155016], [28.167771449417042, 45.73705721798461], [28.162561582472815, 45.72500899691198], [28.171864916301793, 45.70844269293711], [28.16218944911966, 45.70292059161215], [28.172981316361266, 45.67957716328392], [28.163677982532292, 45.66075181785793], [28.17558624983338, 45.6461935507285], [28.158095982234908, 45.63690638031834], [28.14655984828698, 45.622599117794586], [28.120882646919007, 45.62711720069682], [28.091111978666287, 45.61029989211627], [28.0937169121384, 45.598753680254994], [28.113439979855826, 45.58720746839372], [28.122371180331644, 45.572649201264284], [28.14209424804907, 45.5761632657438], [28.14581558158066, 45.56712709993933], [28.166655049357566, 45.546042713062214], [28.163677982532292, 45.5337434873839], [28.173353449714426, 45.501363893251195], [28.189355183900265, 45.473502382020726], [28.234383319632503, 45.46346219779353], [28.21689305203403, 45.461705165553774], [28.197542117669762, 45.45216699053793], [28.194192917491332, 45.41702634574275], [28.18340105024972, 45.41351228126323], [28.13241878086694, 45.4376087234085], [28.10897437961792, 45.44162479709938], [28.07659877789309, 45.435098677351704], [28.040501842636665, 45.41602232732003], [28.031942775514008, 45.404476115458756], [27.987658906488086, 45.39092186675204], [27.95714397152905, 45.40322109243036], [27.9158371693284, 45.408492189149634], [27.88569436772252, 45.420791414827946], [27.8641106332393, 45.39694597728836], [27.84215476540292, 45.4002090371622], [27.816849697388108, 45.39468693583724], [27.809779163678087, 45.40372310164172], [27.786706895782228, 45.407488170726914], [27.783729828956957, 45.42254844706771], [27.7524706272916, 45.41752835495411], [27.744655826875263, 45.447397903030016], [27.706698224853042, 45.43585169116874], [27.674694756481372, 45.446393884607296], [27.69367355749248, 45.47199635438665], [27.688463690548254, 45.4825385478252], [27.662042222473964, 45.47274936820369], [27.64604048828813, 45.47827146952864], [27.647529021700763, 45.46245817937081], [27.628550220689654, 45.45568105501746], [27.625573153864384, 45.46647425306169], [27.601384485909048, 45.48429558006496], [27.581661418191622, 45.49107270441832], [27.5600776837084, 45.48856265836152], [27.54444808287572, 45.499606861011436], [27.54147101605045, 45.51215709129543], [27.52621354857093, 45.51968722946583], [27.52993488210252, 45.541775634765656], [27.52584141521777, 45.553572851232616], [27.505746214147187, 45.56336203085413], [27.511700347797728, 45.57691627956084], [27.532539815574633, 45.57917532101196], [27.51951514821407, 45.59222756050732], [27.515421681329318, 45.61883404870939], [27.5001642138498, 45.63565135728994], [27.48490674637028, 45.640922454009214], [27.471509945656557, 45.63690638031834], [27.45625247817704, 45.65472770732161], [27.449181944467018, 45.677569126438485], [27.42685394327748, 45.66928597445104], [27.4112243424448, 45.678071135649844], [27.40415380873478, 45.68886433369408], [27.364707673299925, 45.72576201072902], [27.353543672705158, 45.75111347590269], [27.358381406296225, 45.75563155880493], [27.340146871991433, 45.78399507924676], [27.320795937627164, 45.80583247994091], [27.306282736853962, 45.842479152370174], [27.291769536080764, 45.86030047937344], [27.28172193554547, 45.857037419499605], [27.272418601716495, 45.87410573268584], [27.250090600526953, 45.87285070965744], [27.253811934058543, 45.882639889278956], [27.286187535783377, 45.88690696757551], [27.276139935248082, 45.89820217483111], [27.26274313453436, 45.92305163079342], [27.250834867233273, 45.935099851866056], [27.238926599932185, 45.95618423874316], [27.234460999694278, 45.989316846692915], [27.227762599337414, 46.00287109539963], [27.235205266400595, 46.02219845003698], [27.234833133047434, 46.04202781388569], [27.270185801597542, 46.04177680928001], [27.28097766883915, 46.059598136283284], [27.283210468958103, 46.075411426441114], [27.297723669731305, 46.084698596851275], [27.32265660439296, 46.085702615273995], [27.323773004452434, 46.07942750013199], [27.369917540244153, 46.07892549092063], [27.37103394030363, 46.086957638302394], [27.395966874965282, 46.086455629091034], [27.43020314345591, 46.09298174883871], [27.424249009805365, 46.11155608965902], [27.42983101010275, 46.11632517716694], [27.419783409567458, 46.13088344429637], [27.427970343336955, 46.13941760088949], [27.449926211173334, 46.126867370605495], [27.482673946251328, 46.126114356788456], [27.4856510130766, 46.13991961010085], [27.504629814087707, 46.13966860549517], [27.52621354857093, 46.11481914953286], [27.53700541581254, 46.09473878107847], [27.51877088150775, 46.085702615273995], [27.53365621563411, 46.06737927905936], [27.516910214741955, 46.056586081015126], [27.529190615396203, 46.04403585073113], [27.54407594952256, 46.019437399374496], [27.56379901723999, 46.006887169090504], [27.588359818548483, 46.00789118751322], [27.605850086146955, 46.01968840398018], [27.597291019024297, 46.02797155596762], [27.601384485909048, 46.05633507640945], [27.628922354042814, 46.06160617312872], [27.61254848650382, 46.07691745407519], [27.60771075291275, 46.09147572120463], [27.58947621860796, 46.11155608965902], [27.595430352258504, 46.126365361394136], [27.5827778182511, 46.14468869760877], [27.59282541878639, 46.15046180353941], [27.6118042197975, 46.13640554562133], [27.65199462193867, 46.14067262391789], [27.673206223068735, 46.13314248574749], [27.681393156838233, 46.13816257786109], [27.71265235850359, 46.129377416662294], [27.76400676123953, 46.128122393633895], [27.76512316129901, 46.1155721633499], [27.781497028838004, 46.11130508505334], [27.784474095663274, 46.09524079028983], [27.816849697388108, 46.10502996991134], [27.809407030324927, 46.111807094264705], [27.846992498993984, 46.126616365999816], [27.847736765700304, 46.15874495552684], [27.87080903359616, 46.16150600618932], [27.873413967068274, 46.14569271603149], [27.886810767782, 46.14569271603149], [27.91211583579681, 46.153975868018925], [27.92774543662949, 46.152720844990526], [27.941142237343215, 46.13540152719861], [27.96495877194539, 46.141425637734926], [27.97463423912752, 46.12159627388622], [27.985798239722293, 46.11080307584198], [28.010731174383945, 46.1155721633499], [28.010359041030785, 46.10528097451702], [28.04273464275562, 46.1067870021511], [28.077343044599406, 46.11783120480102], [28.10599731279265, 46.11707819098398], [28.117533446740577, 46.1080420251795]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Giurgiu\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[25.892175994849772, 44.54152228113127], [25.922318796455652, 44.51667282516897], [25.897385861794, 44.48605026327602], [25.91450399603931, 44.4737510375977], [25.901851462031907, 44.453419664537634], [25.88138412760816, 44.46220482573643], [25.87096439371971, 44.45969477967963], [25.86687092683496, 44.44363048491611], [25.84863639253017, 44.43158226384348], [25.87059226036655, 44.41928303816516], [25.82519199128115, 44.398700660499415], [25.83002972487222, 44.39066851311766], [25.8601725264781, 44.386652439426776], [25.858683993065462, 44.37736526901662], [25.869475860307073, 44.36958412624055], [25.87059226036655, 44.357284900562234], [25.887710394611865, 44.358288918984954], [25.909294129095088, 44.333941472234], [25.938692663994647, 44.33594950907944], [25.95618293159312, 44.328921380120406], [25.95320586476785, 44.317124163653446], [25.984465066433202, 44.320387223527284], [25.99637333373429, 44.31612014523073], [26.003071734091154, 44.29955384125586], [26.044378536291802, 44.28047749122418], [26.061496670537117, 44.26667223791179], [26.088662405317724, 44.26767625633451], [26.0897788053772, 44.25763607210731], [26.110618273154103, 44.2465918694574], [26.127364274046258, 44.24433282800628], [26.150808675295277, 44.233790634567725], [26.177602276722723, 44.247846892485796], [26.191743344142765, 44.24182278194948], [26.196953211086992, 44.25688305829027], [26.214815612038624, 44.263158173432274], [26.250912547295044, 44.2952867629593], [26.2613322811835, 44.29503575835362], [26.284404549079355, 44.277214431350345], [26.30524401685626, 44.25613004447323], [26.32012935098262, 44.25864009053003], [26.34245735217216, 44.24232479116084], [26.36143615318327, 44.24232479116084], [26.362552553242747, 44.223499445734845], [26.4019986886776, 44.224252459551884], [26.40162655532444, 44.1840917226431], [26.415023356038162, 44.17631057986703], [26.428420156751887, 44.15748523444103], [26.429908690164524, 44.14568801797408], [26.418372556216596, 44.12535664491401], [26.381531354253855, 44.11983454358905], [26.359947619770633, 44.10828833172778], [26.381531354253855, 44.043278138856685], [26.306360416915737, 44.02696283948749], [26.281055348900924, 44.0119025631467], [26.25426174747348, 44.00211338352518], [26.1932318775554, 43.98353904270487], [26.14857587517632, 43.98454306112759], [26.113223206626216, 43.97249484005495], [26.044378536291802, 43.90120953204186], [26.001211067325357, 43.885647246489704], [25.9781387994295, 43.870335965543234], [25.94129759746676, 43.8520126293286], [25.920085996336695, 43.82866920100037], [25.915992529451948, 43.81862901677317], [25.89366452826241, 43.800305680558544], [25.88584972784607, 43.78373937658367], [25.85645119294651, 43.76114896207248], [25.82519199128115, 43.75010475942256], [25.802863990091613, 43.73705251992721], [25.7939327896158, 43.720737220558014], [25.78165238896155, 43.71069703633082], [25.735507853169835, 43.692875709327545], [25.673361583192282, 43.691620686299146], [25.678943583489666, 43.72199224358641], [25.664058249363308, 43.719231192923935], [25.661453315891194, 43.746339690337365], [25.65252211541538, 43.75010475942256], [25.669268116307535, 43.773448187750795], [25.661825449244354, 43.77897028907575], [25.661081182538034, 43.82063705361861], [25.631310514285317, 43.82088805822429], [25.630938380932157, 43.84473349576388], [25.60823824638946, 43.84473349576388], [25.608610379742615, 43.87811710831931], [25.616053046805796, 43.882384186615866], [25.616053046805796, 43.90422158731002], [25.58591024519992, 43.9069826379725], [25.586654511906236, 43.938107209076804], [25.61940224698423, 43.937856204471124], [25.619774380337386, 43.95643054529144], [25.59298077890994, 43.98479406573327], [25.605261179564184, 43.991069180875265], [25.595585712382054, 44.01391059999214], [25.600795579326277, 44.0380070421374], [25.60823824638946, 44.04629019412484], [25.630194114225837, 44.05156129084412], [25.617169446865272, 44.06511553955083], [25.62647278069425, 44.086199926427945], [25.647684381824313, 44.09498508762674], [25.640613848114292, 44.101009198163055], [25.660336915831717, 44.114563446869774], [25.706481451623432, 44.1092923501505], [25.70834211838923, 44.13564783374688], [25.680432116902303, 44.126862672548086], [25.678943583489666, 44.15773623904671], [25.691596117497074, 44.153720165355836], [25.70462078485764, 44.16074829431487], [25.656987715653287, 44.16903144630231], [25.667779582894898, 44.20015601740662], [25.668151716248055, 44.21195323387357], [25.68154851696178, 44.223750450340525], [25.686386250552847, 44.23956374049836], [25.697178117794458, 44.249854929331235], [25.68601411719969, 44.262154155009554], [25.669268116307535, 44.27043730699699], [25.67112878307333, 44.292776716902495], [25.657731982359604, 44.29729479980474], [25.65214998206222, 44.274955389899226], [25.61940224698423, 44.291772698479775], [25.63317118105111, 44.30708397942625], [25.623123580515816, 44.31586914062505], [25.604889046211028, 44.320638228132964], [25.59632997908837, 44.31110005311713], [25.572513444486194, 44.30859000706033], [25.55279037676877, 44.318881195893205], [25.511483574568118, 44.31436311299097], [25.469432505661153, 44.32565832024657], [25.478363706136967, 44.35377083608271], [25.472781705839584, 44.373600199931424], [25.45119797135636, 44.37836928743934], [25.450081571296884, 44.387405453243815], [25.427009303401025, 44.396943628259656], [25.430358503579455, 44.40422276182437], [25.451942238062678, 44.42003605198221], [25.460873438538496, 44.42154207961629], [25.481712906315398, 44.452164641509235], [25.49957530726703, 44.466220899427306], [25.501435974032823, 44.48805830012146], [25.482829306374875, 44.49910250277137], [25.50031957397335, 44.51767684359169], [25.51743770821866, 44.519433875831446], [25.54050997611452, 44.53926323968015], [25.565070777423013, 44.53173310150976], [25.602284112738914, 44.52897205084728], [25.61828584692475, 44.55106045614711], [25.637264647935858, 44.549554428513034], [25.672245183132805, 44.53223511072112], [25.683781317080733, 44.52344994952232], [25.709458518448706, 44.54478534100512], [25.723599585868747, 44.545538354822156], [25.731414386285085, 44.536753193623355], [25.765650654775712, 44.536000179806315], [25.790583589437368, 44.53047807848136], [25.81179519056743, 44.549052419301674], [25.833378925050653, 44.54152228113127], [25.847519992470694, 44.5274660232132], [25.854962659533875, 44.53926323968015], [25.876546394017094, 44.534243147566556], [25.892175994849772, 44.54152228113127]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Gorj\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[23.782552015791417, 44.713711440627684], [23.747199347241313, 44.71647249129016], [23.720777879167024, 44.728520712362794], [23.71407947881016, 44.71496646365608], [23.7218942792265, 44.70241623337209], [23.724127079345454, 44.682837874129056], [23.709986011925412, 44.657988418166745], [23.71073027863173, 44.64594019709411], [23.72152214587334, 44.62761686087948], [23.712218812044366, 44.60778749703077], [23.69882201133064, 44.60251640031149], [23.640397074884678, 44.59573927595813], [23.62513960740516, 44.588962151604775], [23.60616080639405, 44.59473525753541], [23.60243947286246, 44.605528455579645], [23.590531205561373, 44.615317635201166], [23.557039203777062, 44.607034483213724], [23.516104534929575, 44.60176338649445], [23.5068012011006, 44.58268703646278], [23.46586653225311, 44.57641192132078], [23.456563198424135, 44.5698858015731], [23.41711706298928, 44.57892196737758], [23.404464528981876, 44.590970188450214], [23.41376786281085, 44.61105055690461], [23.373949594022836, 44.62711485166812], [23.344551059123276, 44.63414298062715], [23.32110665787426, 44.64819923854523], [23.318501724402147, 44.6610004734349], [23.29505732315313, 44.671040657662104], [23.27645065549518, 44.66903262081666], [23.23886518682612, 44.671542666873464], [23.20835025186708, 44.67957481425522], [23.188999317502816, 44.68007682346658], [23.195325584506516, 44.69413308138465], [23.174113983376454, 44.69087002151081], [23.14211051500478, 44.69061901690513], [23.11606118028365, 44.687104952425614], [23.106385713101517, 44.69438408599033], [23.091128245622, 44.69563910901873], [23.078103578261434, 44.70718532088001], [23.063962510841392, 44.712205412993605], [23.066939577666663, 44.727265689334395], [23.052426376893465, 44.729273726179834], [23.00888677457386, 44.74358098870359], [22.996234240566455, 44.76240633412958], [22.9940014404475, 44.781231679555574], [22.961997972075828, 44.795287937473645], [22.954183171659487, 44.78374172561237], [22.94301917106472, 44.78349072100669], [22.933343703882585, 44.79855099734749], [22.93520437064838, 44.81511730132236], [22.91287636945884, 44.823651457915474], [22.898363168685638, 44.84247680334147], [22.893153301741414, 44.86782826851514], [22.89724676862616, 44.88489658170137], [22.891292634975617, 44.90522795476144], [22.87268596731767, 44.94764773312134], [22.891664768328777, 44.97400321671773], [22.897991035332478, 44.98956550226989], [22.893153301741414, 44.996342626623246], [22.85370716630656, 44.99232655293237], [22.85742849983815, 45.00286874637092], [22.83844969882704, 45.01115189835836], [22.833239831882814, 45.023953133248035], [22.818354497756452, 45.03625235892635], [22.769977161845784, 45.050559621450105], [22.749137694068878, 45.067376930030655], [22.747649160656245, 45.08268821097713], [22.705970225102437, 45.06913396227041], [22.699271824745573, 45.08846131690777], [22.68550289067869, 45.10653364851672], [22.67136182325865, 45.1030195840372], [22.657965022544925, 45.108039676150796], [22.650894488834904, 45.12812004460519], [22.64159115500593, 45.12812004460519], [22.606610619808983, 45.13816022883238], [22.58242195185365, 45.13841123343806], [22.561954617429905, 45.15648356504702], [22.5783284849689, 45.18309005324909], [22.601772886217915, 45.2054294631546], [22.628194354292205, 45.2091945322398], [22.65163875554122, 45.22475681779195], [22.650522355481748, 45.2340439882021], [22.666524089667583, 45.23630302965323], [22.683642223912898, 45.25061029217698], [22.710435825340344, 45.258642439558734], [22.72755395958566, 45.25437536126218], [22.74467209383097, 45.26592157312345], [22.772954228671054, 45.270439656025694], [22.792305163035323, 45.269184632997295], [22.817610231050136, 45.27269869747681], [22.83100703176386, 45.285248927760804], [22.845148099183902, 45.27897381261881], [22.866731833667124, 45.26190549943257], [22.898735302038798, 45.27495773892793], [22.93446010394206, 45.27897381261881], [22.965719305607415, 45.270690660631374], [22.969440639139005, 45.258140430347375], [22.985814506678004, 45.25437536126218], [22.994373573800658, 45.25989746258713], [23.0167015749902, 45.25462636586786], [23.05763624383769, 45.266674586940496], [23.072893711317207, 45.27746778498473], [23.088895445503045, 45.27495773892793], [23.09410531244727, 45.29102203369144], [23.114200513517858, 45.28926500145168], [23.158484382543776, 45.27520874353361], [23.188255050796496, 45.285750936972164], [23.20872238522024, 45.27771878959041], [23.226584786171873, 45.29980719489024], [23.248168520655096, 45.30758833766632], [23.278311322260976, 45.3065843192436], [23.29133598962154, 45.310098383723115], [23.31031479063265, 45.30056020870728], [23.335247725294302, 45.31562048504807], [23.33152639176271, 45.32214660479575], [23.348272392654867, 45.336955876530865], [23.38027586102654, 45.338210899559265], [23.405580929041353, 45.33293980283999], [23.43609586400039, 45.31536948044239], [23.461028798662042, 45.31712651268215], [23.490427333561602, 45.31511847583671], [23.531362002409093, 45.33344181205135], [23.552945736892315, 45.339465922587664], [23.567458937665517, 45.34950610681486], [23.59201973897401, 45.353271175900055], [23.60281160621562, 45.34323099167286], [23.630721607702544, 45.335449848896786], [23.641141341591, 45.34875309299782], [23.652677475538926, 45.34975711142054], [23.670539876490558, 45.34172496403878], [23.68840227744219, 45.327417701515024], [23.711846678691206, 45.33444583047407], [23.7218942792265, 45.32967674296615], [23.760968281308195, 45.337206881136545], [23.778830682259827, 45.3490040976035], [23.794088149739345, 45.35051012523758], [23.816788284282044, 45.34624304694102], [23.827208018170495, 45.335700853502466], [23.8480474859474, 45.327668706120704], [23.845814685828444, 45.31536948044239], [23.827208018170495, 45.30081121331296], [23.797809483270935, 45.26140349022121], [23.819393217754158, 45.20768850460572], [23.84097695223738, 45.19338124208196], [23.853257352891625, 45.16928479993669], [23.856978686423215, 45.15071045911638], [23.849908152713194, 45.14092127949486], [23.82981295164261, 45.135901187381265], [23.814927617516247, 45.12410397091431], [23.82497521805154, 45.11632282813824], [23.818648951047837, 45.10226657022016], [23.83018508499577, 45.08821031230209], [23.83018508499577, 45.07490706820105], [23.78404054920405, 45.06361186094546], [23.79669308321146, 45.023702128642356], [23.7736208153156, 45.0093948661186], [23.7591076145424, 45.00462577861068], [23.76357321478031, 44.96672408315302], [23.77399294866876, 44.94965576996678], [23.766178148252422, 44.92530832321584], [23.771015881843486, 44.90849101463528], [23.76208468136767, 44.89819982580241], [23.768410948371375, 44.87234635141738], [23.781807749085097, 44.862306167190184], [23.787017616029324, 44.84498684939827], [23.783296282497734, 44.83871173425627], [23.797437349917775, 44.8171253381678], [23.77771428220035, 44.79729597431909], [23.772132281902962, 44.778972638104456], [23.782552015791417, 44.7596452834671], [23.778458548906666, 44.732285781448], [23.782552015791417, 44.713711440627684]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Harghita\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[25.663313982656987, 47.091980079444696], [25.67857145013651, 47.08997204259926], [25.716156918805567, 47.07641779389254], [25.736252119876152, 47.07390774783574], [25.750021053943037, 47.04755226423935], [25.77086052171994, 47.03550404316672], [25.77086052171994, 47.01768271616344], [25.79169998949684, 46.997100338497695], [25.793188522909478, 46.98153805294554], [25.80807385703584, 46.96572476278771], [25.821470657749565, 46.9770199700433], [25.840449458760673, 46.96296371212523], [25.84417079229226, 46.943385352882196], [25.85719545965283, 46.92104594297668], [25.802491856738456, 46.92656804430164], [25.803236123444773, 46.916527860074446], [25.766022788128872, 46.88515228436446], [25.782768789021027, 46.862812874458946], [25.76453425471624, 46.846748579695436], [25.78128025560839, 46.834951363228484], [25.789467189377888, 46.850513648780634], [25.806957456976363, 46.84072446915912], [25.795421323028435, 46.833445335594405], [25.838960925348037, 46.81763204543657], [25.824075591221675, 46.80282277370145], [25.809562390448477, 46.80031272764465], [25.81886572427745, 46.77772231313347], [25.814027990686384, 46.76341505060971], [25.817749324217974, 46.74960979729732], [25.803236123444773, 46.74132664530988], [25.80360825679793, 46.7297804334486], [25.788350789318415, 46.72375632291229], [25.795793456381592, 46.70593499590901], [25.810306657154793, 46.702169926823814], [25.834495325110126, 46.68058353073535], [25.862777459950212, 46.659248139252554], [25.867987326894436, 46.65021197344808], [25.9037121287977, 46.64970996423672], [25.910410529154564, 46.656236083984396], [25.902967862091383, 46.67054334650815], [25.888454661318182, 46.683344581397826], [25.892175994849772, 46.69313376101934], [25.909666262448248, 46.701667917612454], [25.97739453272318, 46.69689883010454], [25.979627332842135, 46.68886668272278], [26.00753733432906, 46.66075416688663], [26.00939800109486, 46.63540270171296], [25.992279866849543, 46.616326351681295], [26.00046680061904, 46.6012660753405], [26.0235390685149, 46.588715845056505], [26.034703069109668, 46.57139652726459], [26.03693586922862, 46.54428802985116], [26.051449070001823, 46.53123579035581], [26.07563773795716, 46.52596469363653], [26.084568938432973, 46.51266144953549], [26.07600987131032, 46.484799938305024], [26.061124537183957, 46.494087108715185], [26.021306268395946, 46.492832085686786], [26.018329201570673, 46.47752080474031], [26.005676667563268, 46.44463920139624], [25.98930280002427, 46.439619109282646], [26.00381600079747, 46.42731988360433], [25.998978267206404, 46.42054275925097], [26.021678401749103, 46.40924755199538], [26.035447335815988, 46.41753070398281], [26.06335733730291, 46.412008602657856], [26.06335733730291, 46.40096440000794], [26.111362539860423, 46.40096440000794], [26.166438276127955, 46.385151109850106], [26.165694009421635, 46.3477514236038], [26.150808675295277, 46.32716904593805], [26.157879209005298, 46.3153718294711], [26.1787186767822, 46.31085374656886], [26.210350011800713, 46.31210876959726], [26.22784027939919, 46.318634889344935], [26.237515746581323, 46.33545219792549], [26.272496281778267, 46.345241377547005], [26.29445214961465, 46.33444817950277], [26.285148815785675, 46.32139594000741], [26.280311082194608, 46.29955853931326], [26.27175201507195, 46.28751031824063], [26.255006014179795, 46.277470134013434], [26.255006014179795, 46.267178945180554], [26.26468148136193, 46.24709857672617], [26.256866680945592, 46.22726921287745], [26.262448681242976, 46.21572300101618], [26.253145347413998, 46.2104519042969], [26.220769745689168, 46.20618482600034], [26.210350011800713, 46.180582356220995], [26.1787186767822, 46.17832331476988], [26.174253076544293, 46.1605019877666], [26.140388941406826, 46.171546190416514], [26.11954947362992, 46.16276102921772], [26.10057067261881, 46.1655220798802], [26.08605747184561, 46.15874495552684], [26.058519603711844, 46.15999997855524], [26.039912936053895, 46.15146582196213], [26.020562001689626, 46.128122393633895], [25.984092933080046, 46.13414650417021], [25.94874026452994, 46.12987942587365], [25.92269092980881, 46.13088344429637], [25.90408426215086, 46.12285129691462], [25.879523460842368, 46.1243573245487], [25.859428259771782, 46.11958823704078], [25.84826425917701, 46.12511033836574], [25.83821665864172, 46.142931665369005], [25.828169058106425, 46.14770075287693], [25.805468923563726, 46.17229920423355], [25.789467189377888, 46.180080347009635], [25.795049189675275, 46.19037153584251], [25.770116255013622, 46.21070290890258], [25.746671853764603, 46.23831341552737], [25.728065186106654, 46.25236967344544], [25.735879986522995, 46.263664880701036], [25.727320919400338, 46.274960087956636], [25.701643718032365, 46.276968124802075], [25.68154851696178, 46.27194803268848], [25.675966516664396, 46.262911866884], [25.63242691434479, 46.24458853066937], [25.604144779504708, 46.24182748000689], [25.576606911370945, 46.21321295495938], [25.5624658439509, 46.21748003325594], [25.507762241036527, 46.18560244833459], [25.51036717450864, 46.16200801540068], [25.496970373794916, 46.14820276208829], [25.479852239549604, 46.144437693003084], [25.479480106196444, 46.12410631994302], [25.467943972248516, 46.10603398833406], [25.452686504768998, 46.1042769560943], [25.45603570494743, 46.12034125085782], [25.42663717004787, 46.12285129691462], [25.40654196897728, 46.13289148114181], [25.39649436844199, 46.13013043047933], [25.36597943348295, 46.142178651551966], [25.34700063247184, 46.16627509369724], [25.32913823152021, 46.1780723101642], [25.32169556445703, 46.17380523186763], [25.299367563267488, 46.17757030095284], [25.275178895312155, 46.170291167388115], [25.25136236070998, 46.141676642340606], [25.226801559401487, 46.15121481735645], [25.190332490791903, 46.171797195022194], [25.174702889959224, 46.167530116725636], [25.141955154881234, 46.180582356220995], [25.114417286747468, 46.209698890479864], [25.10213688609322, 46.23279131420241], [25.077948218137887, 46.23279131420241], [25.071249817781023, 46.24534154448641], [25.03924634940935, 46.24032145237281], [25.00649861433136, 46.248604604360246], [24.98751981332025, 46.237560401710326], [24.95774914506753, 46.249608622782965], [24.945096611060123, 46.24308250303529], [24.933560477112195, 46.2541267056852], [24.93244407705272, 46.26993999584303], [24.912721009335293, 46.27947817085887], [24.889648741439434, 46.2990565301019], [24.863599406718304, 46.31135575578022], [24.87104207378148, 46.33997028082773], [24.862483006658827, 46.35553256637988], [24.886671674614163, 46.36406672297299], [24.879229007550983, 46.38138604076491], [24.91011607586318, 46.39092421578074], [24.95030647800435, 46.37485992101723], [24.980821412963387, 46.38490010524443], [24.96109834524596, 46.4039764552761], [24.938026077350102, 46.40874554278402], [24.938026077350102, 46.42255079609641], [24.951422878063827, 46.43409700795769], [24.948445811238557, 46.44363518297352], [24.964819678777552, 46.44740025205872], [24.982309946376024, 46.44438819679056], [24.997567413855542, 46.46321354221656], [25.019523281691924, 46.46421756063928], [25.026593815401945, 46.47877582776871], [25.010592081216107, 46.495342131743584], [24.991985413558158, 46.5001112192515], [25.007242881037676, 46.51241044492981], [25.02398888192983, 46.541275974583], [25.070505551074707, 46.55583424171244], [25.089112218732655, 46.577169633195226], [25.11032381986272, 46.58319374373154], [25.152747022122846, 46.577420637800905], [25.153119155476006, 46.58469977136563], [25.18065702360977, 46.59950904310074], [25.200007957974037, 46.62686854511985], [25.222335959163576, 46.62536251748577], [25.224196625929373, 46.63941877540384], [25.239826226762048, 46.64945895963104], [25.238337693349415, 46.66979033269111], [25.253223027475773, 46.675312434016064], [25.282621562375333, 46.672300378747906], [25.296390496442218, 46.68836467351142], [25.28448222914113, 46.70668800972605], [25.261037827892114, 46.727270387391805], [25.262898494657907, 46.75036281111436], [25.290808496144834, 46.752621852565476], [25.319462764338077, 46.769690165751705], [25.31388076404069, 46.78625646972658], [25.28783142931956, 46.80206975988442], [25.2811330289627, 46.81512199937977], [25.285226495847446, 46.834951363228484], [25.253223027475773, 46.84122647837048], [25.266247694836338, 46.876869132377024], [25.278528095490586, 46.8972005054371], [25.263642761364224, 46.91276279098925], [25.271457561780565, 46.928074071935725], [25.272573961840042, 46.94664841275603], [25.285226495847446, 46.95367654171507], [25.289692096085354, 46.969238827267226], [25.290436362791674, 46.9933352694125], [25.267364094895818, 47.011156596415766], [25.27220182848688, 47.0294799326304], [25.25471156088841, 47.041026144491674], [25.232755693052027, 47.06185952676311], [25.23238355969887, 47.07591578468118], [25.248385293884706, 47.09825519458669], [25.2811330289627, 47.10402830051733], [25.297506896501694, 47.1155745123786], [25.288947829379037, 47.13264282556484], [25.296390496442218, 47.15673926771011], [25.309415163802782, 47.16602643812026], [25.32095129775071, 47.16527342430322], [25.35518756624134, 47.175564613136096], [25.375654900665083, 47.175564613136096], [25.390168101438285, 47.18108671446106], [25.405425568917803, 47.17857666840426], [25.427381436754185, 47.1843497743349], [25.427009303401025, 47.17154853944522], [25.461989838597972, 47.14368702821475], [25.472781705839584, 47.13992195912955], [25.528229575460273, 47.10553432815141], [25.537160775936087, 47.083696927457254], [25.553906776828242, 47.081437886006135], [25.575862644664625, 47.08495195048566], [25.60302837944523, 47.07767281692094], [25.62535638063477, 47.095243139318534], [25.663313982656987, 47.091980079444696]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Hunedoara\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[23.59946240603719, 45.47274936820369], [23.596857472565077, 45.45266899974929], [23.578250804907128, 45.42380347009611], [23.593880405739803, 45.421544428644985], [23.592764005680326, 45.40196606940196], [23.602067339509304, 45.38841182069524], [23.601695206156144, 45.37736761804533], [23.586809872029782, 45.37008848448061], [23.59201973897401, 45.353271175900055], [23.567458937665517, 45.34950610681486], [23.552945736892315, 45.339465922587664], [23.531362002409093, 45.33344181205135], [23.490427333561602, 45.31511847583671], [23.461028798662042, 45.31712651268215], [23.43609586400039, 45.31536948044239], [23.405580929041353, 45.33293980283999], [23.38027586102654, 45.338210899559265], [23.348272392654867, 45.336955876530865], [23.33152639176271, 45.32214660479575], [23.335247725294302, 45.31562048504807], [23.31031479063265, 45.30056020870728], [23.29133598962154, 45.310098383723115], [23.278311322260976, 45.3065843192436], [23.248168520655096, 45.30758833766632], [23.226584786171873, 45.29980719489024], [23.20872238522024, 45.27771878959041], [23.188255050796496, 45.285750936972164], [23.158484382543776, 45.27520874353361], [23.114200513517858, 45.28926500145168], [23.09410531244727, 45.29102203369144], [23.088895445503045, 45.27495773892793], [23.072893711317207, 45.27746778498473], [23.05763624383769, 45.266674586940496], [23.0167015749902, 45.25462636586786], [22.994373573800658, 45.25989746258713], [22.985814506678004, 45.25437536126218], [22.969440639139005, 45.258140430347375], [22.965719305607415, 45.270690660631374], [22.93446010394206, 45.27897381261881], [22.898735302038798, 45.27495773892793], [22.866731833667124, 45.26190549943257], [22.845148099183902, 45.27897381261881], [22.83100703176386, 45.285248927760804], [22.817610231050136, 45.27269869747681], [22.792305163035323, 45.269184632997295], [22.772954228671054, 45.270439656025694], [22.74467209383097, 45.26592157312345], [22.72755395958566, 45.25437536126218], [22.710435825340344, 45.258642439558734], [22.683642223912898, 45.25061029217698], [22.69034062426976, 45.27495773892793], [22.67880449032183, 45.282989886309686], [22.69778329133294, 45.30307025476408], [22.692573424388712, 45.327668706120704], [22.668384756433376, 45.352518162083015], [22.670245423199173, 45.36180533249318], [22.658337155898085, 45.37159451211469], [22.669873289846013, 45.38288971937028], [22.682525823853418, 45.38615277924412], [22.700388224805053, 45.39920501873948], [22.714529292225095, 45.41602232732003], [22.705598091749277, 45.433592649717625], [22.705598091749277, 45.45618306422882], [22.69368982444819, 45.476012428077524], [22.692573424388712, 45.49057069520696], [22.677688090262354, 45.49684581034896], [22.67880449032183, 45.516173164986306], [22.6590814226044, 45.52420531236807], [22.642707555065407, 45.553321846626936], [22.643079688418567, 45.56511906309389], [22.63452062129591, 45.571394178235884], [22.593958085801578, 45.56185600322005], [22.59730728598001, 45.57390422429268], [22.583166218559967, 45.58394440851988], [22.54558074989091, 45.58796048221076], [22.545952883244066, 45.595490620381156], [22.513949414872393, 45.595490620381156], [22.49943621409919, 45.61582199344123], [22.477852479615972, 45.62636418687978], [22.455152345073273, 45.6474485737569], [22.45552447842643, 45.66075181785793], [22.427986610292663, 45.66928597445104], [22.437662077474798, 45.68258921855208], [22.464083545549087, 45.68811131987704], [22.47003767919963, 45.693884425807674], [22.46631634566804, 45.72274995546086], [22.47078194590595, 45.7310331074483], [22.50799528122185, 45.7435833377323], [22.542231549712476, 45.76567174303212], [22.553023416954087, 45.77922599173884], [22.53776594947457, 45.801314397038674], [22.501669014218148, 45.78550110688084], [22.48231807985388, 45.787007134514916], [22.471526212612268, 45.80181640625003], [22.479713146381766, 45.80784051678635], [22.475619679497015, 45.82691686681802], [22.430963677117937, 45.86456755767001], [22.409752075987875, 45.86381454385297], [22.39337820844888, 45.87435673729152], [22.38556340803254, 45.885400939941434], [22.388540474857813, 45.89770016561975], [22.41049634269419, 45.90748934524127], [22.41979967652317, 45.937358893317175], [22.38184207450095, 45.962710358490845], [22.353932073014025, 45.97300154732372], [22.34127953900662, 45.979025657860035], [22.339418872240824, 45.99257990656675], [22.350210739482435, 45.99835301249739], [22.384819141326222, 45.99534095722923], [22.391889675036243, 46.00839319672458], [22.406402875809444, 46.00262009079395], [22.414217676225782, 46.00989922435866], [22.438778477534278, 46.01140525199274], [22.442871944419025, 46.02772055136194], [22.429103010352144, 46.033744661898254], [22.435801410709004, 46.04905594284473], [22.430591543764777, 46.07867448631495], [22.41905540981685, 46.08143553697744], [22.4067750091626, 46.09574279950119], [22.41533407628526, 46.10854403439086], [22.43319647723689, 46.1067870021511], [22.446965411303776, 46.11632517716694], [22.468549145786994, 46.14870477129965], [22.454780211720113, 46.16326303842908], [22.449570344775886, 46.19338359111067], [22.439150610887435, 46.208443867451464], [22.47040981255279, 46.23304231880809], [22.487900080151263, 46.23630537868193], [22.51506581493187, 46.225010171426334], [22.58577115203208, 46.23379533262513], [22.58874821885735, 46.225261176032014], [22.607354886515303, 46.21873505628434], [22.62745008758589, 46.23153629117401], [22.63749768812118, 46.22626519445473], [22.658337155898085, 46.23505035565353], [22.66391915619547, 46.248855608965926], [22.656848622485448, 46.25764077016472], [22.662430622782836, 46.2716970280828], [22.676571690202877, 46.28801232745199], [22.684014357266054, 46.31010073275182], [22.67843235696867, 46.318634889344935], [22.73015889305777, 46.33620521174253], [22.75025409412836, 46.351516492689], [22.779652629027918, 46.35001046505492], [22.813516764165385, 46.32591402290965], [22.84663663259654, 46.32817306436077], [22.8741745007303, 46.33821324858797], [22.922179703287814, 46.33244014265733], [22.93483223729522, 46.32691804133237], [22.944135571124196, 46.29930753470758], [22.959765171956874, 46.293283424171264], [22.9649750389011, 46.28324323994407], [22.94897330471526, 46.266425931363514], [22.957904505191078, 46.26015081622152], [22.958276638544238, 46.24584355369777], [22.978371839614823, 46.23304231880809], [22.98320957320589, 46.21823304707298], [23.004421174335953, 46.21195793193098], [23.013724508164927, 46.21522099180482], [23.041262376298693, 46.208945876662824], [23.052054243540304, 46.2142169733821], [23.069544511138776, 46.208192862845785], [23.071405177904573, 46.19890569243562], [23.097082379272543, 46.182590393066434], [23.092244645681475, 46.16602408909156], [23.106013579748357, 46.15071280814509], [23.099315179391496, 46.13966860549517], [23.078103578261434, 46.14569271603149], [23.05651984377821, 46.140923628523566], [23.06880024443246, 46.12159627388622], [23.065823177607186, 46.10954805281358], [23.08629051203093, 46.10327293767158], [23.099315179391496, 46.07992950934335], [23.085546245324615, 46.07114434814456], [23.10526931304204, 46.060602154706004], [23.115316913577335, 46.047549915210645], [23.13578424800108, 46.03725872637777], [23.185650117324386, 46.02746954675626], [23.210210918632878, 46.03650571256073], [23.235888120000848, 46.0269675375449], [23.24184225365139, 46.0093972151473], [23.236260253354008, 45.989818855904275], [23.25375052095248, 45.96973848744988], [23.253378387599323, 45.95969830322269], [23.266775188313044, 45.93384482883766], [23.299895056744198, 45.91853354789118], [23.32445585805269, 45.92154560315934], [23.335619858647462, 45.908995372875346], [23.314780390870556, 45.90372427615607], [23.312175457398443, 45.893182082717516], [23.33301492517535, 45.87636477413696], [23.325200124759007, 45.83821207407362], [23.338596925472732, 45.82039074707034], [23.349388792714343, 45.788513162148995], [23.358692126543318, 45.77646494107636], [23.377298794201266, 45.771193844357086], [23.382508661145494, 45.759396627890126], [23.363529860134385, 45.71597283110751], [23.367623327019135, 45.70718766990871], [23.385485727970767, 45.69639447186447], [23.40632519574767, 45.691625384356556], [23.42046626316771, 45.67430606656464], [23.403720262275556, 45.65949679482953], [23.39106772826815, 45.65748875798409], [23.385113594617607, 45.64769957836258], [23.36948399378493, 45.640671449403534], [23.371716793903882, 45.62761920990818], [23.389579194855514, 45.623101127005945], [23.41302359610453, 45.6336433204445], [23.427908930230892, 45.623352131611625], [23.42009412981455, 45.61381395659579], [23.430141730349845, 45.58896450063348], [23.455446798364658, 45.580179339434686], [23.49935853403742, 45.579928334829006], [23.504568400981647, 45.56386404006549], [23.519825868461165, 45.55106280517582], [23.538060402765954, 45.5500587867531], [23.555922803717586, 45.53098243672142], [23.573785204669218, 45.52094225249423], [23.578995071613445, 45.50789001299887], [23.596857472565077, 45.4925787320524], [23.59946240603719, 45.47274936820369]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Ia\\u0219i\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[28.11604491332794, 46.83796341849664], [28.092972645432084, 46.848756616540875], [28.055015043409867, 46.85176867180903], [28.043851042815096, 46.8434855198216], [28.01631317468133, 46.833947344805765], [27.991752373372837, 46.83871643231368], [27.980960506131225, 46.85779278234535], [27.943747170815325, 46.85528273628855], [27.94970130446587, 46.83771241389096], [27.929978236748443, 46.81964008228201], [27.909510902324698, 46.806587842786655], [27.87118116694932, 46.83997145534208], [27.86820410012405, 46.85603575010559], [27.84885316575978, 46.865573925121424], [27.83433996498658, 46.863816892881665], [27.83136289816131, 46.85377670865447], [27.798615163083316, 46.86055383300783], [27.81536116397547, 46.88038319685654], [27.810523430384404, 46.89469045938029], [27.813500497209677, 46.93234115023228], [27.817221830741268, 46.943636357487875], [27.81163983044388, 46.95367654171507], [27.78559049572275, 46.945895398938994], [27.772565828362186, 46.94940946341851], [27.77182156165587, 46.93234115023228], [27.78559049572275, 46.90673868045293], [27.784101962310118, 46.89795351925414], [27.79303316278593, 46.874610090925906], [27.769960894890072, 46.87812415540542], [27.7461443602879, 46.902722606762055], [27.73460822633997, 46.92255197061076], [27.72604915921731, 46.92029292915964], [27.707070358206202, 46.94037329761404], [27.695162090905114, 46.93736124234588], [27.684742357016663, 46.95543357395483], [27.660925822414487, 46.97425891938082], [27.639342087931265, 46.97752197925466], [27.62259608703911, 46.99182924177842], [27.610315686384865, 46.970744854901305], [27.60845501961907, 46.95744161080027], [27.618502620154363, 46.95016247723555], [27.616269820035406, 46.929078090358445], [27.639714221284425, 46.91276279098925], [27.63338795428072, 46.89694950083141], [27.60882715297223, 46.893184431746214], [27.60101235255589, 46.88239123370198], [27.58612701842953, 46.889168358055336], [27.564915417299467, 46.8859052981815], [27.54779728305415, 46.91477082783469], [27.521375814979862, 46.91477082783469], [27.52584141521777, 46.890925390295095], [27.534772615693587, 46.88239123370198], [27.518026614801432, 46.875363104742945], [27.502024880615597, 46.876869132377024], [27.491233013373986, 46.86984100341799], [27.473370612422354, 46.87134703105207], [27.42610967657116, 46.862812874458946], [27.41531780932955, 46.876116118559985], [27.40378167538162, 46.876116118559985], [27.399688208496872, 46.89393744556325], [27.378476607366807, 46.889670367266696], [27.339774738638273, 46.874861095531585], [27.337914071872476, 46.86808397117823], [27.296607269671828, 46.86758196196687], [27.279861268779676, 46.87184904026343], [27.253067667352227, 46.86783296657255], [27.228134732690574, 46.86833497578391], [27.203946064735238, 46.88289324291334], [27.20282966467576, 46.89469045938029], [27.172686863069885, 46.92631703969596], [27.123565260452896, 46.95091549105259], [27.135473527753984, 46.96371672594227], [27.150358861880342, 46.96170868909683], [27.173803263129358, 46.97601595162058], [27.18199019689886, 46.98906819111593], [27.200596864556807, 46.9782749930717], [27.2188313988616, 46.97400791477514], [27.231111799515844, 46.97777298386034], [27.241903666757455, 47.012160614838486], [27.221064198980553, 47.01718070695208], [27.20766739826683, 47.02772290039064], [27.18831646390256, 47.03023294644744], [27.178640996720425, 47.040775139885994], [27.187200063843083, 47.05106632871887], [27.18496726372413, 47.06110651294607], [27.157057262237206, 47.082692909034535], [27.099004459144403, 47.092231084050376], [27.06216325718166, 47.08520295509133], [27.053604190059005, 47.06361655900287], [27.034997522401053, 47.05683943464951], [27.032020455575783, 47.037763084617836], [27.023833521806285, 47.03374701092696], [27.004110454088856, 47.039771121463275], [26.985503786430908, 47.07792382152662], [26.972851252423503, 47.07717080770958], [26.963920051947685, 47.06185952676311], [26.96317578524137, 47.04604623660527], [26.934521517048125, 47.03475102934968], [26.90400658208909, 47.028224909602], [26.879817914133753, 47.05784345307223], [26.83516191175467, 47.04328518594279], [26.822509377747267, 47.05257235635295], [26.813578177271452, 47.067632632693744], [26.796460043026137, 47.07340573862438], [26.761107374476033, 47.09825519458669], [26.743244973524398, 47.094490125501494], [26.726871105985403, 47.08545395969702], [26.70938083838693, 47.092482088656055], [26.684447903725278, 47.11281346171612], [26.637931234580403, 47.092733093261735], [26.61634750009718, 47.109801406447964], [26.615231100037704, 47.14418903742611], [26.601834299323983, 47.15498223547035], [26.610765499799797, 47.160504336795306], [26.603694966089776, 47.17205054865658], [26.617836033509818, 47.18209073288378], [26.597368699086072, 47.21020324871992], [26.575040697896533, 47.21748238228464], [26.559783230417015, 47.24032380140151], [26.541548696112223, 47.25212101786847], [26.519964961629, 47.2604041698559], [26.50954522774055, 47.271950381717176], [26.55010776323488, 47.30181992979308], [26.564248830654922, 47.29253275938293], [26.57615709795601, 47.30684002190669], [26.55382909676647, 47.309350067963486], [26.5426650961717, 47.31562518310548], [26.524430561866907, 47.336458565376915], [26.51252229456582, 47.335454546954196], [26.500241893911575, 47.36206103515626], [26.508428827681072, 47.37260322859482], [26.495032026967348, 47.39243259244353], [26.528896162104818, 47.404982822727526], [26.534478162402202, 47.39017355099241], [26.57243576442442, 47.38967154178105], [26.57280789777758, 47.3766193022857], [26.600717899264502, 47.3678341410869], [26.610765499799797, 47.35553491540858], [26.637559101227247, 47.35854697067674], [26.675144569896304, 47.35879797528242], [26.662864169242056, 47.37059519174938], [26.67588883660262, 47.381137385187934], [26.649467368528335, 47.40146875824801], [26.6688183028926, 47.405986841150245], [26.70268243803007, 47.420043099068316], [26.681842970253165, 47.44012346752271], [26.681842970253165, 47.45694077610326], [26.70268243803007, 47.47175004783838], [26.72835963939804, 47.473005070866776], [26.70565950485534, 47.49860754064613], [26.700077504557957, 47.50965174329604], [26.723521905806972, 47.51467183540964], [26.755153240825486, 47.503125623548364], [26.795715776319817, 47.501117586702925], [26.819160177568836, 47.50814571566196], [26.845581645643122, 47.49609749458933], [26.878329380721116, 47.492081420898444], [26.928939516750738, 47.49233242550413], [26.955733118178188, 47.49710151301205], [26.992202186787768, 47.49283443471549], [27.016018721389944, 47.472754066261096], [27.04355658952371, 47.43836643528295], [27.05099925658689, 47.45116767017262], [27.05099925658689, 47.4664789511191], [27.06625672406641, 47.462211872822536], [27.08374699166488, 47.46472191887934], [27.07704859130802, 47.51442083080396], [27.093050325493856, 47.542784351245786], [27.101609392616513, 47.54805544796506], [27.146265394995595, 47.541780332823066], [27.160778595768797, 47.53525421307539], [27.17045406295093, 47.52395900581979], [27.205062464794715, 47.519189918311874], [27.260882467768564, 47.529481107144754], [27.247857800408, 47.543035355851465], [27.250090600526953, 47.56286471970018], [27.264975934653314, 47.571398876293294], [27.296979403024988, 47.56738280260242], [27.317818870801894, 47.57692097761825], [27.330099271456138, 47.572402894716014], [27.34833380576093, 47.57541494998417], [27.392617674786848, 47.58972221250793], [27.41866700950798, 47.572402894716014], [27.42685394327748, 47.55332654468434], [27.439134343931727, 47.55081649862754], [27.446204877641748, 47.529983116356114], [27.455880344823882, 47.52195096897435], [27.455880344823882, 47.5076437064506], [27.469649278890763, 47.49860754064613], [27.476719812600784, 47.48530429654509], [27.513561014563525, 47.47752315376901], [27.525469281864613, 47.48229224127693], [27.55672848352997, 47.47124803862702], [27.575707284541078, 47.45694077610326], [27.55933341700208, 47.44464155042495], [27.557472750236286, 47.42631821421031], [27.576823684600555, 47.41828606682856], [27.584266351663736, 47.39996273061393], [27.571241684303168, 47.395193643106005], [27.571241684303168, 47.37436026083458], [27.57756795130687, 47.368085145692575], [27.602873019321684, 47.367583136481215], [27.596174618964824, 47.34951080487227], [27.616269820035406, 47.338466602222354], [27.605850086146955, 47.32892842720651], [27.628550220689654, 47.319139247585], [27.63413222098704, 47.30357696203285], [27.66687995606503, 47.30734203111805], [27.69330142413932, 47.29228175477725], [27.706698224853042, 47.28952070411477], [27.729026226042585, 47.29579581925677], [27.739818093284196, 47.27571545080238], [27.758424760942145, 47.24910896260031], [27.746888626994217, 47.242833847458314], [27.772565828362186, 47.22149845597552], [27.787823295841704, 47.2192394145244], [27.79228889607961, 47.20719119345176], [27.788939695901185, 47.190122880265534], [27.80456929673386, 47.187612834208736], [27.798615163083316, 47.1705445210225], [27.81275623050336, 47.1642694058805], [27.795265962904885, 47.14946013414539], [27.806802096852813, 47.13791392228411], [27.851085965878735, 47.13113679793076], [27.828013697982875, 47.12360665976036], [27.83471209833974, 47.11582551698429], [27.874530367127754, 47.108546383419565], [27.89760263502361, 47.082692909034535], [27.9158371693284, 47.06964066953918], [27.935932370398987, 47.06236153597447], [27.959376771648003, 47.05809445767791], [27.951189837878506, 47.04780326884503], [27.976122772540158, 47.04353619054847], [27.97947197271859, 47.037763084617836], [28.01631317468133, 47.023957831305445], [28.035664109045598, 47.0307349556588], [28.044595309521412, 47.02094577603728], [28.03454770898612, 47.013917647078244], [28.04980517646564, 47.00237143521697], [28.078087311305723, 46.99182924177842], [28.09743824566999, 46.97651796083194], [28.07994797807152, 46.96346572133659], [28.100043179142105, 46.94890745420715], [28.100415312495265, 46.927070053513], [28.114184246562147, 46.92255197061076], [28.103764512673695, 46.90949973111541], [28.088507045194177, 46.90774269887565], [28.087390645134697, 46.8972005054371], [28.104136646026852, 46.89619648701438], [28.11976624685953, 46.87937917843382], [28.10078744584842, 46.87009200802367], [28.124603980450598, 46.85729077313399], [28.11604491332794, 46.83796341849664]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Ialomi\\u021ba\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[27.205062464794715, 44.78750679469757], [27.225157665865304, 44.78298871179533], [27.22850686604373, 44.77068948611702], [27.25902180100277, 44.75010710845127], [27.289536735961807, 44.78549875785213], [27.31112047044503, 44.77495656441358], [27.342379672110386, 44.80256707103837], [27.36694047341888, 44.78976583614869], [27.383686474311034, 44.7747055598079], [27.39336194149317, 44.78349072100669], [27.409363675679003, 44.77319953217382], [27.438017943872246, 44.79905300655885], [27.479696879426058, 44.77545857362494], [27.4856510130766, 44.780729670344215], [27.504629814087707, 44.7747055598079], [27.528446348689883, 44.77420355059654], [27.54072674934413, 44.78374172561237], [27.59319755213955, 44.78374172561237], [27.59282541878639, 44.778219624287416], [27.650506088526036, 44.7759605828363], [27.650506088526036, 44.77043848151134], [27.721955692332564, 44.7671754216375], [27.724188492451518, 44.778219624287416], [27.74577222693474, 44.779474647315816], [27.74502796022842, 44.78876181772597], [27.7297704927489, 44.80206506182701], [27.743167293462626, 44.807085153940605], [27.7751707618343, 44.80306908024973], [27.787451162488548, 44.82013739343596], [27.828013697982875, 44.820388398041636], [27.822059564332335, 44.79754697892477], [27.835456365046056, 44.778470628893096], [27.87080903359616, 44.77570957823062], [27.882717300897248, 44.7634103525523], [27.877135300599864, 44.75136213147967], [27.873786100421434, 44.725759661700316], [27.88197303419093, 44.70919335772545], [27.91695356938788, 44.69413308138465], [27.933327436926874, 44.67932380964954], [27.959748905001163, 44.68032782807226], [27.970168638889614, 44.670036639239385], [27.998450773729697, 44.65171330302475], [28.014080374562376, 44.64694421551683], [28.03157064216085, 44.62711485166812], [28.034919842339278, 44.61180357072165], [28.018173841447126, 44.5824360318571], [28.018173841447126, 44.565116714065184], [28.03157064216085, 44.55331949759823], [28.055387176763027, 44.508389673181526], [28.080320111424676, 44.49834948895433], [28.091111978666287, 44.48856030933282], [28.101159579201582, 44.454172678354674], [28.110462913030556, 44.441120438859315], [28.10264811261422, 44.42831920396964], [28.071016777595702, 44.41125089078341], [28.059480643647774, 44.396441619048296], [28.029709975395054, 44.36832910321215], [28.02003450821292, 44.340216587376], [27.85666796617612, 44.38037732428478], [27.84550396558135, 44.370588144663266], [27.835828498399216, 44.347244716335034], [27.814989030622314, 44.33444348144536], [27.80122009655543, 44.33871055974192], [27.790800362666978, 44.35527686371679], [27.773310095068503, 44.344483665672556], [27.749865693819487, 44.36205398807015], [27.757680494235828, 44.36607006176103], [27.747260760347373, 44.38213435652454], [27.77144942830271, 44.39493559141422], [27.75209849393844, 44.397696642076696], [27.73498035969313, 44.40648180327549], [27.732747559574175, 44.41953404277085], [27.655715955470264, 44.42129107501061], [27.660553689061327, 44.441622448070675], [27.650133955172876, 44.451160623086515], [27.650878221879196, 44.46496587639891], [27.640458487990742, 44.47098998693522], [27.61552555332909, 44.467977931667065], [27.571613817656328, 44.467977931667065], [27.57347448442212, 44.55934360813455], [27.54779728305415, 44.562355663402705], [27.547053016347835, 44.54227529494831], [27.52658568192409, 44.54403232718807], [27.51988728156723, 44.49734547053161], [27.50388554738139, 44.493831406052095], [27.390012741314738, 44.496341452108894], [27.391501274727375, 44.50613063173041], [27.371406073656786, 44.50638163633609], [27.371778207009946, 44.51642182056329], [27.353915806058314, 44.51742583898601], [27.347217405701453, 44.4863012678817], [27.28916460260865, 44.4900663369669], [27.291769536080764, 44.50412259488497], [27.26944153489122, 44.50663264094177], [27.264603801300154, 44.48931332314986], [27.22962326610321, 44.493831406052095], [27.227018332631097, 44.51366076990081], [27.207295264913668, 44.51591981135193], [27.212132998504735, 44.50136154422249], [27.20766739826683, 44.48404222643058], [27.189804997315196, 44.492074373812336], [27.141055528051368, 44.50136154422249], [27.13696206116662, 44.48328921261354], [27.093050325493856, 44.48529724945898], [27.093050325493856, 44.509142686998565], [27.005226854148333, 44.508891682392886], [27.004854720795173, 44.52922305545296], [26.973967652482976, 44.52947406005864], [26.894331114906954, 44.51642182056329], [26.87721298066164, 44.51792784819737], [26.83144057822308, 44.52796803242456], [26.82511431121938, 44.511903737661044], [26.812833910565132, 44.521692917282564], [26.79794857643877, 44.511401728449684], [26.78083044219346, 44.521190908071205], [26.78827310925664, 44.54202429034263], [26.76185164118235, 44.55030744233007], [26.755897507531806, 44.5287210462416], [26.72426617251329, 44.538008216651754], [26.727243239338563, 44.55909260352887], [26.70565950485534, 44.55934360813455], [26.684075770372118, 44.56536771867086], [26.677377370015257, 44.57465488908102], [26.685192170431595, 44.591221193055894], [26.666213369420486, 44.59573927595813], [26.637559101227247, 44.54177328573695], [26.626022967279315, 44.54177328573695], [26.600717899264502, 44.52319894491664], [26.564248830654922, 44.52671300939616], [26.52368629516059, 44.55859059431751], [26.50917309438739, 44.55582954365503], [26.47940242613467, 44.57314886144694], [26.45744655829829, 44.56687374630494], [26.437351357227705, 44.549303423907354], [26.459307225064084, 44.54102027191991], [26.429908690164524, 44.521441912676885], [26.417628289510276, 44.521441912676885], [26.402370822030758, 44.5337411383552], [26.369250953599607, 44.535247165989276], [26.349155752529022, 44.55231547917551], [26.35771481965168, 44.564363700248144], [26.38041495419438, 44.58293804106846], [26.372228020424878, 44.589464160816135], [26.402742955383918, 44.61105055690461], [26.398649488499167, 44.62510681482268], [26.377437887369105, 44.62134174573748], [26.367018153480654, 44.64568919248843], [26.3484114858227, 44.669534630028025], [26.33538681846214, 44.6748057267473], [26.342829485525318, 44.68785796624265], [26.36143615318327, 44.68810897084833], [26.37185588707172, 44.698651164286886], [26.363296819949063, 44.70517728403457], [26.37557722060331, 44.72073956958672], [26.3502721525885, 44.732285781448], [26.303383350090463, 44.76893245387726], [26.323478551161053, 44.78700478548621], [26.3484114858227, 44.778219624287416], [26.36441322000854, 44.780227661132855], [26.37483295389699, 44.76165332031254], [26.3874854879044, 44.76240633412958], [26.45409735811986, 44.81135223223716], [26.495032026967348, 44.79127186378277], [26.50917309438739, 44.79704496971341], [26.535222429108522, 44.821894425675715], [26.526663361985864, 44.82716552239499], [26.562388163889125, 44.83896273886195], [26.607044166268206, 44.85728607507658], [26.619324566922455, 44.84046876649603], [26.63234923428302, 44.81386227829396], [26.647606701762538, 44.821894425675715], [26.678865903427894, 44.8095951999974], [26.715334972037475, 44.8196353842246], [26.720172705628542, 44.80934419539172], [26.77785337536819, 44.81536830592804], [26.811717510505655, 44.79553894207933], [26.83181271157624, 44.79804898813613], [26.84781444576208, 44.81536830592804], [26.867165380126345, 44.806332140123565], [26.880190047486913, 44.820639402647316], [26.911821382505426, 44.807838167757644], [26.974711919189296, 44.78851081312029], [27.009320321033083, 44.824655476338194], [27.058441923650072, 44.79779798353045], [27.112401259858125, 44.782235697978294], [27.09937659249756, 44.74508701633767], [27.135473527753984, 44.73579984592752], [27.140683394698208, 44.74533802094335], [27.18533939707729, 44.73454482289912], [27.19538699761258, 44.752617154508066], [27.171570463010404, 44.7571352374103], [27.15482446211825, 44.764916380186385], [27.157057262237206, 44.78901282233165], [27.205062464794715, 44.78750679469757]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Ilfov\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[26.303383350090463, 44.76893245387726], [26.3502721525885, 44.732285781448], [26.37557722060331, 44.72073956958672], [26.363296819949063, 44.70517728403457], [26.37185588707172, 44.698651164286886], [26.36143615318327, 44.68810897084833], [26.342829485525318, 44.68785796624265], [26.33538681846214, 44.6748057267473], [26.3484114858227, 44.669534630028025], [26.367018153480654, 44.64568919248843], [26.377437887369105, 44.62134174573748], [26.398649488499167, 44.62510681482268], [26.402742955383918, 44.61105055690461], [26.372228020424878, 44.589464160816135], [26.38041495419438, 44.58293804106846], [26.35771481965168, 44.564363700248144], [26.349155752529022, 44.55231547917551], [26.369250953599607, 44.535247165989276], [26.402370822030758, 44.5337411383552], [26.417628289510276, 44.521441912676885], [26.361808286536426, 44.48605026327602], [26.396044555027053, 44.45743573822851], [26.42804802339873, 44.45668272441147], [26.45298095806038, 44.46245583034211], [26.46414495865515, 44.453419664537634], [26.407208555621825, 44.42781719475828], [26.392323221495467, 44.42982523160372], [26.35697055294536, 44.412756918417486], [26.34543441899743, 44.40296773879597], [26.324594951220526, 44.396441619048296], [26.311570283859965, 44.40171271576757], [26.29408001626149, 44.41702399671404], [26.288125882610945, 44.40547778485277], [26.300034149912033, 44.39041750851198], [26.314175217332075, 44.39066851311766], [26.31715228415735, 44.371592163085985], [26.307104683622054, 44.35126079002591], [26.28254388231356, 44.34900174857479], [26.253889614120318, 44.330427407754485], [26.2758454819567, 44.316622154442086], [26.25575028088611, 44.29829881822746], [26.2613322811835, 44.29503575835362], [26.250912547295044, 44.2952867629593], [26.214815612038624, 44.263158173432274], [26.196953211086992, 44.25688305829027], [26.191743344142765, 44.24182278194948], [26.177602276722723, 44.247846892485796], [26.150808675295277, 44.233790634567725], [26.127364274046258, 44.24433282800628], [26.110618273154103, 44.2465918694574], [26.0897788053772, 44.25763607210731], [26.088662405317724, 44.26767625633451], [26.061496670537117, 44.26667223791179], [26.044378536291802, 44.28047749122418], [26.003071734091154, 44.29955384125586], [25.99637333373429, 44.31612014523073], [25.984465066433202, 44.320387223527284], [25.95320586476785, 44.317124163653446], [25.95618293159312, 44.328921380120406], [25.938692663994647, 44.33594950907944], [25.909294129095088, 44.333941472234], [25.887710394611865, 44.358288918984954], [25.87059226036655, 44.357284900562234], [25.869475860307073, 44.36958412624055], [25.858683993065462, 44.37736526901662], [25.8601725264781, 44.386652439426776], [25.83002972487222, 44.39066851311766], [25.82519199128115, 44.398700660499415], [25.87059226036655, 44.41928303816516], [25.84863639253017, 44.43158226384348], [25.86687092683496, 44.44363048491611], [25.87096439371971, 44.45969477967963], [25.88138412760816, 44.46220482573643], [25.901851462031907, 44.453419664537634], [25.91450399603931, 44.4737510375977], [25.897385861794, 44.48605026327602], [25.922318796455652, 44.51667282516897], [25.892175994849772, 44.54152228113127], [25.87766279407657, 44.56586972788222], [25.888454661318182, 44.58093000422302], [25.906689195622974, 44.563610686431105], [25.931249996931466, 44.57189383841854], [25.958415731712073, 44.588209137787736], [25.99339626690902, 44.61230557993301], [25.984092933080046, 44.62887188390788], [25.968835465600527, 44.632385948387395], [25.940553330760444, 44.64619120169979], [25.94390253093887, 44.657988418166745], [25.967719065541047, 44.658741431983785], [25.973301065838434, 44.67555874056434], [25.95990426512471, 44.684092897157456], [25.991163466790066, 44.69137203072217], [25.976278132663708, 44.700157191920965], [25.97032399901316, 44.7209905741924], [25.973301065838434, 44.737807882772955], [25.992279866849543, 44.74458500712631], [26.00046680061904, 44.736803864350236], [26.024283335221217, 44.74508701633767], [26.05963600377132, 44.738811901195675], [26.074149204544522, 44.75111112687399], [26.09015093873036, 44.74132194725247], [26.098710005853015, 44.74358098870359], [26.09015093873036, 44.76064930188982], [26.103175606090925, 44.7671754216375], [26.113967473332536, 44.754625191353504], [26.134062674403122, 44.75010710845127], [26.154902142180024, 44.7583902604387], [26.16346120930268, 44.752617154508066], [26.180207210194837, 44.75663322819894], [26.205884411562806, 44.75010710845127], [26.25761094765191, 44.74232596567519], [26.259471614417702, 44.75763724662166], [26.273240548484587, 44.75613121898758], [26.27510121525038, 44.76918345848294], [26.303383350090463, 44.76893245387726]], [[26.046239203057596, 44.53047807848136], [26.034703069109668, 44.52470497255072], [26.013491467979605, 44.51642182056329], [26.011630801213812, 44.51742583898601], [26.003071734091154, 44.50136154422249], [26.00046680061904, 44.50161254882817], [25.99376840026218, 44.49659245671457], [25.988930666671113, 44.50035752579977], [25.987814266611636, 44.49985551658841], [25.984092933080046, 44.49759647513729], [25.984465066433202, 44.495086429080494], [25.976650266016865, 44.467475922455705], [25.979627332842135, 44.466973913244345], [25.988558533317953, 44.465969894821626], [25.992279866849543, 44.46446386718755], [25.999722533912724, 44.46220482573643], [26.00009466726588, 44.46170281652507], [26.002327467384838, 44.46170281652507], [26.01274720127329, 44.45869076125691], [26.014235734685926, 44.45643171980579], [26.014235734685926, 44.453670669143314], [26.01274720127329, 44.44463450333883], [25.966230532128414, 44.442626466493394], [25.96697479883473, 44.438861397408196], [25.966230532128414, 44.438861397408196], [25.964741998715777, 44.439112402013876], [25.96399773200946, 44.439112402013876], [25.9636255986563, 44.439112402013876], [25.962509198596823, 44.439363406619556], [25.962881331949983, 44.43710436516844], [25.965486265422093, 44.43660235595708], [25.96436986536262, 44.43359030068892], [25.965858398775254, 44.43283728687188], [25.976650266016865, 44.40748582169821], [25.99004706673059, 44.40874084472661], [25.994512666968497, 44.40924285393797], [25.99711760044061, 44.40547778485277], [26.004932400856948, 44.40321874340165], [26.01200293456697, 44.40723481709253], [26.027632535399647, 44.39217454075174], [26.045122802998122, 44.37962431046774], [26.091267338789837, 44.36958412624055], [26.09350013890879, 44.36782709400079], [26.112851073273056, 44.36657207097239], [26.12959707416521, 44.35577887292815], [26.140388941406826, 44.33720453210784], [26.148203741823163, 44.3364515182908], [26.154902142180024, 44.33594950907944], [26.15564640888634, 44.33996558277032], [26.16346120930268, 44.34799773015207], [26.16011200912425, 44.346742707123674], [26.144854541644733, 44.373349195325744], [26.147459475116847, 44.37811828283366], [26.16160054253689, 44.399453674316455], [26.179462943488517, 44.39493559141422], [26.20216307803122, 44.39568860523126], [26.207745078328603, 44.40346974800733], [26.207372944975443, 44.40422276182437], [26.20848934503492, 44.40648180327549], [26.217420545510738, 44.40773682630389], [26.218164812217054, 44.40949385854365], [26.217420545510738, 44.41802801513676], [26.23416654640289, 44.43735536977412], [26.226723879339712, 44.441120438859315], [26.2241189458676, 44.441120438859315], [26.206256544915966, 44.44488550794451], [26.203651611443853, 44.44463450333883], [26.18988267737697, 44.44563852176155], [26.18616134384538, 44.44488550794451], [26.17499734325061, 44.44463450333883], [26.176858010016407, 44.44990560005811], [26.177602276722723, 44.451662632297875], [26.176113743310086, 44.45442368296035], [26.17462520989745, 44.454172678354674], [26.173136676484816, 44.453168659931954], [26.17164814307218, 44.452917655326274], [26.170903876365863, 44.452917655326274], [26.170159609659542, 44.452666650720595], [26.169043209600066, 44.451913636903555], [26.167182542834272, 44.452415646114915], [26.158251342358454, 44.45869076125691], [26.160856275830568, 44.46120080731371], [26.17164814307218, 44.47174300075226], [26.17462520989745, 44.47425304680906], [26.177230143369563, 44.47651208826018], [26.18244001031379, 44.47952414352834], [26.186533477198537, 44.47977514813402], [26.11582814009833, 44.48805830012146], [26.104664139503562, 44.50211455803953], [26.105780539563035, 44.51617081595761], [26.10540840620988, 44.519935885042806], [26.103919872797242, 44.520186889648485], [26.103547739444082, 44.52997606927], [26.10503627285672, 44.54026725810287], [26.080103338195066, 44.538259221257434], [26.073404937838205, 44.54252629955399], [26.068195070893978, 44.535247165989276], [26.046239203057596, 44.53047807848136]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Maramure\\u0219\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[24.948817944591713, 47.72928077326595], [24.94956221129803, 47.717734561404676], [24.961842611952278, 47.705686340332036], [24.9834263464355, 47.69514414689348], [25.02361674857667, 47.666529621845974], [25.053015283476235, 47.65899948367558], [25.054503816888868, 47.64168016588366], [25.010964214569267, 47.63289500468487], [24.97635581272548, 47.614069659258874], [24.960354078539645, 47.61557568689295], [24.9625868786586, 47.597001346072645], [24.918303009632677, 47.598507373706724], [24.900812742034205, 47.60302545660896], [24.874019140606755, 47.59424029541017], [24.828246738168197, 47.596499336861285], [24.80889580380393, 47.56688079339106], [24.789544869439663, 47.57666997301257], [24.77242673519435, 47.572402894716014], [24.71735099892682, 47.57265389932169], [24.692045930912006, 47.55859764140362], [24.654088328889788, 47.55834663679794], [24.654088328889788, 47.56738280260242], [24.633620994466042, 47.57616796380121], [24.613525793395457, 47.570143853264895], [24.583755125142737, 47.571398876293294], [24.573335391254286, 47.5626137150945], [24.558822190481084, 47.571398876293294], [24.52309738857782, 47.57767399143529], [24.4933267203251, 47.586710157239764], [24.472859385901355, 47.58846718947953], [24.457974051774997, 47.595495318438566], [24.438623117410728, 47.59122824014201], [24.388012981381106, 47.60854755793392], [24.364940713485247, 47.57892901446369], [24.34782257923993, 47.56738280260242], [24.32698311146303, 47.56738280260242], [24.305399376979807, 47.57943102367505], [24.303538710214013, 47.5588486460093], [24.279350042258677, 47.541529328217386], [24.27786150884604, 47.527222065693635], [24.269302441723383, 47.517683890677795], [24.253672840890708, 47.519189918311874], [24.24511377376805, 47.502121605125645], [24.183711770496814, 47.50739270184492], [24.15505750230357, 47.503125623548364], [24.143149235002483, 47.48756333799621], [24.13384590117351, 47.49434046234957], [24.120449100459787, 47.47902918140309], [24.12975243428876, 47.4627138820339], [24.11896056704715, 47.447904610298785], [24.110029366571332, 47.42556520039327], [24.073560297961752, 47.407994877995684], [24.062024164013824, 47.378125329919776], [24.039324029471125, 47.37436026083458], [24.024438695344763, 47.36231203976194], [23.970851492489867, 47.36582610424146], [23.942197224296628, 47.35980199370514], [23.924334823344992, 47.352522860140425], [23.894936288445432, 47.35678993843698], [23.874841087374847, 47.37134820556642], [23.8543737529511, 47.36833615029826], [23.838744152118423, 47.34976180947795], [23.842837619003173, 47.34022363446211], [23.81827681769468, 47.34398870354731], [23.79111108291407, 47.33670956998259], [23.761340414661355, 47.335454546954196], [23.761340414661355, 47.326167376544035], [23.729709079642838, 47.32114728443044], [23.668307076371605, 47.36582610424146], [23.662725076074217, 47.379882362159535], [23.647095475241542, 47.393185606260566], [23.628116674230434, 47.394189624683285], [23.61285920675091, 47.38766350493561], [23.616952673635662, 47.37636829768002], [23.586065605323466, 47.37235222398914], [23.58048360502608, 47.36256304436762], [23.53992106953175, 47.36984217793234], [23.494520800446352, 47.36632811345282], [23.48335679985158, 47.378125329919776], [23.43907293082566, 47.381137385187934], [23.395161195152898, 47.39193058323217], [23.386602128030244, 47.38741250032993], [23.363901993487545, 47.40046473982529], [23.359436393249638, 47.41627802998312], [23.337852658766415, 47.41226195629224], [23.31329185745792, 47.42405917275919], [23.288731056149427, 47.42707122802735], [23.266403054959888, 47.42581620499895], [23.249657054067733, 47.43686040764887], [23.21765358569606, 47.43510337540911], [23.206117451748128, 47.44564556884767], [23.183045183852272, 47.45794479452598], [23.159972915956413, 47.44062547673407], [23.139505581532667, 47.44489255503063], [23.10526931304204, 47.44137849055111], [23.080708511733548, 47.44514355963631], [23.045355843183444, 47.433095338563675], [23.036796776060786, 47.41577602077176], [23.025260642112855, 47.42958127408416], [22.999583440744885, 47.431087301718236], [22.965719305607415, 47.43962145831135], [22.967579972373212, 47.45618776228622], [22.985070239971684, 47.460956849794144], [22.963114372135305, 47.47902918140309], [22.9649750389011, 47.48681032417917], [22.988419440150114, 47.48379826891101], [23.003676907629632, 47.490826397870045], [23.047216509949237, 47.48756333799621], [23.043867309770807, 47.50839672026764], [23.05354277695294, 47.529732111750434], [23.055031310365575, 47.55583659074114], [23.066939577666663, 47.571649880898974], [23.10229224621677, 47.59198125395905], [23.123503847346832, 47.61482267307591], [23.144343315123734, 47.624611852697434], [23.16853198307907, 47.59373828619881], [23.21356011881131, 47.570394857870575], [23.2317946531161, 47.55407955850138], [23.258960387896707, 47.55056549402186], [23.262309588075137, 47.58118805591481], [23.283149055852043, 47.57742298682961], [23.29059172291522, 47.58896919869089], [23.286498256030473, 47.61507367768159], [23.289103189502587, 47.63038495862807], [23.30584919039474, 47.62762390796559], [23.316268924283193, 47.638166101404146], [23.341573992298002, 47.64393920733478], [23.33599199200062, 47.65272436853358], [23.35757572648384, 47.66803564948005], [23.36501839354702, 47.665776608028935], [23.388462794796038, 47.68761400872309], [23.36501839354702, 47.68660999030037], [23.363901993487545, 47.69941122519004], [23.34715599259539, 47.705937344937716], [23.308454123866852, 47.71221246007971], [23.28091625573309, 47.72325666272963], [23.244075053770345, 47.73078680090003], [23.2317946531161, 47.73957196209882], [23.237004520060324, 47.75136917856578], [23.226584786171873, 47.76668045951225], [23.263425988134614, 47.79755402601088], [23.283149055852043, 47.79755402601088], [23.31031479063265, 47.786509823360966], [23.312919724104763, 47.77521461610537], [23.389951328208674, 47.77948169440193], [23.408930129219783, 47.77621863452809], [23.416372796282964, 47.76843749175201], [23.46586653225311, 47.76718246872361], [23.473681332669447, 47.77948169440193], [23.53917680282543, 47.802825122730155], [23.56187693736813, 47.804331150364234], [23.56224907072129, 47.814622339197115], [23.57639013814133, 47.82441151881863], [23.59536893915244, 47.84926097478094], [23.612114940044595, 47.84750394254118], [23.62923307428991, 47.85327704847182], [23.641513474944155, 47.86482326033309], [23.62923307428991, 47.88666066102724], [23.60988213992564, 47.897955868282835], [23.59164760562085, 47.89921089131124], [23.564854004193403, 47.94414071572794], [23.544386669769658, 47.94163066967114], [23.53285053582173, 47.951670853898335], [23.511638934691668, 47.95543592298353], [23.49526506715267, 47.96798615326753], [23.50270773421585, 47.96899017169025], [23.527268535524342, 48.005134834908155], [23.545503069829135, 48.00889990399335], [23.567831071018674, 48.003377802668396], [23.612114940044595, 48.00839789478199], [23.64374627506311, 48.00011474279456], [23.64783974194786, 47.99158058620144], [23.664585742840014, 47.98480346184808], [23.686913744029553, 47.98731350790488], [23.709241745219092, 47.994592641469595], [23.7736208153156, 47.995094650680954], [23.793343883033028, 47.98630948948216], [23.81753255098836, 47.98279542500264], [23.852513086185308, 47.937112586768905], [23.868886953724303, 47.93234349926098], [23.886005087969618, 47.94439172033362], [23.94368575770926, 47.94865879863018], [23.95894322518878, 47.965225102605054], [23.98201549308464, 47.95995400588577], [24.01066976127788, 47.96748414405617], [24.03336989582058, 47.9496628170529], [24.063884830779617, 47.953678890743774], [24.100353899389198, 47.936861582163225], [24.114494966809243, 47.91502418146907], [24.140172168177212, 47.91226313080659], [24.166593636251502, 47.92054628279403], [24.198224971270015, 47.91627920449747], [24.229856306288532, 47.896700845254436], [24.25702204106914, 47.90699203408732], [24.28121070902447, 47.90623902027028], [24.299445243329263, 47.911761121595234], [24.32661097810987, 47.926068384118985], [24.351916046124682, 47.91577719528611], [24.38317524779004, 47.926821397936024], [24.382058847730562, 47.93410053150075], [24.39396711503165, 47.953176881532414], [24.417411516280666, 47.95995400588577], [24.43750671735125, 47.97074720393001], [24.448298584592862, 47.964472088788014], [24.473231519254515, 47.96321706575961], [24.503746454213555, 47.952423867715375], [24.528679388875204, 47.96171103812553], [24.551379523417904, 47.96020501049145], [24.56440419077847, 47.96873916708457], [24.584871525202214, 47.965225102605054], [24.603478192860166, 47.94564674336202], [24.62506192734339, 47.951921858504015], [24.633993127819203, 47.94012464203706], [24.636598061291316, 47.924813361090585], [24.65334406218347, 47.91929125976563], [24.67529993001985, 47.896700845254436], [24.667485129603513, 47.87687148140573], [24.674555663313534, 47.86356823730469], [24.70469846491941, 47.85277503926046], [24.707303398391524, 47.840475813582145], [24.735957666584767, 47.84398987806166], [24.754564334242716, 47.829933620143585], [24.766844734896964, 47.839471795159426], [24.77986940225753, 47.83771476291966], [24.785823535908072, 47.82365850500159], [24.829363138227677, 47.82064644973343], [24.823036871223973, 47.80659019181536], [24.83829433870349, 47.79378895692568], [24.83829433870349, 47.77973269900761], [24.853179672829853, 47.774963611499686], [24.85690100636144, 47.76592744569521], [24.8799732742573, 47.75287520619986], [24.888160208026797, 47.734300865379545], [24.884811007848366, 47.72451168575803], [24.948817944591713, 47.72928077326595]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Mehedin\\u021bi\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[22.657965022544925, 45.108039676150796], [22.67136182325865, 45.1030195840372], [22.68550289067869, 45.10653364851672], [22.699271824745573, 45.08846131690777], [22.705970225102437, 45.06913396227041], [22.747649160656245, 45.08268821097713], [22.749137694068878, 45.067376930030655], [22.769977161845784, 45.050559621450105], [22.818354497756452, 45.03625235892635], [22.833239831882814, 45.023953133248035], [22.83844969882704, 45.01115189835836], [22.85742849983815, 45.00286874637092], [22.85370716630656, 44.99232655293237], [22.893153301741414, 44.996342626623246], [22.897991035332478, 44.98956550226989], [22.891664768328777, 44.97400321671773], [22.87268596731767, 44.94764773312134], [22.891292634975617, 44.90522795476144], [22.89724676862616, 44.88489658170137], [22.893153301741414, 44.86782826851514], [22.898363168685638, 44.84247680334147], [22.91287636945884, 44.823651457915474], [22.93520437064838, 44.81511730132236], [22.933343703882585, 44.79855099734749], [22.94301917106472, 44.78349072100669], [22.954183171659487, 44.78374172561237], [22.961997972075828, 44.795287937473645], [22.9940014404475, 44.781231679555574], [22.996234240566455, 44.76240633412958], [23.00888677457386, 44.74358098870359], [23.052426376893465, 44.729273726179834], [23.066939577666663, 44.727265689334395], [23.063962510841392, 44.712205412993605], [23.078103578261434, 44.70718532088001], [23.091128245622, 44.69563910901873], [23.106385713101517, 44.69438408599033], [23.11606118028365, 44.687104952425614], [23.14211051500478, 44.69061901690513], [23.174113983376454, 44.69087002151081], [23.195325584506516, 44.69413308138465], [23.188999317502816, 44.68007682346658], [23.20835025186708, 44.67957481425522], [23.23886518682612, 44.671542666873464], [23.27645065549518, 44.66903262081666], [23.29505732315313, 44.671040657662104], [23.318501724402147, 44.6610004734349], [23.32110665787426, 44.64819923854523], [23.344551059123276, 44.63414298062715], [23.373949594022836, 44.62711485166812], [23.41376786281085, 44.61105055690461], [23.404464528981876, 44.590970188450214], [23.41711706298928, 44.57892196737758], [23.456563198424135, 44.5698858015731], [23.45358613159886, 44.55281748838687], [23.445399197829364, 44.55131146075279], [23.430885997056162, 44.534494152172236], [23.405580929041353, 44.5337411383552], [23.37990372767338, 44.54302830876535], [23.36092492666227, 44.54302830876535], [23.338224792119572, 44.52420296333936], [23.319245991108463, 44.54001625349719], [23.289103189502587, 44.53876123046879], [23.267147321666204, 44.53022707387568], [23.285381855970996, 44.51591981135193], [23.28091625573309, 44.50186355343385], [23.245563587182982, 44.495337433686174], [23.248540654008256, 44.4825361987965], [23.237376653413484, 44.47475505602042], [23.20127971815706, 44.468228936272745], [23.19793051797863, 44.452917655326274], [23.206861718454448, 44.43660235595708], [23.199419051391267, 44.413760936840205], [23.250029187420893, 44.385397416398376], [23.22472411940608, 44.38364038415862], [23.207978118513925, 44.36782709400079], [23.19085998426861, 44.36155197885879], [23.19495345115336, 44.35301782226567], [23.177835316908045, 44.32490530642953], [23.132435047822646, 44.31612014523073], [23.110107046633107, 44.27194333463107], [23.095593845859906, 44.262907168826594], [23.09075611226884, 44.24332880958356], [23.099315179391496, 44.24081876352676], [23.095593845859906, 44.222997436523485], [23.113828380164698, 44.21772633980421], [23.096710245919382, 44.19965400819525], [23.11941038046208, 44.18986482857374], [23.111595580045744, 44.150457105482], [23.098943046038336, 44.1466920363968], [23.087034778737248, 44.15723422983535], [23.006653974454906, 44.15848925286375], [23.006281841101746, 44.139914912043444], [22.985442373324844, 44.12510564030833], [22.967952105726372, 44.09875015671194], [22.92701743687888, 44.102515225797134], [22.90059596880459, 44.11506545608113], [22.87268596731767, 44.13338879229576], [22.84217103235863, 44.1466920363968], [22.814633164224865, 44.154222174567195], [22.779280495674758, 44.17555756604999], [22.75360329430679, 44.196641952927095], [22.73797369347411, 44.20141104043502], [22.695922624567142, 44.20492510491454], [22.67508315679024, 44.21722433059285], [22.67471102343708, 44.23203360232797], [22.684386490619215, 44.248097897091476], [22.686619290738168, 44.26566821948907], [22.673594623377603, 44.2839915557037], [22.646428888596997, 44.293027721508174], [22.61889102046323, 44.29352973071954], [22.565303817608335, 44.30582895639785], [22.5493020834225, 44.32289726958408], [22.525113415467164, 44.33996558277032], [22.50539034774974, 44.38087933349614], [22.500924747511828, 44.400708697344854], [22.50315754763078, 44.4175260059254], [22.465944212314884, 44.44513651255019], [22.457385145192227, 44.47048797772386], [22.475619679497015, 44.481030171162416], [22.523624882054527, 44.47224500996362], [22.549674216775657, 44.482034189585136], [22.561954617429905, 44.50562862251905], [22.56455955090202, 44.53349013374952], [22.583538351913127, 44.549554428513034], [22.616658220344277, 44.55281748838687], [22.643823955124883, 44.5450363456108], [22.68587502403185, 44.520186889648485], [22.713040758812458, 44.519935885042806], [22.755091827719426, 44.534745156777916], [22.764767294901556, 44.54051826270855], [22.763278761488923, 44.55507652983799], [22.754719694366266, 44.56586972788222], [22.70783089186823, 44.603520418734206], [22.684386490619215, 44.60929352466485], [22.669501156492856, 44.61958471349772], [22.62224022064166, 44.615066630595486], [22.56790875108045, 44.6399160865578], [22.555256217073044, 44.65296832605315], [22.509483814634486, 44.69087002151081], [22.484923013325993, 44.70844034390841], [22.46296714548961, 44.71546847286744], [22.432452210530574, 44.710448380753846], [22.414961942932102, 44.699404178103926], [22.395983141920993, 44.68183385570634], [22.3777486076162, 44.67430371753594], [22.33309260523712, 44.67555874056434], [22.304810470397037, 44.65347033526451], [22.301461270218606, 44.63891206813507], [22.275784068850633, 44.62585982863972], [22.266108601668503, 44.59649228977517], [22.231872333177872, 44.561602649585666], [22.20396233169095, 44.51717483438033], [22.19651966462777, 44.510146705421285], [22.185355664033, 44.48429323103626], [22.1626555294903, 44.4724960145693], [22.142188195066556, 44.47073898232954], [22.126558594233877, 44.47601007904882], [22.080414058442162, 44.50587962712473], [22.07297139137898, 44.522947940310964], [22.03947938959467, 44.54177328573695], [22.02905965570622, 44.55959461274023], [22.029803922412537, 44.58344005027982], [22.017523521758292, 44.59950434504333], [22.031292455825174, 44.606281469396684], [22.06255165749053, 44.61004653848189], [22.078553391676365, 44.62209475955452], [22.092694459096407, 44.61933370889204], [22.10757979322277, 44.59925334043765], [22.119115927170697, 44.59222521147861], [22.136234061416012, 44.60000635425469], [22.149258728776577, 44.587456123970696], [22.167865396434525, 44.616823662835245], [22.179029397029296, 44.62560882403404], [22.173075263378752, 44.64895225236227], [22.1481423287171, 44.65372133987019], [22.14069966165392, 44.66074946882922], [22.15893419595871, 44.73052874920823], [22.168609663140845, 44.74157295185815], [22.186472064092477, 44.74132194725247], [22.205822998456743, 44.76165332031254], [22.198008198040405, 44.7721955137511], [22.20061313151252, 44.79076985457141], [22.216614865698354, 44.81737634277348], [22.245269133891597, 44.807587163151965], [22.264620068255866, 44.78499674864077], [22.298856336746493, 44.780478665738535], [22.312625270813378, 44.77545857362494], [22.33309260523712, 44.778219624287416], [22.343140205772414, 44.77445455520222], [22.355420606426662, 44.75111112687399], [22.364723940255637, 44.74533802094335], [22.384447007973062, 44.74533802094335], [22.38965687491729, 44.75763724662166], [22.41979967652317, 44.75638222359326], [22.41905540981685, 44.7709404907227], [22.42649807688003, 44.779725651921495], [22.425381676820553, 44.80106104340429], [22.448081811363252, 44.822647439492755], [22.458501545251703, 44.850257946117544], [22.471526212612268, 44.860298130344745], [22.472270479318585, 44.86908329154354], [22.487900080151263, 44.88238653564457], [22.490505013623377, 44.89443475671721], [22.483806613266516, 44.90723599160688], [22.495714880567604, 44.91024804687504], [22.49608701392076, 44.92254727255336], [22.487155813444947, 44.93258745678055], [22.493854213801807, 44.946141705487264], [22.51581008163819, 44.953922848263346], [22.51246088145976, 44.96647307854734], [22.49310994709549, 44.97400321671773], [22.505762481102895, 44.98504741936765], [22.531067549117708, 44.997346645045965], [22.560466084017268, 45.022949114825316], [22.565303817608335, 45.03474633129227], [22.588376085504194, 45.04478651551946], [22.621123820582184, 45.07515807280673], [22.638986221533816, 45.095238441261124], [22.657965022544925, 45.108039676150796]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Mure\\u0219\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[25.248385293884706, 47.09825519458669], [25.23238355969887, 47.07591578468118], [25.232755693052027, 47.06185952676311], [25.25471156088841, 47.041026144491674], [25.27220182848688, 47.0294799326304], [25.267364094895818, 47.011156596415766], [25.290436362791674, 46.9933352694125], [25.289692096085354, 46.969238827267226], [25.285226495847446, 46.95367654171507], [25.272573961840042, 46.94664841275603], [25.271457561780565, 46.928074071935725], [25.263642761364224, 46.91276279098925], [25.278528095490586, 46.8972005054371], [25.266247694836338, 46.876869132377024], [25.253223027475773, 46.84122647837048], [25.285226495847446, 46.834951363228484], [25.2811330289627, 46.81512199937977], [25.28783142931956, 46.80206975988442], [25.31388076404069, 46.78625646972658], [25.319462764338077, 46.769690165751705], [25.290808496144834, 46.752621852565476], [25.262898494657907, 46.75036281111436], [25.261037827892114, 46.727270387391805], [25.28448222914113, 46.70668800972605], [25.296390496442218, 46.68836467351142], [25.282621562375333, 46.672300378747906], [25.253223027475773, 46.675312434016064], [25.238337693349415, 46.66979033269111], [25.239826226762048, 46.64945895963104], [25.224196625929373, 46.63941877540384], [25.222335959163576, 46.62536251748577], [25.200007957974037, 46.62686854511985], [25.18065702360977, 46.59950904310074], [25.153119155476006, 46.58469977136563], [25.152747022122846, 46.577420637800905], [25.11032381986272, 46.58319374373154], [25.089112218732655, 46.577169633195226], [25.070505551074707, 46.55583424171244], [25.02398888192983, 46.541275974583], [25.007242881037676, 46.51241044492981], [24.991985413558158, 46.5001112192515], [25.010592081216107, 46.495342131743584], [25.026593815401945, 46.47877582776871], [25.019523281691924, 46.46421756063928], [24.997567413855542, 46.46321354221656], [24.982309946376024, 46.44438819679056], [24.964819678777552, 46.44740025205872], [24.948445811238557, 46.44363518297352], [24.951422878063827, 46.43409700795769], [24.938026077350102, 46.42255079609641], [24.938026077350102, 46.40874554278402], [24.96109834524596, 46.4039764552761], [24.980821412963387, 46.38490010524443], [24.95030647800435, 46.37485992101723], [24.91011607586318, 46.39092421578074], [24.879229007550983, 46.38138604076491], [24.886671674614163, 46.36406672297299], [24.862483006658827, 46.35553256637988], [24.87104207378148, 46.33997028082773], [24.863599406718304, 46.31135575578022], [24.889648741439434, 46.2990565301019], [24.912721009335293, 46.27947817085887], [24.93244407705272, 46.26993999584303], [24.933560477112195, 46.2541267056852], [24.945096611060123, 46.24308250303529], [24.95774914506753, 46.249608622782965], [24.98751981332025, 46.237560401710326], [25.00649861433136, 46.248604604360246], [25.03924634940935, 46.24032145237281], [25.071249817781023, 46.24534154448641], [25.077948218137887, 46.23279131420241], [25.10213688609322, 46.23279131420241], [25.114417286747468, 46.209698890479864], [25.141955154881234, 46.180582356220995], [25.174702889959224, 46.167530116725636], [25.129674754226986, 46.14669673445421], [25.103253286152697, 46.15046180353941], [25.080553151609998, 46.14970878972237], [25.052643150123075, 46.13389549956453], [25.021383948457718, 46.142178651551966], [24.97970501290391, 46.125863352182776], [24.959609811833324, 46.112309103476065], [24.947701544532237, 46.09373476265575], [24.948073677885397, 46.07942750013199], [24.919791543045314, 46.07967850473767], [24.90155700874052, 46.09247973962735], [24.90192914209368, 46.10653599754542], [24.86471580677778, 46.11130508505334], [24.84350420564772, 46.10728901136246], [24.819687671045543, 46.09448777647279], [24.792894069618093, 46.098754854769346], [24.76126273459958, 46.085200606062635], [24.739306866763197, 46.08971868896487], [24.71772313227998, 46.07666644946951], [24.69800006456255, 46.083694578428556], [24.693162330971482, 46.09473878107847], [24.674555663313534, 46.10327293767158], [24.67864913019828, 46.127369379816855], [24.670462196428783, 46.13891559167813], [24.681626197023554, 46.14845376669397], [24.67567206337301, 46.168785139754036], [24.684231130495668, 46.18359441148915], [24.67902126355144, 46.21496998719914], [24.66525232948456, 46.23505035565353], [24.676788463432487, 46.25312268726248], [24.66525232948456, 46.28148620770431], [24.64962272865188, 46.27998018007023], [24.633993127819203, 46.27094401426576], [24.62617832740286, 46.25262067805112], [24.60571099297912, 46.25211866883976], [24.597151925856462, 46.26943798663167], [24.570358324429016, 46.266927940574874], [24.56440419077847, 46.2578917747704], [24.540959789529452, 46.26090383003856], [24.536866322644705, 46.250863645811364], [24.517143254927277, 46.2541267056852], [24.506351387685665, 46.24559254909209], [24.49034965349983, 46.2591467977988], [24.46802165231029, 46.26240985767264], [24.436762450644935, 46.25839378398176], [24.424482049990687, 46.263915885306716], [24.39024578150006, 46.25362469647384], [24.380570314317925, 46.24383551685233], [24.354893112949952, 46.25462871489656], [24.3009337767419, 46.2553817287136], [24.290886176206605, 46.28424725836679], [24.27451230866761, 46.276717120196395], [24.265953241544953, 46.25362469647384], [24.250695774065434, 46.250361636600005], [24.232833373113802, 46.25989981161584], [24.194875771091585, 46.28249022612703], [24.176641236786793, 46.2716970280828], [24.16324443607307, 46.27947817085887], [24.160639502600958, 46.291777396537185], [24.14873123529987, 46.29629547943942], [24.14910336865303, 46.32817306436077], [24.131240967701398, 46.33720923016525], [24.08881776544127, 46.33495018871413], [24.05197656347853, 46.343233340701566], [24.03002069564215, 46.3540265387458], [24.016996028281586, 46.36808279666388], [23.998761493976794, 46.370843847326356], [23.990946693560453, 46.38013101773651], [24.03671909599901, 46.40673750593858], [24.03336989582058, 46.44589422442464], [24.01587962822211, 46.441376141522404], [24.000622160742587, 46.42857490663273], [23.986853226675706, 46.43133595729521], [24.006204161039975, 46.442380159945124], [23.98164335973148, 46.45869545931432], [23.968990825724074, 46.47350473104943], [23.975317092727778, 46.482038887642545], [23.960803891954576, 46.51466948638093], [23.986853226675706, 46.541275974583], [24.004715627627338, 46.54152697918868], [24.028532162229514, 46.53249081338421], [24.047138829887462, 46.54529204827388], [24.038951896117965, 46.5575912739522], [24.054209363597483, 46.562109356854435], [24.054209363597483, 46.57516159634979], [24.067978297664368, 46.59725000164962], [24.065745497545414, 46.60954922732793], [24.049743763359576, 46.60980023193361], [24.027787895523197, 46.617832379315374], [24.02220589522581, 46.62837457275393], [24.03336989582058, 46.63414767868456], [24.035230562586374, 46.64519188133448], [24.095516165798134, 46.66175818530935], [24.10407523292079, 46.66200918991503], [24.117099900281353, 46.68961969653982], [24.12603110075717, 46.700412894584055], [24.090678432207067, 46.711457097233975], [24.069466831077, 46.7348005255622], [24.076165231433865, 46.74559372360644], [24.093655499032337, 46.75061381572004], [24.116727766928197, 46.74308367754964], [24.127891767522964, 46.74684874663484], [24.117099900281353, 46.769188156540345], [24.150964035418824, 46.780232359190265], [24.17105923648941, 46.78249140064138], [24.18966590414736, 46.79328459868562], [24.181106837024704, 46.805081815152576], [24.200085638035812, 46.80006172303897], [24.22576283940378, 46.781236377612984], [24.302794443507693, 46.753625870988195], [24.339263512117277, 46.75814395389043], [24.361963646659973, 46.74709975124052], [24.40029338203535, 46.751868838748436], [24.402526182154304, 46.76441906903243], [24.417039382927506, 46.77420824865395], [24.45350845153709, 46.76617610127219], [24.473603652607675, 46.78299340985274], [24.452019918124453, 46.78926852499474], [24.46020685189395, 46.81938907767633], [24.468765919016608, 46.82867624808648], [24.48253485308349, 46.83143729874896], [24.510072721217256, 46.850764653386314], [24.52681872210941, 46.85327469944311], [24.536494189291545, 46.874610090925906], [24.52681872210941, 46.8808852060679], [24.523841655284137, 46.8984555284655], [24.534633522525752, 46.90724068966429], [24.58598792526169, 46.915523841651726], [24.587104325321167, 46.929329094964125], [24.596035525796985, 46.945644394333314], [24.614642193454934, 46.944891380516275], [24.627294727462342, 46.95392754632075], [24.64515712841397, 46.93811425616292], [24.660414595893492, 46.91025274493245], [24.725910066049472, 46.903977629790454], [24.730375666287383, 46.91276279098925], [24.747865933885855, 46.916778864680126], [24.72404939928368, 46.93560421010612], [24.742656066941628, 46.95342553710939], [24.746749533826378, 46.972250882535384], [24.74191180023531, 46.98128704833986], [24.754936467595876, 46.996096320074976], [24.769449668369077, 47.00186942600561], [24.789172736086506, 47.04378719515415], [24.837177938644015, 47.07842583073798], [24.855784606301967, 47.09624715774125], [24.87141420713464, 47.10528332354573], [24.899324208621568, 47.109048392630925], [24.9316998103464, 47.09574514852989], [24.941375277528536, 47.10076524064349], [24.952539278123304, 47.118837572252446], [24.996451013796065, 47.11256245711044], [25.019895415045085, 47.11256245711044], [25.044456216353577, 47.13264282556484], [25.064923550777323, 47.136658899255714], [25.096182752442676, 47.120845609097884], [25.127069820754873, 47.12285364594332], [25.145676488412825, 47.11356647553316], [25.16577168948341, 47.12988177490236], [25.184006223788202, 47.1281247426626], [25.201496491386674, 47.11381748013884], [25.226801559401487, 47.108797388025245], [25.23498849317098, 47.09850619919237], [25.248385293884706, 47.09825519458669]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Neam\\u021b\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[26.50954522774055, 47.271950381717176], [26.519964961629, 47.2604041698559], [26.541548696112223, 47.25212101786847], [26.559783230417015, 47.24032380140151], [26.575040697896533, 47.21748238228464], [26.597368699086072, 47.21020324871992], [26.617836033509818, 47.18209073288378], [26.603694966089776, 47.17205054865658], [26.610765499799797, 47.160504336795306], [26.601834299323983, 47.15498223547035], [26.615231100037704, 47.14418903742611], [26.61634750009718, 47.109801406447964], [26.637931234580403, 47.092733093261735], [26.684447903725278, 47.11281346171612], [26.70938083838693, 47.092482088656055], [26.726871105985403, 47.08545395969702], [26.743244973524398, 47.094490125501494], [26.761107374476033, 47.09825519458669], [26.796460043026137, 47.07340573862438], [26.813578177271452, 47.067632632693744], [26.822509377747267, 47.05257235635295], [26.83516191175467, 47.04328518594279], [26.879817914133753, 47.05784345307223], [26.90400658208909, 47.028224909602], [26.934521517048125, 47.03475102934968], [26.96317578524137, 47.04604623660527], [26.963920051947685, 47.06185952676311], [26.972851252423503, 47.07717080770958], [26.985503786430908, 47.07792382152662], [27.004110454088856, 47.039771121463275], [27.023833521806285, 47.03374701092696], [27.032020455575783, 47.037763084617836], [27.034997522401053, 47.05683943464951], [27.053604190059005, 47.06361655900287], [27.06216325718166, 47.08520295509133], [27.099004459144403, 47.092231084050376], [27.157057262237206, 47.082692909034535], [27.18496726372413, 47.06110651294607], [27.187200063843083, 47.05106632871887], [27.178640996720425, 47.040775139885994], [27.18831646390256, 47.03023294644744], [27.20766739826683, 47.02772290039064], [27.221064198980553, 47.01718070695208], [27.241903666757455, 47.012160614838486], [27.231111799515844, 46.97777298386034], [27.2188313988616, 46.97400791477514], [27.200596864556807, 46.9782749930717], [27.18199019689886, 46.98906819111593], [27.173803263129358, 46.97601595162058], [27.150358861880342, 46.96170868909683], [27.135473527753984, 46.96371672594227], [27.123565260452896, 46.95091549105259], [27.172686863069885, 46.92631703969596], [27.20282966467576, 46.89469045938029], [27.203946064735238, 46.88289324291334], [27.194642730906263, 46.86883698499527], [27.221064198980553, 46.849007621146555], [27.208783798326305, 46.84022245994776], [27.223296999099507, 46.83168830335464], [27.21436579862369, 46.80307377830714], [27.21511006533001, 46.78951952960042], [27.231111799515844, 46.78550345590954], [27.235577399753755, 46.77747130852779], [27.20766739826683, 46.770192174963064], [27.190177130668356, 46.76115600915859], [27.187200063843083, 46.749860801903], [27.164872062653544, 46.74960979729732], [27.16226712918143, 46.73454952095652], [27.131380060869233, 46.7473507558462], [27.11686686009603, 46.74885678348028], [27.104214326088627, 46.768686147328985], [27.07742072466118, 46.766929115089226], [27.06662885741957, 46.75914797231315], [27.053604190059005, 46.76015199073587], [27.040579522698437, 46.770443179568744], [27.011553121152037, 46.769439161146025], [26.98066605283984, 46.76291304139835], [26.964292185300845, 46.754127880199555], [26.948290451115007, 46.75889696770747], [26.947918317761847, 46.770443179568744], [26.935637917107602, 46.78550345590954], [26.915542716037017, 46.78299340985274], [26.912565649211743, 46.794037612502656], [26.897308181732225, 46.796045649348095], [26.916286982743333, 46.81085492108321], [26.91107711579911, 46.82742122505808], [26.88353924766534, 46.82792323426944], [26.88428351437166, 46.81612601780249], [26.867537513479505, 46.806838847392335], [26.85116364594051, 46.804830810546896], [26.85116364594051, 46.780232359190265], [26.823253644453583, 46.77345523483691], [26.84334884552417, 46.751617834142756], [26.82437004451306, 46.74333468215532], [26.818788044215676, 46.73279248871676], [26.78790097590348, 46.71723020316461], [26.760363107769713, 46.73705956701332], [26.756269640884966, 46.75663792625635], [26.732825239635947, 46.74935879269164], [26.735058039754904, 46.76341505060971], [26.707148038267977, 46.767431124300586], [26.677377370015257, 46.767933133511946], [26.67253963642419, 46.755633907833634], [26.677749503368418, 46.73630655319628], [26.666585502773646, 46.73655755780196], [26.6461181683499, 46.72174828606685], [26.62490656721984, 46.72049326303845], [26.60964909974032, 46.712963124868054], [26.589926032022895, 46.68936869193414], [26.571691497718103, 46.67882649849559], [26.548247096469083, 46.67857549388991], [26.531501095576928, 46.69263175180798], [26.508056694327912, 46.69463978865342], [26.495404160320508, 46.68183855376375], [26.477169626015716, 46.67882649849559], [26.41986108962923, 46.68234056297511], [26.410557755800255, 46.66477024057751], [26.391578954789146, 46.65071398265944], [26.34729508576323, 46.6512159918708], [26.340968818759524, 46.66050316228095], [26.302639083384147, 46.6537260379276], [26.28589308249199, 46.68058353073535], [26.265425748068246, 46.69288275641366], [26.267286414834043, 46.70342494985221], [26.24123708011291, 46.69539280247046], [26.233794413049733, 46.685101613637585], [26.220025478982848, 46.68033252612967], [26.217792678863894, 46.656738093195756], [26.179835076841677, 46.65046297805376], [26.160856275830568, 46.64192882146064], [26.14894800852948, 46.657491107012795], [26.129224940812055, 46.659499143858234], [26.09759360579354, 46.648705945814], [26.080847604901386, 46.658495125435515], [26.08308040502034, 46.673806406381985], [26.074149204544522, 46.68108553994671], [26.077498404722952, 46.69438878404774], [26.069311470953455, 46.712461115656694], [26.04251786952601, 46.71396714329077], [26.014235734685926, 46.69438878404774], [25.995629067027973, 46.699157871555656], [25.979627332842135, 46.68886668272278], [25.97739453272318, 46.69689883010454], [25.909666262448248, 46.701667917612454], [25.892175994849772, 46.69313376101934], [25.888454661318182, 46.683344581397826], [25.902967862091383, 46.67054334650815], [25.910410529154564, 46.656236083984396], [25.9037121287977, 46.64970996423672], [25.867987326894436, 46.65021197344808], [25.862777459950212, 46.659248139252554], [25.834495325110126, 46.68058353073535], [25.810306657154793, 46.702169926823814], [25.795793456381592, 46.70593499590901], [25.788350789318415, 46.72375632291229], [25.80360825679793, 46.7297804334486], [25.803236123444773, 46.74132664530988], [25.817749324217974, 46.74960979729732], [25.814027990686384, 46.76341505060971], [25.81886572427745, 46.77772231313347], [25.809562390448477, 46.80031272764465], [25.824075591221675, 46.80282277370145], [25.838960925348037, 46.81763204543657], [25.795421323028435, 46.833445335594405], [25.806957456976363, 46.84072446915912], [25.789467189377888, 46.850513648780634], [25.78128025560839, 46.834951363228484], [25.76453425471624, 46.846748579695436], [25.782768789021027, 46.862812874458946], [25.766022788128872, 46.88515228436446], [25.803236123444773, 46.916527860074446], [25.802491856738456, 46.92656804430164], [25.85719545965283, 46.92104594297668], [25.84417079229226, 46.943385352882196], [25.840449458760673, 46.96296371212523], [25.821470657749565, 46.9770199700433], [25.80807385703584, 46.96572476278771], [25.793188522909478, 46.98153805294554], [25.79169998949684, 46.997100338497695], [25.77086052171994, 47.01768271616344], [25.77086052171994, 47.03550404316672], [25.750021053943037, 47.04755226423935], [25.736252119876152, 47.07390774783574], [25.716156918805567, 47.07641779389254], [25.67857145013651, 47.08997204259926], [25.663313982656987, 47.091980079444696], [25.66666318283542, 47.119088576858125], [25.69941091791341, 47.14318501900339], [25.69234038420339, 47.15498223547035], [25.70387651815132, 47.1730545670793], [25.721738919102954, 47.17481159931906], [25.717645452218203, 47.19614699080185], [25.730670119578768, 47.203677128972245], [25.731786519638245, 47.21748238228464], [25.745927587058286, 47.231287635597035], [25.78872292267157, 47.23806475995039], [25.8147722573927, 47.2616591928843], [25.806213190270043, 47.28023353370462], [25.79169998949684, 47.28650864884661], [25.78462945578682, 47.301317920581724], [25.77048838836678, 47.31562518310548], [25.795793456381592, 47.31989226140204], [25.817005057511654, 47.312362123231644], [25.83710025858224, 47.312111118625964], [25.859428259771782, 47.29504280543973], [25.88175626096132, 47.285755635029574], [25.887338261258705, 47.271448372505816], [25.925295863280923, 47.259400151433184], [25.93422706375674, 47.27697047383078], [25.969207598953684, 47.282492575155736], [25.97888306613582, 47.28876769029773], [26.009770134448015, 47.283747598184135], [26.020189868336466, 47.28926969950909], [26.057775337005527, 47.27471143237966], [26.084196805079817, 47.284751616606854], [26.106896939622516, 47.28826568108637], [26.127736407399418, 47.298556869919246], [26.14559880835105, 47.29228175477725], [26.17462520989745, 47.29679983767949], [26.187277743904858, 47.30759303572373], [26.253889614120318, 47.27998252909894], [26.280311082194608, 47.28625764424093], [26.27882254878197, 47.29529381004541], [26.391578954789146, 47.33269349629171], [26.407208555621825, 47.34047463906779], [26.43809562393402, 47.327422399572434], [26.44591042435036, 47.31713121073956], [26.501730427324212, 47.283747598184135], [26.50954522774055, 47.271950381717176]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Olt\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[24.439739517470205, 44.84573986321531], [24.42299351657805, 44.82741652700068], [24.44941498465234, 44.814615292111], [24.481790586377173, 44.822396434887075], [24.494815253737737, 44.8296755684518], [24.50039725403512, 44.84573986321531], [24.511561254629893, 44.847245890849386], [24.510816987923576, 44.86632224088106], [24.525702322049934, 44.89468576132289], [24.54244832294209, 44.89142270144905], [24.544308989707883, 44.862055162584504], [24.552123790124224, 44.859545116527705], [24.558077923774768, 44.831432600691556], [24.570730457782172, 44.81938437961892], [24.57854525819851, 44.79930401116453], [24.59008139214644, 44.79779798353045], [24.589337125440125, 44.7759605828363], [24.59268632561855, 44.75010710845127], [24.608315926451233, 44.754123182142145], [24.632876727759726, 44.73303879526503], [24.684975397201985, 44.738058887378635], [24.704326331566254, 44.73278779065936], [24.71772313227998, 44.71822952352992], [24.71214113198259, 44.710699385359526], [24.69055739749937, 44.70266723797777], [24.706559131685207, 44.656231385926986], [24.703954198213093, 44.643430151037315], [24.714373932101545, 44.6198357181034], [24.710280465216798, 44.616823662835245], [24.71214113198259, 44.58268703646278], [24.730003532934223, 44.5723958476299], [24.7311199329937, 44.55357050220391], [24.744144600354264, 44.538259221257434], [24.732980599759497, 44.522445931099604], [24.728887132874746, 44.492576383023696], [24.736329799937927, 44.492074373812336], [24.735585533231607, 44.465467885610266], [24.756797134361673, 44.46521688100459], [24.756052867655352, 44.43534733292868], [24.7456331337669, 44.423299111856046], [24.755680734302196, 44.40296773879597], [24.756052867655352, 44.39167253154038], [24.78768420267387, 44.398449655893735], [24.789172736086506, 44.3926765499631], [24.882206074376253, 44.39443358220286], [24.885555274554683, 44.38288737034158], [24.88295034108257, 44.36883111242351], [24.849086205945103, 44.36858010781783], [24.818571270986066, 44.36155197885879], [24.829735271580834, 44.3326864492056], [24.845737005766672, 44.31361009917393], [24.832712338406107, 44.30984503008873], [24.82378113793029, 44.28323854188666], [24.83085167164031, 44.27269634844811], [24.826013938049243, 44.24433282800628], [24.83866647205665, 44.226511501003], [24.804058070212864, 44.20141104043502], [24.79475473638389, 44.1916218608135], [24.807035137038135, 44.17078847854207], [24.805918736978658, 44.15999528049783], [24.815966337513952, 44.15070811008768], [24.845364872413512, 44.13389080150712], [24.855412472948807, 44.1080373271221], [24.855784606301967, 44.0954870968381], [24.83829433870349, 44.08845896787906], [24.802197403447067, 44.084693898793866], [24.80480233691918, 44.07892079286323], [24.760518467893263, 44.073900700749626], [24.762007001305896, 44.06913161324171], [24.71251326533575, 44.059342433620195], [24.721816599164725, 44.03850905134876], [24.6648801961314, 44.02947288554429], [24.614642193454934, 44.0144126092035], [24.617247126927047, 44.01039653551261], [24.606455259685436, 43.98253502428215], [24.59343059232487, 43.95843858213688], [24.619479927046, 43.964211688067515], [24.633620994466042, 43.961701642010716], [24.63510952787868, 43.94463332882448], [24.621340593811794, 43.93409113538593], [24.62468979399023, 43.92605898800417], [24.641435794882383, 43.92656099721553], [24.6648801961314, 43.89116934781467], [24.670090063075627, 43.867072905669396], [24.695767264443596, 43.870335965543234], [24.704326331566254, 43.85125961551156], [24.725165799343156, 43.83594833456509], [24.71735099892682, 43.82917121021173], [24.744888867060585, 43.82239408585837], [24.73893473341004, 43.80306673122102], [24.74935446729849, 43.79252453778247], [24.695767264443596, 43.78223334894959], [24.685347530555145, 43.772695173933755], [24.688324597380415, 43.760144943649756], [24.666740862897193, 43.74307663046353], [24.658553929127695, 43.72400028043185], [24.62468979399023, 43.74282562585785], [24.590825658852758, 43.75161078705664], [24.514166188102006, 43.76290599431224], [24.499652987328805, 43.76165097128384], [24.468765919016608, 43.74935174560552], [24.409968849217485, 43.73730352453289], [24.384291647849516, 43.719984206740975], [24.38317524779004, 43.71295607778194], [24.350055379358885, 43.69764479683546], [24.31916831104669, 43.70090785670931], [24.240276040176983, 43.69061666787643], [24.220552972459558, 43.68584758036851], [24.174780570021, 43.68283552510035], [24.114122833456083, 43.69990383828659], [24.130496700995078, 43.774954215384874], [24.136822967998782, 43.774954215384874], [24.156918169069368, 43.814361938476615], [24.177757636846273, 43.80909084175734], [24.193759371032108, 43.8108478739971], [24.193759371032108, 43.827414177971974], [24.203062704861082, 43.84724354182068], [24.20082990474213, 43.8582877444706], [24.228367772875895, 43.85176162472292], [24.22613497275694, 43.86380984579556], [24.235810439939076, 43.883639209644265], [24.228739906229055, 43.885396241884024], [24.249579374005958, 43.93057707090641], [24.225018572697465, 43.94162127355632], [24.23394977317328, 43.961701642010716], [24.253300707537548, 43.95743456371416], [24.261487641307045, 43.97425187229471], [24.266325374898113, 43.99910132825702], [24.212738172043217, 44.004874434187656], [24.175524836727316, 44.006631466427415], [24.191154437559995, 44.06938261784739], [24.201946304801606, 44.0917220277529], [24.272651641901817, 44.08946298630178], [24.272279508548657, 44.10853933633346], [24.213854572102694, 44.110296368573216], [24.236182573292233, 44.17129048775343], [24.213854572102694, 44.17405153841591], [24.23097270634801, 44.21496528914173], [24.213854572102694, 44.21898136283261], [24.20790043845215, 44.235798671413164], [24.17105923648941, 44.235296662201804], [24.175524836727316, 44.251611961570994], [24.151336168771984, 44.25638104907891], [24.14798696859355, 44.26391118724931], [24.113378566749766, 44.26717424712315], [24.110029366571332, 44.301059868889936], [24.09291123232602, 44.29955384125586], [24.070955364489638, 44.33318845841696], [24.043789629709032, 44.35000576699751], [24.046766696534306, 44.36858010781783], [24.016623894928426, 44.37736526901662], [23.98610895996939, 44.373349195325744], [23.979410559612525, 44.38037732428478], [23.9596874918951, 44.38188335191886], [23.97010722578355, 44.41074888157205], [23.952989091538235, 44.41652198750268], [23.900890422095976, 44.425307148701485], [23.883400154497505, 44.423550116461726], [23.883772287850665, 44.4338413052946], [23.89605268850491, 44.44614053097291], [23.899029755330183, 44.45793774743987], [23.87335255396221, 44.46371085337051], [23.865537753545873, 44.469734963906824], [23.890098554854365, 44.48479524024762], [23.905728155687044, 44.49935350737705], [23.891959221620162, 44.508389673181526], [23.92991682364238, 44.53047807848136], [23.941080824237147, 44.535498170594956], [23.958198958482463, 44.5312310922984], [23.990946693560453, 44.538510225863114], [24.027415762170037, 44.53047807848136], [24.054209363597483, 44.511150723844004], [24.06611763089857, 44.496090447503214], [24.079142298259136, 44.49056834617826], [24.09663256585761, 44.51617081595761], [24.11896056704715, 44.538259221257434], [24.131985234407715, 44.54152228113127], [24.143149235002483, 44.55432351602095], [24.156918169069368, 44.55884159892319], [24.173664169961523, 44.55658255747207], [24.186688837322087, 44.546291368639196], [24.199713504682652, 44.55432351602095], [24.24846297394648, 44.55306849299255], [24.26037124124757, 44.549303423907354], [24.261115507953885, 44.60050836346605], [24.282699242437108, 44.60226539570581], [24.289025509440812, 44.58670311015366], [24.289397642793972, 44.56662274169926], [24.32661097810987, 44.561100640374306], [24.326238844756713, 44.61330959835573], [24.308748577158237, 44.64568919248843], [24.302050176801377, 44.66702458397122], [24.28121070902447, 44.70793833469705], [24.27786150884604, 44.74107094264679], [24.284187775849745, 44.75010710845127], [24.276000842080247, 44.76918345848294], [24.298700976622946, 44.77194450914542], [24.31879617769353, 44.79302889602253], [24.324750311344076, 44.8309305914802], [24.32028471110617, 44.83971575267899], [24.343356979002024, 44.85377201059706], [24.33405364517305, 44.86506721785266], [24.369778447076314, 44.8720953468117], [24.38131458102424, 44.88263754025025], [24.391734314912696, 44.901713890281926], [24.425598450050163, 44.89041868302633], [24.418155782986982, 44.8557800474425], [24.439739517470205, 44.84573986321531]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Prahova\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[26.073777071191365, 45.50663498997047], [26.087918138611407, 45.49584179192624], [26.093872272261947, 45.48429558006496], [26.118805206923604, 45.477016446500244], [26.140388941406826, 45.46572123924465], [26.151925075354754, 45.450409958298174], [26.146343075057366, 45.40874319375531], [26.166438276127955, 45.40171506479628], [26.155274275533184, 45.37711661343965], [26.16867107624691, 45.363813369338615], [26.187649877258018, 45.35753825419661], [26.1932318775554, 45.34699606075806], [26.212954945272827, 45.326915692303665], [26.2241189458676, 45.326413683092305], [26.23528294646237, 45.31461646662535], [26.186905610551698, 45.27897381261881], [26.20551227820965, 45.27420472511089], [26.21928121227653, 45.27771878959041], [26.228584546105505, 45.267176596151856], [26.232678012990256, 45.2516143105997], [26.22746814604603, 45.24458618164066], [26.251656814001365, 45.212959601325], [26.269147081599836, 45.20643348157732], [26.30859321703469, 45.20869252302844], [26.33501468510898, 45.21797969343859], [26.358459086357996, 45.213461610536356], [26.34729508576323, 45.19614229274444], [26.352877086060612, 45.186855122334286], [26.35436561947325, 45.16476671703445], [26.378182154075425, 45.15874260649814], [26.398649488499167, 45.17882297495253], [26.423210289807663, 45.17555991507869], [26.461912158536197, 45.19840133419556], [26.463400691948834, 45.15874260649814], [26.47121549236517, 45.14292931634031], [26.451492424647746, 45.12661401697111], [26.45707442494513, 45.092226385992966], [26.447398957762996, 45.07365204517265], [26.46451709200831, 45.07038898529881], [26.47940242613467, 45.04779857078763], [26.478658159428353, 45.03449532668659], [26.49354349355471, 45.0056297970334], [26.511778027859503, 45.013159935203795], [26.53112896222377, 45.01516797204924], [26.53596669581484, 45.00337075558228], [26.55680616359174, 44.999856691102764], [26.57913416478128, 44.971493170660935], [26.601462165970823, 44.956181889714465], [26.534478162402202, 44.93986659034527], [26.537827362580632, 44.916774166622716], [26.562388163889125, 44.90899302384664], [26.58657683184446, 44.88263754025025], [26.594763765613962, 44.88640260933545], [26.610021233093477, 44.87234635141738], [26.607044166268206, 44.85728607507658], [26.562388163889125, 44.83896273886195], [26.526663361985864, 44.82716552239499], [26.535222429108522, 44.821894425675715], [26.50917309438739, 44.79704496971341], [26.495032026967348, 44.79127186378277], [26.45409735811986, 44.81135223223716], [26.3874854879044, 44.76240633412958], [26.37483295389699, 44.76165332031254], [26.36441322000854, 44.780227661132855], [26.3484114858227, 44.778219624287416], [26.323478551161053, 44.78700478548621], [26.303383350090463, 44.76893245387726], [26.27510121525038, 44.76918345848294], [26.273240548484587, 44.75613121898758], [26.259471614417702, 44.75763724662166], [26.25761094765191, 44.74232596567519], [26.205884411562806, 44.75010710845127], [26.180207210194837, 44.75663322819894], [26.16346120930268, 44.752617154508066], [26.154902142180024, 44.7583902604387], [26.134062674403122, 44.75010710845127], [26.113967473332536, 44.754625191353504], [26.103175606090925, 44.7671754216375], [26.09015093873036, 44.76064930188982], [26.098710005853015, 44.74358098870359], [26.09015093873036, 44.74132194725247], [26.074149204544522, 44.75111112687399], [26.05963600377132, 44.738811901195675], [26.024283335221217, 44.74508701633767], [26.00046680061904, 44.736803864350236], [25.992279866849543, 44.74458500712631], [25.973301065838434, 44.737807882772955], [25.97032399901316, 44.7209905741924], [25.95283373141469, 44.71672349589584], [25.959532131771553, 44.69589011362441], [25.93683199722885, 44.69287805835625], [25.927900796753036, 44.70919335772545], [25.91934172963038, 44.713460436022004], [25.909666262448248, 44.73429381829344], [25.935715597169377, 44.74759706239447], [25.94129759746676, 44.75763724662166], [25.9264122633404, 44.76290834334094], [25.91934172963038, 44.782235697978294], [25.906689195622974, 44.795789946685005], [25.887710394611865, 44.807085153940605], [25.8746857272513, 44.82616150397227], [25.85607905959335, 44.83067958687452], [25.84528719235174, 44.823149448704115], [25.843426525585944, 44.81034821381444], [25.802119723385296, 44.821392416464356], [25.77830318878312, 44.82515748554955], [25.775698255311006, 44.83720570662219], [25.80360825679793, 44.85251698756866], [25.80435252350425, 44.86782826851514], [25.81514439074586, 44.874856397474176], [25.809190257095317, 44.89167370605473], [25.824447724574835, 44.903470922521684], [25.812539457273747, 44.92279827715904], [25.80360825679793, 44.92129224952495], [25.78909505602473, 44.95316983444631], [25.747043987117763, 44.942627641007746], [25.71169131856766, 44.94162362258503], [25.689363317378117, 44.94764773312134], [25.679687850195986, 44.96421403709622], [25.68526985049337, 44.97902330883133], [25.677082916723872, 45.00989687532996], [25.688246917318644, 45.02947523457299], [25.703132251445002, 45.03524834050363], [25.70276011809184, 45.0455395293365], [25.688246917318644, 45.0593447826489], [25.672989449839122, 45.08394323400553], [25.64135811482061, 45.092226385992966], [25.62572851398793, 45.106784653122396], [25.594841445675733, 45.14368233015735], [25.5996791792668, 45.147698403848224], [25.56655931083565, 45.172045850599176], [25.55911664377247, 45.1928792328706], [25.536044375876614, 45.188361149968365], [25.54088210946768, 45.20392343552052], [25.535672242523454, 45.215971656593155], [25.524136108575526, 45.21873270725563], [25.519670508337615, 45.232286955962344], [25.52636890869448, 45.24433517703498], [25.55576744359404, 45.270690660631374], [25.551301843356132, 45.27947582183017], [25.504413040858097, 45.31813053110487], [25.48915557337858, 45.31486747123103], [25.47427023925222, 45.32842171993775], [25.469432505661153, 45.34724706536374], [25.472781705839584, 45.36707642921245], [25.48580637320015, 45.39543994965428], [25.471665305780107, 45.41075123060075], [25.47427023925222, 45.42631351615291], [25.453058638122155, 45.44112278788802], [25.462361971951132, 45.45417502738337], [25.486550639906465, 45.45593205962314], [25.49957530726703, 45.46772927609009], [25.515204908099708, 45.46998831754121], [25.53306730905134, 45.459446124102655], [25.55204611006245, 45.46521923003329], [25.5788397114899, 45.46798028069577], [25.590747978790986, 45.461454160948094], [25.604144779504708, 45.46371320239921], [25.608982513095775, 45.477016446500244], [25.630938380932157, 45.49031969060128], [25.66964024966069, 45.49609279653192], [25.682664917021256, 45.500861884039836], [25.70089945132605, 45.491323709024], [25.70424865150448, 45.48103252019112], [25.727693052753494, 45.46572123924465], [25.74518332035197, 45.46823128530145], [25.76751132154151, 45.46572123924465], [25.773465455192053, 45.474506400443445], [25.789839322731048, 45.48103252019112], [25.81105092386111, 45.46823128530145], [25.828541191459585, 45.44212680631074], [25.83040185822538, 45.42982758063243], [25.857939726359145, 45.42706652996995], [25.87803492742973, 45.44237781091642], [25.888826794671342, 45.44589187539594], [25.888826794671342, 45.46647425306169], [25.896269461734523, 45.473000372809366], [25.892175994849772, 45.487809644544484], [25.908549862388767, 45.500861884039836], [25.92343519651513, 45.52244828012831], [25.934971330463057, 45.51441613274655], [25.962881331949983, 45.51090206826703], [25.99711760044061, 45.51391412353519], [26.0235390685149, 45.48931567217856], [26.04214573617285, 45.47877347874], [26.0670786708345, 45.48555060309336], [26.073777071191365, 45.50663498997047]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"S\\u0103laj\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[23.842837619003173, 47.34022363446211], [23.83725561870579, 47.3229043166702], [23.80041441674305, 47.281739561338696], [23.81455548416309, 47.26818531263198], [23.8108341506315, 47.25136800405143], [23.76357321478031, 47.283747598184135], [23.754269880951334, 47.242331838246955], [23.716312278929113, 47.25011298102303], [23.683936677204283, 47.23756275073903], [23.663469342780537, 47.23706074152767], [23.645234808475745, 47.22225146979256], [23.62848880758359, 47.19413895395641], [23.63555934129361, 47.18284374670082], [23.603555872921937, 47.16477141509186], [23.575645871435015, 47.1805847052497], [23.55517853701127, 47.177572649981535], [23.542526003003864, 47.159751322978266], [23.49973066739058, 47.15498223547035], [23.503452000922167, 47.11708054001268], [23.49154373362108, 47.117582549224046], [23.484845333264218, 47.10453030972869], [23.48670600003001, 47.091227065627656], [23.45433039830518, 47.092984097867415], [23.433490930528276, 47.08520295509133], [23.448004131301477, 47.0769198031039], [23.452097598186228, 47.06386756360855], [23.474797732728923, 47.05533340701543], [23.475914132788404, 47.0169297023464], [23.434235197234596, 46.99408828322954], [23.40669732910083, 46.99057421875001], [23.408557995866623, 46.98103604373418], [23.386602128030244, 46.97752197925466], [23.378043060907586, 46.96647777660475], [23.384741461264447, 46.94966046802419], [23.356459326424364, 46.92029292915964], [23.340829725591686, 46.90899772190405], [23.326688658171644, 46.91451982322901], [23.310686923985806, 46.91125676335517], [23.292080256327857, 46.89795351925414], [23.277939188907816, 46.901969592945015], [23.25784398783723, 46.918033887708525], [23.260448921309344, 46.9346001916834], [23.239237320179278, 46.94765243117875], [23.21765358569606, 46.939620283797], [23.22807331958451, 46.93234115023228], [23.206117451748128, 46.92430900285052], [23.21244371875183, 46.902471602156375], [23.222491319287126, 46.89343543635189], [23.20202398486338, 46.88239123370198], [23.193464917740723, 46.87034301262935], [23.177835316908045, 46.8796301830395], [23.16146144936905, 46.875614109348625], [23.1346678479416, 46.85904780537375], [23.11680544698997, 46.85678876392263], [23.095965979213066, 46.85954981458511], [23.085174111971455, 46.86758196196687], [23.093733179094112, 46.890674385689415], [23.081080645086708, 46.8984555284655], [23.062473977428755, 46.901718588339335], [23.04944931006819, 46.891427399506455], [23.033075442529196, 46.901718588339335], [23.015213041577564, 46.89795351925414], [23.00590970774859, 46.90473064360749], [22.989163706856434, 46.902973611367734], [22.965719305607415, 46.91451982322901], [22.939669970886285, 46.916276855468766], [22.919202636462543, 46.93384717786636], [22.898363168685638, 46.943887362093555], [22.90059596880459, 46.969740836478586], [22.893153301741414, 46.9757649470149], [22.86449903354817, 46.98229106676258], [22.832867698529654, 46.99433928783522], [22.822820097994363, 46.9832950851853], [22.796398629920073, 46.97752197925466], [22.78151329579371, 46.98957020032729], [22.735740893355157, 47.00839554575329], [22.73053102641093, 47.00739152733057], [22.71118009204666, 47.010905591810086], [22.692945557741872, 47.0332450017156], [22.687363557444485, 47.05181934253591], [22.668756889786536, 47.05056431950751], [22.649405955422267, 47.05759244846655], [22.594702352507895, 47.064369572819906], [22.569769417846242, 47.082943913640214], [22.547069283303543, 47.0882150103595], [22.519903548522937, 47.109550401842284], [22.558605417251474, 47.11657853080132], [22.555256217073044, 47.14192999597499], [22.536277416061935, 47.14996214335675], [22.541115149653002, 47.162010364429385], [22.5120887481066, 47.1667794519373], [22.495342747214444, 47.18585580196898], [22.513205148166076, 47.19589598619617], [22.50799528122185, 47.20970123950856], [22.52957901570507, 47.22024343294712], [22.5184150151103, 47.232542658625434], [22.53776594947457, 47.23655873231631], [22.564187417548858, 47.24860695338895], [22.561954617429905, 47.26492225275814], [22.54855781671618, 47.28148855673302], [22.55265128360093, 47.300313902159004], [22.56307101748938, 47.30759303572373], [22.579444885028376, 47.30558499887829], [22.614425420225324, 47.334952537742836], [22.637125554768023, 47.34022363446211], [22.631543554470635, 47.35001281408363], [22.644196088478044, 47.36231203976194], [22.647173155303314, 47.37461126544026], [22.675455290143397, 47.377874325314096], [22.695178357860826, 47.38665948651289], [22.72420475940723, 47.392934601654886], [22.734996626648837, 47.405233827333205], [22.780396895734235, 47.4165290345888], [22.803469163630094, 47.41175994708088], [22.81240036410591, 47.40021373521961], [22.83472836529545, 47.41828606682856], [22.84961369942181, 47.419541089856956], [22.917714103049907, 47.41376798392632], [22.922179703287814, 47.394942638500325], [22.93483223729522, 47.392934601654886], [22.9340879705889, 47.381388389793614], [22.95716023848476, 47.36105701673354], [22.978371839614823, 47.352271855534745], [23.011863841399133, 47.36733213187554], [23.021911441934424, 47.35729194764834], [23.088895445503045, 47.36381806739602], [23.1056414463952, 47.37385825162322], [23.09150037897516, 47.38465144966745], [23.109734913279947, 47.396197661528724], [23.118666113755765, 47.42556520039327], [23.10526931304204, 47.44137849055111], [23.139505581532667, 47.44489255503063], [23.159972915956413, 47.44062547673407], [23.183045183852272, 47.45794479452598], [23.206117451748128, 47.44564556884767], [23.21765358569606, 47.43510337540911], [23.249657054067733, 47.43686040764887], [23.266403054959888, 47.42581620499895], [23.288731056149427, 47.42707122802735], [23.31329185745792, 47.42405917275919], [23.337852658766415, 47.41226195629224], [23.359436393249638, 47.41627802998312], [23.363901993487545, 47.40046473982529], [23.386602128030244, 47.38741250032993], [23.395161195152898, 47.39193058323217], [23.43907293082566, 47.381137385187934], [23.48335679985158, 47.378125329919776], [23.494520800446352, 47.36632811345282], [23.53992106953175, 47.36984217793234], [23.58048360502608, 47.36256304436762], [23.586065605323466, 47.37235222398914], [23.616952673635662, 47.37636829768002], [23.61285920675091, 47.38766350493561], [23.628116674230434, 47.394189624683285], [23.647095475241542, 47.393185606260566], [23.662725076074217, 47.379882362159535], [23.668307076371605, 47.36582610424146], [23.729709079642838, 47.32114728443044], [23.761340414661355, 47.326167376544035], [23.761340414661355, 47.335454546954196], [23.79111108291407, 47.33670956998259], [23.81827681769468, 47.34398870354731], [23.842837619003173, 47.34022363446211]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Satu Mare\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[23.49526506715267, 47.96798615326753], [23.511638934691668, 47.95543592298353], [23.53285053582173, 47.951670853898335], [23.544386669769658, 47.94163066967114], [23.564854004193403, 47.94414071572794], [23.59164760562085, 47.89921089131124], [23.60988213992564, 47.897955868282835], [23.62923307428991, 47.88666066102724], [23.641513474944155, 47.86482326033309], [23.62923307428991, 47.85327704847182], [23.612114940044595, 47.84750394254118], [23.59536893915244, 47.84926097478094], [23.57639013814133, 47.82441151881863], [23.56224907072129, 47.814622339197115], [23.56187693736813, 47.804331150364234], [23.53917680282543, 47.802825122730155], [23.473681332669447, 47.77948169440193], [23.46586653225311, 47.76718246872361], [23.416372796282964, 47.76843749175201], [23.408930129219783, 47.77621863452809], [23.389951328208674, 47.77948169440193], [23.312919724104763, 47.77521461610537], [23.31031479063265, 47.786509823360966], [23.283149055852043, 47.79755402601088], [23.263425988134614, 47.79755402601088], [23.226584786171873, 47.76668045951225], [23.237004520060324, 47.75136917856578], [23.2317946531161, 47.73957196209882], [23.244075053770345, 47.73078680090003], [23.28091625573309, 47.72325666272963], [23.308454123866852, 47.71221246007971], [23.34715599259539, 47.705937344937716], [23.363901993487545, 47.69941122519004], [23.36501839354702, 47.68660999030037], [23.388462794796038, 47.68761400872309], [23.36501839354702, 47.665776608028935], [23.35757572648384, 47.66803564948005], [23.33599199200062, 47.65272436853358], [23.341573992298002, 47.64393920733478], [23.316268924283193, 47.638166101404146], [23.30584919039474, 47.62762390796559], [23.289103189502587, 47.63038495862807], [23.286498256030473, 47.61507367768159], [23.29059172291522, 47.58896919869089], [23.283149055852043, 47.57742298682961], [23.262309588075137, 47.58118805591481], [23.258960387896707, 47.55056549402186], [23.2317946531161, 47.55407955850138], [23.21356011881131, 47.570394857870575], [23.16853198307907, 47.59373828619881], [23.144343315123734, 47.624611852697434], [23.123503847346832, 47.61482267307591], [23.10229224621677, 47.59198125395905], [23.066939577666663, 47.571649880898974], [23.055031310365575, 47.55583659074114], [23.05354277695294, 47.529732111750434], [23.043867309770807, 47.50839672026764], [23.047216509949237, 47.48756333799621], [23.003676907629632, 47.490826397870045], [22.988419440150114, 47.48379826891101], [22.9649750389011, 47.48681032417917], [22.963114372135305, 47.47902918140309], [22.985070239971684, 47.460956849794144], [22.967579972373212, 47.45618776228622], [22.965719305607415, 47.43962145831135], [22.999583440744885, 47.431087301718236], [23.025260642112855, 47.42958127408416], [23.036796776060786, 47.41577602077176], [23.045355843183444, 47.433095338563675], [23.080708511733548, 47.44514355963631], [23.10526931304204, 47.44137849055111], [23.118666113755765, 47.42556520039327], [23.109734913279947, 47.396197661528724], [23.09150037897516, 47.38465144966745], [23.1056414463952, 47.37385825162322], [23.088895445503045, 47.36381806739602], [23.021911441934424, 47.35729194764834], [23.011863841399133, 47.36733213187554], [22.978371839614823, 47.352271855534745], [22.95716023848476, 47.36105701673354], [22.9340879705889, 47.381388389793614], [22.93483223729522, 47.392934601654886], [22.922179703287814, 47.394942638500325], [22.917714103049907, 47.41376798392632], [22.84961369942181, 47.419541089856956], [22.83472836529545, 47.41828606682856], [22.81240036410591, 47.40021373521961], [22.803469163630094, 47.41175994708088], [22.780396895734235, 47.4165290345888], [22.734996626648837, 47.405233827333205], [22.72420475940723, 47.392934601654886], [22.695178357860826, 47.38665948651289], [22.675455290143397, 47.377874325314096], [22.647173155303314, 47.37461126544026], [22.644196088478044, 47.36231203976194], [22.631543554470635, 47.35001281408363], [22.637125554768023, 47.34022363446211], [22.614425420225324, 47.334952537742836], [22.613681153519003, 47.34047463906779], [22.58577115203208, 47.35854697067674], [22.561210350723584, 47.380635375976574], [22.56753661772729, 47.392934601654886], [22.55227915024777, 47.40171976285369], [22.537021682768252, 47.39971172600825], [22.5329282158835, 47.41678003919448], [22.491993547036014, 47.42556520039327], [22.471526212612268, 47.422804149730794], [22.461106478723817, 47.432091320140955], [22.431335810471097, 47.422804149730794], [22.409007809281555, 47.434350361592074], [22.384447007973062, 47.42857725566143], [22.361002606724046, 47.42882826026711], [22.342768072419254, 47.45593675768054], [22.342023805712937, 47.490575393264365], [22.327882738292896, 47.499611559068846], [22.28992513627068, 47.50689069263356], [22.29364646980227, 47.52295498739707], [22.287320202798565, 47.53525421307539], [22.256805267839525, 47.54052530979467], [22.26313153484323, 47.5563385999525], [22.257921667899005, 47.56713179799674], [22.237826466828416, 47.5651237611513], [22.231500199824715, 47.58269408354889], [22.21512633228572, 47.586208148028405], [22.208800065282016, 47.596750341466965], [22.182378597207727, 47.60051541055216], [22.189821264270908, 47.60955157635664], [22.205078731750426, 47.65523441459038], [22.222568999348898, 47.66075651591534], [22.224429666114695, 47.68284492121517], [22.232616599884192, 47.693638119259404], [22.260898734724275, 47.69916022058436], [22.266108601668503, 47.73153981471707], [22.286948069445405, 47.72953177787163], [22.318951537817078, 47.7435880357897], [22.331976205177643, 47.76542543648385], [22.358769806605093, 47.74936114172034], [22.390773274976766, 47.745596072635145], [22.427614476939507, 47.75036516014306], [22.434312877296367, 47.762413381215694], [22.442499811065865, 47.79203192468592], [22.449570344775886, 47.803327131941515], [22.490132880270217, 47.806088182604], [22.54148728300616, 47.78224274506441], [22.551162750188293, 47.77295557465425], [22.613309020165847, 47.77220256083721], [22.63861408818066, 47.78098772203601], [22.661686356076515, 47.78224274506441], [22.6817815571471, 47.788015850995045], [22.70113249151137, 47.81863841288799], [22.721227692581955, 47.83846777673671], [22.757696761191536, 47.83495371225718], [22.776675562202644, 47.842734855033264], [22.77481489543685, 47.86331723269901], [22.76365089484208, 47.867333306389895], [22.769977161845784, 47.87887951825117], [22.764767294901556, 47.89293577616924], [22.794537963154276, 47.89117874392948], [22.83398409858913, 47.909502080144115], [22.848497299362332, 47.908498061721396], [22.864871166901327, 47.92255431963947], [22.888687701503503, 47.951921858504015], [22.931855170469948, 47.95970300128009], [22.94599623788999, 47.96949218090161], [22.937437170767332, 47.99885971976616], [22.924784636759927, 48.00237378424568], [22.928505970291518, 48.019442097431906], [22.9794882396743, 48.01015492702175], [23.015213041577564, 47.9908275723844], [23.03195904246972, 48.00061675200592], [23.07624291149564, 48.00889990399335], [23.092616779034635, 48.005636844119515], [23.09447744580043, 48.022454152700064], [23.110851313339424, 48.03851844746358], [23.099687312744656, 48.0445425579999], [23.113828380164698, 48.05433173762141], [23.108246379867314, 48.06386991263725], [23.125364514112626, 48.08219324885188], [23.13206291446949, 48.09599850216428], [23.148064648655325, 48.100014575855155], [23.152530248893232, 48.11206279692779], [23.178579583614365, 48.12009494430954], [23.18788291744334, 48.11181179232211], [23.19085998426861, 48.09800653900972], [23.248168520655096, 48.09223343307908], [23.253378387599323, 48.101018594277875], [23.269380121785158, 48.100516585066515], [23.270496521844635, 48.08721334096548], [23.289103189502587, 48.075667129104204], [23.285753989324153, 48.05081767314189], [23.295429456506287, 48.0445425579999], [23.314408257517396, 48.045295571816936], [23.333759191881665, 48.033749359955664], [23.34008545888537, 48.01843807900919], [23.359064259896478, 48.01467300992399], [23.405208795688193, 47.99936172897752], [23.418977729755074, 47.98681149869352], [23.435351597294073, 47.9908275723844], [23.451353331479908, 47.976771314466326], [23.47628626614156, 47.97426126840953], [23.49526506715267, 47.96798615326753]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Sibiu\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[24.948073677885397, 46.07942750013199], [24.963703278718075, 46.06612425603096], [24.94658514447276, 46.05156598890153], [24.908999675803702, 46.03826274480049], [24.898952075268408, 46.04177680928001], [24.87699620743203, 46.030230597418736], [24.866948606896734, 46.00989922435866], [24.821176204458176, 46.005883150667785], [24.840155005469285, 45.98705780524179], [24.837177938644015, 45.978021639437316], [24.793266202971253, 45.9732525519294], [24.770193935075397, 45.9757625979862], [24.772798868547508, 45.962208349279486], [24.752703667476922, 45.94212798082509], [24.736701933291087, 45.938864920951254], [24.722560865871046, 45.94614405451597], [24.70507059827257, 45.94062195319101], [24.716606732220498, 45.895943133379994], [24.72739859946211, 45.89192705968911], [24.756425001008513, 45.87134468202336], [24.773171001900668, 45.868583631360885], [24.776892335432258, 45.85051129975193], [24.770193935075397, 45.839216092496336], [24.756052867655352, 45.842479152370174], [24.735957666584767, 45.83645504183386], [24.711024731923114, 45.816876682590824], [24.69130166420569, 45.83494901419978], [24.6857196639083, 45.82490882997258], [24.658553929127695, 45.814868645745385], [24.640691528176063, 45.79529028650235], [24.647762061886084, 45.76491872921508], [24.660414595893492, 45.74835242524021], [24.673811396607213, 45.720490914009744], [24.68237046372987, 45.71195675741663], [24.67864913019828, 45.692629402779275], [24.684603263848825, 45.6710430066908], [24.67902126355144, 45.663763873126086], [24.67976553025776, 45.64694656454554], [24.6712064631351, 45.640671449403534], [24.676416330079327, 45.61632400265259], [24.68646393061462, 45.60452678618563], [24.674183529960374, 45.595239615775476], [24.64552926176713, 45.60452678618563], [24.59826832591594, 45.596494638803875], [24.567381257603742, 45.579426325617646], [24.555100856949494, 45.58796048221076], [24.528307255522048, 45.580430344040366], [24.514538321455163, 45.58720746839372], [24.48253485308349, 45.57290020586996], [24.47918565290506, 45.581936371674445], [24.462811785366064, 45.581183357857405], [24.447926451239702, 45.5912235420846], [24.435273917232298, 45.582187376280125], [24.388385114734263, 45.58419541312556], [24.35973084654102, 45.57666527495516], [24.325866711403553, 45.57666527495516], [24.312842044042988, 45.56813111836205], [24.28567630926238, 45.56160499861437], [24.258882707834932, 45.543281662399735], [24.23060057299485, 45.54754874069629], [24.205667638333196, 45.52370330315671], [24.181106837024704, 45.52094225249423], [24.173664169961523, 45.51466713735223], [24.13831150141142, 45.515420151169266], [24.106308033039745, 45.51115307287271], [24.083980031850203, 45.51240809590111], [24.037835496058488, 45.52320129394535], [24.012902561396835, 45.53223745974982], [23.974944959374618, 45.53399449198958], [23.967874425664597, 45.53073143211574], [23.923962689991836, 45.5362535334407], [23.906100289040204, 45.529225404481664], [23.868886953724303, 45.52571134000215], [23.85958361989533, 45.53524951501798], [23.82199815122627, 45.529727413693024], [23.79222748297355, 45.528221386058945], [23.772876548609283, 45.51090206826703], [23.723010679285977, 45.502618916279594], [23.705148278334345, 45.49709681495464], [23.666818542958968, 45.49358275047512], [23.653049608892086, 45.51140407747839], [23.653793875598403, 45.51918522025447], [23.6392806748252, 45.544787690033814], [23.622906807286206, 45.555580888078055], [23.62216254057989, 45.5761632657438], [23.631465874408864, 45.58896450063348], [23.650444675419973, 45.59448660195844], [23.64486267512259, 45.61130391053899], [23.634442941234134, 45.62059108094915], [23.646351208535222, 45.63038026057066], [23.646351208535222, 45.640420444797854], [23.627000274170953, 45.65924579022385], [23.59871813933087, 45.67054099747944], [23.592764005680326, 45.677067117227125], [23.608021473159845, 45.68735830606], [23.590531205561373, 45.70266958700647], [23.604672272981414, 45.71371378965639], [23.603928006275098, 45.7235029692779], [23.620301873814093, 45.735300185744855], [23.61806907369514, 45.745340369972055], [23.62923307428991, 45.75312151274813], [23.647095475241542, 45.746344388394775], [23.660492275955264, 45.763663706186684], [23.64002494153152, 45.7784729779218], [23.623651073992523, 45.7834930700354], [23.62848880758359, 45.80784051678635], [23.645979075182062, 45.80482846151819], [23.696961344564848, 45.80884453520907], [23.69584494450537, 45.82566184378962], [23.716312278929113, 45.82440682076122], [23.73268614646811, 45.83193695893162], [23.734174679880745, 45.84448718921561], [23.749060014007107, 45.8620575116132], [23.775109348728236, 45.88113386164488], [23.768410948371375, 45.88866399981527], [23.75129281412606, 45.885400939941434], [23.73194187976179, 45.89744916101407], [23.731569746408635, 45.909999391298065], [23.75129281412606, 45.92254962158206], [23.760224014601874, 45.92029058013094], [23.793716016386185, 45.92807172290702], [23.81790468434152, 45.92355364000478], [23.83725561870579, 45.94890510517845], [23.8543737529511, 45.95894528940565], [23.8625606867206, 45.977017621014596], [23.854001619597945, 45.98580278221339], [23.858467219835852, 46.00111406315987], [23.85176881947899, 46.0119072612041], [23.89307562167964, 46.04403585073113], [23.969362959077234, 46.034246671109614], [23.99243522697309, 46.018684385557464], [24.008809094512088, 46.0169273533177], [24.028532162229514, 46.02897557439034], [24.034114162526897, 46.04102379546297], [24.028532162229514, 46.06286119615712], [24.044533896415352, 46.07842348170927], [24.07504883137439, 46.09348375805007], [24.091050565560224, 46.11607417256126], [24.124914700697694, 46.13665655022701], [24.153196835537777, 46.13515052259293], [24.2183201723406, 46.16251002461204], [24.209761105217943, 46.17581326871307], [24.19599217115106, 46.17757030095284], [24.190410170853678, 46.19162655887091], [24.200085638035812, 46.21371496417074], [24.191898704266315, 46.224257157609294], [24.210133238571103, 46.23304231880809], [24.23060057299485, 46.23178729577969], [24.250695774065434, 46.24182748000689], [24.2346940398796, 46.247600585937526], [24.232833373113802, 46.25989981161584], [24.250695774065434, 46.250361636600005], [24.265953241544953, 46.25362469647384], [24.27451230866761, 46.276717120196395], [24.290886176206605, 46.28424725836679], [24.3009337767419, 46.2553817287136], [24.354893112949952, 46.25462871489656], [24.380570314317925, 46.24383551685233], [24.39024578150006, 46.25362469647384], [24.424482049990687, 46.263915885306716], [24.436762450644935, 46.25839378398176], [24.46802165231029, 46.26240985767264], [24.49034965349983, 46.2591467977988], [24.506351387685665, 46.24559254909209], [24.517143254927277, 46.2541267056852], [24.536866322644705, 46.250863645811364], [24.540959789529452, 46.26090383003856], [24.56440419077847, 46.2578917747704], [24.570358324429016, 46.266927940574874], [24.597151925856462, 46.26943798663167], [24.60571099297912, 46.25211866883976], [24.62617832740286, 46.25262067805112], [24.633993127819203, 46.27094401426576], [24.64962272865188, 46.27998018007023], [24.66525232948456, 46.28148620770431], [24.676788463432487, 46.25312268726248], [24.66525232948456, 46.23505035565353], [24.67902126355144, 46.21496998719914], [24.684231130495668, 46.18359441148915], [24.67567206337301, 46.168785139754036], [24.681626197023554, 46.14845376669397], [24.670462196428783, 46.13891559167813], [24.67864913019828, 46.127369379816855], [24.674555663313534, 46.10327293767158], [24.693162330971482, 46.09473878107847], [24.69800006456255, 46.083694578428556], [24.71772313227998, 46.07666644946951], [24.739306866763197, 46.08971868896487], [24.76126273459958, 46.085200606062635], [24.792894069618093, 46.098754854769346], [24.819687671045543, 46.09448777647279], [24.84350420564772, 46.10728901136246], [24.86471580677778, 46.11130508505334], [24.90192914209368, 46.10653599754542], [24.90155700874052, 46.09247973962735], [24.919791543045314, 46.07967850473767], [24.948073677885397, 46.07942750013199]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Suceava\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[26.70268243803007, 47.47175004783838], [26.681842970253165, 47.45694077610326], [26.681842970253165, 47.44012346752271], [26.70268243803007, 47.420043099068316], [26.6688183028926, 47.405986841150245], [26.649467368528335, 47.40146875824801], [26.67588883660262, 47.381137385187934], [26.662864169242056, 47.37059519174938], [26.675144569896304, 47.35879797528242], [26.637559101227247, 47.35854697067674], [26.610765499799797, 47.35553491540858], [26.600717899264502, 47.3678341410869], [26.57280789777758, 47.3766193022857], [26.57243576442442, 47.38967154178105], [26.534478162402202, 47.39017355099241], [26.528896162104818, 47.404982822727526], [26.495032026967348, 47.39243259244353], [26.508428827681072, 47.37260322859482], [26.500241893911575, 47.36206103515626], [26.51252229456582, 47.335454546954196], [26.524430561866907, 47.336458565376915], [26.5426650961717, 47.31562518310548], [26.55382909676647, 47.309350067963486], [26.57615709795601, 47.30684002190669], [26.564248830654922, 47.29253275938293], [26.55010776323488, 47.30181992979308], [26.50954522774055, 47.271950381717176], [26.501730427324212, 47.283747598184135], [26.44591042435036, 47.31713121073956], [26.43809562393402, 47.327422399572434], [26.407208555621825, 47.34047463906779], [26.391578954789146, 47.33269349629171], [26.27882254878197, 47.29529381004541], [26.280311082194608, 47.28625764424093], [26.253889614120318, 47.27998252909894], [26.187277743904858, 47.30759303572373], [26.17462520989745, 47.29679983767949], [26.14559880835105, 47.29228175477725], [26.127736407399418, 47.298556869919246], [26.106896939622516, 47.28826568108637], [26.084196805079817, 47.284751616606854], [26.057775337005527, 47.27471143237966], [26.020189868336466, 47.28926969950909], [26.009770134448015, 47.283747598184135], [25.97888306613582, 47.28876769029773], [25.969207598953684, 47.282492575155736], [25.93422706375674, 47.27697047383078], [25.925295863280923, 47.259400151433184], [25.887338261258705, 47.271448372505816], [25.88175626096132, 47.285755635029574], [25.859428259771782, 47.29504280543973], [25.83710025858224, 47.312111118625964], [25.817005057511654, 47.312362123231644], [25.795793456381592, 47.31989226140204], [25.77048838836678, 47.31562518310548], [25.78462945578682, 47.301317920581724], [25.79169998949684, 47.28650864884661], [25.806213190270043, 47.28023353370462], [25.8147722573927, 47.2616591928843], [25.78872292267157, 47.23806475995039], [25.745927587058286, 47.231287635597035], [25.731786519638245, 47.21748238228464], [25.730670119578768, 47.203677128972245], [25.717645452218203, 47.19614699080185], [25.721738919102954, 47.17481159931906], [25.70387651815132, 47.1730545670793], [25.69234038420339, 47.15498223547035], [25.69941091791341, 47.14318501900339], [25.66666318283542, 47.119088576858125], [25.663313982656987, 47.091980079444696], [25.62535638063477, 47.095243139318534], [25.60302837944523, 47.07767281692094], [25.575862644664625, 47.08495195048566], [25.553906776828242, 47.081437886006135], [25.537160775936087, 47.083696927457254], [25.528229575460273, 47.10553432815141], [25.472781705839584, 47.13992195912955], [25.461989838597972, 47.14368702821475], [25.427009303401025, 47.17154853944522], [25.427381436754185, 47.1843497743349], [25.405425568917803, 47.17857666840426], [25.390168101438285, 47.18108671446106], [25.375654900665083, 47.175564613136096], [25.35518756624134, 47.175564613136096], [25.32095129775071, 47.16527342430322], [25.309415163802782, 47.16602643812026], [25.296390496442218, 47.15673926771011], [25.288947829379037, 47.13264282556484], [25.297506896501694, 47.1155745123786], [25.2811330289627, 47.10402830051733], [25.248385293884706, 47.09825519458669], [25.23498849317098, 47.09850619919237], [25.226801559401487, 47.108797388025245], [25.201496491386674, 47.11381748013884], [25.184006223788202, 47.1281247426626], [25.16577168948341, 47.12988177490236], [25.145676488412825, 47.11356647553316], [25.127069820754873, 47.12285364594332], [25.096182752442676, 47.120845609097884], [25.064923550777323, 47.136658899255714], [25.060085817186255, 47.15272319401923], [25.06901701766207, 47.16602643812026], [25.06231861730521, 47.17857666840426], [25.05822515042046, 47.203426124366565], [25.048549683238324, 47.22124745136984], [25.07608755137209, 47.24634791193783], [25.081297418316318, 47.257643119193425], [25.052643150123075, 47.270946363294456], [25.029570882227215, 47.28701065805797], [25.048177549885168, 47.30357696203285], [25.080925284963158, 47.31487216928844], [25.074226884606297, 47.32943043641787], [25.078692484844204, 47.34097664827915], [25.06194648395205, 47.353777883168824], [25.070505551074707, 47.36934016872098], [25.036641415937236, 47.38515345887881], [25.037385682643556, 47.39218158783785], [25.005010080918723, 47.41326597471496], [25.000916614033976, 47.420545108279676], [25.025849548695625, 47.43585638922615], [25.052643150123075, 47.41828606682856], [25.05413168353571, 47.431589310929596], [25.075343284665774, 47.43761342146591], [25.089112218732655, 47.447653605693105], [25.067528484249436, 47.45066566096126], [25.049293949944644, 47.48103721824853], [25.066784217543116, 47.48480228733373], [25.093949952323722, 47.502121605125645], [25.0950663523832, 47.51241279395852], [25.067900617602593, 47.53073613017315], [25.04631688311937, 47.5601036690377], [25.006870747684516, 47.570143853264895], [24.99086901349868, 47.586208148028405], [24.9625868786586, 47.597001346072645], [24.960354078539645, 47.61557568689295], [24.97635581272548, 47.614069659258874], [25.010964214569267, 47.63289500468487], [25.054503816888868, 47.64168016588366], [25.053015283476235, 47.65899948367558], [25.02361674857667, 47.666529621845974], [24.9834263464355, 47.69514414689348], [24.961842611952278, 47.705686340332036], [24.94956221129803, 47.717734561404676], [24.948817944591713, 47.72928077326595], [24.984914879848137, 47.72978278247731], [24.998311680561862, 47.72551570418075], [25.008731414450313, 47.734551869985225], [25.041851282881463, 47.72576670878643], [25.05524808359519, 47.743839040395386], [25.066784217543116, 47.74082698512722], [25.11739435357274, 47.75513424765098], [25.1177664869259, 47.76793548254065], [25.150514222003892, 47.7922829292916], [25.167260222896047, 47.7910279062632], [25.16837662295552, 47.80910023787216], [25.181773423669245, 47.82566654184703], [25.204101424858784, 47.840475813582145], [25.20298502479931, 47.8497629839923], [25.223452359223053, 47.85879914979677], [25.226057292695167, 47.882895591942045], [25.23945409340889, 47.89544582222604], [25.271085428427405, 47.89268477156356], [25.312392230628056, 47.91452217225771], [25.34811703253132, 47.91627920449747], [25.502552374092303, 47.93309651307803], [25.594097178969417, 47.938618614402984], [25.627217047400567, 47.94890980323586], [25.65847624906592, 47.9496628170529], [25.710574918508183, 47.94163066967114], [25.735135719816675, 47.9458977479677], [25.74108985346722, 47.94188167427682], [25.776442522017327, 47.9396226328257], [25.820354257690084, 47.95443190456081], [25.827424791400105, 47.96422108418233], [25.862777459950212, 47.97049619932433], [25.89366452826241, 47.961460033519856], [25.909666262448248, 47.965225102605054], [25.91636466280511, 47.977524328283366], [25.942041864173078, 47.97601830064929], [25.953577998121006, 47.97099820853569], [26.062613070596594, 47.9883175263276], [26.10057067261881, 47.979030355917445], [26.13034134087153, 47.95493391377217], [26.127364274046258, 47.93309651307803], [26.14932014188264, 47.924562356484905], [26.164205476009002, 47.92857843017578], [26.171276009719023, 47.91954226437131], [26.1932318775554, 47.908247057115716], [26.18616134384538, 47.89268477156356], [26.214815612038624, 47.88917070708404], [26.230073079518142, 47.900465914339634], [26.250540413941888, 47.88615865181588], [26.27472908189722, 47.87561645837733], [26.270263481659313, 47.86959234784101], [26.284032415726198, 47.856540108345655], [26.3048718835031, 47.855787094528615], [26.302266950030987, 47.83570672607422], [26.318268684216825, 47.82667056026975], [26.325711351280006, 47.80834722405512], [26.349155752529022, 47.79454197074272], [26.354737752826406, 47.78525480033257], [26.377065754015945, 47.77395959307697], [26.400510155264964, 47.78299575888145], [26.404231488796555, 47.762664385821374], [26.395300288320737, 47.747102100269224], [26.402742955383918, 47.7410779897329], [26.422466023101343, 47.747604109480584], [26.447771091116156, 47.733798856168185], [26.46079575847672, 47.71396949231948], [26.498381227145778, 47.67205172317093], [26.508800961034233, 47.663768571183496], [26.511405894506346, 47.651971354716544], [26.537827362580632, 47.64895929944838], [26.53894376264011, 47.61858774216111], [26.549363496528564, 47.61708171452703], [26.54973562988172, 47.59147924474769], [26.543409362878016, 47.58269408354889], [26.56127176382965, 47.57340691313873], [26.570202964305466, 47.5488084617821], [26.583971898372347, 47.53927028676627], [26.60555563285557, 47.53299517162427], [26.60629989956189, 47.52069594594595], [26.567225897480192, 47.51416982619828], [26.55420123011963, 47.50940073869036], [26.59067029872921, 47.490826397870045], [26.589926032022895, 47.46723196493614], [26.60927696638716, 47.46296488663958], [26.6397919013462, 47.46974201099294], [26.70268243803007, 47.47175004783838]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Teleorman\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[25.481712906315398, 44.452164641509235], [25.460873438538496, 44.42154207961629], [25.451942238062678, 44.42003605198221], [25.430358503579455, 44.40422276182437], [25.427009303401025, 44.396943628259656], [25.450081571296884, 44.387405453243815], [25.45119797135636, 44.37836928743934], [25.472781705839584, 44.373600199931424], [25.478363706136967, 44.35377083608271], [25.469432505661153, 44.32565832024657], [25.511483574568118, 44.31436311299097], [25.55279037676877, 44.318881195893205], [25.572513444486194, 44.30859000706033], [25.59632997908837, 44.31110005311713], [25.604889046211028, 44.320638228132964], [25.623123580515816, 44.31586914062505], [25.63317118105111, 44.30708397942625], [25.61940224698423, 44.291772698479775], [25.65214998206222, 44.274955389899226], [25.657731982359604, 44.29729479980474], [25.67112878307333, 44.292776716902495], [25.669268116307535, 44.27043730699699], [25.68601411719969, 44.262154155009554], [25.697178117794458, 44.249854929331235], [25.686386250552847, 44.23956374049836], [25.68154851696178, 44.223750450340525], [25.668151716248055, 44.21195323387357], [25.667779582894898, 44.20015601740662], [25.656987715653287, 44.16903144630231], [25.70462078485764, 44.16074829431487], [25.691596117497074, 44.153720165355836], [25.678943583489666, 44.15773623904671], [25.680432116902303, 44.126862672548086], [25.70834211838923, 44.13564783374688], [25.706481451623432, 44.1092923501505], [25.660336915831717, 44.114563446869774], [25.640613848114292, 44.101009198163055], [25.647684381824313, 44.09498508762674], [25.62647278069425, 44.086199926427945], [25.617169446865272, 44.06511553955083], [25.630194114225837, 44.05156129084412], [25.60823824638946, 44.04629019412484], [25.600795579326277, 44.0380070421374], [25.595585712382054, 44.01391059999214], [25.605261179564184, 43.991069180875265], [25.59298077890994, 43.98479406573327], [25.619774380337386, 43.95643054529144], [25.61940224698423, 43.937856204471124], [25.586654511906236, 43.938107209076804], [25.58591024519992, 43.9069826379725], [25.616053046805796, 43.90422158731002], [25.616053046805796, 43.882384186615866], [25.608610379742615, 43.87811710831931], [25.60823824638946, 43.84473349576388], [25.630938380932157, 43.84473349576388], [25.631310514285317, 43.82088805822429], [25.661081182538034, 43.82063705361861], [25.661825449244354, 43.77897028907575], [25.669268116307535, 43.773448187750795], [25.65252211541538, 43.75010475942256], [25.661453315891194, 43.746339690337365], [25.664058249363308, 43.719231192923935], [25.678943583489666, 43.72199224358641], [25.673361583192282, 43.691620686299146], [25.642846648233245, 43.676811414564035], [25.61158744656789, 43.66752424415388], [25.572513444486194, 43.64744387569949], [25.546091976411905, 43.64317679740293], [25.509995041155484, 43.64719287109381], [25.477991572783807, 43.64091775595181], [25.452314371415838, 43.62886953487917], [25.39165663485092, 43.61933135986334], [25.36970076701454, 43.622092410525816], [25.3410464988213, 43.63213259475301], [25.323928364575984, 43.64418081582565], [25.289319962732197, 43.65622903689828], [25.26922476166161, 43.67455237311292], [25.253967294182093, 43.68308652970603], [25.16874875630868, 43.70015484289227], [25.11292875333483, 43.68484356194579], [25.054875950242028, 43.692624704721865], [25.01691834821981, 43.71421110081034], [25.000172347327656, 43.72751434491137], [24.949190077944873, 43.729522381756816], [24.925001409989537, 43.71647014226146], [24.880717540963616, 43.7071829718513], [24.8572731397146, 43.7071829718513], [24.825269671342927, 43.71370909159898], [24.800708870034434, 43.70818699027402], [24.75419220088956, 43.68735360800259], [24.735957666584767, 43.68534557115715], [24.706186998332047, 43.694130732355944], [24.684975397201985, 43.705174935005864], [24.658553929127695, 43.72400028043185], [24.666740862897193, 43.74307663046353], [24.688324597380415, 43.760144943649756], [24.685347530555145, 43.772695173933755], [24.695767264443596, 43.78223334894959], [24.74935446729849, 43.79252453778247], [24.73893473341004, 43.80306673122102], [24.744888867060585, 43.82239408585837], [24.71735099892682, 43.82917121021173], [24.725165799343156, 43.83594833456509], [24.704326331566254, 43.85125961551156], [24.695767264443596, 43.870335965543234], [24.670090063075627, 43.867072905669396], [24.6648801961314, 43.89116934781467], [24.641435794882383, 43.92656099721553], [24.62468979399023, 43.92605898800417], [24.621340593811794, 43.93409113538593], [24.63510952787868, 43.94463332882448], [24.633620994466042, 43.961701642010716], [24.619479927046, 43.964211688067515], [24.59343059232487, 43.95843858213688], [24.606455259685436, 43.98253502428215], [24.617247126927047, 44.01039653551261], [24.614642193454934, 44.0144126092035], [24.6648801961314, 44.02947288554429], [24.721816599164725, 44.03850905134876], [24.71251326533575, 44.059342433620195], [24.762007001305896, 44.06913161324171], [24.760518467893263, 44.073900700749626], [24.80480233691918, 44.07892079286323], [24.802197403447067, 44.084693898793866], [24.83829433870349, 44.08845896787906], [24.855784606301967, 44.0954870968381], [24.855412472948807, 44.1080373271221], [24.845364872413512, 44.13389080150712], [24.815966337513952, 44.15070811008768], [24.805918736978658, 44.15999528049783], [24.807035137038135, 44.17078847854207], [24.79475473638389, 44.1916218608135], [24.804058070212864, 44.20141104043502], [24.83866647205665, 44.226511501003], [24.826013938049243, 44.24433282800628], [24.83085167164031, 44.27269634844811], [24.82378113793029, 44.28323854188666], [24.832712338406107, 44.30984503008873], [24.845737005766672, 44.31361009917393], [24.829735271580834, 44.3326864492056], [24.818571270986066, 44.36155197885879], [24.849086205945103, 44.36858010781783], [24.88295034108257, 44.36883111242351], [24.885555274554683, 44.38288737034158], [24.9625868786586, 44.37962431046774], [24.978216479491273, 44.38313837494726], [25.007242881037676, 44.40397175721869], [25.012080614628744, 44.41125089078341], [25.047805416532007, 44.397696642076696], [25.066784217543116, 44.397696642076696], [25.09581061908952, 44.415266964474284], [25.112556619981675, 44.416270982897004], [25.159073289126546, 44.43459431911164], [25.156840489007593, 44.43810838359116], [25.204845691565104, 44.45668272441147], [25.236477026583618, 44.424554134884445], [25.252106627416296, 44.40372075261301], [25.260293561185794, 44.40924285393797], [25.304949563564875, 44.424303130278766], [25.29899542991433, 44.43057824542076], [25.323556231222824, 44.440869434253635], [25.323928364575984, 44.44689354478995], [25.342907165587093, 44.46496587639891], [25.357420366360294, 44.45969477967963], [25.367840100248745, 44.47450405141474], [25.359281033126088, 44.47977514813402], [25.37044503372086, 44.49759647513729], [25.39649436844199, 44.51842985740873], [25.44040610411475, 44.50161254882817], [25.45119797135636, 44.49157236460098], [25.4299863702263, 44.47400204220338], [25.481712906315398, 44.452164641509235]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Timi\\u0219\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[20.706869851932304, 46.16125500158364], [20.71877811923339, 46.15949796934388], [20.72994211982816, 46.14519070682013], [20.765666921731423, 46.14669673445421], [20.77459812220724, 46.14318266997469], [20.783529322683055, 46.12485933376006], [20.799158923515733, 46.1218472784919], [20.805113057166277, 46.10779102057382], [20.83339519200636, 46.09122471659895], [20.858700260021173, 46.09072270738759], [20.87060852732226, 46.08294156461152], [20.890331595039687, 46.084447592245596], [20.91191532952291, 46.073152384989996], [20.94243026448195, 46.03750973098345], [20.97889933309153, 46.03876475401185], [21.051465336957534, 46.03650571256073], [21.070444137968643, 46.04001977704025], [21.076026138266027, 46.01240927041546], [21.086445872154478, 45.99734899407467], [21.11175094016929, 45.977519630225956], [21.12738054100197, 45.977519630225956], [21.173152943440527, 45.99960803552579], [21.193248144511113, 45.98530077300203], [21.238648413596508, 45.971997528901], [21.239392680302828, 45.98755981445315], [21.263581348258164, 45.99508995262355], [21.275489615559252, 46.01592333489498], [21.28628148280086, 46.02044141779722], [21.31605215105358, 46.0093972151473], [21.33540308541785, 46.00914621054162], [21.346939219365776, 46.00011004473715], [21.36926722055532, 45.990822874326994], [21.3830361546222, 46.00086305855419], [21.422854423410215, 46.01215826580978], [21.418388823172304, 46.01717835792338], [21.451136558250298, 46.02972858820738], [21.436995490830256, 46.04378484612545], [21.47904655973722, 46.06361420997416], [21.49914176080781, 46.0693873159048], [21.517376295112598, 46.0681322928764], [21.538215762889504, 46.033242652686894], [21.525935362235256, 46.01040123357002], [21.593291499157033, 45.99483894801787], [21.592547232450716, 45.990822874326994], [21.6435295018335, 45.97425657035212], [21.63199336788557, 45.94514003609325], [21.65022790219036, 45.94765008215005], [21.66846243649515, 45.9270677044843], [21.669206703201468, 45.90648532681855], [21.694139637863124, 45.91677651565142], [21.70530363845789, 45.94463802688189], [21.726143106234797, 45.96873446902716], [21.724282439469, 45.977519630225956], [21.74400550718643, 45.978523648648675], [21.76447284161017, 45.95668624795452], [21.77712537561758, 45.94790108675573], [21.77005484190756, 45.938864920951254], [21.770799108613875, 45.91727852486278], [21.800941910219755, 45.92556167685022], [21.809500977342413, 45.94488903148757], [21.82475844482193, 45.962710358490845], [21.853040579662014, 45.94739907754437], [21.867181647082056, 45.94890510517845], [21.875368580851553, 45.95769026637725], [21.895091648568982, 45.952921178869325], [21.91779178311168, 45.963463372307885], [21.92151311664327, 45.979527667071395], [21.938259117535424, 45.988312828270196], [21.95909858531233, 45.98806182366451], [21.96989045255394, 45.99458794341219], [21.989241386918206, 45.988563832875876], [21.98886925356505, 45.977770634831636], [22.000033254159817, 45.9682324598158], [22.01045298804827, 45.97124451508396], [22.047294190011012, 45.962710358490845], [22.067761524434754, 45.96070232164541], [22.101625659572225, 45.94187697621941], [22.126930727587037, 45.936856884105815], [22.12841926099967, 45.92731870908998], [22.15558499578028, 45.92104359394798], [22.168237529787685, 45.92807172290702], [22.204706598397266, 45.92154560315934], [22.219591932523628, 45.91276044196054], [22.223313266055218, 45.90347327155039], [22.245269133891597, 45.90297126233903], [22.24787406736371, 45.92129459855366], [22.261270868077435, 45.934597842654696], [22.30369407033756, 45.9320877965979], [22.324533538114466, 45.97174652429532], [22.353932073014025, 45.97300154732372], [22.38184207450095, 45.962710358490845], [22.41979967652317, 45.937358893317175], [22.41049634269419, 45.90748934524127], [22.388540474857813, 45.89770016561975], [22.38556340803254, 45.885400939941434], [22.39337820844888, 45.87435673729152], [22.409752075987875, 45.86381454385297], [22.430963677117937, 45.86456755767001], [22.475619679497015, 45.82691686681802], [22.479713146381766, 45.80784051678635], [22.471526212612268, 45.80181640625003], [22.48231807985388, 45.787007134514916], [22.501669014218148, 45.78550110688084], [22.53776594947457, 45.801314397038674], [22.553023416954087, 45.77922599173884], [22.542231549712476, 45.76567174303212], [22.50799528122185, 45.7435833377323], [22.47078194590595, 45.7310331074483], [22.46631634566804, 45.72274995546086], [22.47003767919963, 45.693884425807674], [22.464083545549087, 45.68811131987704], [22.437662077474798, 45.68258921855208], [22.427986610292663, 45.66928597445104], [22.420916076582643, 45.664014877731766], [22.398215942039947, 45.66878396523968], [22.390773274976766, 45.66275985470337], [22.35914193995825, 45.667528942211284], [22.32267287134867, 45.66250885009769], [22.311881004107057, 45.65472770732161], [22.29327433644911, 45.62008907173779], [22.292157936389632, 45.60527980000267], [22.27057420190641, 45.58570144075964], [22.256061001133208, 45.58695646378804], [22.238570733534736, 45.60527980000267], [22.21066073204781, 45.60603281381971], [22.189076997564587, 45.61833203949803], [22.173075263378752, 45.60427578157995], [22.163771929549778, 45.60879386448219], [22.13586192806285, 45.59448660195844], [22.116510993698583, 45.59097253747892], [22.108696193282245, 45.595239615775476], [22.075204191497935, 45.572147192052924], [22.046922056657852, 45.59197655590164], [22.038362989535194, 45.5874584729994], [22.051015523542603, 45.57440623350404], [22.048782723423646, 45.5500587867531], [22.07408779143846, 45.56587207691093], [22.087112458799023, 45.54754874069629], [22.09902072610011, 45.54629371766789], [22.109440459988562, 45.5362535334407], [22.089717392271137, 45.530480427510064], [22.06292379084369, 45.528472390664625], [22.05138765689576, 45.51918522025447], [22.053620457014713, 45.51014905444999], [22.03575805606308, 45.501865902462555], [22.008592321282475, 45.50437594851935], [21.9765888529108, 45.51291010511247], [21.94719031801124, 45.50613298075911], [21.938631250888584, 45.53399449198958], [21.931932850531723, 45.5400186025259], [21.908488449282704, 45.5400186025259], [21.893603115156345, 45.546042713062214], [21.882811247914734, 45.53675554265206], [21.840760179007766, 45.53675554265206], [21.83294537859143, 45.529225404481664], [21.789405776271824, 45.53349248277822], [21.749215374130653, 45.545038694639494], [21.74661044065854, 45.55231782820422], [21.725770972881637, 45.56311102624845], [21.70195443827946, 45.56386404006549], [21.689301904272057, 45.5786733118006], [21.676277236911492, 45.58595244536532], [21.649483635484042, 45.580430344040366], [21.629388434413457, 45.568382122967726], [21.60147843292653, 45.571394178235884], [21.599245632807577, 45.557086915712134], [21.57915043173699, 45.544787690033814], [21.574684831499084, 45.52269928473399], [21.582127498562265, 45.50613298075911], [21.56128803078536, 45.500610879434156], [21.530028829120006, 45.48027950637408], [21.51291069487469, 45.47776946031728], [21.50174669427992, 45.488060649150164], [21.49132696039147, 45.486303616910405], [21.45374149172241, 45.46848228990713], [21.43513482406446, 45.47124334056961], [21.433646290651826, 45.45543005041178], [21.45634642519452, 45.45417502738337], [21.45857922531348, 45.44363283394482], [21.4864892268004, 45.435098677351704], [21.49021056033199, 45.41928538719387], [21.462672692198225, 45.41526931350299], [21.44220535777448, 45.407488170726914], [21.451508691603458, 45.38665478845548], [21.451880824956614, 45.36933547066357], [21.4656497590235, 45.35879327722501], [21.454113625075568, 45.352518162083015], [21.473092426086676, 45.336453867319506], [21.49542042727622, 45.34323099167286], [21.527423895647892, 45.33143377520591], [21.533378029298436, 45.31587148965375], [21.56203229749168, 45.31662450347079], [21.566497897729587, 45.2865039507892], [21.55756669725377, 45.27269869747681], [21.536355096123707, 45.26466655009505], [21.5318894958858, 45.24885325993722], [21.522958295409982, 45.24508819085202], [21.52816816235421, 45.232035951356664], [21.518492695172075, 45.22550983160899], [21.501002427573603, 45.19639329735012], [21.47904655973722, 45.19388325129332], [21.440344691008686, 45.203170421703476], [21.43215775723919, 45.213712615142036], [21.404247755752262, 45.228772891482826], [21.39717722204224, 45.21923471646699], [21.371127887321112, 45.22651385003171], [21.361824553492138, 45.22249777634083], [21.345450685953143, 45.232035951356664], [21.29372414986404, 45.242829149400904], [21.277350282325045, 45.230027914511226], [21.250928814250756, 45.244084172429304], [21.224879479529626, 45.25337134283946], [21.20441214510588, 45.26567056851778], [21.210366278756425, 45.27571075274497], [21.192876011157953, 45.28725696460624], [21.18171201056318, 45.312859434385594], [21.185433344094772, 45.32114258637303], [21.16384960961155, 45.325409664669586], [21.145987208659918, 45.30507829160952], [21.129613341120923, 45.30507829160952], [21.09798200610241, 45.2965441350164], [21.08235240526973, 45.31813053110487], [21.063001470905462, 45.31637349886511], [21.065234271024416, 45.33243779362863], [21.017973335173224, 45.324907655458226], [21.011274934816363, 45.34172496403878], [21.00122733428107, 45.34197596864446], [20.983364933329437, 45.35778925880229], [20.961781198846214, 45.36707642921245], [20.949872931545126, 45.38590177463844], [20.937220397537722, 45.39318090820316], [20.921962930058204, 45.41752835495411], [20.901867728987618, 45.41727735034843], [20.86688719379067, 45.431584612872186], [20.87544626091333, 45.43811073261986], [20.87470199420701, 45.45568105501746], [20.862049460199604, 45.46622324845601], [20.834511592065837, 45.48027950637408], [20.772737455441444, 45.48053051097976], [20.778691589091988, 45.491323709024], [20.77013252196933, 45.500610879434156], [20.808462257344708, 45.516173164986306], [20.83413945871268, 45.5362535334407], [20.821114791352116, 45.55081180057014], [20.815160657701572, 45.568382122967726], [20.79692612339678, 45.58796048221076], [20.773481722147764, 45.583442399308524], [20.76715545514406, 45.61306094277875], [20.78092438921094, 45.622850122400266], [20.790599856393076, 45.6461935507285], [20.806601590578914, 45.65748875798409], [20.797670390103097, 45.68735830606], [20.802508123694164, 45.70241858240079], [20.80436879045996, 45.73806123640734], [20.81925412458632, 45.75236849893109], [20.824836124883703, 45.77546092265364], [20.785017856095692, 45.786254120697876], [20.775714522266718, 45.75487854498789], [20.734407720066066, 45.75613356801629], [20.702404251694393, 45.75086247129701], [20.683053317330128, 45.79754932795347], [20.664446649672175, 45.79453727268531], [20.65216624901793, 45.81210759508291], [20.661841716200062, 45.829426912874816], [20.613464380289393, 45.86431655306433], [20.59597411269092, 45.8720976958404], [20.582949445330357, 45.869587649783604], [20.57104117802927, 45.910501400509425], [20.55131811031184, 45.90021021167655], [20.517453975174373, 45.89242906890047], [20.50331290775433, 45.911003409720784], [20.48470624009638, 45.953674192686364], [20.448981438193115, 45.97049150126692], [20.40693036928615, 45.965471409153324], [20.349993966252825, 46.00011004473715], [20.3592973000818, 46.006134155273465], [20.342179165836484, 46.03650571256073], [20.34738903278071, 46.047800919816325], [20.310919964171127, 46.072399371172956], [20.303849430461106, 46.086957638302394], [20.274823028914707, 46.09850385016367], [20.26626396179205, 46.10979905741926], [20.271845962089433, 46.127620384422535], [20.298639563516883, 46.152469840384846], [20.31426916434956, 46.15046180353941], [20.357064499962846, 46.170040162782435], [20.37008916732341, 46.153222854201886], [20.39911556886981, 46.15774093710412], [20.427769837063053, 46.14569271603149], [20.460517572141047, 46.14318266997469], [20.496986640750627, 46.171546190416514], [20.493637440572197, 46.181335370038035], [20.504801441166965, 46.18986952663115], [20.526385175650187, 46.181335370038035], [20.545736110014456, 46.179327333192596], [20.596718379397238, 46.14995979432805], [20.612347980229917, 46.14569271603149], [20.635420248125776, 46.127118375211175], [20.65104984895845, 46.13565253180429], [20.65477118249004, 46.14870477129965], [20.665190916378496, 46.15121481735645], [20.683797584036444, 46.144939702214444], [20.695333717984372, 46.15774093710412], [20.706869851932304, 46.16125500158364]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Tulcea\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[28.234383319632503, 45.46346219779353], [28.26936385482945, 45.45342201356633], [28.28834265584056, 45.433341645111945], [28.286854122427922, 45.4002090371622], [28.33560359169175, 45.33344181205135], [28.351605325877586, 45.32013856795031], [28.44649933093313, 45.28976701066304], [28.456919064821584, 45.28800997842328], [28.533950668925495, 45.26265851324961], [28.56260493711874, 45.24985727835994], [28.634426674278423, 45.24483718624634], [28.67387280971328, 45.23680503886459], [28.698061477668613, 45.22651385003171], [28.720389478858152, 45.22450581318627], [28.74495028016665, 45.23354197899074], [28.782163615482546, 45.23780905728731], [28.793699749430473, 45.24985727835994], [28.763556947824597, 45.26592157312345], [28.753881480642463, 45.27922481722449], [28.75834708088037, 45.28951600605736], [28.794816149489954, 45.29353207974824], [28.807096550144202, 45.309345369906076], [28.781791482129385, 45.32340162782415], [28.804119483318928, 45.336202862713826], [28.81900481744529, 45.336202862713826], [28.846542685579053, 45.31838153571055], [28.874824820419136, 45.31637349886511], [28.90050202178711, 45.29729714883344], [28.926923489861395, 45.282738881704006], [28.950367891110414, 45.283240890915366], [28.955577758054638, 45.29880317646752], [28.949995757757257, 45.309345369906076], [28.966369625296252, 45.33218678902295], [28.98423202624788, 45.33193578441727], [29.0303765620396, 45.352016152871656], [29.045261896165957, 45.36105231867614], [29.061263630351796, 45.36080131407046], [29.08582443166029, 45.37410455817149], [29.10443109931824, 45.37435556277717], [29.120804966857236, 45.381383691736204], [29.15243630187575, 45.3889138299066], [29.18257910348163, 45.40246807861332], [29.186300437013216, 45.41100223520643], [29.213094038440666, 45.41803036416547], [29.23839910645548, 45.432337626689225], [29.251795907169203, 45.43534968195738], [29.27151897488663, 45.42807054839267], [29.30054537643303, 45.43032958984379], [29.319524177444137, 45.44614288000162], [29.33106031139207, 45.447899912241375], [29.35971457958531, 45.43710671419714], [29.38241471412801, 45.43986776485962], [29.399532848373326, 45.43660470498578], [29.431536316744996, 45.44287982012778], [29.442700317339767, 45.433592649717625], [29.480657919361985, 45.422046437856345], [29.539827122514268, 45.41175524902347], [29.591181525250207, 45.390168852935], [29.631744060744538, 45.354526198928454], [29.65258352852144, 45.33996793179902], [29.67156232953255, 45.30507829160952], [29.67937712994889, 45.269435637602975], [29.661514728997258, 45.25186531520538], [29.674167263004662, 45.2091945322398], [29.63918672780772, 45.22450581318627], [29.630255527331904, 45.206684486183], [29.642908061339305, 45.16828078151397], [29.655560595346714, 45.161252652554936], [29.683470596833637, 45.160248634132216], [29.703193664551065, 45.16476671703445], [29.675283663064143, 45.137156210409664], [29.65965406223146, 45.11205574984168], [29.652211395168283, 45.093230404415685], [29.645140861458263, 45.0555797135637], [29.635837527629285, 44.98981650687557], [29.63472112756981, 44.96747709697006], [29.616858726618176, 44.86406319942994], [29.60420619261077, 44.84071977110171], [29.589692991837573, 44.833691642142675], [29.571830590885938, 44.834946665171074], [29.55694525675958, 44.824655476338194], [29.48735631971885, 44.820388398041636], [29.43488551692343, 44.81411328289964], [29.30761591014305, 44.80457510788381], [29.265936974589245, 44.79955501577021], [29.217931772031733, 44.79127186378277], [29.1565297687605, 44.77646259204766], [29.123782033682506, 44.766924417031824], [29.088057231779242, 44.75060911766263], [29.054193096641775, 44.729273726179834], [29.013630561147444, 44.69789815046985], [28.994279626783175, 44.68057883267794], [28.98534842630736, 44.67882180043818], [28.965997491943092, 44.69237604914489], [28.932505490158782, 44.69789815046985], [28.9187365560919, 44.68861098005969], [28.89268722137077, 44.67756677740978], [28.85212468587644, 44.65372133987019], [28.82607535115531, 44.632385948387395], [28.790722682605203, 44.63615101747259], [28.779930815363592, 44.65522736750427], [28.722250145623946, 44.65472535829291], [28.68466467695489, 44.65020727539067], [28.67350067636012, 44.65497636289859], [28.68466467695489, 44.66903262081666], [28.60688880614466, 44.659996455012184], [28.5920034720183, 44.65422334908155], [28.582328004836164, 44.658239422772425], [28.533950668925495, 44.66150248264626], [28.52948506868759, 44.633138962204434], [28.471060132241625, 44.64845024315091], [28.470315865535305, 44.658741431983785], [28.450220664464723, 44.6635105194917], [28.451709197877356, 44.67455472214162], [28.436451730397838, 44.6748057267473], [28.42826479662834, 44.65598038132131], [28.44687146428629, 44.65271732144747], [28.43607959704468, 44.616823662835245], [28.414867995914616, 44.61305859375005], [28.41375159585514, 44.62711485166812], [28.38807439448717, 44.6399160865578], [28.38844652784033, 44.65196430763043], [28.378398927305035, 44.66526755173146], [28.38695799442769, 44.68082983728362], [28.366490660003947, 44.69187403993353], [28.351233192524425, 44.69087002151081], [28.31625265732748, 44.69639212283577], [28.32853305798173, 44.70743632548569], [28.31439199056169, 44.711703403782245], [28.293180389431626, 44.70894235311977], [28.27531798847999, 44.69764714586417], [28.232522652866706, 44.711703403782245], [28.245547320227274, 44.7235006202492], [28.241081719989364, 44.764916380186385], [28.217265185387188, 44.76240633412958], [28.218009452093508, 44.754876195959184], [28.196425717610285, 44.754625191353504], [28.1826567835434, 44.76115131110118], [28.18302891689656, 44.78574976245781], [28.154374648703318, 44.80081003879861], [28.133907314279575, 44.80106104340429], [28.1164170466811, 44.79327990062821], [28.07548237783361, 44.80407309867245], [28.07548237783361, 44.81436428750532], [28.09892677908263, 44.846994886243706], [28.099671045788945, 44.85778808428795], [28.1100907796774, 44.87008730996626], [28.138372914517483, 44.88238653564457], [28.143954914814866, 44.89041868302633], [28.12906958068851, 44.904474940944404], [28.126464647216395, 44.92254727255336], [28.1309302474543, 44.94036859955663], [28.152141848584364, 44.970489152238216], [28.143954914814866, 44.97977632264837], [28.129813847394825, 45.013912949020835], [28.133163047573255, 45.024455142459395], [28.154002515350157, 45.038260395771786], [28.140233581283276, 45.064615879368176], [28.136512247751686, 45.09900351034632], [28.173725583067586, 45.10076054258608], [28.180051850071287, 45.108541685362155], [28.170748516242313, 45.120840911040474], [28.19530931755081, 45.134646164352866], [28.197914251022922, 45.14016826567783], [28.173353449714426, 45.148451417665264], [28.14246638140223, 45.16878279072533], [28.092972645432084, 45.190620191419484], [28.131302380807462, 45.232537960568024], [28.117533446740577, 45.258140430347375], [28.086274245075224, 45.24985727835994], [28.047572376346686, 45.258140430347375], [28.019290241506603, 45.269937646814334], [27.996217973610744, 45.28700596000056], [28.00142784055497, 45.309094365300396], [28.028221441982417, 45.366072410789734], [28.028593575335577, 45.39569095425996], [28.031942775514008, 45.404476115458756], [28.040501842636665, 45.41602232732003], [28.07659877789309, 45.435098677351704], [28.10897437961792, 45.44162479709938], [28.13241878086694, 45.4376087234085], [28.18340105024972, 45.41351228126323], [28.194192917491332, 45.41702634574275], [28.197542117669762, 45.45216699053793], [28.21689305203403, 45.461705165553774], [28.234383319632503, 45.46346219779353]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"V\\u00e2lcea\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[24.514538321455163, 45.58720746839372], [24.514538321455163, 45.572147192052924], [24.53537778923207, 45.55056079596446], [24.54207618958893, 45.53600252883502], [24.521608855165184, 45.52495832618511], [24.515282588161483, 45.51115307287271], [24.529423655581525, 45.49684581034896], [24.52644658875625, 45.476012428077524], [24.517515388280437, 45.46647425306169], [24.4870004533214, 45.46270918397649], [24.480674186317696, 45.43785972801418], [24.484767653202443, 45.41702634574275], [24.4933267203251, 45.39870300952812], [24.507095654391982, 45.38314072397596], [24.495559520444054, 45.379124650285085], [24.502630054154075, 45.363060355521576], [24.491466053559307, 45.35829126801365], [24.484767653202443, 45.33218678902295], [24.49369885367826, 45.31486747123103], [24.48253485308349, 45.3028192501584], [24.4933267203251, 45.27796979419609], [24.481046319670853, 45.268682623785935], [24.485139786555603, 45.257387416530335], [24.469510185722925, 45.232035951356664], [24.474347919313992, 45.21220658750796], [24.498536587269328, 45.20819051381708], [24.489233253440354, 45.19639329735012], [24.514910454808323, 45.189114163785405], [24.514538321455163, 45.16602174006285], [24.501513654094598, 45.15849160189246], [24.52012032175255, 45.137658219621024], [24.514166188102006, 45.108541685362155], [24.494443120384577, 45.11080072681328], [24.50858418780462, 45.08494725242825], [24.4933267203251, 45.07691510504649], [24.48290698643665, 45.06135281949434], [24.513421921395686, 45.05532870895802], [24.51974818839939, 45.041272451039944], [24.48997752014667, 45.022949114825316], [24.484767653202443, 45.013912949020835], [24.50858418780462, 45.0006097049198], [24.48253485308349, 44.97601125356317], [24.480674186317696, 44.96396303249054], [24.50114152074144, 44.945639696275904], [24.48662831996824, 44.93685453507711], [24.465788852191334, 44.91476612977728], [24.465044585485018, 44.904474940944404], [24.481418453024013, 44.89945484883081], [24.469510185722925, 44.88138251722185], [24.464672452131857, 44.862557171795864], [24.439739517470205, 44.84573986321531], [24.418155782986982, 44.8557800474425], [24.425598450050163, 44.89041868302633], [24.391734314912696, 44.901713890281926], [24.38131458102424, 44.88263754025025], [24.369778447076314, 44.8720953468117], [24.33405364517305, 44.86506721785266], [24.343356979002024, 44.85377201059706], [24.32028471110617, 44.83971575267899], [24.324750311344076, 44.8309305914802], [24.31879617769353, 44.79302889602253], [24.298700976622946, 44.77194450914542], [24.276000842080247, 44.76918345848294], [24.284187775849745, 44.75010710845127], [24.27786150884604, 44.74107094264679], [24.28121070902447, 44.70793833469705], [24.302050176801377, 44.66702458397122], [24.308748577158237, 44.64568919248843], [24.326238844756713, 44.61330959835573], [24.32661097810987, 44.561100640374306], [24.289397642793972, 44.56662274169926], [24.289025509440812, 44.58670311015366], [24.282699242437108, 44.60226539570581], [24.261115507953885, 44.60050836346605], [24.26037124124757, 44.549303423907354], [24.24846297394648, 44.55306849299255], [24.199713504682652, 44.55432351602095], [24.186688837322087, 44.546291368639196], [24.173664169961523, 44.55658255747207], [24.156918169069368, 44.55884159892319], [24.143149235002483, 44.55432351602095], [24.131985234407715, 44.54152228113127], [24.11896056704715, 44.538259221257434], [24.09663256585761, 44.51617081595761], [24.079142298259136, 44.49056834617826], [24.06611763089857, 44.496090447503214], [24.054209363597483, 44.511150723844004], [24.027415762170037, 44.53047807848136], [23.990946693560453, 44.538510225863114], [23.958198958482463, 44.5312310922984], [23.941080824237147, 44.535498170594956], [23.92991682364238, 44.53047807848136], [23.92321842328552, 44.563359681825425], [23.912426556043904, 44.57892196737758], [23.899401888683343, 44.57515689829238], [23.883028021144344, 44.614815625989806], [23.900890422095976, 44.62585982863972], [23.87744602084696, 44.630628916147636], [23.861072153307965, 44.62560882403404], [23.84395401906265, 44.6386610635294], [23.82944081828945, 44.63640202207827], [23.81827681769468, 44.64794823393955], [23.789622549501438, 44.63765704510667], [23.78850614944196, 44.66325951488602], [23.792599616326708, 44.669534630028025], [23.782179882438257, 44.68911298927105], [23.787017616029324, 44.69363107217329], [23.782552015791417, 44.713711440627684], [23.778458548906666, 44.732285781448], [23.782552015791417, 44.7596452834671], [23.772132281902962, 44.778972638104456], [23.77771428220035, 44.79729597431909], [23.797437349917775, 44.8171253381678], [23.783296282497734, 44.83871173425627], [23.787017616029324, 44.84498684939827], [23.781807749085097, 44.862306167190184], [23.768410948371375, 44.87234635141738], [23.76208468136767, 44.89819982580241], [23.771015881843486, 44.90849101463528], [23.766178148252422, 44.92530832321584], [23.77399294866876, 44.94965576996678], [23.76357321478031, 44.96672408315302], [23.7591076145424, 45.00462577861068], [23.7736208153156, 45.0093948661186], [23.79669308321146, 45.023702128642356], [23.78404054920405, 45.06361186094546], [23.83018508499577, 45.07490706820105], [23.83018508499577, 45.08821031230209], [23.818648951047837, 45.10226657022016], [23.82497521805154, 45.11632282813824], [23.814927617516247, 45.12410397091431], [23.82981295164261, 45.135901187381265], [23.849908152713194, 45.14092127949486], [23.856978686423215, 45.15071045911638], [23.853257352891625, 45.16928479993669], [23.84097695223738, 45.19338124208196], [23.819393217754158, 45.20768850460572], [23.797809483270935, 45.26140349022121], [23.827208018170495, 45.30081121331296], [23.845814685828444, 45.31536948044239], [23.8480474859474, 45.327668706120704], [23.827208018170495, 45.335700853502466], [23.816788284282044, 45.34624304694102], [23.794088149739345, 45.35051012523758], [23.778830682259827, 45.3490040976035], [23.760968281308195, 45.337206881136545], [23.7218942792265, 45.32967674296615], [23.711846678691206, 45.33444583047407], [23.68840227744219, 45.327417701515024], [23.670539876490558, 45.34172496403878], [23.652677475538926, 45.34975711142054], [23.641141341591, 45.34875309299782], [23.630721607702544, 45.335449848896786], [23.60281160621562, 45.34323099167286], [23.59201973897401, 45.353271175900055], [23.586809872029782, 45.37008848448061], [23.601695206156144, 45.37736761804533], [23.602067339509304, 45.38841182069524], [23.592764005680326, 45.40196606940196], [23.593880405739803, 45.421544428644985], [23.578250804907128, 45.42380347009611], [23.596857472565077, 45.45266899974929], [23.59946240603719, 45.47274936820369], [23.61285920675091, 45.46697626227305], [23.61769694034198, 45.45693607804586], [23.641885608297315, 45.45593205962314], [23.676494010141102, 45.46722726687873], [23.689518677501667, 45.477267451105924], [23.69137934426746, 45.487056630727444], [23.705148278334345, 45.49709681495464], [23.723010679285977, 45.502618916279594], [23.772876548609283, 45.51090206826703], [23.79222748297355, 45.528221386058945], [23.82199815122627, 45.529727413693024], [23.85958361989533, 45.53524951501798], [23.868886953724303, 45.52571134000215], [23.906100289040204, 45.529225404481664], [23.923962689991836, 45.5362535334407], [23.967874425664597, 45.53073143211574], [23.974944959374618, 45.53399449198958], [24.012902561396835, 45.53223745974982], [24.037835496058488, 45.52320129394535], [24.083980031850203, 45.51240809590111], [24.106308033039745, 45.51115307287271], [24.13831150141142, 45.515420151169266], [24.173664169961523, 45.51466713735223], [24.181106837024704, 45.52094225249423], [24.205667638333196, 45.52370330315671], [24.23060057299485, 45.54754874069629], [24.258882707834932, 45.543281662399735], [24.28567630926238, 45.56160499861437], [24.312842044042988, 45.56813111836205], [24.325866711403553, 45.57666527495516], [24.35973084654102, 45.57666527495516], [24.388385114734263, 45.58419541312556], [24.435273917232298, 45.582187376280125], [24.447926451239702, 45.5912235420846], [24.462811785366064, 45.581183357857405], [24.47918565290506, 45.581936371674445], [24.48253485308349, 45.57290020586996], [24.514538321455163, 45.58720746839372]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Vaslui\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[28.11604491332794, 46.83796341849664], [28.115672779974783, 46.822401132944485], [28.13502371433905, 46.80307377830714], [28.1681435827702, 46.79027254341746], [28.164050115885452, 46.778475326950506], [28.180423983424447, 46.769188156540345], [28.174841983127063, 46.751868838748436], [28.187866650487628, 46.725513355152046], [28.20275198461399, 46.72174828606685], [28.22284718568457, 46.6898707011455], [28.22507998580353, 46.67656745704447], [28.237732519810933, 46.66527224978887], [28.244803053520954, 46.63389667407888], [28.25298998729045, 46.62159744840057], [28.242570253402, 46.59197890493034], [28.223963585744052, 46.579428674646344], [28.234383319632503, 46.563615384488514], [28.218009452093508, 46.53951894234324], [28.231034119454073, 46.52521167981949], [28.210938918383484, 46.5063863343935], [28.223963585744052, 46.50237026070262], [28.233266919573026, 46.4850509429107], [28.247407986993068, 46.47676779092327], [28.258944120940996, 46.45995048234272], [28.260060521000472, 46.42731988360433], [28.23177838616039, 46.414769653320334], [28.244803053520954, 46.39594430789435], [28.225452119156685, 46.388665174329624], [28.199774917788716, 46.369839828903636], [28.204612651379783, 46.35703859401396], [28.188610917193948, 46.32641603212101], [28.20870611826453, 46.317881875527895], [28.196797850963442, 46.303323608398465], [28.170748516242313, 46.29428744259398], [28.154002515350157, 46.27897616164751], [28.1391171812238, 46.28274123073271], [28.133907314279575, 46.25638574713632], [28.113439979855826, 46.23329332341377], [28.10934651297108, 46.21471898259346], [28.12758104727587, 46.20769085363442], [28.145443448227503, 46.179578337798276], [28.133907314279575, 46.154728881835965], [28.124976113803758, 46.14795175748261], [28.13539584769221, 46.129628421267974], [28.117533446740577, 46.1080420251795], [28.10599731279265, 46.11707819098398], [28.077343044599406, 46.11783120480102], [28.04273464275562, 46.1067870021511], [28.010359041030785, 46.10528097451702], [28.010731174383945, 46.1155721633499], [27.985798239722293, 46.11080307584198], [27.97463423912752, 46.12159627388622], [27.96495877194539, 46.141425637734926], [27.941142237343215, 46.13540152719861], [27.92774543662949, 46.152720844990526], [27.91211583579681, 46.153975868018925], [27.886810767782, 46.14569271603149], [27.873413967068274, 46.14569271603149], [27.87080903359616, 46.16150600618932], [27.847736765700304, 46.15874495552684], [27.846992498993984, 46.126616365999816], [27.809407030324927, 46.111807094264705], [27.816849697388108, 46.10502996991134], [27.784474095663274, 46.09524079028983], [27.781497028838004, 46.11130508505334], [27.76512316129901, 46.1155721633499], [27.76400676123953, 46.128122393633895], [27.71265235850359, 46.129377416662294], [27.681393156838233, 46.13816257786109], [27.673206223068735, 46.13314248574749], [27.65199462193867, 46.14067262391789], [27.6118042197975, 46.13640554562133], [27.59282541878639, 46.15046180353941], [27.5827778182511, 46.14468869760877], [27.595430352258504, 46.126365361394136], [27.58947621860796, 46.11155608965902], [27.60771075291275, 46.09147572120463], [27.61254848650382, 46.07691745407519], [27.628922354042814, 46.06160617312872], [27.601384485909048, 46.05633507640945], [27.597291019024297, 46.02797155596762], [27.605850086146955, 46.01968840398018], [27.588359818548483, 46.00789118751322], [27.56379901723999, 46.006887169090504], [27.54407594952256, 46.019437399374496], [27.529190615396203, 46.04403585073113], [27.516910214741955, 46.056586081015126], [27.53365621563411, 46.06737927905936], [27.51877088150775, 46.085702615273995], [27.53700541581254, 46.09473878107847], [27.52621354857093, 46.11481914953286], [27.504629814087707, 46.13966860549517], [27.48639527978292, 46.14569271603149], [27.494582213552416, 46.15949796934388], [27.502024880615597, 46.16476906606316], [27.510211814385094, 46.19338359111067], [27.50797901426614, 46.21973907470706], [27.480441146132375, 46.220994097735456], [27.471137812303397, 46.26818296360327], [27.48490674637028, 46.28173721230999], [27.465183678652856, 46.2965464840451], [27.468532878831287, 46.302570594581425], [27.457741011589675, 46.32139594000741], [27.475603412541307, 46.32340397685285], [27.4774640793071, 46.33093411502325], [27.46034594506179, 46.360552658493475], [27.453647544704925, 46.37912699931379], [27.450670477879655, 46.400462390796584], [27.43429661034066, 46.413012621080576], [27.42164407633325, 46.43133595729521], [27.412712875857437, 46.457691440891594], [27.399316075143712, 46.47224970802103], [27.369173273537832, 46.533745836412606], [27.33754193851932, 46.56562342133395], [27.32972713810298, 46.58570378978835], [27.2995843364971, 46.606788176665454], [27.27800060201388, 46.62561352209145], [27.294746602906034, 46.63941877540384], [27.321168070980324, 46.6537260379276], [27.294374469552874, 46.67706946625583], [27.328238604690345, 46.698153853132936], [27.290281002668127, 46.71622618474189], [27.24078726669798, 46.73555353937924], [27.238554466579025, 46.74785276505756], [27.212505131857895, 46.76115600915859], [27.20766739826683, 46.770192174963064], [27.235577399753755, 46.77747130852779], [27.231111799515844, 46.78550345590954], [27.21511006533001, 46.78951952960042], [27.21436579862369, 46.80307377830714], [27.223296999099507, 46.83168830335464], [27.208783798326305, 46.84022245994776], [27.221064198980553, 46.849007621146555], [27.194642730906263, 46.86883698499527], [27.203946064735238, 46.88289324291334], [27.228134732690574, 46.86833497578391], [27.253067667352227, 46.86783296657255], [27.279861268779676, 46.87184904026343], [27.296607269671828, 46.86758196196687], [27.337914071872476, 46.86808397117823], [27.339774738638273, 46.874861095531585], [27.378476607366807, 46.889670367266696], [27.399688208496872, 46.89393744556325], [27.40378167538162, 46.876116118559985], [27.41531780932955, 46.876116118559985], [27.42610967657116, 46.862812874458946], [27.473370612422354, 46.87134703105207], [27.491233013373986, 46.86984100341799], [27.502024880615597, 46.876869132377024], [27.518026614801432, 46.875363104742945], [27.534772615693587, 46.88239123370198], [27.52584141521777, 46.890925390295095], [27.521375814979862, 46.91477082783469], [27.54779728305415, 46.91477082783469], [27.564915417299467, 46.8859052981815], [27.58612701842953, 46.889168358055336], [27.60101235255589, 46.88239123370198], [27.60882715297223, 46.893184431746214], [27.63338795428072, 46.89694950083141], [27.639714221284425, 46.91276279098925], [27.616269820035406, 46.929078090358445], [27.618502620154363, 46.95016247723555], [27.60845501961907, 46.95744161080027], [27.610315686384865, 46.970744854901305], [27.62259608703911, 46.99182924177842], [27.639342087931265, 46.97752197925466], [27.660925822414487, 46.97425891938082], [27.684742357016663, 46.95543357395483], [27.695162090905114, 46.93736124234588], [27.707070358206202, 46.94037329761404], [27.72604915921731, 46.92029292915964], [27.73460822633997, 46.92255197061076], [27.7461443602879, 46.902722606762055], [27.769960894890072, 46.87812415540542], [27.79303316278593, 46.874610090925906], [27.784101962310118, 46.89795351925414], [27.78559049572275, 46.90673868045293], [27.77182156165587, 46.93234115023228], [27.772565828362186, 46.94940946341851], [27.78559049572275, 46.945895398938994], [27.81163983044388, 46.95367654171507], [27.817221830741268, 46.943636357487875], [27.813500497209677, 46.93234115023228], [27.810523430384404, 46.89469045938029], [27.81536116397547, 46.88038319685654], [27.798615163083316, 46.86055383300783], [27.83136289816131, 46.85377670865447], [27.83433996498658, 46.863816892881665], [27.84885316575978, 46.865573925121424], [27.86820410012405, 46.85603575010559], [27.87118116694932, 46.83997145534208], [27.909510902324698, 46.806587842786655], [27.929978236748443, 46.81964008228201], [27.94970130446587, 46.83771241389096], [27.943747170815325, 46.85528273628855], [27.980960506131225, 46.85779278234535], [27.991752373372837, 46.83871643231368], [28.01631317468133, 46.833947344805765], [28.043851042815096, 46.8434855198216], [28.055015043409867, 46.85176867180903], [28.092972645432084, 46.848756616540875], [28.11604491332794, 46.83796341849664]]]}}, {\"type\": \"Feature\", \"properties\": {\"\\ud83c\\udf04\": \"Vrancea\"}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[27.494582213552416, 46.15949796934388], [27.48639527978292, 46.14569271603149], [27.504629814087707, 46.13966860549517], [27.4856510130766, 46.13991961010085], [27.482673946251328, 46.126114356788456], [27.449926211173334, 46.126867370605495], [27.427970343336955, 46.13941760088949], [27.419783409567458, 46.13088344429637], [27.42983101010275, 46.11632517716694], [27.424249009805365, 46.11155608965902], [27.43020314345591, 46.09298174883871], [27.395966874965282, 46.086455629091034], [27.37103394030363, 46.086957638302394], [27.369917540244153, 46.07892549092063], [27.323773004452434, 46.07942750013199], [27.32265660439296, 46.085702615273995], [27.297723669731305, 46.084698596851275], [27.283210468958103, 46.075411426441114], [27.28097766883915, 46.059598136283284], [27.270185801597542, 46.04177680928001], [27.234833133047434, 46.04202781388569], [27.235205266400595, 46.02219845003698], [27.227762599337414, 46.00287109539963], [27.234460999694278, 45.989316846692915], [27.238926599932185, 45.95618423874316], [27.250834867233273, 45.935099851866056], [27.26274313453436, 45.92305163079342], [27.276139935248082, 45.89820217483111], [27.286187535783377, 45.88690696757551], [27.253811934058543, 45.882639889278956], [27.250090600526953, 45.87285070965744], [27.272418601716495, 45.87410573268584], [27.28172193554547, 45.857037419499605], [27.291769536080764, 45.86030047937344], [27.306282736853962, 45.842479152370174], [27.320795937627164, 45.80583247994091], [27.340146871991433, 45.78399507924676], [27.358381406296225, 45.75563155880493], [27.353543672705158, 45.75111347590269], [27.364707673299925, 45.72576201072902], [27.40415380873478, 45.68886433369408], [27.4112243424448, 45.678071135649844], [27.42685394327748, 45.66928597445104], [27.449181944467018, 45.677569126438485], [27.45625247817704, 45.65472770732161], [27.471509945656557, 45.63690638031834], [27.48490674637028, 45.640922454009214], [27.5001642138498, 45.63565135728994], [27.515421681329318, 45.61883404870939], [27.51951514821407, 45.59222756050732], [27.532539815574633, 45.57917532101196], [27.511700347797728, 45.57691627956084], [27.505746214147187, 45.56336203085413], [27.52584141521777, 45.553572851232616], [27.52993488210252, 45.541775634765656], [27.52621354857093, 45.51968722946583], [27.54147101605045, 45.51215709129543], [27.54444808287572, 45.499606861011436], [27.5600776837084, 45.48856265836152], [27.48192967954501, 45.43660470498578], [27.44136714405068, 45.41476730429163], [27.43057527680907, 45.405982143092835], [27.435413010400136, 45.39468693583724], [27.402293141968983, 45.37711661343965], [27.395222608258962, 45.38339172858164], [27.379965140779444, 45.37510857659421], [27.338286205225636, 45.37159451211469], [27.34126327205091, 45.383893737793], [27.271674335010175, 45.39041985754068], [27.26572020135963, 45.421293424039305], [27.28172193554547, 45.42781954378699], [27.28097766883915, 45.45467703659474], [27.258277534296454, 45.449405939875454], [27.238182333225865, 45.432588631294905], [27.225157665865304, 45.42781954378699], [27.205806731501035, 45.45317100896065], [27.19575913096574, 45.45367301817201], [27.17640819660147, 45.42857255760403], [27.149242461820865, 45.41652433653139], [27.144776861582958, 45.41075123060075], [27.116122593389715, 45.40949620757235], [27.120960326980782, 45.421544428644985], [27.106074992854424, 45.42631351615291], [27.12207672704026, 45.447899912241375], [27.144404728229798, 45.45166498132657], [27.160034329062476, 45.46547023463897], [27.137706327872937, 45.46597224385033], [27.11091272644549, 45.475259414260485], [27.091561792081222, 45.44614288000162], [27.049882856527415, 45.45191598593225], [27.00299405402938, 45.491323709024], [26.97322338577666, 45.5349985104123], [26.956849518237664, 45.529225404481664], [26.929683783457058, 45.5349985104123], [26.902145915323292, 45.5349985104123], [26.901401648616975, 45.52345229855103], [26.886888447843774, 45.51667517419767], [26.85451284611894, 45.52546033539647], [26.834045511695194, 45.51868321104311], [26.826230711278857, 45.52320129394535], [26.806879776914588, 45.54805074990766], [26.768177908186054, 45.55156481438718], [26.749571240528102, 45.54905476833038], [26.748454840468625, 45.56286002164277], [26.738035106580174, 45.571143173630205], [26.72166123904118, 45.571394178235884], [26.68630857049107, 45.60201674012883], [26.667701902833123, 45.61180591975035], [26.649467368528335, 45.60929587369355], [26.61634750009718, 45.62812121911954], [26.59513589896712, 45.62059108094915], [26.591414565435528, 45.63414532965586], [26.58025056484076, 45.63665537571266], [26.562388163889125, 45.62812121911954], [26.5426650961717, 45.64192647243193], [26.531501095576928, 45.641424463220574], [26.50954522774055, 45.667277937605604], [26.49428776026103, 45.677067117227125], [26.484612293078897, 45.70141456397807], [26.46861055889306, 45.704928628457594], [26.4682384255399, 45.719737900192705], [26.443677624231405, 45.73128411205398], [26.437723490580865, 45.7398182686471], [26.444421890937726, 45.75086247129701], [26.44293335752509, 45.77571192725932], [26.42804802339873, 45.789015171360354], [26.411302022506575, 45.790270194388754], [26.393439621554943, 45.80282042467275], [26.376693620662788, 45.82315179773282], [26.372600153778038, 45.84373417539857], [26.375949353956468, 45.858041437922324], [26.389346154670193, 45.87385472808016], [26.37855428742858, 45.88966801823799], [26.377065754015945, 45.90748934524127], [26.396044555027053, 45.92104359394798], [26.388974021317033, 45.93936693016261], [26.39083468808283, 45.95543122492613], [26.399393755205487, 45.96622442297036], [26.438839890640338, 45.989316846692915], [26.433630023696114, 46.00036104934283], [26.44702682440984, 46.02019041319154], [26.441444824112452, 46.03926676322321], [26.458190825004607, 46.03449767571529], [26.492799226848394, 46.045541878365206], [26.517360028156887, 46.02721854215058], [26.536710962521155, 46.02872456978466], [26.574296431190213, 46.01717835792338], [26.581366964900237, 46.02169644082562], [26.587693231903938, 46.04077279085729], [26.610021233093477, 46.04529087375953], [26.64239683481831, 46.06587325142528], [26.641280434758833, 46.07089334353888], [26.6688183028926, 46.08971868896487], [26.696356171026366, 46.08896567514783], [26.7060316382085, 46.09498978568415], [26.720544838981702, 46.08896567514783], [26.787156709197163, 46.08896567514783], [26.80911257703354, 46.06612425603096], [26.82437004451306, 46.0718973619616], [26.846325912349442, 46.07164635735592], [26.849302979174716, 46.07867448631495], [26.878329380721116, 46.08218855079447], [26.900285248557495, 46.07842348170927], [26.934521517048125, 46.06512023760824], [26.94308058417078, 46.083192569217196], [26.953128184706074, 46.086204624485354], [26.955360984825028, 46.1055319791227], [26.99183005343461, 46.113313121898784], [27.033508988988416, 46.099256863980706], [27.075560057895384, 46.08771065211943], [27.087468325196472, 46.09423677186711], [27.10384219273547, 46.08946768435919], [27.107935659620217, 46.113313121898784], [27.123193127099736, 46.102017914643184], [27.141055528051368, 46.13163645811341], [27.131007927516073, 46.13866458707245], [27.13249646092871, 46.15021079893373], [27.171570463010404, 46.169789158176755], [27.179757396779905, 46.180582356220995], [27.20282966467576, 46.179829342403956], [27.223296999099507, 46.19162655887091], [27.23706593316639, 46.18961852202547], [27.24078726669798, 46.17857431937556], [27.271302201657015, 46.18334340688347], [27.264231667946994, 46.20066272467538], [27.30702700356028, 46.20568281678898], [27.319307404214527, 46.2029217661265], [27.324517271158754, 46.18434742530619], [27.335309138400365, 46.168785139754036], [27.35168300593936, 46.169036144359715], [27.35168300593936, 46.153222854201886], [27.376615940601013, 46.15824294631548], [27.382197940898397, 46.16527107527452], [27.38070940748576, 46.19012053123683], [27.395222608258962, 46.194638614139066], [27.449554077820178, 46.18434742530619], [27.460718078414946, 46.15774093710412], [27.483046079604485, 46.16652609830292], [27.494582213552416, 46.15949796934388]]]}}]}"
},
"options": {
"readOnly": true,
"centerMap": false
}
};
(function(i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function() {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-64694404-19', {
'storage': 'none',
'clientId': localStorage.getItem('ga:clientId')
});
ga(function(tracker) {
localStorage.setItem('ga:clientId', tracker.get('clientId'));
});
ga('set', 'checkProtocolTask', null); // Disable file protocol checking.
ga('set', 'checkStorageTask', null); // Disable cookie storage checking.
ga('set', 'historyImportTask', null); // Disable history checking (requires reading from cookies).
ga('set', 'page', 'keplergl-jupyter-html');
ga('send', 'pageview');
! function(e, t) {
if ("object" == typeof exports && "object" == typeof module) module.exports = t(require("react"), require("kepler.gl/components"), require("kepler.gl/actions"), require("styled-components"), require("redux"), require("kepler.gl/reducers"), require("kepler.gl/schemas"), require("kepler.gl/processors"), require("kepler.gl/middleware"), require("react-dom"), require("react-redux"), require("react-intl"), require("react-copy-to-clipboard"), require("react-helmet"));
else if ("function" == typeof define && define.amd) define([, , , , , , , , , , , , , ], t);
else {
var n = "object" == typeof exports ? t(require("react"), require("kepler.gl/components"), require("kepler.gl/actions"), require("styled-components"), require("redux"), require("kepler.gl/reducers"), require("kepler.gl/schemas"), require("kepler.gl/processors"), require("kepler.gl/middleware"), require("react-dom"), require("react-redux"), require("react-intl"), require("react-copy-to-clipboard"), require("react-helmet")) : t(e.React, e.KeplerGl, e.KeplerGl, e.styled, e.Redux, e.KeplerGl, e.KeplerGl, e.KeplerGl, e.KeplerGl, e.ReactDOM, e.ReactRedux, e.ReactIntl, e.CopyToClipboard, e.Helmet);
for (var r in n)("object" == typeof exports ? exports : e)[r] = n[r]
}
}(window, (function(e, t, n, r, o, i, a, c, l, u, p, f, s, d) {
return function(e) {
var t = {};
function n(r) {
if (t[r]) return t[r].exports;
var o = t[r] = {
i: r,
l: !1,
exports: {}
};
return e[r].call(o.exports, o, o.exports, n), o.l = !0, o.exports
}
return n.m = e, n.c = t, n.d = function(e, t, r) {
n.o(e, t) || Object.defineProperty(e, t, {
enumerable: !0,
get: r
})
}, n.r = function(e) {
"undefined" != typeof Symbol && Symbol.toStringTag && Object.defineProperty(e, Symbol.toStringTag, {
value: "Module"
}), Object.defineProperty(e, "__esModule", {
value: !0
})
}, n.t = function(e, t) {
if (1 & t && (e = n(e)), 8 & t) return e;
if (4 & t && "object" == typeof e && e && e.__esModule) return e;
var r = Object.create(null);
if (n.r(r), Object.defineProperty(r, "default", {
enumerable: !0,
value: e
}), 2 & t && "string" != typeof e)
for (var o in e) n.d(r, o, function(t) {
return e[t]
}.bind(null, o));
return r
}, n.n = function(e) {
var t = e && e.__esModule ? function() {
return e.default
} : function() {
return e
};
return n.d(t, "a", t), t
}, n.o = function(e, t) {
return Object.prototype.hasOwnProperty.call(e, t)
}, n.p = "", n(n.s = 19)
}([function(t, n) {
t.exports = e
}, function(e, n) {
e.exports = t
}, function(e, t) {
e.exports = n
}, function(e, t) {
e.exports = r
}, function(e, t) {
e.exports = o
}, function(e, t) {
e.exports = i
}, function(e, t, n) {
(function(t) {
var r, o = void 0 !== t ? t : "undefined" != typeof window ? window : {},
i = n(18);
"undefined" != typeof document ? r = document : (r = o["__GLOBAL_DOCUMENT_CACHE@4"]) || (r = o["__GLOBAL_DOCUMENT_CACHE@4"] = i), e.exports = r
}).call(this, n(10))
}, function(e, t) {
e.exports = a
}, function(e, t) {
e.exports = console
}, function(e, t) {
e.exports = c
}, function(e, t) {
var n;
n = function() {
return this
}();
try {
n = n || new Function("return this")()
} catch (e) {
"object" == typeof window && (n = window)
}
e.exports = n
}, function(e, t) {
e.exports = l
}, function(e, t) {
e.exports = u
}, function(e, t) {
e.exports = p
}, function(e, t) {
e.exports = f
}, function(e, t) {
e.exports = s
}, function(e, t, n) {
(function(t) {
var n;
n = "undefined" != typeof window ? window : void 0 !== t ? t : "undefined" != typeof self ? self : {}, e.exports = n
}).call(this, n(10))
}, function(e, t) {
e.exports = d
}, function(e, t) {}, function(e, t, n) {
"use strict";
n.r(t);
var r = n(4),
o = n(5),
i = n(11);
function a(e) {
return function(e) {
if (Array.isArray(e)) {
for (var t = 0, n = new Array(e.length); t < e.length; t++) n[t] = e[t];
return n
}
}(e) || function(e) {
if (Symbol.iterator in Object(e) || "[object Arguments]" === Object.prototype.toString.call(e)) return Array.from(e)
}(e) || function() {
throw new TypeError("Invalid attempt to spread non-iterable instance")
}()
}
var c = o.keplerGlReducer.initialState({
uiState: {
currentModal: null,
activeSidePanel: null
}
}),
l = Object(r.combineReducers)({
keplerGl: c
}),
u = function(e) {
var t = Object(i.enhanceReduxMiddleware)([function(t) {
return function(n) {
return function(r) {
var o = n(r);
return "function" == typeof e && e(r, t), o
}
}
}]),
n = [r.applyMiddleware.apply(void 0, a(t))];
return Object(r.createStore)(l, {}, r.compose.apply(void 0, n))
},
p = n(0),
f = n.n(p),
s = n(12),
d = n.n(s),
y = n(13),
m = n(3),
b = n.n(m),
g = n(1),
v = n(2),
h = n(14);
function w() {
return (w = Object.assign || function(e) {
for (var t = 1; t < arguments.length; t++) {
var n = arguments[t];
for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r])
}
return e
}).apply(this, arguments)
}
var j = function() {
var e = Object(g.PanelHeaderFactory)();
return Object(g.withState)([], (function(e) {
return e
}), {
toggleModal: v.toggleModal
})((function(t) {
return f.a.createElement(h.IntlProvider, {
locale: "en",
messages: {
"tooltip.documentation": "Documentation"
}
}, f.a.createElement(e, w({}, t, {
actionItems: [{
id: "docs",
iconComponent: g.Icons.Docs,
href: "https://docs.kepler.gl/docs/keplergl-jupyter",
blank: !0,
tooltip: "tooltip.documentation",
onClick: function() {}
}]
})))
}))
};
function O() {
var e = function(e, t) {
t || (t = e.slice(0));
return Object.freeze(Object.defineProperties(e, {
raw: {
value: Object.freeze(t)
}
}))
}(["\n .side-panel--container {\n transform:scale(0.85);\n transform-origin: top left;\n height: 117.64%;\n padding-top: 0;\n padding-right: 0;\n padding-bottom: 0;\n padding-left: 0;\n\n .side-bar {\n height: 100%;\n }\n .side-bar__close {\n right: -30px;\n top: 14px;\n }\n }\n"]);
return O = function() {
return e
}, e
}
var x = b.a.div(O());
var E = function() {
var e = Object(g.CollapseButtonFactory)(),
t = Object(g.SidebarFactory)(e);
return function(e) {
return f.a.createElement(x, null, f.a.createElement(t, e))
}
},
S = n(7),
q = n(15);
function A(e, t) {
return function(e) {
if (Array.isArray(e)) return e
}(e) || function(e, t) {
if (!(Symbol.iterator in Object(e)) && "[object Arguments]" !== Object.prototype.toString.call(e)) return;
var n = [],
r = !0,
o = !1,
i = void 0;
try {
for (var a, c = e[Symbol.iterator](); !(r = (a = c.next()).done) && (n.push(a.value), !t || n.length !== t); r = !0);
} catch (e) {
o = !0, i = e
} finally {
try {
r || null == c.return || c.return()
} finally {
if (o) throw i
}
}
return n
}(e, t) || function() {
throw new TypeError("Invalid attempt to destructure non-iterable instance")
}()
}
function T() {
var e = function(e, t) {
t || (t = e.slice(0));
return Object.freeze(Object.defineProperties(e, {
raw: {
value: Object.freeze(t)
}
}))
}(["\n width: 100%;\n display: flex;\n flex-direction: column;\n height: 100%;\n .copy-button {\n position: absolute;\n margin-top: -45px;\n right: 28px;\n }\n textarea {\n overflow-y: scroll;\n white-space: pre-wrap;\n width: 100%;\n height: 100%;\n resize: none;\n }\n"]);
return T = function() {
return e
}, e
}
var k = {
true: "True",
false: "False",
null: "None"
},
C = b.a.div.attrs({
className: "copy-config"
})(T());
var _ = function(e) {
var t = e.config,
n = A(Object(p.useState)(!1), 2),
r = n[0],
o = n[1],
i = function(e) {
return JSON.stringify(e, null, 2).replace(/: ([a-z]+)/g, (function(e, t) {
return ": " + k[t] || !1
}))
}(t);
return f.a.createElement(C, null, f.a.createElement(q.CopyToClipboard, {
text: i,
onCopy: function() {
return o(!0)
},
className: "copy-button"
}, f.a.createElement(g.Button, {
width: "100px"
}, f.a.createElement(g.Icons.Clipboard, {
height: "16px"
}), r ? "Copied!" : "Copy")), f.a.createElement(g.TextArea, {
value: i,
readOnly: !0,
selected: !0
}))
};
var P = function() {
var e = function(e) {
var t = e.activeSidePanel,
n = e.visState,
r = e.mapState,
o = e.mapStyle,
i = S.KeplerGlSchema.getConfigToSave({
visState: n,
mapState: r,
mapStyle: o
});
return "config" === t ? f.a.createElement(_, {
config: i
}) : null
};
e.defaultProps = {
panels: [{
id: "config",
label: "Config",
iconComponent: g.Icons.CodeAlt
}]
};
var t = Object(g.withState)([o.visStateLens, o.mapStateLens, o.mapStyleLens], (function(e) {
return e
}))(e);
return t.defaultProps = {
panels: [{
id: "config",
label: "modal.exportMap.json.configTitle",
iconComponent: g.Icons.CodeAlt
}]
}, t
};
function M(e, t) {
var n = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var r = Object.getOwnPropertySymbols(e);
t && (r = r.filter((function(t) {
return Object.getOwnPropertyDescriptor(e, t).enumerable
}))), n.push.apply(n, r)
}
return n
}
function R(e, t, n) {
return t in e ? Object.defineProperty(e, t, {
value: n,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[t] = n, e
}
function z(e, t) {
return function(e) {
if (Array.isArray(e)) return e
}(e) || function(e, t) {
if (!(Symbol.iterator in Object(e)) && "[object Arguments]" !== Object.prototype.toString.call(e)) return;
var n = [],
r = !0,
o = !1,
i = void 0;
try {
for (var a, c = e[Symbol.iterator](); !(r = (a = c.next()).done) && (n.push(a.value), !t || n.length !== t); r = !0);
} catch (e) {
o = !0, i = e
} finally {
try {
r || null == c.return || c.return()
} finally {
if (o) throw i
}
}
return n
}(e, t) || function() {
throw new TypeError("Invalid attempt to destructure non-iterable instance")
}()
}
function D() {
var e = function(e, t) {
t || (t = e.slice(0));
return Object.freeze(Object.defineProperties(e, {
raw: {
value: Object.freeze(t)
}
}))
}(["\n width: 100%;\n height: 100%;\n .kepler-gl .ReactModal__Overlay.ReactModal__Overlay--after-open {\n position: absolute !important;\n }\n\n .kepler-gl .side-panel__content > div {\n display: flex;\n height: 100%;\n flex-direction: column;\n }\n"]);
return D = function() {
return e
}, e
}
var L = n(17),
G = L ? L.Helmet : null,
N = Object(g.injectComponents)([
[g.AddDataButtonFactory, function() {
return function() {
return f.a.createElement("div", null)
}
}],
[g.SidebarFactory, E],
[g.PanelHeaderFactory, j],
[g.CustomPanelsFactory, P]
]),
I = b.a.div(D());
var F = function() {
var e = Object(p.useRef)(null),
t = z(Object(p.useState)({}), 2),
n = t[0],
r = t[1],
o = function() {
if (e.current) {
var t = e.current.offsetWidth,
o = e.current.offsetHeight,
i = function(e) {
for (var t = 1; t < arguments.length; t++) {
var n = null != arguments[t] ? arguments[t] : {};
t % 2 ? M(Object(n), !0).forEach((function(t) {
R(e, t, n[t])
})) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) : M(Object(n)).forEach((function(t) {
Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t))
}))
}
return e
}({}, t && t !== n.width ? {
width: t
} : {}, {}, o && o !== n.height ? {
height: o
} : {});
r(i)
}
},
i = function() {
return window.setTimeout(o, 500)
};
return Object(p.useEffect)((function() {
return window.addEventListener("resize", i),
function() {
return window.removeEventListener("resize", i)
}
}), []), f.a.createElement(I, {
ref: e,
className: "keplergl-widget-container"
}, G ? f.a.createElement(G, null, f.a.createElement("meta", {
charSet: "utf-8"
}), f.a.createElement("title", null, "Kepler.gl Jupyter"), f.a.createElement("link", {
rel: "stylesheet",
href: "http://d1a3f4spazzrp4.cloudfront.net/kepler.gl/uber-fonts/4.0.0/superfine.css"
}), f.a.createElement("link", {
rel: "stylesheet",
href: "http://api.tiles.mapbox.com/mapbox-gl-js/v1.1.1/mapbox-gl.css"
}), f.a.createElement("style", {
type: "text/css"
}, "font-family: ff-clan-web-pro, 'Helvetica Neue', Helvetica, sans-serif;\n font-weight: 400;\n font-size: 0.875em;\n line-height: 1.71429;\n\n *,\n *:before,\n *:after {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n }\n body {\n margin: 0; padding: 0;\n }\n .jupyter-widgets.keplergl-jupyter-widgets {\n overflow: hidden;\n }\n .p-Widget.p-Panel.jp-OutputArea-output.jupyter-widgets {\n overflow: hidden\n }\n "), f.a.createElement("script", {
async: !0,
src: "https://www.googletagmanager.com/gtag/js?id=UA-64694404-19"
}), f.a.createElement("script", null, "window.dataLayer=window.dataLayer || [];function gtag(){dataLayer.push(arguments);}gtag('js', new Date());gtag('config', 'UA-64694404-19', {page_path: '/keplergl-jupyter-widget'});")) : null, f.a.createElement(N, {
mapboxApiAccessToken: "pk.eyJ1IjoidWJlcmRhdGEiLCJhIjoiY2pza3FrOXh6MW05dTQzcWd1M3I3c2E0eCJ9.z0MFFrHYNbdK-QVHKrdepw",
width: n.width || 800,
height: n.height || 400,
appName: "Kepler.gl Jupyter",
version: "0.2.2",
getMapboxRef: o
}))
};
var K = function(e) {
e.id;
var t = e.store,
n = e.ele;
d.a.render(f.a.createElement((function() {
return f.a.createElement(y.Provider, {
store: t
}, f.a.createElement(F, null))
}), null), n)
},
H = n(6),
J = n.n(H),
Y = n(16),
B = n.n(Y),
W = n(9),
U = n(8),
Q = n.n(U);
var V = function(...e) {
0
};
function X(e) {
return (X = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(e) {
return typeof e
} : function(e) {
return e && "function" == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e
})(e)
}
function Z(e) {
V("handleJuptyerDataFormat");
var t = e.data,
n = e.id,
r = t,
o = "csv";
if ("object" === X(t)) t.columns && t.data && t.index ? (V("data is a dataframe"), o = "df") : o = "json";
else if ("string" == typeof t) try {
r = JSON.parse(t), o = "json"
} catch (e) {}
return {
data: r,
type: o,
id: n
}
}
function $(e) {
var t, n = e.data,
r = e.info;
V("processReceivedData");
try {
t = "csv" === r.queryType ? Object(W.processCsvData)(n) : "json" === r.queryType ? Object(W.processGeojson)(n) : "df" === r.queryType ? function(e) {
var t = e.columns.map((function(e) {
return {
name: e
}
})),
n = e.data;
return {
fields: t,
rows: n
}
}(n) : null
} catch (e) {
Q.a.log("Kepler.gl fails to parse data, detected data\n format is ".concat(r.queryType), e)
}
return {
data: t,
info: r
}
}
v.ActionTypes.REGISTER_ENTRY, v.ActionTypes.DELETE_ENTRY, v.ActionTypes.RENAME_ENTRY, v.ActionTypes.LOAD_MAP_STYLES, v.ActionTypes.LAYER_HOVER;
function ee(e) {
var t = e.data,
n = e.config,
r = e.options,
o = e.store,
i = t ? function(e) {
return Object.keys(e).map((function(t) {
return {
id: t,
data: e[t]
}
}))
}(t) : [];
V(i);
var a = i.map(Z).map((function(e) {
return {
data: e.data,
info: {
id: e.id,
label: e.id,
queryType: e.type,
queryOption: "jupyter"
}
}
})).map($).filter((function(e) {
return e && e.data
}));
V("addDataConfigToKeplerGl"), V(a), V(n);
var c = Boolean(n && n.config && n.config.mapState);
o.dispatch(Object(v.addDataToMap)({
datasets: a,
config: n,
options: r || {
centerMap: !c
}
}))
}
var te, ne, re, oe, ie = (te = u(), (ne = J.a.createElement("div")).setAttribute("style", "width: 100vw; height: 100vh; position: absolute"), J.a.body.appendChild(ne), {
render: function() {
K({
id: "keplergl-0",
store: te,
ele: ne
})
},
store: te
});
ie.render(), re = ie, ee({
data: (oe = B.a.__keplerglDataConfig || {}).data,
config: oe.config,
options: oe.options,
store: re.store
})
}])
}));
});
</script>
</body>
</html>
</html>