-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathingolstadt-north.poly.xml
4230 lines (4220 loc) · 802 KB
/
ingolstadt-north.poly.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<!-- generated on Fri Nov 4 15:07:11 2016 by SUMO polyconvert Version 0.26.0
<?xml version="1.0" encoding="UTF-8"?>
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://sumo.dlr.de/xsd/polyconvertConfiguration.xsd">
<input>
<net-file value="ingolstadt-north.net.xml"/>
<osm-files value="ingolstadt-north.osm"/>
<osm.keep-full-type value="true"/>
<type-file value="osmPolyconvert.typ.xml"/>
</input>
<output>
<output-file value="ingolstadt-north.poly.xml"/>
</output>
<projection>
<proj.utm value="true"/>
</projection>
<pruning>
<prune.in-net value="true"/>
</pruning>
<processing>
<poi-layer-offset value="5"/>
</processing>
</configuration>
-->
<additional xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://sumo.dlr.de/xsd/additional_file.xsd">
<location netOffset="-677864.29,-5403818.27" convBoundary="-24301.94,-4347.82,13187.14,3778.93" origBoundary="11.088266,48.729252,11.600582,48.795040" projParameter="+proj=utm +zone=32 +ellps=WGS84 +datum=WGS84 +units=m +no_defs"/>
<poly id="101067672" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1063.18,1732.14 1125.97,1749.89 1123.19,1759.69 1060.40,1741.95 1063.18,1732.14"/>
<poly id="101067676" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1114.55,1768.85 1125.96,1770.96 1119.50,1805.72 1108.09,1803.60 1114.55,1768.85"/>
<poly id="101238052" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="655.45,278.38 667.17,284.76 692.42,298.37 697.68,288.71 660.72,268.71 655.45,278.38"/>
<poly id="104022171" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1073.76,1787.81 1076.46,1777.76 1018.16,1761.88 1015.46,1771.95 1073.76,1787.81"/>
<poly id="104173145" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="918.07,1468.98 918.38,1471.20 919.96,1482.78 923.29,1507.04 924.38,1514.93 940.12,1513.05 933.81,1467.09 918.07,1468.98"/>
<poly id="104174740" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1177.91,1372.02 1174.08,1425.00 1166.72,1424.46 1165.15,1446.14 1176.38,1446.95 1177.76,1427.73 1182.81,1428.11 1186.82,1372.66 1177.91,1372.02"/>
<poly id="105519409" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1006.42,1846.07 1020.63,1880.80 1019.80,1892.19 1018.29,1892.11 1005.49,1891.41 1003.05,1891.28 1003.86,1880.29 1006.42,1846.07"/>
<poly id="110778819" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="656.60,406.42 655.54,409.54 658.85,411.11 654.92,420.62 647.57,417.30 646.75,419.82 648.17,420.28 646.38,425.36 641.86,423.83 644.21,415.81 647.98,402.61 656.60,406.42"/>
<poly id="110778827" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="652.23,427.39 654.00,422.94 654.92,420.62 647.57,417.30 646.75,419.82 648.17,420.28 646.38,425.36 652.23,427.39"/>
<poly id="110778831" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="632.71,356.56 631.53,356.32 629.20,365.86 641.46,368.54 643.95,359.61 632.71,356.56"/>
<poly id="110778842" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="639.70,431.15 649.42,434.46 652.23,427.39 646.38,425.36 641.86,423.83 639.70,431.15"/>
<poly id="110778845" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="643.95,359.61 632.71,356.56 634.82,347.97 637.17,338.60 649.23,342.20 643.95,359.61"/>
<poly id="110778847" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="631.53,428.20 635.71,413.38 644.21,415.81 641.86,423.83 639.70,431.15 631.53,428.20"/>
<poly id="110778848" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="612.50,423.25 627.46,426.37 629.20,418.05 619.70,416.08 614.24,414.94 612.50,423.25"/>
<poly id="110778867" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="624.14,401.69 625.12,394.46 625.52,392.19 629.05,393.05 628.79,394.44 634.04,395.72 631.57,406.71 623.46,405.02 624.14,401.69"/>
<poly id="110778881" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="635.71,413.38 636.62,407.90 639.32,397.00 648.65,399.33 647.98,402.61 644.21,415.81 635.71,413.38"/>
<poly id="110778886" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="626.48,349.83 629.79,336.00 622.20,333.36 620.00,344.46 619.19,348.30 626.48,349.83"/>
<poly id="110778895" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="629.06,570.20 612.15,562.71 615.27,555.73 632.17,563.22 629.06,570.20"/>
<poly id="110778898" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="629.20,418.05 629.99,414.28 620.49,412.30 619.70,416.08 629.20,418.05"/>
<poly id="110778900" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="620.49,412.30 622.08,404.73 623.46,405.02 631.57,406.71 629.99,414.28 620.49,412.30"/>
<poly id="110778927" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="637.17,338.60 629.79,336.00 626.48,349.83 625.97,352.22 630.55,353.19 631.78,347.40 634.82,347.97 637.17,338.60"/>
<poly id="110778930" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="626.21,372.36 627.91,365.53 629.20,365.86 641.46,368.54 634.04,395.72 628.79,394.44 629.05,393.05 625.52,392.19 622.67,391.51 624.60,383.57 627.25,372.66 626.21,372.36"/>
<poly id="110778931" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="719.25,339.53 711.92,337.35 707.78,336.55 709.01,332.42 709.89,329.05 714.11,330.14 721.75,332.03 720.43,336.37 719.25,339.53"/>
<poly id="110778931#1" type="historic.yes" color="128,255,128" fill="1" layer="-1.00" shape="719.25,339.53 711.92,337.35 707.78,336.55 709.01,332.42 709.89,329.05 714.11,330.14 721.75,332.03 720.43,336.37 719.25,339.53"/>
<poly id="110778931#2" type="man_made.tower" color="255,230,230" fill="1" layer="-1.00" shape="719.25,339.53 711.92,337.35 707.78,336.55 709.01,332.42 709.89,329.05 714.11,330.14 721.75,332.03 720.43,336.37 719.25,339.53"/>
<poly id="110781553" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="626.58,489.13 620.34,486.96 621.07,485.13 627.52,487.03 626.58,489.13"/>
<poly id="110781556" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="699.20,428.20 703.60,430.24 699.81,440.63 697.66,439.83 694.79,438.75 699.20,428.20"/>
<poly id="110781557" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="690.27,487.88 684.79,485.95 685.32,482.53 688.24,482.90 692.59,483.68 690.27,487.88"/>
<poly id="110781558" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="671.28,528.98 667.96,533.23 666.06,533.22 659.52,527.76 663.97,521.97 664.82,520.87 667.99,523.49 666.77,525.26 671.28,528.98"/>
<poly id="110781559" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="705.79,443.30 704.66,445.90 701.02,454.14 708.38,456.96 711.23,449.24 712.36,446.21 710.37,445.21 705.79,443.30"/>
<poly id="110781560" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="626.40,469.08 642.93,477.14 637.68,487.84 645.94,491.86 655.10,473.15 643.78,467.63 630.62,461.52 627.86,466.11 626.40,469.08"/>
<poly id="110781562" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="651.82,522.50 643.90,517.00 648.01,510.68 653.79,514.86 656.84,509.85 659.32,510.95 657.35,513.99 651.82,522.50"/>
<poly id="110781566" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="651.79,464.85 656.24,455.02 669.03,460.11 664.63,470.69 651.79,464.85"/>
<poly id="110781567" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="681.91,499.16 676.01,507.02 684.54,514.00 690.75,506.09 681.91,499.16"/>
<poly id="110781568" type="building.apartments" color="255,230,230" fill="1" layer="-1.00" shape="649.84,502.21 644.16,499.03 656.11,477.81 661.79,481.00 649.84,502.21"/>
<poly id="110781569" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="688.33,491.58 686.07,494.07 681.91,499.16 690.75,506.09 697.16,498.75 688.33,491.58"/>
<poly id="110781570" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="692.59,483.68 690.27,487.88 699.85,494.09 706.45,484.04 709.52,476.68 700.07,472.76 698.91,472.28 695.51,479.74 696.38,480.38 694.69,483.62 693.16,482.66 692.59,483.68"/>
<poly id="110781572" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="652.23,427.39 655.01,428.31 656.69,424.06 654.00,422.94 652.23,427.39"/>
<poly id="110781573" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="619.83,461.93 624.68,464.35 627.86,466.11 630.62,461.52 638.23,447.29 629.15,443.85 619.83,461.93"/>
<poly id="110781574" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="637.37,512.46 631.75,508.79 636.63,500.70 638.97,502.16 637.55,504.45 641.19,506.92 637.37,512.46"/>
<poly id="110781575" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="674.35,480.18 669.00,478.21 665.23,487.32 672.29,491.05 677.66,495.50 681.91,499.16 686.07,494.07 676.90,486.33 672.75,483.81 674.35,480.18"/>
<poly id="110781576" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="690.87,450.00 672.23,443.19 676.39,432.19 683.25,435.03 694.38,439.74 690.87,450.00"/>
<poly id="110781578" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="684.30,466.42 698.91,472.28 695.51,479.74 694.91,479.49 693.16,482.66 692.59,483.68 688.24,482.90 690.40,477.86 682.69,474.46 681.95,475.73 677.80,473.88 679.11,470.73 682.02,471.92 684.30,466.42"/>
<poly id="110781579" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="750.06,596.26 745.93,594.50 747.35,591.20 741.95,588.90 743.82,584.54 772.57,596.76 769.30,604.44 750.06,596.26"/>
<poly id="110781581" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="676.01,507.02 668.75,515.93 677.09,522.46 684.54,514.00 676.01,507.02"/>
<poly id="110781582" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="621.04,481.47 611.50,476.21 616.29,467.56 621.34,470.35 624.54,472.11 625.83,472.83 621.04,481.47"/>
<poly id="110781584" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="687.72,423.38 699.20,428.20 694.79,438.75 694.38,439.74 683.25,435.03 687.72,423.38"/>
<poly id="110781585" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="669.03,460.11 684.30,466.42 682.02,471.92 679.11,470.73 677.80,473.88 671.82,471.41 669.00,478.21 665.67,476.84 667.07,473.46 664.01,472.19 664.63,470.69 669.03,460.11"/>
<poly id="110781587" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="710.37,445.21 711.78,441.56 721.48,445.59 719.72,449.16 724.57,451.32 729.71,441.04 709.95,433.35 705.79,443.30 710.37,445.21"/>
<poly id="110781589" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="621.34,470.35 624.68,464.35 627.86,466.11 626.40,469.08 624.54,472.11 621.34,470.35"/>
<poly id="110781590" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="629.85,495.99 636.07,486.69 628.33,485.22 627.52,487.03 626.58,489.13 625.21,492.20 624.76,492.95 629.85,495.99"/>
<poly id="110781595" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="624.30,504.25 614.05,497.42 617.42,492.18 619.98,493.60 621.91,490.46 625.21,492.20 624.76,492.95 623.12,495.60 627.97,498.90 624.30,504.25"/>
<poly id="110781599" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="668.75,515.93 667.31,517.81 666.66,520.45 669.05,522.31 667.99,523.49 666.77,525.26 671.28,528.98 677.09,522.46 668.75,515.93"/>
<poly id="110781604" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="643.90,517.00 637.37,512.46 641.19,506.92 643.50,503.56 647.14,505.24 644.77,508.47 648.01,510.68 643.90,517.00"/>
<poly id="110781607" type="amenity.university" color="237,199,199" fill="1" layer="-1.00" shape="658.85,411.11 687.72,423.38 683.25,435.03 676.39,432.19 656.69,424.06 654.00,422.94 654.92,420.62 658.85,411.11"/>
<poly id="110781607#1" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="658.85,411.11 687.72,423.38 683.25,435.03 676.39,432.19 656.69,424.06 654.00,422.94 654.92,420.62 658.85,411.11"/>
<poly id="110781609" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="646.43,462.48 650.23,452.63 656.24,455.02 651.79,464.85 646.43,462.48"/>
<poly id="110781614" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="672.96,504.73 666.99,501.71 671.69,492.49 677.66,495.50 672.96,504.73"/>
<poly id="110781616" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="699.81,440.63 705.79,443.30 709.95,433.35 703.60,430.24 699.81,440.63"/>
<poly id="110781618" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="659.52,527.76 651.82,522.50 657.35,513.99 660.86,516.47 659.53,518.76 663.97,521.97 659.52,527.76"/>
<poly id="110781621" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="711.23,449.24 715.35,450.84 716.34,448.89 719.16,450.09 719.72,449.16 724.57,451.32 720.27,460.62 718.51,461.27 708.38,456.96 711.23,449.24"/>
<poly id="110781623" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="631.75,508.79 625.51,504.89 629.08,499.35 634.08,502.45 635.57,500.11 636.63,500.70 631.75,508.79"/>
<poly id="110781626" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="630.62,461.52 643.78,467.63 646.43,462.48 650.23,452.63 638.23,447.29 630.62,461.52"/>
<poly id="110781632" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="701.02,454.14 690.87,450.00 694.38,439.74 694.79,438.75 697.66,439.83 697.09,441.26 699.51,441.92 698.99,443.65 704.66,445.90 701.02,454.14"/>
<poly id="117560647" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1480.67,1170.29 1477.68,1165.23 1478.86,1164.53 1458.71,1151.55 1458.05,1153.24 1457.59,1154.41 1457.02,1158.23 1479.04,1171.05 1480.67,1170.29"/>
<poly id="117560663" type="amenity.car_wash" color="237,199,199" fill="1" layer="-1.00" shape="1314.09,966.15 1323.25,967.52 1326.64,944.88 1325.19,944.66 1325.94,939.66 1318.23,938.50 1314.09,966.15"/>
<poly id="117560663#1" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1314.09,966.15 1323.25,967.52 1326.64,944.88 1325.19,944.66 1325.94,939.66 1318.23,938.50 1314.09,966.15"/>
<poly id="117560664" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1322.32,920.55 1328.67,921.72 1331.46,906.85 1332.08,903.15 1334.67,889.18 1328.32,888.02 1322.32,920.55"/>
<poly id="117560669" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1300.67,1116.35 1317.89,1119.13 1320.29,1104.28 1303.08,1101.50 1302.78,1103.37 1300.67,1116.35"/>
<poly id="117560672" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1346.57,1095.25 1348.29,1083.16 1383.91,1089.06 1378.17,1096.29 1381.88,1096.84 1378.15,1100.29 1346.57,1095.25"/>
<poly id="117560673" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1380.86,981.07 1383.04,984.65 1393.34,978.43 1390.34,973.49 1384.86,976.80 1385.68,978.16 1380.86,981.07"/>
<poly id="117560674" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1374.97,986.87 1369.52,982.69 1366.69,986.36 1372.14,990.54 1374.97,986.87"/>
<poly id="117560676" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1368.04,1012.09 1369.94,999.29 1376.20,1000.21 1374.29,1013.01 1368.04,1012.09"/>
<poly id="131634115" type="leisure.pitch" color="207,245,201" fill="1" layer="-2.00" shape="1262.72,212.55 1275.02,215.55 1280.18,194.46 1267.88,191.46 1262.72,212.55"/>
<poly id="131634115#1" type="sport.beachvolleyball" color="79,230,125" fill="1" layer="-2.00" shape="1262.72,212.55 1275.02,215.55 1280.18,194.46 1267.88,191.46 1262.72,212.55"/>
<poly id="131634156" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="781.83,305.58 781.87,307.18 784.51,307.10 788.54,306.98 788.31,299.32 781.64,299.52 781.83,305.58"/>
<poly id="131634158" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="720.94,295.25 724.55,296.67 728.56,298.24 730.75,292.68 731.96,289.63 724.34,286.64 723.16,289.62 720.94,295.25"/>
<poly id="131634159" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="768.50,353.60 775.27,355.29 775.61,353.87 777.12,348.03 774.01,347.22 770.33,346.31 768.50,353.60"/>
<poly id="131634160" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="799.63,365.37 806.93,359.84 803.07,352.02 797.36,350.41 794.24,349.54 791.84,358.76 790.56,362.79 799.63,365.37"/>
<poly id="131646317" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="640.68,269.96 646.18,272.88 651.80,262.33 646.83,259.69 646.31,259.42 640.68,269.96"/>
<poly id="135548925" type="building.construction" color="255,230,230" fill="1" layer="-1.00" shape="835.70,427.15 842.37,429.48 856.64,434.33 920.19,456.25 912.54,478.35 828.06,449.23 835.70,427.15"/>
<poly id="135548926" type="amenity.university" color="237,199,199" fill="1" layer="-1.00" shape="1123.79,453.96 1079.09,556.81 1079.48,568.03 1099.07,602.91 1095.95,619.46 1061.75,723.26 1059.71,737.15 1044.12,740.67 1024.22,737.97 1011.86,733.75 1003.97,727.75 957.44,708.27 947.05,710.48 913.04,696.58 793.36,649.78 799.04,636.03 789.55,632.41 800.78,605.14 818.19,563.08 827.42,540.66 831.54,529.58 834.93,515.42 835.33,484.11 830.90,454.94 933.50,488.91 965.01,400.06 1123.79,453.96"/>
<poly id="137247854" type="landuse.residential" color="235,235,227" fill="1" layer="-3.00" shape="1007.84,2205.31 973.15,2217.86 944.21,2102.23 986.48,2086.75 1002.38,2146.21 1007.35,2188.79 1007.84,2205.31"/>
<poly id="137247862" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="737.09,1886.58 732.95,1887.46 728.87,1888.32 709.99,1916.16 718.31,1926.37 719.90,1925.93 724.94,1948.95 765.95,1940.03 760.77,1916.34 769.42,1914.77 771.69,1908.30 737.09,1886.58"/>
<poly id="137247863" type="building.yes" color="255,230,230" fill="0" layer="-1.00" shape="668.09,2039.80 664.29,2032.00 667.21,2030.59 640.68,1976.06 614.54,1988.69 632.04,2024.67 621.21,2029.91 633.96,2056.16 647.17,2049.39 651.44,2058.19 667.68,2050.96 668.10,2039.80"/>
<poly id="137247864" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="972.78,1815.42 977.92,1793.53 959.05,1812.18 972.78,1815.42"/>
<poly id="137247865" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1051.47,1924.71 1016.35,1922.47 1017.95,1897.37 1053.24,1899.84 1051.47,1924.71"/>
<poly id="137247868" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="692.31,2036.53 676.60,2035.69 674.77,2069.64 690.86,2058.61 692.31,2036.53"/>
<poly id="137247869" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="732.97,2106.34 734.72,2114.26 749.43,2111.01 747.66,2103.09 732.97,2106.34"/>
<poly id="137247870" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="833.04,2009.25 788.32,2001.51 784.80,2021.76 829.51,2029.51 833.04,2009.25"/>
<poly id="137247871" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="821.74,1966.45 794.99,1961.96 791.67,1981.73 818.41,1986.20 821.74,1966.45"/>
<poly id="137247872" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="828.11,2035.89 807.74,2032.93 805.58,2047.72 825.95,2050.67 828.11,2035.89"/>
<poly id="137247873" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="847.72,1988.29 853.82,1973.65 846.24,1970.50 840.14,1985.15 847.72,1988.29"/>
<poly id="137247874" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="797.26,1946.09 842.06,1960.68 847.78,1943.20 802.97,1928.62 797.26,1946.09"/>
<poly id="137247875" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="729.59,2091.15 754.50,2085.65 751.38,2071.62 726.47,2077.12 729.59,2091.15"/>
<poly id="137247876" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="809.86,2137.90 808.16,2130.25 779.49,2136.57 781.20,2144.23 809.86,2137.90"/>
<poly id="137247877" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="937.34,2082.44 942.37,2096.12 974.54,2084.35 972.82,2079.71 937.34,2082.44"/>
<poly id="137247878" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="775.01,2092.65 773.07,2083.86 764.62,2085.73 766.56,2094.51 775.01,2092.65"/>
<poly id="137247879" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="749.10,1996.18 757.74,1982.25 773.73,1957.88 773.18,1957.34 694.19,1973.70 701.17,2006.58 710.98,2004.20 749.10,1996.18"/>
<poly id="137247880" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="950.77,1857.90 945.97,1873.81 958.31,1876.73 962.14,1860.61 968.09,1835.15 954.14,1831.86 948.19,1857.31 950.77,1857.90"/>
<poly id="137247881" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="808.16,2130.25 806.14,2121.15 767.77,2129.61 769.79,2138.71 779.49,2136.57 808.16,2130.25"/>
<poly id="137247882" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="699.91,2099.90 704.93,2106.89 719.51,2096.49 714.64,2089.71 717.34,2087.85 695.02,2055.76 690.86,2058.61 674.77,2069.64 697.32,2101.69 699.91,2099.90"/>
<poly id="137247883" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="948.25,1830.46 954.14,1831.86 968.09,1835.15 972.78,1815.42 959.05,1812.18 952.94,1810.72 948.25,1830.46"/>
<poly id="137247884" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="704.67,1882.35 698.00,1878.17 694.12,1875.73 671.28,1911.89 681.83,1918.51 704.25,1883.02 704.67,1882.35"/>
<poly id="137247885" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="677.12,1938.99 687.75,1922.29 681.83,1918.51 671.28,1911.89 670.73,1911.51 660.10,1928.22 677.12,1938.99"/>
<poly id="137247886" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="806.64,2101.93 751.32,2114.13 755.36,2132.35 767.77,2129.61 806.14,2121.15 810.68,2120.15 806.64,2101.93"/>
<poly id="137247887" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="775.57,2095.16 786.16,2092.83 782.69,2077.21 772.11,2079.55 773.07,2083.86 775.01,2092.65 775.57,2095.16"/>
<poly id="137247888" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="709.15,1886.10 718.15,1871.86 706.58,1864.59 698.00,1878.17 704.67,1882.35 704.25,1883.02 709.15,1886.10"/>
<poly id="137247889" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="767.50,2098.72 766.56,2094.51 764.62,2085.73 764.13,2083.53 754.50,2085.65 729.59,2091.15 732.97,2106.34 747.66,2103.09 767.50,2098.72"/>
<poly id="137435061" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1475.88,1908.87 1474.53,1899.23 1464.99,1900.56 1466.34,1910.20 1467.16,1910.08 1475.88,1908.87"/>
<poly id="137435064" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="884.99,1587.63 893.48,1589.50 891.18,1599.92 882.69,1598.05 884.99,1587.63"/>
<poly id="137435068" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1070.61,1589.02 1069.57,1594.41 1097.25,1599.67 1098.29,1594.27 1070.61,1589.02"/>
<poly id="137435114" type="amenity.parking" color="184,184,179" fill="1" layer="-1.00" shape="1013.80,1102.84 1031.58,1076.57 1046.60,1086.71 1054.00,1096.20 1049.39,1107.08 1039.27,1122.33 1026.47,1125.22 1018.45,1122.39 1012.54,1112.47 1013.80,1102.84"/>
<poly id="137435128" type="amenity.social_facility" color="237,199,199" fill="1" layer="-1.00" shape="859.87,1451.36 862.38,1417.62 870.05,1418.30 869.79,1420.40 873.41,1422.04 875.27,1420.95 879.94,1424.68 877.95,1429.08 878.16,1433.12 880.18,1437.14 883.49,1439.85 887.41,1441.24 891.46,1441.24 894.63,1438.55 897.00,1434.71 897.10,1431.63 896.36,1428.52 892.85,1424.07 896.96,1418.33 899.14,1420.22 900.17,1419.00 902.45,1422.14 911.81,1418.40 913.80,1429.69 914.52,1439.10 914.90,1445.30 913.32,1445.28 913.32,1447.13 919.92,1447.50 919.03,1455.32 859.87,1451.36"/>
<poly id="137435128#1" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="859.87,1451.36 862.38,1417.62 870.05,1418.30 869.79,1420.40 873.41,1422.04 875.27,1420.95 879.94,1424.68 877.95,1429.08 878.16,1433.12 880.18,1437.14 883.49,1439.85 887.41,1441.24 891.46,1441.24 894.63,1438.55 897.00,1434.71 897.10,1431.63 896.36,1428.52 892.85,1424.07 896.96,1418.33 899.14,1420.22 900.17,1419.00 902.45,1422.14 911.81,1418.40 913.80,1429.69 914.52,1439.10 914.90,1445.30 913.32,1445.28 913.32,1447.13 919.92,1447.50 919.03,1455.32 859.87,1451.36"/>
<poly id="137435134" type="amenity.parking" color="184,184,179" fill="1" layer="-1.00" shape="871.66,1407.10 869.18,1414.73 904.75,1416.04 906.09,1412.41 910.44,1413.78 918.28,1393.39 921.63,1392.97 927.64,1380.39 922.96,1378.67 927.74,1366.41 929.80,1329.39 926.82,1329.13 926.97,1324.52 885.70,1322.81 879.09,1340.89 883.09,1342.84 889.02,1345.13 894.19,1331.85 911.32,1338.47 905.66,1353.02 904.51,1352.57 899.26,1366.08 905.69,1368.56 900.35,1382.31 898.64,1381.64 893.21,1395.62 894.92,1396.28 889.20,1410.99 880.92,1407.79 879.94,1410.30 871.66,1407.10"/>
<poly id="137435141" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="1758.35,1692.00 1745.43,1695.72 1741.96,1683.71 1754.88,1680.00 1758.35,1692.00"/>
<poly id="137435143" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="908.14,1473.16 918.38,1471.20 919.96,1482.78 910.07,1483.90 908.14,1473.16"/>
<poly id="137435147" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1730.57,1701.58 1726.20,1691.75 1701.83,1702.51 1706.20,1712.35 1730.57,1701.58"/>
<poly id="137435149" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="1777.07,1720.93 1766.87,1724.94 1772.55,1739.29 1782.75,1735.28 1777.07,1720.93"/>
<poly id="137463482" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1332.68,950.35 1339.39,951.15 1340.15,944.72 1333.44,943.92 1332.68,950.35"/>
<poly id="137463483" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1312.33,1078.71 1319.31,1079.84 1322.63,1059.42 1315.65,1058.30 1312.33,1078.71"/>
<poly id="137463484" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1297.30,1102.39 1302.78,1103.37 1300.67,1116.35 1295.42,1115.65 1297.30,1102.39"/>
<poly id="137463485" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1462.97,1137.37 1464.96,1132.43 1454.58,1128.29 1452.60,1133.24 1462.97,1137.37"/>
<poly id="137463487" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1348.25,967.58 1349.22,970.79 1358.93,972.38 1356.35,964.83 1348.25,967.58"/>
<poly id="137463488" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1429.19,1120.79 1430.91,1115.06 1425.42,1113.43 1423.71,1119.16 1429.19,1120.79"/>
<poly id="137463489" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1346.36,961.72 1354.26,959.01 1352.52,953.95 1344.62,956.65 1346.36,961.72"/>
<poly id="137463490" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1352.10,1041.81 1393.31,1053.65 1394.62,1049.08 1353.42,1037.23 1352.10,1041.81"/>
<poly id="137463492" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1427.66,1142.55 1432.37,1126.34 1421.26,1123.13 1416.56,1139.35 1427.66,1142.55"/>
<poly id="137463494" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1462.45,1142.00 1442.94,1134.39 1438.54,1145.64 1458.05,1153.24 1458.71,1151.55 1462.45,1142.00"/>
<poly id="137463495" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1391.69,1131.24 1400.06,1133.76 1404.15,1120.22 1419.87,1124.96 1422.96,1114.74 1398.88,1107.49 1391.69,1131.24"/>
<poly id="137463496" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1412.41,1051.06 1405.96,1039.82 1408.08,1038.61 1406.98,1036.69 1404.06,1035.92 1404.54,1034.20 1357.29,1020.97 1353.55,1034.40 1412.41,1051.06"/>
<poly id="140684002" type="landuse.allotments" color="194,194,130" fill="1" layer="-3.00" shape="812.20,888.48 817.11,935.65 776.43,951.19 766.25,958.83 766.03,965.57 760.46,969.15 759.57,979.44 758.02,993.46 737.92,997.17 740.63,948.91 724.50,949.06 704.16,954.39 681.83,912.27 711.76,896.02 750.72,879.34 760.37,908.09 772.85,909.31 812.20,888.48"/>
<poly id="140684019" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="890.96,1130.16 887.41,1135.13 884.67,1133.19 878.06,1142.43 888.71,1150.00 891.72,1145.72 892.79,1145.59 894.73,1142.74 894.55,1141.86 898.88,1135.79 890.96,1130.16"/>
<poly id="140684020" type="natural.water" color="181,209,209" fill="1" layer="-4.00" shape="758.98,957.41 759.84,960.21 755.44,963.02 754.49,970.12 754.75,974.64 752.95,978.62 750.20,978.59 749.62,976.91 750.63,973.96 751.98,964.86 752.31,952.78 755.61,953.06 754.92,956.55 756.82,958.54 758.98,957.41"/>
<poly id="140684021" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="864.70,1082.25 867.45,1077.98 866.55,1077.49 866.20,1074.66 863.25,1073.00 862.99,1072.13 859.64,1072.77 859.81,1073.66 857.39,1077.28 856.59,1077.35 857.23,1080.98 858.26,1080.71 860.98,1082.58 864.04,1081.87 864.70,1082.25"/>
<poly id="140684022" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="930.25,996.21 932.61,991.15 918.20,984.47 915.84,989.53 930.25,996.21"/>
<poly id="140684023" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="908.15,1053.93 912.58,1047.04 898.05,1037.74 893.62,1044.62 908.15,1053.93"/>
<poly id="140684024" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="857.07,1137.82 861.86,1130.98 857.51,1127.94 852.71,1134.80 857.07,1137.82"/>
<poly id="140684025" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="944.71,1016.44 955.21,1021.10 960.80,1008.55 950.30,1003.89 944.71,1016.44"/>
<poly id="140684026" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="961.73,1001.03 964.23,992.15 965.74,986.88 929.05,969.93 920.94,982.21 961.73,1001.03"/>
<poly id="140684027" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="974.72,982.96 975.98,978.58 968.74,976.51 967.47,980.89 973.76,982.69 974.72,982.96"/>
<poly id="140684028" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="948.59,971.06 962.45,972.88 963.04,968.40 963.70,963.43 949.85,961.60 948.59,971.06"/>
<poly id="140684029" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="970.52,993.95 973.76,982.69 967.47,980.89 965.74,986.88 964.23,992.15 970.52,993.95"/>
<poly id="140684031" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="962.35,973.60 969.39,974.54 970.08,969.33 968.80,969.16 963.04,968.40 962.45,972.88 962.35,973.60"/>
<poly id="140684032" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="975.98,978.58 980.83,962.09 981.10,957.15 972.39,955.81 968.80,969.16 970.08,969.33 969.39,974.54 968.74,976.51 975.98,978.58"/>
<poly id="140684192" type="landuse.residential" color="235,235,227" fill="1" layer="-3.00" shape="955.44,927.60 962.55,930.13 973.80,932.44 980.25,937.28 1002.83,969.99 1013.89,992.87 1042.92,1008.92 1022.94,1038.92 971.98,1109.13 963.84,1103.23 880.34,1219.15 800.43,1162.38 801.00,1155.72 802.46,1149.53 823.55,1120.07 911.08,987.24 931.35,948.28 939.64,935.42 945.23,931.07 951.43,927.94 955.44,927.60"/>
<poly id="140737919" type="landuse.village_green" color="242,242,204" fill="1" layer="-3.00" shape="1367.10,141.83 1370.26,141.93 1376.51,152.82 1358.94,183.98 1348.39,202.28 1346.41,210.23 1348.71,219.20 1351.52,224.25 1352.65,227.72 1352.66,230.59 1351.05,232.84 1349.68,233.75 1345.66,233.66 1281.86,231.69 1261.18,234.34 1252.66,235.75 1250.09,233.71 1243.04,233.62 1247.17,199.84 1248.75,199.22 1249.66,198.44 1249.64,197.01 1249.27,195.52 1247.47,194.72 1256.32,121.67 1267.42,123.61 1258.17,176.40 1285.83,181.06 1286.60,176.50 1296.57,178.32 1287.18,192.68 1303.02,202.68 1316.00,183.18 1317.85,177.60 1323.14,171.27 1367.10,141.83"/>
<poly id="143589597" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1341.44,917.98 1341.78,914.98 1336.78,914.40 1335.27,926.44 1337.84,924.89 1337.30,924.03 1343.02,920.60 1341.44,917.98"/>
<poly id="143731985" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1367.66,894.24 1378.42,888.59 1370.89,874.35 1360.13,880.01 1367.66,894.24"/>
<poly id="143731987" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1457.18,953.38 1466.67,955.24 1469.77,939.54 1460.28,937.67 1457.18,953.38"/>
<poly id="143731988" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1385.57,889.35 1421.44,894.18 1422.61,885.59 1386.73,880.75 1385.57,889.35"/>
<poly id="143731989" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1408.29,961.30 1419.18,955.24 1413.86,945.74 1402.97,951.79 1408.29,961.30"/>
<poly id="143731990" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1389.18,930.07 1401.07,922.86 1396.56,915.46 1384.67,922.68 1389.18,930.07"/>
<poly id="143731991" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1352.49,869.39 1363.70,863.16 1357.48,852.03 1346.28,858.26 1352.49,869.39"/>
<poly id="143731992" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1381.59,916.60 1389.85,911.48 1385.82,905.04 1383.98,902.08 1381.61,903.55 1375.72,907.21 1381.59,916.60"/>
<poly id="143731993" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1395.49,899.35 1382.29,897.86 1381.61,903.55 1383.98,902.08 1385.82,905.04 1394.74,906.00 1395.49,899.35"/>
<poly id="143731994" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1407.73,939.53 1414.84,935.14 1410.07,927.46 1402.95,931.85 1402.15,930.56 1393.57,935.86 1399.90,946.05 1408.49,940.74 1407.73,939.53"/>
<poly id="143731995" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1431.49,997.34 1452.47,1001.64 1457.92,975.18 1462.27,976.07 1463.31,971.03 1458.46,970.03 1460.68,959.24 1440.20,955.04 1436.93,970.95 1431.49,997.34"/>
<poly id="143820545" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1348.22,967.53 1364.08,962.22 1360.70,956.83 1346.36,961.72 1348.22,967.53"/>
<poly id="145719791" type="amenity.parking_space" color="237,199,199" fill="1" layer="-1.00" shape="795.86,1243.14 823.31,1204.05 849.50,1222.33 857.19,1227.70 861.76,1230.89 863.99,1232.45 836.55,1271.54 829.91,1266.91 823.37,1262.34 795.86,1243.14"/>
<poly id="145719791#1" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="795.86,1243.14 823.31,1204.05 849.50,1222.33 857.19,1227.70 861.76,1230.89 863.99,1232.45 836.55,1271.54 829.91,1266.91 823.37,1262.34 795.86,1243.14"/>
<poly id="146660935" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="901.74,1301.70 910.39,1284.28 902.33,1280.29 893.68,1297.72 901.74,1301.70"/>
<poly id="147022870" type="amenity.school" color="237,199,199" fill="1" layer="-1.00" shape="1947.78,916.04 1966.75,917.67 2049.82,929.05 2129.46,940.84 2122.02,991.17 2089.96,986.72 2080.07,1070.81 1912.28,992.44 1940.33,923.82 1943.42,918.66 1947.78,916.04"/>
<poly id="148107688" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="945.12,1733.50 969.81,1734.93 968.58,1756.15 943.90,1754.73 945.12,1733.50"/>
<poly id="150091370" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1882.93,1576.71 1885.65,1575.28 1888.70,1574.89 1891.70,1575.55 1894.30,1577.20 1896.18,1579.64 1897.09,1582.46 1896.99,1585.52 1895.85,1588.36 1893.81,1590.66 1891.09,1592.10 1887.14,1592.47 1884.20,1591.53 1881.77,1589.65 1880.13,1587.06 1879.48,1584.05 1879.90,1581.02 1881.34,1578.31 1882.93,1576.71"/>
<poly id="150091370#1" type="historic.ruins" color="128,255,128" fill="1" layer="-1.00" shape="1882.93,1576.71 1885.65,1575.28 1888.70,1574.89 1891.70,1575.55 1894.30,1577.20 1896.18,1579.64 1897.09,1582.46 1896.99,1585.52 1895.85,1588.36 1893.81,1590.66 1891.09,1592.10 1887.14,1592.47 1884.20,1591.53 1881.77,1589.65 1880.13,1587.06 1879.48,1584.05 1879.90,1581.02 1881.34,1578.31 1882.93,1576.71"/>
<poly id="152027070" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1296.81,1807.70 1307.51,1805.22 1310.22,1816.73 1333.04,1811.42 1327.96,1789.79 1306.22,1794.85 1303.30,1782.36 1291.53,1785.09 1296.81,1807.70"/>
<poly id="152027192" type="landuse.meadow" color="194,194,130" fill="1" layer="-3.00" shape="1077.32,1684.97 1110.98,1693.12 1118.86,1668.99 1092.89,1659.47 1077.32,1684.97"/>
<poly id="152036405" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1155.30,1671.93 1157.44,1660.50 1174.50,1663.68 1172.37,1675.12 1155.30,1671.93"/>
<poly id="152036406" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1181.26,1666.26 1199.34,1668.43 1198.29,1677.05 1180.22,1674.88 1181.26,1666.26"/>
<poly id="153692843" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1867.20,1144.72 1877.83,1142.02 1874.51,1129.09 1863.89,1131.79 1867.20,1144.72"/>
<poly id="154658247" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="606.90,696.46 590.03,681.08 599.81,670.43 616.67,685.81 606.90,696.46"/>
<poly id="154658248" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="631.18,669.79 614.32,654.40 624.09,643.75 640.95,659.13 631.18,669.79"/>
<poly id="156298506" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="634.85,294.50 649.67,300.01 651.38,295.85 648.35,294.13 652.20,284.47 641.31,279.14 634.85,294.50"/>
<poly id="156298510" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="633.76,275.18 626.54,271.58 617.75,297.47 620.55,298.63 623.70,299.93 633.76,275.18"/>
<poly id="156298511" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="631.40,304.24 634.85,294.50 641.31,279.14 633.76,275.18 623.70,299.93 623.40,300.91 631.40,304.24"/>
<poly id="156298512" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="640.87,325.63 644.19,316.34 645.93,311.63 632.00,306.35 631.22,308.46 627.16,320.45 640.87,325.63"/>
<poly id="156298515" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="634.85,294.50 631.40,304.24 630.81,305.92 632.00,306.35 645.93,311.63 649.67,300.01 634.85,294.50"/>
<poly id="156298521" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="660.54,302.86 664.68,290.65 652.20,284.47 648.35,294.13 651.38,295.85 649.67,300.01 660.54,302.86"/>
<poly id="156298531" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="656.27,314.60 660.54,302.86 649.67,300.01 645.93,311.63 651.33,312.76 655.98,314.49 656.27,314.60"/>
<poly id="156298536" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="627.16,320.45 631.22,308.46 618.63,303.80 620.55,298.63 617.75,297.47 611.29,314.78 627.16,320.45"/>
<poly id="156298540" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="640.87,325.63 650.61,328.89 654.68,317.94 655.98,314.49 651.33,312.76 649.41,317.87 644.19,316.34 640.87,325.63"/>
<poly id="161697747" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="951.10,451.34 1006.36,470.50 1001.94,483.17 984.88,532.16 929.62,513.01 933.19,502.76 951.10,451.34"/>
<poly id="161697750" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="929.06,439.77 951.42,377.89 917.48,366.02 895.13,427.91 929.06,439.77"/>
<poly id="161697752" type="building.construction" color="255,230,230" fill="1" layer="-1.00" shape="888.32,391.47 905.79,341.98 941.08,354.38 946.43,339.23 881.62,316.46 858.79,381.10 888.32,391.47"/>
<poly id="161697753" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="960.94,503.04 968.17,467.53 986.46,473.63 974.61,507.64 960.94,503.04"/>
<poly id="161698195" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="852.13,554.62 861.55,538.92 864.62,529.05 868.23,516.15 873.32,503.41 860.70,499.05 850.05,495.40 828.99,546.78 826.53,545.78 807.72,591.62 810.08,592.85 809.01,595.92 823.16,601.73 824.95,596.85 827.96,598.30 830.43,599.46 842.54,582.61 847.99,566.26 848.12,565.90 852.13,554.62"/>
<poly id="162364107" type="natural.beach" color="140,196,107" fill="1" layer="-4.00" shape="2169.30,341.97 2181.85,367.41 2198.96,375.00 2233.34,372.78 2243.15,367.79 2254.74,366.82 2264.53,358.59 2268.82,344.45 2261.01,338.86 2247.84,356.36 2233.45,363.78 2216.04,365.75 2195.61,361.90 2186.82,357.58 2178.38,347.57 2169.30,341.97"/>
<poly id="165438855" type="amenity.parking_space" color="237,199,199" fill="1" layer="-1.00" shape="842.38,1252.14 834.49,1246.64 831.37,1244.47 837.49,1235.75 840.31,1237.72 848.48,1243.41 842.38,1252.14"/>
<poly id="165438855#1" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="842.38,1252.14 834.49,1246.64 831.37,1244.47 837.49,1235.75 840.31,1237.72 848.48,1243.41 842.38,1252.14"/>
<poly id="165520711" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="759.52,1220.31 760.27,1220.86 763.97,1215.80 763.09,1215.16 782.16,1189.12 780.56,1187.96 782.18,1185.75 775.31,1180.75 773.64,1183.02 772.24,1182.01 748.05,1215.03 749.26,1215.91 748.41,1217.07 753.23,1220.59 753.86,1219.73 757.83,1222.62 759.52,1220.31"/>
<poly id="165520712" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="590.47,1199.30 616.25,1200.02 616.54,1189.52 590.76,1188.81 590.47,1199.30"/>
<poly id="165520713" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="725.79,1197.09 740.46,1196.48 740.03,1186.34 725.36,1186.95 725.79,1197.09"/>
<poly id="165520715" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="639.84,1194.52 639.77,1189.95 625.66,1190.18 625.73,1194.74 639.84,1194.52"/>
<poly id="165520717" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="770.41,1228.23 778.31,1217.44 774.54,1214.70 768.18,1210.06 763.97,1215.80 760.27,1220.86 770.41,1228.23"/>
<poly id="165520721" type="landuse.residential" color="235,235,227" fill="1" layer="-3.00" shape="727.45,1220.96 777.84,1235.31 779.56,1216.40 782.70,1187.34 782.40,1185.14 754.32,1165.17 732.40,1165.46 691.21,1167.33 655.08,1169.17 650.79,1183.45 650.49,1201.29 680.43,1200.44 680.63,1225.91 721.89,1235.25 727.45,1220.96"/>
<poly id="166808250" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1328.09,599.30 1342.03,600.01 1342.67,587.47 1328.73,586.77 1328.09,599.30"/>
<poly id="166808252" type="building.apartments" color="255,230,230" fill="1" layer="-1.00" shape="1277.06,1168.51 1289.08,1170.28 1292.26,1148.72 1280.25,1146.95 1277.06,1168.51"/>
<poly id="166808253" type="amenity.parking" color="184,184,179" fill="1" layer="-1.00" shape="1321.25,785.80 1329.31,750.77 1359.40,757.69 1352.77,786.50 1351.35,792.71 1321.25,785.80"/>
<poly id="168158714" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="699.09,507.92 698.90,507.17 700.03,505.65 700.82,505.56 701.28,505.00 701.25,504.24 704.04,500.32 704.68,500.77 709.88,504.26 704.93,512.14 699.09,507.92"/>
<poly id="168158719" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="675.29,546.37 675.56,546.95 675.66,547.69 675.60,548.16 675.39,548.78 674.95,549.41 674.22,549.93 673.53,550.16 672.51,550.13 671.84,549.70 667.78,545.58 669.57,543.74 668.50,542.71 669.95,541.07 675.29,546.37"/>
<poly id="168158721" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="613.09,596.87 628.23,582.86 633.25,587.88 625.33,595.97 625.61,596.55 625.70,597.28 625.65,597.76 625.44,598.38 624.99,599.01 624.27,599.53 623.57,599.75 622.44,599.56 621.77,599.09 618.42,602.22 613.09,596.87"/>
<poly id="168158723" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="682.08,527.73 684.18,525.47 683.80,525.17 687.85,520.17 694.50,525.47 691.01,529.76 691.24,530.28 691.36,531.01 691.32,531.50 691.12,532.11 690.70,532.77 689.99,533.31 689.30,533.56 688.29,533.56 687.83,533.34 682.08,527.73"/>
<poly id="168158724" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="709.33,493.69 711.50,490.38 714.39,484.87 720.04,487.99 717.44,492.99 717.80,493.41 718.06,493.87 718.23,494.52 718.24,494.96 718.12,495.54 717.79,496.16 717.20,496.72 716.59,497.00 715.68,497.09 715.09,496.95 714.62,496.71 709.33,493.69"/>
<poly id="168158725" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="642.47,578.95 642.74,579.52 642.84,580.26 642.78,580.74 642.57,581.36 642.13,581.99 641.40,582.51 640.71,582.73 639.69,582.71 639.02,582.28 637.84,583.33 635.95,581.43 639.90,577.80 636.69,574.53 642.90,567.71 648.54,573.13 642.47,578.95"/>
<poly id="168158726" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="691.84,515.26 697.59,508.19 699.09,507.92 704.93,512.14 705.63,512.68 705.92,513.18 706.11,513.90 706.12,514.39 705.99,515.02 705.62,515.70 704.97,516.32 704.31,516.62 703.30,516.73 702.49,516.43 702.08,516.14 698.45,520.60 691.84,515.26"/>
<poly id="168158727" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="642.90,567.71 652.89,556.88 662.97,545.97 664.60,545.59 666.17,545.58 667.78,545.58 671.84,549.70 670.43,551.10 659.27,562.87 659.43,563.51 659.53,564.25 659.48,564.73 659.27,565.34 658.82,565.97 658.10,566.50 657.40,566.72 656.38,566.70 655.71,566.26 648.54,573.13 642.90,567.71"/>
<poly id="168158728" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="724.69,479.03 719.49,475.63 714.39,484.87 720.04,487.99 724.69,479.03"/>
<poly id="168158732" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="669.95,541.07 675.29,546.37 680.44,541.02 674.90,535.49 669.95,541.07"/>
<poly id="168158735" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="704.68,500.77 709.33,493.69 714.62,496.71 709.88,504.26 704.68,500.77"/>
<poly id="168158736" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="687.85,520.17 691.84,515.26 698.45,520.60 694.50,525.47 687.85,520.17"/>
<poly id="168158746" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="682.08,527.73 674.90,535.49 680.44,541.02 687.83,533.34 682.08,527.73"/>
<poly id="168158760" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="628.23,582.86 632.82,578.30 635.95,581.43 637.84,583.33 633.25,587.88 628.23,582.86"/>
<poly id="168158767" type="amenity.parking" color="184,184,179" fill="1" layer="-1.00" shape="687.57,207.45 676.56,204.58 678.07,192.44 679.60,192.78 683.42,165.59 666.29,143.62 658.11,144.62 641.24,127.70 646.47,122.13 694.82,156.16 690.14,192.55 692.98,196.00 687.57,207.45"/>
<poly id="168433677" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="726.50,467.04 730.53,469.51 738.12,458.01 738.56,458.22 739.10,458.32 739.93,458.21 740.47,457.93 740.99,457.39 741.27,456.82 741.36,456.29 741.34,455.89 741.16,455.31 740.91,454.89 740.55,454.52 745.56,446.42 741.37,444.04 726.50,467.04"/>
<poly id="168433678" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="724.69,479.03 719.49,475.63 725.87,466.68 726.50,467.04 730.53,469.51 728.22,473.02 728.69,473.48 729.03,473.97 729.30,474.68 729.35,475.17 729.29,475.82 728.99,476.56 728.40,477.25 727.75,477.64 726.74,477.84 726.06,477.77 725.48,477.51 724.69,479.03"/>
<poly id="168433679" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="741.37,444.04 745.56,446.42 749.23,440.50 745.06,438.32 741.37,444.04"/>
<poly id="169288761" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1255.68,1504.91 1260.81,1492.24 1271.56,1496.58 1266.43,1509.23 1255.68,1504.91"/>
<poly id="169288762" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1311.11,1553.68 1322.24,1561.62 1315.50,1571.03 1304.36,1563.09 1311.11,1553.68"/>
<poly id="169288763" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="968.96,1405.01 956.44,1407.84 965.90,1449.40 975.37,1447.26 974.91,1445.23 985.76,1442.79 984.00,1435.04 976.19,1436.81 968.96,1405.01"/>
<poly id="169288765" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2005.13,1279.62 2022.32,1279.46 2022.20,1267.39 2005.02,1267.55 2005.13,1279.62"/>
<poly id="169288767" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1323.12,1540.27 1328.24,1527.61 1339.00,1531.95 1333.86,1544.61 1323.12,1540.27"/>
<poly id="169288769" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1258.76,1367.87 1259.99,1354.28 1271.54,1355.33 1270.31,1368.92 1258.76,1367.87"/>
<poly id="169288771" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1288.07,1470.33 1289.31,1456.74 1300.85,1457.79 1299.62,1471.38 1288.07,1470.33"/>
<poly id="169288772" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1195.52,1486.25 1204.02,1490.22 1199.78,1497.48 1190.33,1493.78 1195.52,1486.25"/>
<poly id="169288774" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2047.30,1282.38 2064.50,1282.22 2064.38,1270.15 2047.19,1270.31 2047.30,1282.38"/>
<poly id="169288778" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1291.47,1651.45 1274.58,1661.70 1268.46,1651.66 1285.34,1641.42 1291.47,1651.45"/>
<poly id="169288780" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1845.14,1339.19 1860.69,1342.86 1862.84,1334.00 1847.64,1330.34 1845.14,1339.19"/>
<poly id="169288781" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1234.30,1490.83 1239.44,1478.17 1250.18,1482.50 1245.05,1495.16 1234.30,1490.83"/>
<poly id="169288783" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="984.15,1404.40 971.97,1407.15 959.01,1349.96 971.19,1347.22 981.50,1392.73 984.15,1404.40"/>
<poly id="169288785" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="981.90,1525.62 976.54,1527.51 972.62,1510.88 977.98,1508.99 981.90,1525.62"/>
<poly id="169288787" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1249.42,1365.30 1235.94,1362.89 1237.98,1351.51 1251.47,1353.92 1249.42,1365.30"/>
<poly id="169288789" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2063.78,1323.71 2078.43,1324.18 2079.00,1306.28 2064.36,1305.81 2063.78,1323.71"/>
<poly id="169288790" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1277.92,1372.39 1279.16,1358.80 1290.71,1359.85 1289.47,1373.44 1277.92,1372.39"/>
<poly id="169288792" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2028.88,1402.89 2046.07,1402.73 2045.95,1390.67 2028.76,1390.83 2028.88,1402.89"/>
<poly id="169288794" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1286.95,1402.39 1273.47,1399.99 1275.51,1388.61 1288.99,1391.02 1286.95,1402.39"/>
<poly id="169288797" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1932.15,1398.00 1942.63,1399.74 1944.29,1389.81 1933.81,1388.08 1932.15,1398.00"/>
<poly id="169288799" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1274.72,1513.60 1279.84,1500.95 1290.60,1505.28 1285.46,1517.94 1274.72,1513.60"/>
<poly id="169288801" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1004.24,1285.22 1014.18,1284.48 1010.72,1238.82 1000.78,1239.57 1004.24,1285.22"/>
<poly id="169288803" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2026.34,1281.42 2043.53,1281.26 2043.41,1269.20 2026.23,1269.36 2026.34,1281.42"/>
<poly id="169288806" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="973.79,1538.99 986.00,1537.13 989.23,1558.33 977.02,1560.19 973.79,1538.99"/>
<poly id="169288808" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1102.64,1283.20 1114.14,1285.75 1122.53,1248.02 1111.04,1245.48 1102.64,1283.20"/>
<poly id="169288810" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1303.32,1522.11 1308.45,1509.44 1319.20,1513.78 1314.07,1526.44 1303.32,1522.11"/>
<poly id="169288812" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1300.11,1374.87 1301.30,1362.88 1312.85,1363.94 1311.55,1376.21 1300.11,1374.87"/>
<poly id="169288814" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1940.32,1283.22 1954.97,1283.69 1955.54,1265.80 1940.89,1265.32 1940.32,1283.22"/>
<poly id="169288816" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1311.67,1407.51 1298.19,1405.10 1300.24,1393.73 1313.71,1396.13 1311.67,1407.51"/>
<poly id="169288817" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2067.97,1283.60 2085.17,1283.44 2085.05,1271.37 2067.86,1271.53 2067.97,1283.60"/>
<poly id="169288819" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="993.87,1493.47 1026.58,1486.52 1020.29,1457.17 987.59,1464.13 993.87,1493.47"/>
<poly id="169288821" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="999.95,1548.73 1013.37,1548.94 1013.18,1561.35 999.75,1561.15 999.95,1548.73"/>
<poly id="169288823" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1913.00,1392.93 1923.48,1394.66 1925.14,1384.74 1914.66,1383.00 1913.00,1392.93"/>
<poly id="169288825" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2003.16,1320.08 2014.27,1320.43 2014.76,1305.18 2003.65,1304.83 2003.16,1320.08"/>
<poly id="169288827" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1329.43,1486.65 1315.95,1484.25 1317.99,1472.87 1331.47,1475.28 1329.43,1486.65"/>
<poly id="169288829" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1245.20,1300.09 1247.14,1282.87 1256.14,1283.88 1255.88,1286.13 1264.11,1287.06 1262.42,1302.03 1245.20,1300.09"/>
<poly id="169288830" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1917.54,1371.51 1932.19,1371.98 1933.01,1357.44 1918.36,1356.97 1917.54,1371.51"/>
<poly id="169288832" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1261.30,1452.96 1247.81,1450.56 1249.86,1439.18 1263.34,1441.59 1261.30,1452.96"/>
<poly id="169288834" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1431.92,1515.75 1462.70,1419.80 1451.99,1416.38 1421.22,1512.32 1431.92,1515.75"/>
<poly id="169288835" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1236.05,1636.58 1224.11,1643.25 1218.44,1633.17 1230.39,1626.50 1236.05,1636.58"/>
<poly id="169288837" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1330.99,1470.27 1317.51,1467.86 1319.55,1456.47 1333.03,1458.88 1330.99,1470.27"/>
<poly id="169288839" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2002.75,1341.56 2017.40,1342.03 2017.97,1324.14 2003.32,1323.66 2002.75,1341.56"/>
<poly id="169288842" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1251.61,1557.36 1263.51,1564.13 1257.76,1574.17 1245.87,1567.39 1251.61,1557.36"/>
<poly id="169288843" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1937.34,1367.13 1951.99,1367.60 1952.57,1349.70 1937.92,1349.23 1937.34,1367.13"/>
<poly id="169288845" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1294.98,1437.91 1296.23,1424.31 1307.78,1425.35 1306.53,1438.95 1294.98,1437.91"/>
<poly id="169288846" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1022.61,1331.79 989.04,1339.13 991.20,1348.94 1024.76,1341.61 1022.61,1331.79"/>
<poly id="169288848" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1250.18,1636.68 1243.02,1625.04 1252.91,1618.99 1260.06,1630.64 1250.18,1636.68"/>
<poly id="169288850" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2000.04,1382.44 2014.68,1382.91 2015.12,1369.25 2000.48,1368.78 2000.04,1382.44"/>
<poly id="169288852" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1351.75,1494.93 1338.27,1492.52 1340.31,1481.14 1353.79,1483.55 1351.75,1494.93"/>
<poly id="169288855" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1280.83,1311.26 1265.38,1309.50 1266.42,1300.36 1281.88,1302.13 1280.83,1311.26"/>
<poly id="169288856" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1694.63,1447.80 1703.86,1465.06 1716.06,1458.69 1706.83,1441.43 1694.63,1447.80"/>
<poly id="169288858" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1268.30,1525.79 1280.19,1532.56 1274.44,1542.60 1262.55,1535.83 1268.30,1525.79"/>
<poly id="169288859" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1237.58,1450.53 1224.10,1448.12 1226.15,1436.75 1239.63,1439.15 1237.58,1450.53"/>
<poly id="169288861" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1256.13,1673.78 1244.19,1680.44 1238.52,1670.36 1250.47,1663.69 1256.13,1673.78"/>
<poly id="169288863" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="986.33,1445.32 1040.91,1432.98 1038.34,1421.69 983.76,1434.02 984.00,1435.04 985.76,1442.79 986.33,1445.32"/>
<poly id="169288866" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1333.63,1435.64 1325.09,1435.17 1326.50,1424.93 1334.59,1425.85 1333.63,1435.64"/>
<poly id="169288867" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1083.90,1280.46 1072.73,1279.84 1074.78,1242.51 1085.96,1243.13 1083.90,1280.46"/>
<poly id="169288868" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1661.48,1402.94 1667.45,1414.60 1688.55,1404.30 1680.91,1391.01 1661.48,1402.94"/>
<poly id="169288870" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1074.46,1565.54 1111.29,1578.17 1115.00,1567.42 1078.16,1554.80 1074.46,1565.54"/>
<poly id="169288872" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2001.17,1364.66 2015.82,1365.13 2016.39,1347.24 2001.74,1346.77 2001.17,1364.66"/>
<poly id="169288874" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1648.53,1330.21 1663.76,1334.23 1670.02,1310.56 1654.80,1306.56 1648.53,1330.21"/>
<poly id="169288876" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1261.05,1542.31 1272.95,1549.07 1267.20,1559.11 1255.30,1552.35 1261.05,1542.31"/>
<poly id="169288879" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1372.35,1463.49 1358.86,1461.09 1360.91,1449.71 1374.39,1452.12 1372.35,1463.49"/>
<poly id="169288880" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1964.87,1384.97 1982.06,1384.81 1981.94,1372.74 1964.76,1372.90 1964.87,1384.97"/>
<poly id="169288881" type="amenity.bar" color="237,199,199" fill="1" layer="-1.00" shape="1684.01,1431.98 1689.77,1442.94 1706.07,1433.95 1700.31,1423.00 1684.01,1431.98"/>
<poly id="169288881#1" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1684.01,1431.98 1689.77,1442.94 1706.07,1433.95 1700.31,1423.00 1684.01,1431.98"/>
<poly id="169288883" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1273.76,1672.24 1279.93,1684.44 1269.58,1689.63 1263.41,1677.44 1273.76,1672.24"/>
<poly id="169288885" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1159.71,1361.50 1182.75,1362.70 1183.38,1350.71 1160.34,1349.51 1159.71,1361.50"/>
<poly id="169288887" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1123.09,1471.39 1159.93,1484.01 1163.63,1473.26 1126.79,1460.64 1123.09,1471.39"/>
<poly id="169288889" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1045.09,1364.33 1056.32,1362.50 1052.89,1341.57 1041.66,1343.40 1045.09,1364.33"/>
<poly id="169288892" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1957.94,1283.51 1972.59,1283.98 1973.17,1266.08 1958.52,1265.61 1957.94,1283.51"/>
<poly id="169288893" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1035.54,1273.26 1047.55,1275.56 1054.49,1239.42 1042.47,1237.12 1035.54,1273.26"/>
<poly id="169288894" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1328.10,1563.09 1339.24,1571.02 1332.50,1580.43 1321.36,1572.49 1328.10,1563.09"/>
<poly id="169288896" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1968.81,1340.45 1986.01,1340.29 1985.89,1328.22 1968.70,1328.38 1968.81,1340.45"/>
<poly id="169288898" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1095.31,1534.95 1132.15,1547.58 1135.85,1536.83 1099.01,1524.21 1095.31,1534.95"/>
<poly id="169288899" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1338.30,1408.00 1324.82,1405.58 1326.86,1394.20 1340.34,1396.61 1338.30,1408.00"/>
<poly id="169288901" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2059.28,1393.88 2073.93,1394.35 2074.50,1376.46 2059.86,1375.98 2059.28,1393.88"/>
<poly id="169288907" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1188.26,1587.89 1199.47,1580.06 1206.12,1589.53 1194.91,1597.36 1188.26,1587.89"/>
<poly id="169288908" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1974.83,1362.16 1986.29,1362.70 1986.78,1347.45 1975.32,1346.91 1974.83,1362.16"/>
<poly id="169288909" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="981.87,1493.86 968.94,1496.35 964.47,1473.30 977.40,1470.81 981.87,1493.86"/>
<poly id="169288911" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1879.54,1397.71 1890.02,1399.45 1891.68,1389.53 1881.20,1387.79 1879.54,1397.71"/>
<poly id="169288913" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1215.02,1481.27 1220.15,1468.62 1230.90,1472.96 1225.77,1485.61 1215.02,1481.27"/>
<poly id="169288914" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1291.91,1665.02 1298.07,1677.21 1287.72,1682.40 1281.55,1670.21 1291.91,1665.02"/>
<poly id="169288916" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1079.13,1324.30 1049.84,1331.59 1044.25,1309.31 1073.54,1302.01 1079.13,1324.30"/>
<poly id="169288920" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1727.03,1432.81 1723.62,1445.91 1739.65,1450.06 1743.06,1436.97 1727.03,1432.81"/>
<poly id="169288921" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1174.78,1566.50 1186.00,1558.68 1192.65,1568.15 1181.43,1575.98 1174.78,1566.50"/>
<poly id="169288922" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2000.10,1406.50 2014.75,1406.97 2015.42,1391.55 2000.77,1391.07 2000.10,1406.50"/>
<poly id="169288923" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1222.42,1434.54 1208.94,1432.14 1210.98,1420.75 1224.46,1423.16 1222.42,1434.54"/>
<poly id="169288925" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1224.17,1505.08 1236.06,1511.86 1230.31,1521.88 1218.43,1515.12 1224.17,1505.08"/>
<poly id="169288927" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1852.01,1385.88 1862.50,1387.62 1864.15,1377.69 1853.67,1375.95 1852.01,1385.88"/>
<poly id="169288929" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1199.86,1469.07 1205.00,1456.42 1215.75,1460.75 1210.61,1473.41 1199.86,1469.07"/>
<poly id="169288933" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1400.74,1183.89 1401.98,1170.30 1413.53,1171.35 1412.29,1184.94 1400.74,1183.89"/>
<poly id="169288934" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2062.23,1371.93 2076.88,1372.40 2077.45,1354.51 2062.80,1354.04 2062.23,1371.93"/>
<poly id="169288937" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1228.67,1393.02 1215.19,1390.62 1217.23,1379.24 1230.72,1381.65 1228.67,1393.02"/>
<poly id="169288938" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1163.80,1550.64 1175.01,1542.81 1181.67,1552.28 1170.45,1560.11 1163.80,1550.64"/>
<poly id="169288940" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1314.07,1206.56 1305.57,1205.24 1304.99,1208.98 1296.49,1207.66 1304.97,1153.40 1325.15,1156.53 1323.86,1164.80 1320.18,1167.47 1314.07,1206.56"/>
<poly id="169288942" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1112.64,1504.96 1149.48,1517.57 1153.18,1506.83 1116.34,1494.22 1112.64,1504.96"/>
<poly id="169288946" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1733.69,1408.19 1730.29,1421.29 1746.32,1425.44 1749.72,1412.35 1733.69,1408.19"/>
<poly id="169288947" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1208.09,1493.06 1219.98,1499.84 1214.23,1509.88 1202.34,1503.10 1208.09,1493.06"/>
<poly id="169288948" type="building.apartments" color="255,230,230" fill="1" layer="-1.00" shape="1273.89,1227.95 1263.60,1226.33 1271.65,1175.62 1281.94,1177.24 1273.89,1227.95"/>
<poly id="169288949" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1265.51,1343.49 1252.03,1341.08 1254.07,1329.71 1267.56,1332.11 1265.51,1343.49"/>
<poly id="169288951" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1222.85,1414.30 1213.93,1412.51 1218.02,1396.48 1226.62,1398.09 1222.85,1414.30"/>
<poly id="169288953" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1269.25,1400.34 1255.77,1397.94 1257.82,1386.56 1271.30,1388.97 1269.25,1400.34"/>
<poly id="169288954" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2062.43,1348.22 2077.07,1348.69 2077.65,1330.79 2063.00,1330.32 2062.43,1348.22"/>
<poly id="169288958" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1351.72,1239.62 1330.62,1239.08 1332.34,1171.97 1353.44,1172.52 1351.72,1239.62"/>
<poly id="169288959" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1355.69,1176.93 1359.45,1164.03 1387.62,1172.21 1378.67,1202.83 1364.56,1198.74 1369.74,1181.01 1355.69,1176.93"/>
<poly id="169288960" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1053.46,1458.25 1052.22,1496.99 1056.53,1528.66 1081.56,1533.38 1077.81,1545.53 1043.67,1536.91 1039.65,1496.31 1042.29,1457.61 1053.46,1458.25"/>
<poly id="169288962" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1117.88,1295.23 1130.91,1297.09 1128.07,1316.77 1119.74,1315.58 1113.64,1357.99 1102.62,1356.41 1108.71,1314.06 1115.04,1314.96 1117.88,1295.23"/>
<poly id="169288964" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1199.87,1285.98 1196.02,1339.50 1207.07,1340.30 1210.99,1285.75 1205.85,1285.38 1207.39,1264.01 1196.57,1263.23 1194.96,1285.63 1199.87,1285.98"/>
<poly id="169288966" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1159.83,1305.19 1163.59,1251.68 1152.54,1250.90 1148.71,1305.45 1153.85,1305.80 1152.34,1327.18 1163.17,1327.94 1164.74,1305.54 1159.83,1305.19"/>
<poly id="169288970" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1143.87,1388.30 1137.32,1441.56 1126.33,1440.22 1133.00,1385.93 1138.10,1386.57 1140.72,1365.30 1151.49,1366.61 1148.75,1388.90 1143.87,1388.30"/>
<poly id="169288971" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1063.07,1424.67 1074.37,1423.51 1070.43,1385.50 1066.18,1385.93 1064.35,1368.24 1053.53,1369.35 1055.66,1389.84 1059.42,1389.44 1063.07,1424.67"/>
<poly id="169288972" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1310.80,1283.45 1307.08,1314.34 1290.47,1312.35 1292.47,1295.66 1302.15,1296.81 1303.85,1282.61 1310.80,1283.45"/>
<poly id="169288974" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1094.10,1368.95 1093.68,1407.80 1098.27,1407.85 1098.09,1424.88 1108.89,1424.99 1109.09,1405.41 1104.37,1405.36 1104.76,1369.07 1094.10,1368.95"/>
<poly id="170398245" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="604.05,2126.02 613.75,2126.74 616.48,2090.12 606.79,2089.40 604.05,2126.02"/>
<poly id="170398248" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="569.08,2084.72 572.51,2069.92 538.32,2062.05 534.90,2076.84 569.08,2084.72"/>
<poly id="170398261" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="572.70,2144.23 592.35,2146.23 592.94,2140.46 592.23,2140.40 599.07,2073.11 582.34,2071.42 575.48,2138.96 573.26,2138.73 572.70,2144.23"/>
<poly id="171006993" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="3492.78,1152.79 3496.37,1142.16 3502.57,1144.25 3498.93,1154.90 3492.78,1152.79"/>
<poly id="171006995" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="3305.81,691.73 3300.65,688.00 3292.69,698.98 3297.87,702.70 3305.81,691.73"/>
<poly id="171006997" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="3237.83,661.81 3246.93,651.36 3242.77,647.75 3233.66,658.19 3237.83,661.81"/>
<poly id="171007001" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="3287.82,827.23 3288.01,822.57 3274.79,822.03 3274.60,826.70 3287.82,827.23"/>
<poly id="171007002" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="3250.28,747.34 3253.46,740.68 3263.45,745.24 3260.68,752.27 3250.28,747.34"/>
<poly id="171007006" type="landuse.grass" color="194,194,130" fill="1" layer="-3.00" shape="2572.08,888.44 2569.47,881.38 2569.69,877.93 2572.31,880.43 2575.61,886.90 2578.27,893.21 2579.13,897.85 2576.33,894.71 2572.08,888.44"/>
<poly id="171007023" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="3661.44,973.83 3661.72,965.88 3645.59,965.26 3645.36,973.23 3661.44,973.83"/>
<poly id="171007050" type="leisure.track" color="207,245,201" fill="1" layer="-2.00" shape="2636.50,628.59 2668.92,722.38 2684.17,736.15 2705.65,741.35 2721.65,739.50 2734.06,730.89 2744.06,715.79 2747.13,701.66 2751.46,700.14 2710.92,578.11 2697.72,581.95 2685.03,576.80 2670.06,576.55 2656.39,579.90 2641.49,591.99 2634.69,610.99 2636.50,628.59"/>
<poly id="171947188" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1586.49,1367.51 1596.17,1361.08 1608.51,1379.53 1598.83,1385.96 1586.49,1367.51"/>
<poly id="172497271" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1287.32,926.28 1288.36,918.10 1282.49,917.36 1285.47,893.98 1279.79,893.25 1279.48,895.63 1278.92,900.01 1272.52,899.19 1270.08,918.36 1277.72,919.33 1277.00,924.96 1287.32,926.28"/>
<poly id="172497272" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1196.58,875.80 1198.22,865.45 1236.14,871.48 1234.50,881.83 1196.58,875.80"/>
<poly id="172497273" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1049.55,908.36 1051.36,897.66 1090.62,904.29 1088.81,915.00 1049.55,908.36"/>
<poly id="172497274" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1280.94,862.07 1283.66,841.63 1295.19,843.16 1292.47,863.60 1280.94,862.07"/>
<poly id="172497275" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1029.41,876.44 1030.38,866.88 1043.26,868.18 1042.28,877.74 1029.41,876.44"/>
<poly id="172497276" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1018.89,880.29 1019.38,875.42 1029.41,876.44 1028.91,881.31 1018.89,880.29"/>
<poly id="172497277" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1003.35,889.27 1004.84,873.04 1017.76,874.23 1016.27,890.46 1003.35,889.27"/>
<poly id="172497277#1" type="shop.video" color="237,199,255" fill="1" layer="-1.00" shape="1003.35,889.27 1004.84,873.04 1017.76,874.23 1016.27,890.46 1003.35,889.27"/>
<poly id="172497278" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1027.03,899.93 1028.91,881.31 1029.41,876.44 1042.28,877.74 1039.90,901.23 1027.03,899.93"/>
<poly id="172497280" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1261.87,893.39 1279.48,895.63 1279.79,893.25 1280.92,884.33 1263.31,882.09 1262.62,887.48 1261.87,893.39"/>
<poly id="172497281" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1238.42,903.79 1241.21,881.95 1253.80,883.55 1253.46,886.31 1262.62,887.48 1261.87,893.39 1261.24,898.33 1251.18,897.05 1250.13,905.27 1238.42,903.79"/>
<poly id="172499284" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1205.58,797.02 1210.31,797.84 1209.19,804.32 1240.08,809.67 1238.30,819.96 1255.41,822.92 1260.23,795.12 1254.67,794.17 1255.88,787.16 1240.78,784.54 1239.58,791.49 1211.56,786.64 1210.50,792.72 1206.45,792.01 1205.58,797.02"/>
<poly id="172499285" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1289.80,670.00 1293.56,659.43 1303.37,662.91 1299.61,673.49 1289.80,670.00"/>
<poly id="172499288" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1206.17,734.83 1207.60,723.80 1229.82,726.68 1228.39,737.71 1206.17,734.83"/>
<poly id="172499289" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1218.94,755.22 1217.64,762.74 1214.65,780.01 1240.78,784.54 1243.38,769.60 1227.83,766.90 1229.53,757.05 1218.94,755.22"/>
<poly id="172499290" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1191.72,808.37 1201.46,752.19 1218.94,755.22 1217.64,762.74 1211.70,761.71 1206.45,792.01 1205.58,797.02 1203.27,810.38 1191.72,808.37"/>
<poly id="175761105" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="2664.47,1307.56 2653.84,1306.76 2654.15,1302.66 2652.93,1302.57 2655.08,1274.25 2658.39,1274.50 2658.68,1270.54 2633.36,1268.67 2583.14,1264.83 2584.11,1252.04 2634.44,1255.77 2668.20,1258.39 2664.47,1307.56"/>
<poly id="175761106" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2128.25,1651.38 2068.94,1665.67 2072.42,1680.02 2131.74,1665.73 2128.25,1651.38"/>
<poly id="175761106#1" type="man_made.works" color="255,230,230" fill="1" layer="-1.00" shape="2128.25,1651.38 2068.94,1665.67 2072.42,1680.02 2131.74,1665.73 2128.25,1651.38"/>
<poly id="175761108" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="1837.72,1683.77 1858.36,1678.87 1855.03,1664.93 1834.39,1669.83 1837.72,1683.77"/>
<poly id="175761109" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1906.19,1581.63 1908.74,1591.80 1932.32,1585.95 1929.77,1575.78 1906.19,1581.63"/>
<poly id="175761109#1" type="man_made.works" color="255,230,230" fill="1" layer="-1.00" shape="1906.19,1581.63 1908.74,1591.80 1932.32,1585.95 1929.77,1575.78 1906.19,1581.63"/>
<poly id="175761110" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="1825.82,1680.19 1822.52,1666.55 1781.76,1676.37 1785.07,1690.00 1825.82,1680.19"/>
<poly id="175761111" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="1779.95,1674.59 1793.33,1671.30 1783.11,1629.98 1769.73,1633.27 1779.95,1674.59"/>
<poly id="175761112" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2192.61,1440.77 2202.34,1438.44 2193.08,1400.04 2183.34,1402.38 2192.61,1440.77"/>
<poly id="175761112#1" type="man_made.works" color="255,230,230" fill="1" layer="-1.00" shape="2192.61,1440.77 2202.34,1438.44 2193.08,1400.04 2183.34,1402.38 2192.61,1440.77"/>
<poly id="175761113" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2006.87,1712.69 2033.63,1706.15 2029.05,1687.53 2002.28,1694.07 2006.87,1712.69"/>
<poly id="175761114" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2154.45,1485.11 2162.66,1517.95 2171.82,1515.67 2163.61,1482.83 2154.45,1485.11"/>
<poly id="175761114#1" type="man_made.works" color="255,230,230" fill="1" layer="-1.00" shape="2154.45,1485.11 2162.66,1517.95 2171.82,1515.67 2163.61,1482.83 2154.45,1485.11"/>
<poly id="175761115" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2151.67,1473.97 2160.83,1471.70 2157.38,1457.92 2148.23,1460.19 2151.67,1473.97"/>
<poly id="175761115#1" type="man_made.works" color="255,230,230" fill="1" layer="-1.00" shape="2151.67,1473.97 2160.83,1471.70 2157.38,1457.92 2148.23,1460.19 2151.67,1473.97"/>
<poly id="175761116" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2162.66,1517.95 1929.77,1575.78 1932.32,1585.95 2165.21,1528.12 2162.66,1517.95"/>
<poly id="175761116#1" type="man_made.works" color="255,230,230" fill="1" layer="-1.00" shape="2162.66,1517.95 1929.77,1575.78 1932.32,1585.95 2165.21,1528.12 2162.66,1517.95"/>
<poly id="175761117" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2423.34,1276.78 2423.84,1270.84 2409.31,1269.64 2408.88,1275.58 2423.34,1276.78"/>
<poly id="175761118" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2194.81,1694.29 2201.28,1692.64 2197.12,1676.45 2190.64,1678.10 2194.81,1694.29"/>
<poly id="175761119" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1910.89,1635.89 1939.70,1629.13 1936.63,1616.13 1907.82,1622.89 1910.89,1635.89"/>
<poly id="175761120" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2114.12,1605.58 2156.13,1595.37 2150.00,1570.36 2107.99,1580.58 2114.12,1605.58"/>
<poly id="175761121" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2382.59,1287.96 2381.99,1295.40 2397.05,1296.62 2397.46,1292.55 2397.70,1289.20 2382.59,1287.96"/>
<poly id="175761122" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1815.20,1520.63 1875.20,1532.90 1879.48,1512.07 1819.47,1499.80 1815.20,1520.63"/>
<poly id="175761122#1" type="man_made.works" color="255,230,230" fill="1" layer="-1.00" shape="1815.20,1520.63 1875.20,1532.90 1879.48,1512.07 1819.47,1499.80 1815.20,1520.63"/>
<poly id="175761124" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1907.74,1619.28 1905.49,1610.41 1875.94,1617.88 1874.14,1610.81 1865.81,1612.91 1869.85,1628.83 1907.74,1619.28"/>
<poly id="175761125" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="2759.96,1314.57 2759.08,1326.10 2651.33,1318.17 2652.21,1306.64 2653.84,1306.76 2664.47,1307.56 2759.96,1314.57"/>
<poly id="175761128" type="landuse.grass" color="194,194,130" fill="1" layer="-3.00" shape="1698.30,1498.50 1733.37,1559.14 1733.90,1560.89 1733.95,1562.18 1733.76,1563.07 1733.16,1563.91 1732.20,1564.06 1731.11,1563.82 1729.65,1561.77 1693.99,1500.68 1693.94,1499.63 1694.81,1498.64 1696.72,1497.76 1697.61,1497.84 1698.30,1498.50"/>
<poly id="175761145" type="amenity.restaurant" color="237,199,199" fill="1" layer="-1.00" shape="1777.64,1571.64 1765.65,1550.02 1754.45,1556.19 1766.44,1577.81 1777.64,1571.64"/>
<poly id="175761145#1" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1777.64,1571.64 1765.65,1550.02 1754.45,1556.19 1766.44,1577.81 1777.64,1571.64"/>
<poly id="175761146" type="leisure.playground" color="207,245,201" fill="1" layer="-2.00" shape="2635.01,1359.57 2629.13,1359.13 2622.97,1362.08 2623.15,1363.99 2630.30,1371.68 2631.07,1373.77 2629.26,1375.61 2625.75,1376.41 2623.88,1377.35 2625.64,1382.13 2638.28,1379.22 2639.42,1377.60 2640.17,1374.73 2637.31,1362.96 2635.01,1359.57"/>
<poly id="175761147" type="leisure.playground" color="207,245,201" fill="1" layer="-2.00" shape="2487.15,1417.35 2491.44,1409.77 2492.06,1406.26 2488.67,1404.23 2481.16,1399.87 2475.97,1401.71 2469.50,1401.43 2464.40,1400.42 2460.44,1402.89 2457.92,1413.30 2449.97,1417.32 2446.47,1421.23 2447.82,1426.48 2452.38,1428.39 2458.54,1428.00 2466.97,1424.75 2482.59,1420.55 2487.15,1417.35"/>
<poly id="175761149" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1864.46,1583.63 1875.20,1532.90 1815.20,1520.63 1805.64,1573.21 1824.77,1576.61 1828.44,1558.59 1848.30,1562.66 1844.72,1580.09 1864.46,1583.63"/>
<poly id="175761149#1" type="man_made.works" color="255,230,230" fill="1" layer="-1.00" shape="1864.46,1583.63 1875.20,1532.90 1815.20,1520.63 1805.64,1573.21 1824.77,1576.61 1828.44,1558.59 1848.30,1562.66 1844.72,1580.09 1864.46,1583.63"/>
<poly id="177901731" type="building.tower" color="255,230,230" fill="1" layer="-1.00" shape="2048.07,913.45 2047.51,917.53 2053.15,918.30 2053.85,913.19 2054.09,911.47 2048.45,910.71 2048.07,913.45"/>
<poly id="191078108" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2230.23,943.46 2230.74,931.46 2244.14,931.89 2243.61,943.95 2230.23,943.46"/>
<poly id="193384882" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="2253.54,1430.80 2265.23,1427.87 2258.79,1402.31 2247.10,1405.24 2253.54,1430.80"/>
<poly id="193384883" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="2320.41,1470.89 2332.11,1467.97 2324.68,1438.40 2312.99,1441.32 2320.41,1470.89"/>
<poly id="193384884" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="2311.24,1435.12 2322.25,1432.42 2316.99,1411.19 2305.99,1413.89 2311.24,1435.12"/>
<poly id="193384885" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="2260.12,1457.85 2271.13,1455.15 2265.87,1433.92 2254.87,1436.62 2260.12,1457.85"/>
<poly id="193384886" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="2294.77,1421.91 2291.87,1410.98 2273.30,1415.89 2276.21,1426.81 2294.77,1421.91"/>
<poly id="193384887" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="2300.73,1447.01 2297.82,1436.09 2279.26,1440.99 2282.16,1451.92 2300.73,1447.01"/>
<poly id="193384888" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="2345.50,1466.77 2357.20,1463.85 2349.77,1434.27 2338.08,1437.19 2345.50,1466.77"/>
<poly id="193384889" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="2313.63,1499.32 2360.38,1487.12 2357.28,1475.29 2310.52,1487.48 2313.63,1499.32"/>
<poly id="193384890" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="2295.71,1503.91 2307.08,1500.75 2297.74,1467.40 2286.37,1470.57 2295.71,1503.91"/>
<poly id="193384891" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="2266.48,1511.21 2272.27,1509.78 2265.19,1481.23 2259.40,1482.65 2266.48,1511.21"/>
<poly id="193384892" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="2278.92,1508.22 2284.71,1506.79 2277.63,1478.23 2271.84,1479.66 2278.92,1508.22"/>
<poly id="195004330" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="1470.18,2089.31 1479.20,2089.88 1479.84,2079.59 1470.82,2079.04 1470.18,2089.31"/>
<poly id="195004331" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="1442.52,2089.90 1451.37,2090.44 1451.99,2080.34 1443.15,2079.78 1442.52,2089.90"/>
<poly id="195004332" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="1463.37,2062.50 1471.77,2063.42 1472.93,2052.87 1464.52,2051.95 1463.37,2062.50"/>
<poly id="195004333" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="1445.29,2065.03 1453.74,2065.95 1454.90,2055.36 1446.45,2054.43 1445.29,2065.03"/>
<poly id="195004334" type="shop.bicycle" color="237,199,255" fill="1" layer="-1.00" shape="1451.48,2090.29 1460.13,2090.82 1460.75,2080.92 1452.10,2080.37 1451.48,2090.29"/>
<poly id="195004335" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="1435.78,2067.81 1444.51,2068.76 1445.71,2057.88 1436.97,2056.93 1435.78,2067.81"/>
<poly id="195004337" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="1426.26,2070.99 1434.90,2071.93 1436.08,2061.16 1427.44,2060.22 1426.26,2070.99"/>
<poly id="195004338" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="1454.43,2063.35 1462.86,2064.26 1464.01,2053.70 1455.58,2052.78 1454.43,2063.35"/>
<poly id="195004339" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="1416.72,2075.73 1425.21,2076.66 1426.37,2066.03 1417.89,2065.10 1416.72,2075.73"/>
<poly id="195004340" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="1460.59,2089.00 1469.63,2089.56 1470.27,2079.25 1461.23,2078.70 1460.59,2089.00"/>
<poly id="198836593" type="amenity.fuel" color="237,199,199" fill="1" layer="-1.00" shape="1236.58,2013.64 1254.82,2011.84 1253.27,1996.29 1235.03,1998.09 1236.58,2013.64"/>
<poly id="198836593#1" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1236.58,2013.64 1254.82,2011.84 1253.27,1996.29 1235.03,1998.09 1236.58,2013.64"/>
<poly id="198836618" type="amenity.parking" color="184,184,179" fill="1" layer="-1.00" shape="1178.32,2006.75 1090.14,2003.86 1088.10,2055.29 1176.25,2058.92 1178.32,2006.75"/>
<poly id="198836618#1" type="building.shop" color="255,230,230" fill="1" layer="-1.00" shape="1178.32,2006.75 1090.14,2003.86 1088.10,2055.29 1176.25,2058.92 1178.32,2006.75"/>
<poly id="199885179" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1208.11,1741.90 1219.90,1743.20 1225.80,1689.86 1214.01,1688.57 1208.11,1741.90"/>
<poly id="199885180" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1166.95,1734.00 1178.39,1735.27 1183.60,1688.19 1172.16,1686.94 1166.95,1734.00"/>
<poly id="199885181" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1124.91,1722.46 1137.79,1723.92 1143.23,1676.43 1130.35,1674.96 1124.91,1722.46"/>
<poly id="199885361" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1192.13,1878.40 1206.02,1879.74 1209.47,1843.91 1195.58,1842.58 1192.13,1878.40"/>
<poly id="199885362" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1231.02,1887.79 1245.38,1889.41 1249.52,1852.97 1235.17,1851.35 1231.02,1887.79"/>
<poly id="199885363" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1270.08,1898.14 1284.02,1899.60 1287.94,1862.34 1274.00,1860.89 1270.08,1898.14"/>
<poly id="199885502" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1161.63,1875.13 1176.20,1876.13 1172.41,1931.27 1157.84,1930.26 1161.63,1875.13"/>
<poly id="199885505" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1178.60,1931.66 1233.69,1936.32 1232.83,1946.52 1177.73,1941.85 1178.60,1931.66"/>
<poly id="200741128" type="building.apartments" color="255,230,230" fill="1" layer="-1.00" shape="1039.49,1872.16 1038.48,1889.76 1052.73,1890.18 1053.54,1873.64 1050.01,1873.28 1039.49,1872.16"/>
<poly id="200741130" type="building.apartments" color="255,230,230" fill="1" layer="-1.00" shape="1101.00,1839.21 1102.19,1822.07 1116.01,1823.03 1114.82,1840.17 1111.71,1839.96 1101.00,1839.21"/>
<poly id="200741131" type="building.apartments" color="255,230,230" fill="1" layer="-1.00" shape="1055.89,1822.43 1060.17,1806.44 1047.89,1803.17 1043.61,1819.15 1055.89,1822.43"/>
<poly id="200741133" type="building.apartments" color="255,230,230" fill="1" layer="-1.00" shape="1107.41,1909.38 1108.59,1892.32 1115.92,1892.82 1122.18,1893.25 1121.00,1910.33 1107.41,1909.38"/>
<poly id="200741135" type="building.apartments" color="255,230,230" fill="1" layer="-1.00" shape="1103.42,1891.96 1104.61,1874.93 1113.76,1875.57 1117.10,1875.80 1115.92,1892.82 1108.59,1892.32 1103.42,1891.96"/>
<poly id="200741136" type="building.apartments" color="255,230,230" fill="1" layer="-1.00" shape="1096.81,1857.00 1098.05,1839.01 1101.00,1839.21 1111.71,1839.96 1110.46,1857.94 1101.13,1857.30 1096.81,1857.00"/>
<poly id="200741138" type="building.apartments" color="255,230,230" fill="1" layer="-1.00" shape="1099.93,1874.62 1101.13,1857.30 1110.46,1857.94 1114.96,1858.25 1113.76,1875.57 1104.61,1874.93 1099.93,1874.62"/>
<poly id="200741139" type="building.apartments" color="255,230,230" fill="1" layer="-1.00" shape="1038.88,1854.55 1036.56,1871.85 1039.49,1872.16 1050.01,1873.28 1051.91,1857.47 1050.19,1857.08 1038.88,1854.55"/>
<poly id="200741141" type="building.apartments" color="255,230,230" fill="1" layer="-1.00" shape="1040.35,1837.13 1037.38,1854.21 1038.88,1854.55 1050.19,1857.08 1053.44,1840.64 1051.72,1840.17 1040.35,1837.13"/>
<poly id="201788728" type="building.apartments" color="255,230,230" fill="1" layer="-1.00" shape="1522.00,525.51 1531.71,521.60 1537.00,535.35 1547.73,551.45 1566.78,567.21 1585.31,580.22 1601.12,586.04 1623.43,592.26 1632.94,594.44 1630.70,602.83 1615.41,599.19 1593.10,592.97 1577.29,587.15 1558.76,574.15 1539.71,558.37 1528.97,542.28 1522.00,525.51"/>
<poly id="201788729" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2147.58,669.35 2155.24,632.06 2171.58,635.40 2163.92,672.69 2147.58,669.35"/>
<poly id="203127061" type="amenity.bicycle_parking" color="237,199,199" fill="1" layer="-1.00" shape="772.85,1267.14 781.76,1254.09 817.22,1278.15 808.31,1291.21 772.85,1267.14"/>
<poly id="203132185" type="amenity.parking" color="184,184,179" fill="1" layer="-1.00" shape="814.63,1192.53 814.40,1186.39 829.71,1197.07 830.02,1202.99 814.63,1192.53"/>
<poly id="203369036" type="waterway.riverbank" color="181,209,209" fill="0" layer="-4.00" shape="2670.24,316.68 2665.50,230.47"/>
<poly id="203369037" type="waterway.riverbank" color="181,209,209" fill="0" layer="-4.00" shape="2665.50,230.47 2546.55,241.55 2111.84,257.93 1741.19,264.29 1499.32,265.52 1408.41,265.99 1294.99,264.79 1287.65,264.32 1239.03,260.44 1200.20,253.95 1128.56,235.88 1049.10,210.57 979.04,176.83 942.62,157.87 897.45,127.92 860.16,102.54 858.81,100.90 858.49,98.92 858.31,95.48 858.60,76.31 856.30,76.27 856.23,79.36 848.90,79.13 846.82,78.69 844.99,77.59 843.63,75.95 842.87,73.96 842.80,71.83 843.54,71.86 843.70,70.62 844.15,69.38 845.41,67.66 847.15,66.44 849.20,65.85 851.33,65.96 853.31,66.75 854.93,68.13 856.00,69.97 856.42,72.05 856.39,73.10 858.64,73.17 858.66,72.18 860.30,72.30 860.36,71.58 859.70,68.29 858.00,65.38 855.45,63.20 852.32,61.95 848.95,61.78 845.72,62.71 842.96,64.64 840.98,67.35 839.99,70.57 839.08,75.67 837.17,78.86 834.82,80.48 831.55,81.52 828.57,80.15 819.96,71.79 788.38,44.29 735.52,-9.08 691.83,-65.79 606.74,-241.17 501.57,-407.07 435.80,-490.20 375.79,-565.95 352.47,-606.93 293.02,-691.20 149.27,-843.78 2.85,-960.78 -156.52,-1081.97 -288.74,-1201.19 -389.82,-1291.51 -438.49,-1347.22 -483.90,-1398.27 -499.65,-1408.05 -504.80,-1407.57 -510.68,-1408.61 -516.34,-1410.46 -525.77,-1416.41 -529.87,-1419.07 -563.55,-1440.08 -565.42,-1443.12 -569.02,-1449.50 -548.70,-1497.81 -535.83,-1529.08 -523.98,-1544.96 -519.08,-1584.86 -523.88,-1607.09 -535.09,-1629.24 -567.91,-1678.85 -590.74,-1700.33 -643.44,-1733.89 -690.52,-1773.94 -719.33,-1789.59 -771.34,-1801.90 -831.93,-1824.20 -884.69,-1849.98 -944.78,-1885.03 -1005.25,-1905.05 -1153.85,-1915.86 -1209.28,-1929.09 -1262.56,-1949.10 -1307.32,-1969.59 -1341.55,-1991.79 -1381.78,-2020.42 -1442.60,-2054.49 -1478.90,-2067.64 -1525.03,-2079.95 -1585.45,-2085.86 -1705.64,-2083.48 -1753.37,-2087.30 -1800.61,-2093.60 -1849.69,-2105.93 -2133.82,-2205.91 -2403.17,-2297.39 -2634.90,-2371.14 -2891.00,-2439.02 -2953.74,-2450.01 -3142.09,-2509.80 -3404.29,-2601.24 -3527.51,-2623.85 -3613.48,-2672.28 -3758.05,-2718.66 -3803.02,-2721.21 -3848.94,-2712.78 -3877.96,-2703.17 -3889.66,-2701.67 -3907.82,-2706.67 -3948.70,-2723.33 -4066.29,-2796.41 -4128.95,-2797.15 -4200.24,-2797.28 -4240.59,-2801.96 -4247.15,-2786.23 -4212.80,-2771.94 -4177.31,-2771.22 -4163.70,-2779.22 -4143.88,-2774.50 -4132.33,-2762.65 -4043.42,-2736.55 -3975.20,-2716.32 -3969.38,-2698.89 -3992.12,-2694.12 -4168.31,-2740.33 -4311.81,-2776.90 -4716.97,-2869.42 -4979.65,-2931.60 -5014.94,-2934.49 -5053.35,-2945.98 -5090.87,-2948.10 -5122.72,-2954.32 -5157.28,-2957.78 -5190.53,-2965.01 -5213.26,-2968.70 -5247.76,-2975.98 -5307.34,-2977.34 -5379.99,-2985.44 -5490.59,-2992.50 -5578.27,-3003.05 -5643.44,-3006.66 -5706.83,-3009.89 -5844.99,-3016.11 -6012.78,-3007.76 -6096.72,-3003.22 -6319.91,-2974.79 -6417.04,-2956.48 -6623.59,-2918.01 -6837.26,-2859.73 -7083.57,-2783.65 -7282.98,-2726.11 -7548.01,-2658.45 -7801.75,-2610.91 -7992.83,-2590.70 -8142.99,-2573.29 -8250.42,-2564.56 -8285.32,-2556.88 -8421.49,-2527.57 -8658.52,-2466.16 -8742.92,-2434.65 -8833.96,-2400.88 -8938.68,-2363.07 -9186.81,-2280.40 -9461.92,-2182.89 -9560.47,-2144.49 -9673.43,-2104.07 -9746.28,-2073.11 -9823.01,-2046.40 -9938.41,-2002.65 -10106.92,-1934.01 -10199.70,-1899.96 -10284.88,-1869.36 -10447.30,-1815.15 -10587.95,-1757.02 -10650.37,-1739.37 -10658.03,-1732.21 -10668.60,-1722.34 -10801.63,-1707.56 -10821.52,-1701.58 -10825.04,-1694.42 -10862.89,-1682.04 -10892.25,-1672.52 -10901.00,-1673.66 -11064.17,-1680.87 -11297.32,-1636.27 -11303.12,-1635.81 -11495.30,-1620.64 -11617.44,-1613.91 -11808.69,-1615.16 -12016.95,-1608.96 -12253.67,-1640.29 -12633.34,-1736.58 -12771.32,-1790.93 -12989.89,-1897.20 -13350.94,-2089.35 -13696.56,-2226.26 -13840.66,-2325.57 -14022.11,-2370.49 -14204.36,-2490.14 -14312.64,-2628.67 -14487.14,-2804.40 -14611.69,-2863.13 -14737.99,-2892.22 -14843.64,-2868.30 -14842.55,-2831.67 -14819.47,-2820.31 -14789.45,-2825.99 -14731.60,-2838.88 -14624.75,-2823.89 -14522.79,-2777.33 -14360.55,-2618.09 -14223.46,-2472.78 -14274.34,-2499.70 -14364.06,-2566.16 -14488.94,-2657.02 -14492.99,-2653.20 -14426.62,-2601.69 -14523.21,-2626.80 -14659.39,-2725.85 -14828.49,-2786.24 -15001.80,-2838.83 -15231.15,-2877.18 -15382.71,-2857.81 -15634.66,-2801.73 -15824.47,-2696.29 -16101.26,-2605.25 -16266.87,-2581.68 -16482.95,-2596.45 -16740.89,-2607.84 -16863.14,-2636.44 -16995.07,-2749.85 -17093.97,-2903.23 -17146.73,-3030.74 -17182.76,-3104.67 -17225.80,-3185.90 -17252.89,-3202.82 -17281.91,-3215.97 -17307.61,-3224.17 -17316.35,-3225.98 -17316.19,-3227.33 -17315.83,-3228.98 -17332.73,-3231.10 -17332.91,-3229.38 -17333.01,-3228.03 -17341.59,-3227.97 -17362.67,-3226.40 -17397.52,-3216.83 -17479.63,-3187.14 -17513.36,-3175.04 -17549.44,-3175.60 -17584.19,-3173.13 -17644.42,-3168.09 -17693.32,-3168.03 -17714.31,-3171.60 -17755.07,-3178.28 -17802.58,-3202.87 -17918.49,-3277.87 -18064.51,-3285.21 -18089.57,-3279.07 -18115.50,-3258.62 -18094.45,-3243.54 -18064.18,-3243.15 -18021.20,-3240.79 -18021.31,-3237.01 -18075.09,-3233.51 -18182.81,-3220.84 -18320.01,-3187.89 -18520.16,-3130.87 -18609.24,-3119.63 -18759.42,-3130.83 -18927.13,-3189.31 -19268.34,-3391.87 -19352.55,-3445.18 -19437.56,-3486.73 -19458.27,-3490.12 -19538.22,-3538.22 -19605.54,-3601.94 -19701.03,-3666.92 -19843.31,-3711.57 -20093.92,-3759.29 -20234.14,-3790.47 -20238.08,-3786.85 -20248.61,-3783.31 -20300.84,-3783.09 -20305.47,-3781.98 -20315.32,-3787.83 -20315.21,-3790.91 -20327.44,-3792.12 -20463.59,-3796.23 -20568.21,-3781.85 -20799.17,-3709.62 -21203.38,-3539.90 -21376.04,-3462.86 -21567.51,-3391.07 -21651.82,-3368.23 -21772.20,-3354.27 -21909.18,-3367.53 -22101.60,-3431.14 -22340.53,-3525.93 -22510.78,-3592.05 -22638.62,-3650.68 -22661.14,-3666.57 -22672.46,-3674.22 -22676.86,-3677.66 -22696.34,-3675.90 -22833.27,-3762.94 -22999.62,-3861.23 -23102.50,-3944.10 -23310.64,-4069.72 -23374.29,-4104.86 -23503.91,-4201.31 -23696.22,-4289.22 -24010.53,-4347.82 -24173.66,-4346.85 -24301.94,-4336.57"/>
<poly id="203424109" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1010.07,1386.30 981.50,1392.73 984.15,1404.40 1012.72,1397.97 1010.07,1386.30"/>
<poly id="203424178" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="919.86,1433.81 933.34,1431.50 931.31,1421.20 918.35,1422.26 919.86,1433.81"/>
<poly id="203576220" type="amenity.parking" color="184,184,179" fill="1" layer="-1.00" shape="669.28,1725.88 681.60,1710.24 679.16,1705.60 679.62,1701.93 682.75,1696.79 670.66,1685.63 654.95,1674.94 635.08,1703.25 669.28,1725.88"/>
<poly id="203619973" type="amenity.parking" color="184,184,179" fill="1" layer="-1.00" shape="3121.68,1908.45 3131.22,1926.92 3190.07,1890.23 3254.12,1831.79 3310.73,1782.66 3306.76,1777.37 3301.49,1769.46 3208.64,1853.62 3183.33,1872.80 3163.00,1886.25 3121.68,1908.45"/>
<poly id="203912028" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="3878.89,1061.71 3880.42,1064.42 3885.35,1061.65 3883.82,1058.94 3878.89,1061.71"/>
<poly id="203912032" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="3915.19,1003.43 3921.16,1004.11 3921.82,998.37 3915.85,997.69 3915.19,1003.43"/>
<poly id="203912034" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="3939.18,1139.30 3955.44,1138.61 3954.96,1127.10 3938.70,1127.79 3939.18,1139.30"/>
<poly id="203912037" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="3962.36,1132.98 3971.76,1132.39 3971.20,1123.05 3961.79,1124.01 3962.36,1132.98"/>
<poly id="203912039" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="3818.94,954.22 3824.50,956.95 3827.35,951.16 3821.79,948.45 3818.94,954.22"/>
<poly id="203912041" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="3846.74,953.64 3857.66,955.64 3859.86,943.65 3848.94,941.65 3846.74,953.64"/>
<poly id="203912042" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="3963.55,1123.03 3973.07,1122.50 3972.30,1109.04 3966.91,1109.27 3962.78,1109.58 3963.55,1123.03"/>
<poly id="203912044" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="3884.30,1065.50 3884.02,1078.51 3892.21,1078.69 3892.48,1065.68 3884.30,1065.50"/>
<poly id="203912046" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="3955.96,1149.31 3963.52,1148.94 3963.01,1138.26 3955.44,1138.61 3955.96,1149.31"/>
<poly id="203912050" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="3966.25,1151.37 3968.04,1165.37 3976.65,1164.28 3974.86,1150.27 3966.25,1151.37"/>
<poly id="203912055" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="3921.16,1004.11 3920.60,1013.01 3937.05,1014.03 3937.61,1005.13 3921.16,1004.11"/>
<poly id="203912057" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="3893.20,1094.21 3902.02,1094.15 3901.97,1088.17 3893.16,1088.23 3893.20,1094.21"/>
<poly id="205141813" type="landuse.commercial" color="209,209,204" fill="1" layer="-3.00" shape="2172.01,1930.62 2342.91,1937.34 2343.07,1961.80 2433.25,1958.72 2432.49,1926.62 2436.52,1926.66 2436.69,1916.06 2469.94,1916.97 2473.77,1851.83 2179.65,1839.78 2176.23,1839.78 2173.00,1840.91 2170.33,1843.03 2168.50,1845.92 2167.74,1849.23 2172.01,1930.62"/>
<poly id="205141814" type="landuse.meadow" color="194,194,130" fill="1" layer="-3.00" shape="2433.25,1958.72 2470.94,1957.70 2470.88,1930.83 2469.94,1916.97 2436.69,1916.06 2436.52,1926.66 2432.49,1926.62 2433.25,1958.72"/>
<poly id="205141819" type="building.roof" color="255,230,230" fill="1" layer="-1.00" shape="2678.30,1730.28 2772.46,1741.00 2757.63,1864.67 2671.29,1854.47 2668.17,1850.20 2665.36,1840.21 2678.30,1730.28"/>
<poly id="205141820" type="landuse.forest" color="140,196,107" fill="1" layer="-3.00" shape="2776.38,1904.14 2773.32,1921.17 2765.84,1942.62 2773.42,1946.38 2786.55,1917.63 2788.19,1910.30 2785.08,1905.42 2776.38,1904.14"/>
<poly id="205141820#1" type="leisure.pitch" color="207,245,201" fill="1" layer="-2.00" shape="2776.38,1904.14 2773.32,1921.17 2765.84,1942.62 2773.42,1946.38 2786.55,1917.63 2788.19,1910.30 2785.08,1905.42 2776.38,1904.14"/>
<poly id="205141820#2" type="sport.skateboard" color="79,230,125" fill="1" layer="-2.00" shape="2776.38,1904.14 2773.32,1921.17 2765.84,1942.62 2773.42,1946.38 2786.55,1917.63 2788.19,1910.30 2785.08,1905.42 2776.38,1904.14"/>
<poly id="207216177" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1323.55,1887.46 1339.44,1885.76 1336.33,1856.99 1329.09,1857.98 1329.83,1865.98 1321.35,1867.44 1322.09,1873.73 1330.06,1873.25 1330.66,1880.68 1322.88,1881.59 1323.55,1887.46"/>
<poly id="207216178" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1357.06,1887.08 1372.96,1885.37 1369.85,1856.59 1362.60,1857.59 1363.35,1865.60 1354.86,1867.06 1355.60,1873.35 1363.58,1872.87 1364.18,1880.30 1356.40,1881.19 1357.06,1887.08"/>
<poly id="207216179" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1340.11,1886.85 1356.01,1885.14 1352.90,1856.37 1345.65,1857.36 1346.40,1865.36 1337.91,1866.83 1338.65,1873.12 1346.63,1872.64 1347.23,1880.07 1339.45,1880.96 1340.11,1886.85"/>
<poly id="207216180" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1307.02,1887.48 1322.92,1885.77 1319.81,1856.99 1312.56,1857.99 1313.32,1865.99 1304.83,1867.45 1305.57,1873.74 1313.54,1873.27 1314.14,1880.70 1306.37,1881.59 1307.02,1887.48"/>
<poly id="207216181" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1387.68,1821.29 1389.82,1841.23 1394.75,1840.71 1392.61,1820.77 1387.68,1821.29"/>
<poly id="207216182" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1375.42,1809.41 1380.70,1809.54 1386.21,1809.68 1386.77,1787.77 1375.99,1787.49 1375.42,1809.41"/>
<poly id="207216183" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1179.99,1803.67 1186.75,1803.74 1186.81,1797.44 1180.05,1797.38 1179.99,1803.67"/>
<poly id="207216184" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1460.78,1795.78 1459.70,1801.40 1467.85,1801.66 1469.32,1798.76 1460.78,1795.78"/>
<poly id="207216185" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1171.01,1817.61 1182.12,1818.16 1182.57,1808.88 1171.79,1808.36 1171.01,1817.61"/>
<poly id="207216186" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1379.55,1766.23 1379.25,1785.45 1390.21,1785.60 1390.52,1766.37 1379.55,1766.23"/>
<poly id="207216187" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1377.71,1858.00 1371.82,1858.63 1374.11,1879.67 1380.00,1879.04 1377.71,1858.00"/>
<poly id="207216188" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1066.01,1704.96 1087.30,1710.68 1091.08,1696.67 1069.79,1690.95 1066.01,1704.96"/>
<poly id="207216189" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1459.63,1808.12 1465.53,1808.31 1465.74,1801.68 1459.70,1801.40 1459.63,1808.12"/>
<poly id="207216190" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1333.44,1843.20 1358.48,1840.94 1357.46,1829.70 1332.42,1831.96 1333.44,1843.20"/>
<poly id="207216191" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1181.44,1757.21 1188.07,1758.99 1189.79,1752.57 1183.17,1750.79 1181.44,1757.21"/>
<poly id="207216192" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1422.51,1860.33 1402.57,1863.16 1404.23,1874.73 1424.17,1871.91 1422.51,1860.33"/>
<poly id="207216193" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1433.18,1872.30 1433.99,1877.67 1449.62,1875.31 1448.81,1869.95 1433.18,1872.30"/>
<poly id="207216194" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1241.06,1827.19 1240.65,1836.92 1250.83,1837.35 1251.25,1827.62 1241.06,1827.19"/>
<poly id="207216195" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1421.59,1844.59 1442.51,1842.81 1441.56,1831.66 1420.63,1833.44 1421.59,1844.59"/>
<poly id="207216196" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1374.51,1821.63 1375.14,1830.14 1380.03,1829.77 1379.41,1821.27 1374.51,1821.63"/>
<poly id="207216197" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1223.85,1820.59 1214.09,1819.86 1213.33,1829.88 1223.08,1830.62 1223.85,1820.59"/>
<poly id="207216198" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1395.49,1820.21 1401.53,1820.37 1398.80,1798.35 1393.28,1798.94 1395.49,1820.21"/>
<poly id="207216199" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1213.72,1818.04 1204.29,1817.22 1203.39,1827.36 1212.82,1828.20 1213.72,1818.04"/>
<poly id="207216200" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1171.64,1749.98 1159.46,1746.71 1150.22,1780.95 1162.40,1784.21 1171.64,1749.98"/>
<poly id="207216201" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1141.07,1798.84 1146.58,1800.32 1149.80,1788.39 1144.29,1786.92 1141.07,1798.84"/>
<poly id="207216202" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1256.13,1798.00 1253.64,1808.71 1267.46,1811.90 1269.95,1801.20 1256.13,1798.00"/>
<poly id="207216203" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1103.42,1795.45 1101.45,1802.77 1104.08,1803.48 1106.05,1796.16 1103.42,1795.45"/>
<poly id="207216204" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1174.05,1787.29 1162.40,1784.21 1160.71,1790.57 1172.37,1793.64 1174.05,1787.29"/>
<poly id="207216205" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1396.03,1844.18 1421.26,1842.13 1420.29,1830.36 1395.06,1832.40 1396.03,1844.18"/>
<poly id="207216206" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1100.33,1795.18 1075.43,1788.48 1073.71,1794.87 1098.61,1801.55 1100.33,1795.18"/>
<poly id="207216207" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1214.14,1795.54 1226.53,1798.87 1234.91,1767.83 1222.52,1764.51 1214.14,1795.54"/>
<poly id="207216208" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1161.02,1813.36 1171.13,1813.98 1171.75,1804.67 1161.64,1804.05 1161.02,1813.36"/>
<poly id="207216209" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1358.81,1843.19 1379.51,1842.43 1379.11,1831.72 1358.41,1832.48 1358.81,1843.19"/>
<poly id="207216210" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1421.08,1917.81 1393.26,1924.07 1395.76,1935.12 1423.58,1928.88 1421.08,1917.81"/>
<poly id="207216211" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1212.39,1764.75 1219.32,1766.61 1221.12,1759.94 1214.19,1758.08 1212.39,1764.75"/>
<poly id="207216212" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1148.46,1809.62 1161.03,1810.38 1161.61,1800.80 1149.05,1800.03 1148.46,1809.62"/>
<poly id="207216213" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1420.27,1780.67 1433.26,1780.64 1433.21,1762.05 1420.23,1762.08 1420.27,1780.67"/>
<poly id="207216214" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1430.58,1883.23 1435.73,1920.32 1451.63,1918.13 1446.48,1881.03 1430.58,1883.23"/>
<poly id="207216215" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1269.06,1832.32 1268.64,1842.39 1278.92,1842.83 1279.36,1832.76 1269.06,1832.32"/>
<poly id="207216216" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1431.11,1796.83 1447.37,1797.77 1448.05,1786.13 1431.79,1785.19 1431.11,1796.83"/>
<poly id="207216217" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1399.49,1908.55 1412.83,1906.94 1408.88,1874.42 1395.53,1876.03 1399.49,1908.55"/>
<poly id="207216218" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1093.83,1701.84 1091.11,1711.95 1107.24,1716.28 1109.96,1706.18 1093.83,1701.84"/>
<poly id="207216219" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1229.65,1825.23 1229.26,1834.45 1240.40,1834.92 1240.79,1825.70 1229.65,1825.23"/>
<poly id="207216220" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1257.97,1830.06 1257.35,1840.17 1268.38,1840.83 1269.00,1830.73 1257.97,1830.06"/>
<poly id="207216221" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1385.13,1857.50 1387.28,1878.23 1393.13,1877.63 1390.99,1856.90 1385.13,1857.50"/>
<poly id="207216222" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1184.67,1739.51 1202.48,1741.57 1203.15,1735.85 1185.34,1733.79 1184.67,1739.51"/>
<poly id="207216223" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1193.00,1815.02 1192.00,1825.10 1203.24,1826.22 1204.24,1816.14 1193.00,1815.02"/>
<poly id="207216224" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1426.09,1806.50 1425.51,1816.57 1442.40,1817.55 1442.99,1807.47 1426.09,1806.50"/>
<poly id="207216226" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1380.43,1819.72 1385.94,1819.87 1386.21,1809.68 1380.70,1809.54 1380.43,1819.72"/>
<poly id="207216227" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1142.14,1730.05 1160.56,1731.99 1161.23,1725.62 1142.80,1723.68 1142.14,1730.05"/>
<poly id="207216228" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1193.51,1799.01 1202.34,1800.33 1203.35,1793.61 1194.53,1792.28 1193.51,1799.01"/>
<poly id="207216229" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1181.17,1788.31 1194.37,1791.85 1202.65,1761.17 1189.45,1757.62 1181.17,1788.31"/>
<poly id="207216230" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1419.59,1801.80 1410.02,1801.84 1410.07,1813.81 1419.63,1813.77 1419.59,1801.80"/>
<poly id="207216231" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1225.05,1750.24 1250.80,1753.46 1251.65,1746.76 1225.89,1743.54 1225.05,1750.24"/>
<poly id="207216232" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1260.10,1775.21 1251.61,1773.58 1250.26,1780.63 1236.72,1777.80 1235.48,1783.72 1257.58,1788.32 1260.10,1775.21"/>
<poly id="207216233" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1443.17,1761.52 1442.76,1767.20 1433.61,1766.70 1433.65,1777.89 1450.98,1778.66 1453.41,1772.60 1453.65,1762.29 1443.17,1761.52"/>
<poly id="207216234" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1337.03,1792.39 1348.74,1789.09 1343.74,1771.41 1330.21,1775.21 1332.82,1784.43 1328.00,1785.54 1333.45,1809.22 1340.53,1807.60 1337.03,1792.39"/>
<poly id="207216235" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1303.38,1842.85 1328.43,1840.18 1327.15,1828.34 1302.11,1831.00 1303.38,1842.85"/>
<poly id="207216235#1" type="shop.beverages" color="237,199,255" fill="1" layer="-1.00" shape="1303.38,1842.85 1328.43,1840.18 1327.15,1828.34 1302.11,1831.00 1303.38,1842.85"/>
<poly id="207216236" type="amenity.place_of_worship" color="237,199,199" fill="1" layer="-1.00" shape="1338.80,1915.74 1336.33,1903.80 1318.72,1907.41 1322.29,1924.74 1339.97,1921.12 1339.79,1920.22 1349.65,1918.19 1355.31,1945.60 1379.14,1940.71 1371.68,1904.56 1347.87,1909.44 1348.75,1913.70 1338.80,1915.74"/>
<poly id="207216236#1" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1338.80,1915.74 1336.33,1903.80 1318.72,1907.41 1322.29,1924.74 1339.97,1921.12 1339.79,1920.22 1349.65,1918.19 1355.31,1945.60 1379.14,1940.71 1371.68,1904.56 1347.87,1909.44 1348.75,1913.70 1338.80,1915.74"/>
<poly id="207216237" type="amenity.place_of_worship" color="237,199,199" fill="1" layer="-1.00" shape="1328.63,1918.72 1333.89,1917.85 1333.18,1913.61 1327.92,1914.48 1328.63,1918.72"/>
<poly id="207216237#1" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1328.63,1918.72 1333.89,1917.85 1333.18,1913.61 1327.92,1914.48 1328.63,1918.72"/>
<poly id="207216238" type="amenity.place_of_worship" color="237,199,199" fill="1" layer="-1.00" shape="1361.25,1926.66 1369.15,1924.93 1367.36,1916.79 1359.45,1918.52 1361.25,1926.66"/>
<poly id="207216238#1" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1361.25,1926.66 1369.15,1924.93 1367.36,1916.79 1359.45,1918.52 1361.25,1926.66"/>
<poly id="207218397" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="878.25,1644.15 870.40,1641.54 868.66,1646.77 875.15,1648.92 871.47,1660.05 867.77,1658.97 866.25,1664.06 880.06,1668.14 881.20,1664.30 881.97,1664.55 886.86,1649.76 877.41,1646.66 878.25,1644.15"/>
<poly id="207218398" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1297.93,1705.23 1304.20,1702.46 1306.77,1707.83 1315.08,1703.86 1312.63,1698.75 1314.54,1697.91 1312.37,1693.03 1310.32,1693.94 1308.28,1689.69 1299.97,1693.66 1301.89,1697.66 1295.77,1700.36 1297.93,1705.23"/>
<poly id="207218399" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1286.29,1718.45 1282.51,1708.70 1282.02,1708.88 1280.21,1704.82 1273.48,1707.80 1275.15,1711.53 1267.31,1714.55 1270.29,1722.25 1265.34,1723.92 1267.29,1729.64 1275.42,1726.87 1274.14,1723.15 1279.42,1721.11 1279.56,1721.44 1286.29,1718.45"/>
<poly id="207218400" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="925.63,1697.59 940.56,1696.42 938.26,1667.49 923.33,1668.66 925.63,1697.59"/>
<poly id="207218401" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1322.21,1727.77 1320.03,1720.59 1314.43,1722.29 1316.62,1729.47 1322.21,1727.77"/>
<poly id="207218402" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="881.94,1689.57 884.35,1676.98 872.21,1674.67 869.80,1687.26 881.94,1689.57"/>
<poly id="207218403" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="930.47,1767.41 929.66,1792.82 941.00,1793.19 941.81,1767.78 930.47,1767.41"/>
<poly id="207218404" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="898.41,1702.87 916.05,1701.06 914.97,1667.68 898.25,1669.83 898.41,1702.87"/>
<poly id="207218405" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="948.58,1623.31 960.58,1622.15 958.48,1600.71 946.48,1601.87 948.58,1623.31"/>
<poly id="207218406" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1321.99,1725.49 1328.88,1723.30 1326.73,1716.61 1319.84,1718.80 1321.99,1725.49"/>
<poly id="207218407" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="834.54,1771.84 831.20,1784.18 848.02,1788.70 851.35,1776.36 834.54,1771.84"/>
<poly id="207218408" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="912.53,1765.34 911.66,1792.46 923.01,1792.82 923.88,1765.70 912.53,1765.34"/>
<poly id="207218409" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="894.59,1763.27 894.00,1775.00 905.55,1775.59 906.15,1763.86 894.59,1763.27"/>
<poly id="207218410" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1378.49,1747.07 1393.12,1744.94 1391.48,1733.77 1376.85,1735.91 1378.49,1747.07"/>
<poly id="207218411" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="860.11,1668.57 867.54,1670.73 868.86,1666.20 861.43,1664.04 860.11,1668.57"/>
<poly id="207218412" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1354.94,1690.28 1367.64,1681.93 1362.17,1673.68 1349.48,1682.02 1354.94,1690.28"/>
<poly id="207218413" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1302.97,1756.16 1308.15,1755.12 1306.92,1749.03 1301.73,1750.07 1302.97,1756.16"/>
<poly id="207218414" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="933.46,1640.35 945.70,1639.46 944.96,1629.33 932.72,1630.22 933.46,1640.35"/>
<poly id="207218415" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="816.79,1722.96 812.08,1721.92 810.57,1728.71 815.29,1729.75 816.79,1722.96"/>
<poly id="207218416" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1364.76,1715.08 1350.74,1717.50 1352.84,1729.59 1366.86,1727.16 1364.76,1715.08"/>
<poly id="207218417" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="919.23,1820.04 910.70,1811.03 888.36,1832.08 896.89,1841.08 919.23,1820.04"/>
<poly id="207218418" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1301.41,1733.75 1315.81,1729.22 1313.27,1721.21 1298.87,1725.73 1301.41,1733.75"/>
<poly id="207218419" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="847.50,1720.95 858.97,1724.10 861.83,1713.74 850.36,1710.59 847.50,1720.95"/>
<poly id="207218420" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1283.36,1767.47 1300.33,1762.88 1296.88,1750.21 1279.90,1754.80 1283.36,1767.47"/>
<poly id="207218421" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="949.39,1638.09 962.26,1637.85 962.07,1627.57 949.21,1627.80 949.39,1638.09"/>
<poly id="207218422" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="828.63,1728.26 819.26,1726.03 817.20,1734.67 826.56,1736.89 828.63,1728.26"/>
<poly id="207218423" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="885.35,1794.02 858.48,1819.30 867.60,1828.95 894.48,1803.66 885.35,1794.02"/>
<poly id="207218424" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1274.81,1750.27 1280.05,1749.09 1278.45,1742.09 1273.22,1743.27 1274.81,1750.27"/>
<poly id="207218425" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="826.57,1678.40 825.32,1682.88 836.58,1686.02 837.83,1681.53 826.57,1678.40"/>
<poly id="207218426" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="946.19,1684.36 959.28,1683.52 958.28,1667.89 945.19,1668.72 946.19,1684.36"/>
<poly id="207218427" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1422.25,1725.82 1421.26,1743.32 1433.01,1743.97 1433.99,1726.48 1422.25,1725.82"/>
<poly id="207218428" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="886.16,1638.20 891.04,1619.54 880.66,1616.84 875.78,1635.49 886.16,1638.20"/>
<poly id="207218429" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1253.17,1697.44 1265.65,1691.04 1260.93,1681.90 1248.45,1688.30 1253.17,1697.44"/>
<poly id="207218430" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="779.65,1704.68 790.07,1707.36 792.67,1697.32 782.26,1694.63 779.65,1704.68"/>
<poly id="207218431" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1439.54,1734.71 1448.79,1734.41 1448.36,1721.14 1439.11,1721.45 1439.54,1734.71"/>
<poly id="207218432" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="868.47,1786.37 875.68,1779.05 871.64,1775.10 864.43,1782.43 868.47,1786.37"/>
<poly id="207218433" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1370.99,1747.47 1369.52,1739.72 1357.93,1741.92 1359.41,1749.66 1370.99,1747.47"/>
<poly id="207218434" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1398.66,1744.45 1414.31,1743.37 1413.47,1731.24 1397.82,1732.31 1398.66,1744.45"/>
<poly id="207218435" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1435.89,1748.27 1446.15,1749.02 1446.67,1742.03 1436.41,1741.28 1435.89,1748.27"/>
<poly id="207218436" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="851.47,1777.97 848.47,1790.03 861.53,1793.26 864.52,1781.21 851.47,1777.97"/>
<poly id="207218437" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1332.52,1756.05 1349.96,1753.29 1347.43,1737.49 1330.00,1740.26 1332.52,1756.05"/>
<poly id="207218438" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="862.04,1735.73 859.54,1746.59 870.39,1749.07 872.88,1738.21 862.04,1735.73"/>
<poly id="207218439" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="774.26,1725.66 785.54,1728.37 787.77,1719.15 776.49,1716.44 774.26,1725.66"/>
<poly id="207218440" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="796.32,1720.17 794.91,1726.10 804.27,1728.32 805.69,1722.38 796.32,1720.17"/>
<poly id="207218441" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1472.33,1728.28 1477.77,1717.85 1467.23,1712.38 1461.78,1722.81 1472.33,1728.28"/>
<poly id="207218442" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="860.62,1709.78 866.15,1711.03 866.89,1707.74 861.36,1706.49 860.62,1709.78"/>
<poly id="207218443" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1326.72,1715.06 1330.40,1726.21 1344.64,1721.52 1340.96,1710.38 1326.72,1715.06"/>
<poly id="207218444" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1327.15,1696.64 1341.53,1687.89 1333.00,1673.96 1318.62,1682.73 1327.15,1696.64"/>
<poly id="207218445" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1309.67,1760.00 1325.36,1756.11 1322.61,1745.13 1306.92,1749.03 1309.67,1760.00"/>
<poly id="207218446" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1440.91,1705.26 1456.04,1694.84 1451.03,1687.62 1435.90,1698.03 1440.91,1705.26"/>
<poly id="207218447" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="953.70,1657.45 962.45,1657.10 962.09,1648.32 953.34,1648.68 953.70,1657.45"/>
<poly id="207218448" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1421.59,1706.13 1418.25,1712.77 1430.06,1718.70 1433.40,1712.07 1421.59,1706.13"/>
<poly id="207218449" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1279.26,1743.92 1294.12,1739.25 1290.55,1727.98 1275.70,1732.64 1279.26,1743.92"/>
<poly id="207218450" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="833.65,1698.29 828.54,1697.27 827.83,1700.82 832.94,1701.84 833.65,1698.29"/>
<poly id="207218451" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1370.44,1698.48 1372.35,1711.36 1389.24,1708.88 1387.34,1696.00 1370.44,1698.48"/>
<poly id="207218452" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="855.20,1734.88 843.94,1731.74 841.37,1740.92 852.63,1744.07 855.20,1734.88"/>
<poly id="207218453" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1351.12,1710.10 1363.69,1708.82 1362.42,1696.54 1349.85,1697.82 1351.12,1710.10"/>
<poly id="207218454" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1394.09,1748.42 1399.13,1747.69 1398.66,1744.45 1393.61,1745.18 1394.09,1748.42"/>
<poly id="207218455" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="902.32,1635.50 907.06,1621.35 901.47,1619.48 896.73,1633.65 902.32,1635.50"/>
<poly id="207218456" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1349.97,1750.87 1357.91,1749.01 1357.13,1743.69 1349.12,1745.28 1349.97,1750.87"/>
<poly id="207218457" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="859.69,1681.81 869.04,1684.03 870.90,1676.25 861.54,1674.03 859.69,1681.81"/>
<poly id="207218458" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="922.42,1630.38 910.30,1627.43 907.80,1637.60 919.93,1640.55 922.42,1630.38"/>
<poly id="207218459" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="856.11,1704.60 866.32,1707.42 870.01,1694.11 856.84,1690.47 853.20,1703.61 850.23,1702.88 849.37,1706.31 855.33,1707.78 856.11,1704.60"/>
<poly id="207218460" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="911.11,1608.65 922.78,1612.23 924.23,1607.53 929.92,1608.98 931.92,1601.19 918.53,1597.77 916.93,1604.03 912.91,1602.80 911.11,1608.65"/>
<poly id="207218461" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="901.64,1605.92 897.61,1604.77 895.09,1613.48 907.63,1617.08 910.14,1608.37 908.83,1608.00 910.22,1602.85 903.00,1600.91 901.64,1605.92"/>
<poly id="207218462" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="828.54,1697.27 829.92,1691.86 828.94,1691.61 830.63,1685.57 820.22,1682.68 818.47,1688.95 813.55,1687.70 812.17,1693.11 828.54,1697.27"/>
<poly id="207218463" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="905.11,1662.10 916.60,1661.48 917.01,1665.26 924.54,1664.43 923.99,1659.47 920.07,1659.90 919.55,1650.43 904.53,1651.24 905.11,1662.10"/>
<poly id="207219855" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1468.09,1842.04 1468.43,1848.31 1475.52,1847.94 1475.18,1841.67 1468.09,1842.04"/>
<poly id="207219856" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1513.23,1841.67 1513.63,1847.54 1517.68,1847.27 1517.28,1841.40 1513.23,1841.67"/>
<poly id="207219858" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1498.90,1846.66 1499.11,1840.01 1494.87,1839.87 1494.66,1846.53 1498.90,1846.66"/>
<poly id="207219859" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1499.95,1870.91 1499.97,1874.92 1509.74,1874.86 1509.71,1870.84 1499.95,1870.91"/>
<poly id="207219860" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="807.14,1830.59 819.14,1840.05 822.87,1834.66 813.41,1823.29 807.14,1830.59"/>
<poly id="207219861" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1553.29,1841.96 1552.87,1848.60 1557.08,1848.85 1557.49,1842.21 1553.29,1841.96"/>
<poly id="207219862" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="806.81,1788.86 812.34,1790.30 816.98,1772.48 811.45,1771.04 806.81,1788.86"/>
<poly id="207221800" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1147.81,1634.01 1195.95,1640.80 1197.49,1629.94 1149.34,1623.16 1147.81,1634.01"/>
<poly id="207221802" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1032.44,1641.31 1038.86,1641.68 1039.52,1630.31 1033.09,1629.95 1032.44,1641.31"/>
<poly id="207221804" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1011.43,1714.93 1003.35,1715.08 1003.43,1718.96 1011.51,1718.80 1011.43,1714.93"/>
<poly id="207221805" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="993.99,1720.81 994.18,1730.31 1010.14,1729.99 1009.95,1720.50 993.99,1720.81"/>
<poly id="207221806" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1162.23,1601.25 1155.60,1600.37 1153.48,1616.37 1160.11,1617.25 1162.23,1601.25"/>
<poly id="207221807" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1052.87,1623.48 1051.13,1632.83 1060.60,1634.58 1062.34,1625.22 1052.87,1623.48"/>
<poly id="207221809" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1009.82,1698.81 1014.38,1698.75 1014.30,1693.22 1009.74,1693.28 1009.82,1698.81"/>
<poly id="207221811" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1211.95,1597.39 1215.49,1602.42 1219.97,1599.29 1216.43,1594.26 1211.95,1597.39"/>
<poly id="207221813" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1003.57,1712.65 1012.27,1712.52 1012.18,1706.30 1003.48,1706.43 1003.57,1712.65"/>
<poly id="207221814" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1210.25,1618.18 1218.05,1612.75 1212.94,1605.48 1205.14,1610.91 1210.25,1618.18"/>
<poly id="207221815" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1059.20,1644.60 1059.64,1640.59 1051.78,1639.74 1051.34,1643.75 1059.20,1644.60"/>
<poly id="207221816" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1019.94,1603.63 1019.88,1597.82 1000.82,1598.03 1000.88,1603.85 1019.94,1603.63"/>
<poly id="207221817" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1127.30,1609.51 1144.43,1613.05 1146.00,1604.37 1129.06,1601.03 1127.30,1609.51"/>
<poly id="207221818" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1116.29,1627.14 1144.76,1629.76 1145.60,1620.67 1117.13,1618.04 1116.29,1627.14"/>
<poly id="207221819" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1103.37,1639.71 1098.50,1647.26 1112.10,1655.98 1116.97,1648.42 1103.37,1639.71"/>
<poly id="207221820" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1009.86,1634.61 1020.41,1634.66 1020.43,1627.61 1009.89,1627.56 1009.86,1634.61"/>
<poly id="207221821" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1124.24,1646.86 1120.85,1657.88 1143.17,1664.74 1146.56,1653.72 1124.24,1646.86"/>
<poly id="207221822" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1027.92,1619.79 1037.65,1619.97 1037.92,1604.90 1028.19,1604.73 1027.92,1619.79"/>
<poly id="207221823" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1022.00,1691.85 1035.26,1691.66 1035.06,1675.09 1021.80,1675.27 1022.00,1691.85"/>
<poly id="207221824" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1060.59,1615.25 1086.49,1621.46 1089.18,1610.26 1063.28,1604.06 1060.59,1615.25"/>
<poly id="207221825" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1061.54,1630.78 1060.32,1638.82 1068.98,1640.13 1070.20,1632.08 1061.54,1630.78"/>
<poly id="207221826" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="986.75,1638.40 986.64,1644.39 997.32,1644.58 997.43,1638.60 986.75,1638.40"/>
<poly id="207221827" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="992.33,1693.28 1009.22,1692.98 1008.86,1672.17 991.97,1672.45 992.33,1693.28"/>
<poly id="207221828" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="984.42,1619.48 999.95,1619.26 999.79,1608.48 984.25,1608.72 984.42,1619.48"/>
<poly id="207221829" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="994.44,1700.39 994.56,1709.47 1002.07,1709.38 1001.94,1700.28 994.44,1700.39"/>
<poly id="207221830" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1020.38,1698.94 1030.12,1698.64 1029.94,1693.05 1020.20,1693.36 1020.38,1698.94"/>
<poly id="207221831" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1030.47,1667.98 1038.38,1667.95 1038.36,1663.76 1030.45,1663.80 1030.47,1667.98"/>
<poly id="207221832" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1022.55,1663.79 1032.81,1663.68 1032.70,1654.00 1022.45,1654.11 1022.55,1663.79"/>
<poly id="207221833" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="991.37,1663.37 1002.66,1662.86 1002.19,1652.59 997.00,1652.83 996.94,1649.39 990.93,1649.49 991.37,1663.37"/>
<poly id="207221834" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="997.85,1589.45 982.49,1590.40 983.16,1601.01 992.56,1600.43 992.64,1605.15 998.65,1605.05 997.85,1589.45"/>
<poly id="207221835" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1032.72,1670.97 1032.78,1674.89 1039.24,1674.92 1039.47,1679.81 1043.97,1679.51 1043.76,1671.53 1032.72,1670.97"/>
<poly id="207221837" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1178.96,1611.49 1180.01,1603.94 1169.51,1602.51 1167.60,1616.32 1173.51,1617.13 1173.05,1620.00 1185.88,1622.01 1187.33,1612.80 1178.96,1611.49"/>
<poly id="207221838" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1049.65,1668.16 1061.34,1650.86 1051.63,1644.35 1039.95,1661.65 1041.46,1662.94 1041.01,1670.57 1045.76,1670.92 1048.05,1667.07 1049.65,1668.16"/>
<poly id="207221841" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1134.98,1592.05 1161.90,1597.73 1165.98,1581.64 1158.34,1572.65 1143.22,1576.84 1134.98,1592.05"/>
<poly id="208010340" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2214.66,582.31 2217.52,568.75 2199.53,564.98 2196.70,578.37 2187.60,576.46 2183.84,594.25 2210.99,599.94 2212.24,594.02 2272.43,606.66 2274.89,594.95 2214.66,582.31"/>
<poly id="208010341" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1786.70,584.31 1786.19,586.03 1793.64,588.21 1794.14,586.51 1786.70,584.31"/>
<poly id="208010342" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1849.38,589.67 1856.35,591.84 1858.22,585.87 1851.26,583.70 1849.38,589.67"/>
<poly id="208010343" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1905.85,643.28 1918.60,646.67 1923.30,629.12 1910.55,625.73 1905.85,643.28"/>
<poly id="208010344" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2533.05,813.01 2529.57,825.99 2543.71,829.76 2547.19,816.78 2533.05,813.01"/>
<poly id="208010345" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1811.57,552.94 1795.95,557.80 1798.48,565.86 1814.10,561.00 1811.57,552.94"/>
<poly id="208010346" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="2056.13,680.91 2048.84,680.43 2048.60,684.27 2055.88,684.75 2056.13,680.91"/>
<poly id="208010348" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1647.51,689.73 1655.16,691.72 1656.70,685.79 1649.05,683.81 1647.51,689.73"/>
<poly id="208010349" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2292.18,610.72 2307.41,613.58 2315.43,571.19 2300.20,568.32 2292.18,610.72"/>
<poly id="208010350" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1970.62,656.27 1962.42,654.31 1961.19,659.40 1969.40,661.35 1970.62,656.27"/>
<poly id="208010351" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="2051.03,661.06 2057.46,662.26 2059.65,650.61 2053.22,649.42 2051.03,661.06"/>
<poly id="208010352" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1676.16,681.22 1671.94,694.03 1686.23,698.71 1690.45,685.90 1676.16,681.22"/>
<poly id="208010354" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1972.39,639.11 1971.49,642.77 1980.66,645.00 1981.56,641.34 1972.39,639.11"/>
<poly id="208010355" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="3694.74,792.47 3712.23,790.97 3711.09,777.82 3693.60,779.32 3694.74,792.47"/>
<poly id="208010357" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1665.81,639.18 1662.44,649.21 1677.22,654.16 1680.58,644.13 1665.81,639.18"/>
<poly id="208010360" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2273.81,635.01 2275.70,623.94 2263.65,621.90 2261.76,632.96 2273.81,635.01"/>
<poly id="208010363" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2254.85,670.41 2268.11,672.57 2273.43,640.05 2260.18,637.88 2254.85,670.41"/>
<poly id="208010364" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1861.72,676.19 1874.07,678.95 1877.20,664.98 1864.86,662.22 1861.72,676.19"/>
<poly id="208010365" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1659.05,691.72 1665.58,693.92 1667.39,688.56 1660.86,686.37 1659.05,691.72"/>
<poly id="208010369" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1841.05,618.90 1838.06,628.18 1844.43,630.22 1847.42,620.94 1841.05,618.90"/>
<poly id="208010371" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="2306.64,679.93 2317.60,681.89 2324.29,644.62 2313.33,642.65 2306.64,679.93"/>
<poly id="208010372" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1895.83,566.71 1905.21,569.47 1906.56,564.79 1907.40,562.05 1898.02,559.28 1895.83,566.71"/>
<poly id="208010373" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2453.03,671.11 2470.09,672.61 2470.83,664.25 2453.76,662.76 2453.03,671.11"/>
<poly id="208010379" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1652.46,682.95 1665.08,687.25 1670.30,672.03 1657.67,667.72 1652.46,682.95"/>
<poly id="208010381" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="3573.94,840.35 3598.20,837.01 3596.84,827.22 3572.58,830.56 3573.94,840.35"/>
<poly id="208010386" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="2064.75,715.39 2065.51,708.84 2055.64,707.71 2054.88,714.25 2064.75,715.39"/>
<poly id="208010389" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2232.89,636.53 2247.95,638.99 2251.19,619.19 2236.14,616.73 2232.89,636.53"/>
<poly id="208010390" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1788.58,609.84 1799.22,613.19 1801.13,607.19 1790.47,603.83 1788.58,609.84"/>
<poly id="208010391" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1679.78,720.69 1693.08,725.33 1697.67,712.26 1684.37,707.62 1679.78,720.69"/>
<poly id="208010392" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="2338.00,654.98 2349.96,657.19 2352.63,642.80 2340.67,640.59 2338.00,654.98"/>
<poly id="208010395" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1783.96,627.79 1793.08,630.66 1797.18,617.73 1788.08,614.85 1783.96,627.79"/>
<poly id="208010396" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1669.99,715.66 1674.41,701.77 1664.21,698.54 1659.79,712.41 1669.99,715.66"/>
<poly id="208010401" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="2317.02,623.20 2327.50,625.09 2337.03,572.19 2326.54,570.31 2317.02,623.20"/>
<poly id="208010405" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="2314.43,637.87 2325.94,639.72 2327.48,630.21 2315.98,628.36 2314.43,637.87"/>
<poly id="208010407" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1987.19,566.30 1985.60,572.37 2005.31,577.50 2006.89,571.42 1987.19,566.30"/>
<poly id="208010408" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1837.18,605.43 1830.03,603.32 1828.89,607.18 1836.04,609.29 1837.18,605.43"/>
<poly id="208010411" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2008.26,673.25 2006.56,679.06 2015.00,681.51 2016.70,675.70 2008.26,673.25"/>
<poly id="208010413" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1974.46,563.05 1954.61,557.80 1953.04,563.73 1972.89,568.97 1974.46,563.05"/>
<poly id="208010414" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1649.73,651.33 1623.29,645.28 1620.68,656.57 1647.13,662.63 1649.73,651.33"/>
<poly id="208010416" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1881.59,624.96 1869.04,621.25 1867.33,627.01 1879.89,630.70 1881.59,624.96"/>
<poly id="208010419" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1733.67,665.70 1724.08,662.16 1720.59,671.57 1730.18,675.11 1733.67,665.70"/>
<poly id="208010421" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="3603.94,830.31 3615.73,828.29 3614.09,818.81 3602.30,820.83 3603.94,830.31"/>
<poly id="208010423" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1835.13,562.41 1848.51,566.34 1852.59,552.58 1839.21,548.63 1835.13,562.41"/>
<poly id="208010424" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1791.86,683.45 1785.18,681.28 1776.35,708.30 1783.03,710.47 1791.86,683.45"/>
<poly id="208010429" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1861.77,569.96 1873.96,573.56 1880.90,550.14 1868.71,546.54 1861.77,569.96"/>
<poly id="208010430" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1608.56,717.53 1639.22,727.95 1644.36,712.89 1613.70,702.47 1608.56,717.53"/>
<poly id="208010431" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2288.53,635.71 2284.02,657.61 2296.72,660.21 2301.23,638.32 2288.53,635.71"/>
<poly id="208010432" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="2070.48,680.45 2069.00,691.80 2076.75,692.81 2078.06,682.78 2077.46,682.05 2076.85,681.27 2070.48,680.45"/>
<poly id="208010434" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1805.04,588.92 1810.99,568.82 1802.74,566.40 1796.78,586.49 1805.04,588.92"/>
<poly id="208010440" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2288.95,629.81 2300.54,632.59 2304.11,617.77 2292.52,614.99 2288.95,629.81"/>
<poly id="208010441" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="1692.70,536.04 1702.11,536.59 1703.74,508.70 1694.33,508.15 1693.61,520.47 1692.70,536.04"/>
<poly id="208010444" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="2052.95,583.52 2051.34,589.77 2074.41,595.67 2076.75,586.54 2070.29,584.89 2069.55,587.76 2052.95,583.52"/>
<poly id="208010445" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1625.77,668.69 1631.84,669.50 1633.14,659.87 1627.08,659.05 1625.77,668.69"/>
<poly id="208010446" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1974.44,613.23 1972.75,620.92 1979.27,622.34 1980.96,614.65 1974.44,613.23"/>
<poly id="208010447" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="2020.03,575.19 2018.54,580.98 2047.02,588.24 2048.50,582.46 2020.03,575.19"/>
<poly id="208010448" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1683.77,653.41 1681.01,662.01 1687.91,664.23 1690.67,655.63 1683.77,653.41"/>
<poly id="208010449" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1965.27,633.55 1969.61,611.86 1959.31,609.80 1954.96,631.49 1965.27,633.55"/>
<poly id="208010450" type="building.roof" color="255,230,230" fill="1" layer="-1.00" shape="1714.66,653.17 1695.18,647.08 1691.96,659.22 1707.01,664.20 1710.26,665.27 1714.66,653.17"/>
<poly id="208010452" type="building.house" color="255,230,230" fill="1" layer="-1.00" shape="2367.74,710.07 2369.47,699.52 2343.12,695.22 2348.58,661.84 2337.47,660.02 2330.28,703.97 2367.74,710.07"/>
<poly id="208010453" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2293.13,685.89 2296.48,665.52 2282.65,663.25 2277.33,695.55 2316.10,701.35 2317.92,689.74 2293.13,685.89"/>
<poly id="208010454" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2224.37,686.98 2264.59,692.53 2266.27,680.43 2242.29,677.12 2248.66,642.70 2233.26,639.87 2224.37,686.98"/>
<poly id="208010455" type="amenity.kindergarten" color="237,199,199" fill="1" layer="-1.00" shape="1847.59,513.70 1815.98,514.95 1816.25,521.66 1799.04,522.34 1799.34,529.68 1799.37,530.61 1802.47,530.49 1829.12,529.42 1829.08,528.57 1843.38,527.99 1843.25,524.73 1848.03,524.54 1847.59,513.70"/>
<poly id="208010455#1" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1847.59,513.70 1815.98,514.95 1816.25,521.66 1799.04,522.34 1799.34,529.68 1799.37,530.61 1802.47,530.49 1829.12,529.42 1829.08,528.57 1843.38,527.99 1843.25,524.73 1848.03,524.54 1847.59,513.70"/>
<poly id="208010456" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2172.02,586.02 2162.11,583.65 2167.03,563.30 2176.52,565.58 2177.95,559.68 2156.12,554.43 2148.38,586.43 2170.63,591.79 2172.02,586.02"/>
<poly id="208010457" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1788.92,593.34 1786.54,592.64 1784.16,600.65 1798.38,604.83 1800.75,596.82 1795.30,595.22 1796.26,591.99 1789.88,590.11 1788.92,593.34"/>
<poly id="208011243" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="3270.39,783.43 3271.10,779.50 3261.24,777.75 3260.47,782.04 3253.79,781.11 3252.31,791.68 3269.59,794.10 3271.08,783.52 3270.39,783.43"/>
<poly id="208903408" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1461.29,1670.99 1468.53,1665.41 1464.02,1659.68 1467.35,1656.87 1466.02,1655.30 1462.72,1658.08 1461.94,1657.11 1459.54,1659.05 1463.61,1664.09 1458.80,1667.77 1461.29,1670.99"/>
<poly id="208903409" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1603.12,1561.02 1597.73,1560.08 1596.38,1563.15 1592.76,1564.17 1589.97,1574.97 1597.81,1576.98 1598.44,1574.52 1602.33,1575.47 1604.46,1566.71 1602.43,1565.19 1603.12,1561.02"/>
<poly id="208903410" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1394.36,1229.68 1395.37,1230.04 1400.85,1214.67 1386.37,1209.52 1380.88,1224.89 1385.52,1226.54 1381.08,1240.70 1376.21,1239.44 1372.18,1254.86 1386.06,1258.47 1394.36,1229.68"/>
<poly id="208903411" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1412.30,1656.17 1410.92,1654.38 1400.43,1662.41 1408.62,1673.03 1419.10,1665.00 1417.70,1663.17 1422.19,1660.30 1421.21,1658.77 1426.18,1654.68 1421.78,1649.35 1417.45,1652.92 1412.30,1656.17"/>
<poly id="208903412" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1665.26,1544.52 1675.99,1549.11 1679.44,1537.32 1680.57,1530.20 1677.94,1528.87 1679.85,1525.19 1673.19,1521.76 1671.27,1525.46 1667.98,1523.79 1664.50,1530.60 1671.61,1534.80 1670.25,1540.14 1665.84,1540.00 1665.26,1544.52"/>
<poly id="208903413" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2258.57,1815.73 2222.67,1815.44 2223.40,1784.82 2203.14,1784.02 2202.86,1788.26 2191.55,1787.79 2191.01,1795.36 2184.54,1795.15 2183.37,1827.28 2265.09,1827.94 2265.14,1822.64 2291.87,1822.80 2291.93,1811.66 2258.60,1811.45 2258.57,1815.73"/>
<poly id="208903414" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1572.57,1337.36 1571.98,1336.29 1578.48,1332.57 1568.64,1315.65 1559.51,1320.93 1565.72,1331.62 1555.59,1337.66 1558.09,1341.52 1552.26,1345.17 1563.88,1363.58 1573.26,1357.69 1571.30,1354.59 1577.31,1351.28 1580.26,1357.07 1588.65,1352.84 1579.11,1334.05 1572.57,1337.36"/>
<poly id="208903415" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1662.82,1492.40 1672.20,1487.24 1666.50,1476.94 1657.12,1482.09 1662.82,1492.40"/>
<poly id="208903416" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1425.58,1486.92 1429.19,1475.31 1422.50,1473.23 1418.89,1484.85 1425.58,1486.92"/>
<poly id="208903417" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2230.97,1809.84 2256.26,1809.92 2256.30,1797.15 2231.02,1797.07 2230.97,1809.84"/>
<poly id="208903418" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1277.19,1579.81 1284.74,1584.20 1292.10,1571.62 1284.54,1567.23 1277.19,1579.81"/>
<poly id="208903419" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1355.88,1477.94 1370.75,1481.93 1373.75,1470.82 1358.88,1466.82 1355.88,1477.94"/>
<poly id="208903420" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1470.04,1662.44 1484.14,1667.43 1489.88,1651.33 1475.77,1646.34 1470.04,1662.44"/>
<poly id="208903421" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1474.40,1294.48 1478.10,1295.83 1480.92,1288.21 1477.22,1286.84 1474.40,1294.48"/>
<poly id="208903422" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1554.50,1679.65 1562.08,1683.34 1566.98,1673.34 1559.39,1669.65 1554.50,1679.65"/>
<poly id="208903423" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1413.48,1394.86 1426.94,1397.86 1428.88,1389.22 1415.42,1386.21 1413.48,1394.86"/>
<poly id="208903424" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1418.47,1597.01 1429.79,1601.76 1433.87,1592.13 1422.55,1587.36 1418.47,1597.01"/>
<poly id="208903425" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1513.21,1581.72 1523.93,1585.55 1527.16,1576.57 1516.44,1572.73 1513.21,1581.72"/>
<poly id="208903426" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1334.34,1651.92 1341.63,1645.31 1337.29,1640.57 1330.01,1647.18 1334.34,1651.92"/>
<poly id="208903427" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1343.97,1551.44 1357.29,1562.28 1363.21,1555.05 1349.88,1544.22 1343.97,1551.44"/>
<poly id="208903428" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2461.30,1832.05 2472.13,1831.94 2471.99,1817.22 2461.15,1817.33 2461.30,1832.05"/>
<poly id="208903429" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1376.97,1411.62 1387.29,1412.84 1388.42,1403.37 1378.10,1402.14 1376.97,1411.62"/>
<poly id="208903430" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1741.06,1676.13 1755.79,1671.46 1751.92,1659.31 1737.19,1663.98 1741.06,1676.13"/>
<poly id="208903431" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2427.83,1751.10 2441.71,1751.08 2441.69,1741.43 2427.82,1741.45 2427.83,1751.10"/>
<poly id="208903432" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1486.35,1616.92 1489.86,1609.34 1474.79,1602.41 1471.28,1609.99 1486.35,1616.92"/>
<poly id="208903433" type="building.school" color="255,230,230" fill="1" layer="-1.00" shape="1426.68,1192.83 1457.51,1208.34 1462.61,1198.25 1431.79,1182.74 1426.68,1192.83"/>
<poly id="208903434" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1591.32,1743.86 1596.19,1745.82 1598.67,1739.68 1593.81,1737.72 1591.32,1743.86"/>
<poly id="208903435" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1496.57,1371.81 1506.84,1375.40 1509.36,1368.23 1499.09,1364.64 1496.57,1371.81"/>
<poly id="208903436" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1422.53,1585.11 1424.37,1580.74 1419.43,1578.68 1417.60,1583.05 1422.53,1585.11"/>
<poly id="208903437" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1683.90,1616.99 1696.56,1610.95 1691.29,1599.99 1678.64,1606.04 1683.90,1616.99"/>
<poly id="208903438" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2279.65,1791.33 2284.23,1790.45 2282.80,1783.02 2278.22,1783.90 2279.65,1791.33"/>
<poly id="208903439" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1602.76,1795.66 1611.94,1799.42 1616.67,1787.97 1607.49,1784.19 1602.76,1795.66"/>
<poly id="208903440" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1729.81,1760.94 1746.65,1753.80 1742.27,1743.55 1725.44,1750.68 1729.81,1760.94"/>
<poly id="208903441" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1541.59,1660.78 1555.92,1667.17 1559.95,1658.18 1545.62,1651.80 1541.59,1660.78"/>
<poly id="208903442" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1525.66,1569.37 1532.56,1571.34 1536.02,1559.29 1529.14,1557.31 1525.66,1569.37"/>
<poly id="208903443" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1436.43,1455.75 1437.74,1451.68 1430.35,1449.32 1429.05,1453.38 1436.43,1455.75"/>
<poly id="208903444" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1392.18,1365.36 1397.47,1366.56 1399.89,1355.85 1394.60,1354.66 1392.18,1365.36"/>
<poly id="208903445" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1514.86,1674.03 1519.97,1676.58 1522.81,1670.93 1517.69,1668.37 1514.86,1674.03"/>
<poly id="208903446" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1342.28,1406.69 1341.38,1412.47 1347.38,1413.39 1348.28,1407.61 1342.28,1406.69"/>
<poly id="208903447" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2504.81,1784.94 2520.25,1783.95 2519.41,1771.07 2503.98,1772.05 2504.81,1784.94"/>
<poly id="208903448" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1695.19,1717.46 1699.80,1715.70 1697.26,1709.08 1692.65,1710.83 1695.19,1717.46"/>
<poly id="208903449" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1644.36,1674.64 1659.08,1679.04 1661.88,1669.75 1647.16,1665.34 1644.36,1674.64"/>
<poly id="208903450" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2378.16,1800.51 2390.66,1800.09 2390.21,1786.73 2377.71,1787.15 2378.16,1800.51"/>
<poly id="208903451" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1572.20,1801.93 1576.53,1803.90 1580.10,1796.14 1575.77,1794.17 1572.20,1801.93"/>
<poly id="208903452" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2506.32,1738.13 2520.99,1738.14 2521.01,1724.88 2506.34,1724.87 2506.32,1738.13"/>
<poly id="208903453" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1755.09,1747.67 1762.99,1744.41 1757.67,1731.64 1749.78,1734.91 1755.09,1747.67"/>
<poly id="208903454" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1641.04,1561.49 1663.86,1570.72 1668.81,1558.56 1645.99,1549.33 1641.04,1561.49"/>
<poly id="208903455" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1552.97,1428.62 1558.81,1430.94 1562.97,1420.52 1557.13,1418.19 1552.97,1428.62"/>
<poly id="208903456" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1590.63,1609.61 1606.68,1615.33 1610.79,1603.85 1594.74,1598.13 1590.63,1609.61"/>
<poly id="208903457" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1438.33,1447.01 1439.33,1443.22 1432.57,1441.44 1431.57,1445.22 1438.33,1447.01"/>
<poly id="208903458" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1730.26,1611.77 1736.58,1609.07 1735.19,1605.81 1728.86,1608.51 1730.26,1611.77"/>
<poly id="208903459" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1550.40,1557.63 1561.62,1561.00 1563.91,1553.39 1552.68,1550.03 1550.40,1557.63"/>
<poly id="208903460" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1236.31,1534.53 1244.21,1539.23 1249.93,1529.67 1242.02,1524.97 1236.31,1534.53"/>
<poly id="208903461" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1583.22,1493.95 1589.17,1496.07 1590.62,1492.01 1584.68,1489.90 1583.22,1493.95"/>
<poly id="208903462" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1381.53,1373.10 1389.28,1374.53 1390.54,1367.72 1382.79,1366.31 1381.53,1373.10"/>
<poly id="208903463" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1475.67,1532.72 1489.41,1537.27 1492.50,1527.98 1478.76,1523.44 1475.67,1532.72"/>
<poly id="208903464" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1350.18,1673.24 1362.05,1666.36 1356.20,1656.33 1344.34,1663.20 1350.18,1673.24"/>
<poly id="208903465" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1332.05,1418.39 1346.61,1420.12 1347.41,1413.39 1332.86,1411.67 1332.05,1418.39"/>
<poly id="208903466" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1337.56,1309.27 1343.71,1310.48 1345.82,1299.69 1339.67,1298.49 1337.56,1309.27"/>
<poly id="208903467" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2503.71,1767.48 2516.59,1767.90 2516.95,1756.72 2504.07,1756.30 2503.71,1767.48"/>
<poly id="208903468" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1675.75,1713.75 1676.68,1723.51 1692.90,1721.98 1691.97,1712.22 1675.75,1713.75"/>
<poly id="208903469" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1530.47,1696.19 1539.93,1699.71 1543.40,1690.41 1533.95,1686.89 1530.47,1696.19"/>
<poly id="208903470" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1565.80,1376.98 1575.86,1370.42 1572.36,1365.09 1562.30,1371.65 1565.80,1376.98"/>
<poly id="208903471" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1226.19,1577.54 1232.41,1571.73 1224.97,1563.82 1218.75,1569.64 1226.19,1577.54"/>
<poly id="208903472" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1511.52,1265.39 1515.74,1262.12 1510.95,1255.96 1506.72,1259.22 1511.52,1265.39"/>
<poly id="208903473" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1596.12,1545.67 1604.63,1548.50 1608.21,1537.77 1599.70,1534.94 1596.12,1545.67"/>
<poly id="208903474" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2601.19,1593.90 2610.01,1593.89 2609.99,1578.58 2601.18,1578.59 2601.19,1593.90"/>
<poly id="208903475" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1663.60,1550.33 1665.96,1546.02 1650.21,1537.45 1647.85,1541.77 1663.60,1550.33"/>
<poly id="208903476" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1409.75,1549.45 1411.51,1545.25 1404.92,1542.52 1403.16,1546.72 1409.75,1549.45"/>
<poly id="208903477" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2516.02,1599.65 2533.01,1600.62 2534.37,1576.62 2517.39,1575.65 2516.02,1599.65"/>
<poly id="208903478" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1715.42,1613.99 1733.50,1604.89 1728.81,1595.63 1710.73,1604.71 1715.42,1613.99"/>
<poly id="208903479" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1494.39,1316.39 1487.79,1314.52 1486.68,1318.43 1493.28,1320.30 1494.39,1316.39"/>
<poly id="208903480" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1569.27,1565.49 1580.80,1569.28 1583.99,1559.61 1572.47,1555.83 1569.27,1565.49"/>
<poly id="208903481" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2434.52,1830.62 2445.58,1830.59 2445.55,1819.69 2434.49,1819.73 2434.52,1830.62"/>
<poly id="208903482" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1473.66,1544.97 1484.00,1548.24 1487.34,1537.70 1477.01,1534.44 1473.66,1544.97"/>
<poly id="208903483" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1366.13,1642.65 1360.50,1648.39 1375.21,1662.74 1380.85,1657.01 1366.13,1642.65"/>
<poly id="208903484" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1344.17,1295.71 1380.58,1301.05 1382.09,1290.83 1345.67,1285.49 1344.17,1295.71"/>
<poly id="208903486" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1510.97,1518.75 1526.36,1523.90 1529.28,1515.20 1513.89,1510.05 1510.97,1518.75"/>
<poly id="208903487" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1561.22,1726.21 1553.14,1722.00 1550.81,1726.46 1558.89,1730.66 1561.22,1726.21"/>
<poly id="208903488" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1652.70,1731.19 1662.56,1729.46 1659.95,1714.71 1650.08,1716.45 1652.70,1731.19"/>
<poly id="208903489" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1664.21,1631.25 1662.18,1626.73 1659.51,1627.91 1661.55,1632.44 1664.21,1631.25"/>
<poly id="208903490" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1342.10,1598.06 1353.46,1585.51 1345.58,1578.42 1334.22,1590.97 1342.10,1598.06"/>
<poly id="208903491" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1442.62,1577.70 1446.56,1564.92 1440.26,1562.99 1436.32,1575.76 1442.62,1577.70"/>
<poly id="208903492" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1525.30,1269.98 1535.75,1263.73 1528.24,1251.26 1517.80,1257.50 1525.30,1269.98"/>
<poly id="208903493" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1517.69,1668.37 1528.94,1672.61 1534.67,1657.49 1523.42,1653.24 1517.69,1668.37"/>
<poly id="208903494" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1588.01,1546.29 1594.45,1548.24 1596.26,1542.29 1589.82,1540.34 1588.01,1546.29"/>
<poly id="208903495" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1398.86,1568.45 1410.16,1573.50 1418.38,1555.22 1407.07,1550.17 1398.86,1568.45"/>
<poly id="208903496" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1475.16,1325.93 1488.48,1329.23 1490.63,1320.59 1477.31,1317.29 1475.16,1325.93"/>
<poly id="208903497" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1532.29,1730.37 1539.92,1734.40 1545.23,1724.42 1537.60,1720.38 1532.29,1730.37"/>
<poly id="208903498" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1681.50,1524.08 1688.31,1521.57 1684.79,1512.08 1677.98,1514.59 1681.50,1524.08"/>
<poly id="208903499" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1608.73,1640.63 1619.50,1643.86 1621.32,1637.83 1610.55,1634.59 1608.73,1640.63"/>
<poly id="208903501" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1543.61,1639.30 1550.89,1641.66 1552.97,1635.31 1545.69,1632.94 1543.61,1639.30"/>
<poly id="208903502" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1630.90,1492.84 1640.29,1495.91 1644.86,1481.98 1635.46,1478.91 1630.90,1492.84"/>
<poly id="208903503" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1532.95,1520.92 1543.02,1524.50 1549.48,1506.38 1539.41,1502.81 1532.95,1520.92"/>
<poly id="208903504" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1412.76,1501.61 1419.80,1503.24 1420.82,1498.88 1413.78,1497.24 1412.76,1501.61"/>
<poly id="208903505" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1351.54,1471.21 1354.32,1471.98 1356.30,1465.02 1353.53,1464.23 1351.54,1471.21"/>
<poly id="208903506" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1491.68,1670.75 1497.07,1672.54 1498.18,1669.18 1492.80,1667.39 1491.68,1670.75"/>
<poly id="208903507" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1492.34,1299.19 1494.99,1299.79 1496.20,1294.44 1493.55,1293.84 1492.34,1299.19"/>
<poly id="208903508" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1448.33,1404.07 1461.15,1406.92 1462.85,1399.29 1450.03,1396.44 1448.33,1404.07"/>
<poly id="208903509" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1626.51,1501.21 1632.16,1503.72 1633.75,1500.20 1628.09,1497.69 1626.51,1501.21"/>
<poly id="208903510" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1522.68,1731.50 1528.01,1733.96 1530.63,1728.30 1525.31,1725.85 1522.68,1731.50"/>
<poly id="208903511" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1407.68,1536.03 1397.68,1531.76 1395.30,1537.28 1405.31,1541.57 1407.68,1536.03"/>
<poly id="208903512" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2459.41,1806.49 2477.98,1805.70 2477.50,1794.69 2458.94,1795.48 2459.41,1806.49"/>
<poly id="208903513" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1665.21,1629.25 1680.41,1622.28 1675.16,1610.91 1659.96,1617.88 1665.21,1629.25"/>
<poly id="208903514" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1562.53,1405.47 1569.04,1407.53 1571.16,1400.85 1564.66,1398.80 1562.53,1405.47"/>
<poly id="208903515" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1513.56,1401.41 1522.67,1405.55 1527.89,1394.14 1518.77,1389.99 1513.56,1401.41"/>
<poly id="208903516" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1356.83,1631.49 1363.30,1624.90 1356.04,1617.83 1349.58,1624.43 1356.83,1631.49"/>
<poly id="208903517" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2377.11,1773.65 2387.17,1773.62 2387.13,1761.28 2377.07,1761.31 2377.11,1773.65"/>
<poly id="208903518" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2457.32,1761.64 2463.97,1761.85 2464.24,1753.57 2457.59,1753.36 2457.32,1761.64"/>
<poly id="208903519" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1547.24,1737.48 1554.80,1740.78 1558.39,1732.60 1550.83,1729.30 1547.24,1737.48"/>
<poly id="208903520" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1655.41,1512.54 1667.83,1514.84 1670.56,1500.17 1658.14,1497.87 1655.41,1512.54"/>
<poly id="208903521" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1469.67,1348.14 1479.56,1350.95 1483.23,1338.10 1473.33,1335.29 1469.67,1348.14"/>
<poly id="208903522" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1539.80,1589.63 1551.95,1594.02 1555.72,1583.67 1543.57,1579.28 1539.80,1589.63"/>
<poly id="208903523" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1578.82,1663.84 1576.41,1668.81 1589.82,1675.26 1592.23,1670.29 1578.82,1663.84"/>
<poly id="208903524" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1637.39,1455.37 1649.18,1448.62 1643.33,1438.46 1631.54,1445.21 1637.39,1455.37"/>
<poly id="208903525" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1473.00,1574.71 1475.88,1567.62 1467.84,1564.38 1464.96,1571.47 1473.00,1574.71"/>
<poly id="208903526" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1396.93,1346.17 1401.76,1347.20 1403.04,1341.24 1398.22,1340.21 1396.93,1346.17"/>
<poly id="208903527" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1193.12,1545.58 1198.03,1537.74 1189.27,1532.29 1184.35,1540.13 1193.12,1545.58"/>
<poly id="208903528" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1565.56,1425.65 1574.10,1428.94 1577.47,1420.26 1568.92,1416.96 1565.56,1425.65"/>
<poly id="208903529" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1640.25,1688.42 1651.96,1692.33 1654.72,1684.06 1643.01,1680.16 1640.25,1688.42"/>
<poly id="208903530" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1498.80,1384.48 1504.99,1386.55 1507.59,1378.80 1501.40,1376.74 1498.80,1384.48"/>
<poly id="208903531" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2513.55,1817.15 2522.29,1817.25 2522.39,1807.51 2513.65,1807.40 2513.55,1817.15"/>
<poly id="208903532" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1470.31,1649.54 1475.93,1639.31 1463.07,1632.28 1457.45,1642.52 1470.31,1649.54"/>
<poly id="208903533" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1740.45,1727.27 1745.67,1724.80 1743.10,1719.37 1737.87,1721.85 1740.45,1727.27"/>
<poly id="208903534" type="building.school" color="255,230,230" fill="1" layer="-1.00" shape="1415.14,1229.10 1435.22,1234.90 1436.62,1230.09 1438.43,1230.62 1441.37,1220.51 1439.54,1219.98 1441.78,1212.25 1421.63,1206.43 1419.46,1213.91 1417.65,1213.38 1414.72,1223.49 1416.62,1224.03 1415.14,1229.10"/>
<poly id="208903535" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1589.12,1760.59 1595.89,1763.50 1597.66,1759.40 1590.90,1756.49 1589.12,1760.59"/>
<poly id="208903536" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1721.01,1755.81 1723.26,1754.42 1720.55,1750.07 1718.30,1751.47 1721.01,1755.81"/>
<poly id="208903537" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1608.44,1450.48 1609.71,1447.45 1604.31,1445.20 1603.04,1448.23 1608.44,1450.48"/>
<poly id="208903538" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1434.66,1460.53 1435.70,1457.01 1429.00,1455.04 1427.96,1458.54 1434.66,1460.53"/>
<poly id="208903539" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1497.72,1261.21 1504.09,1263.50 1506.64,1256.40 1500.27,1254.13 1497.72,1261.21"/>
<poly id="208903540" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1610.98,1485.75 1605.61,1483.52 1604.23,1486.84 1609.59,1489.06 1610.98,1485.75"/>
<poly id="208903541" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1388.01,1343.91 1394.69,1345.26 1395.96,1339.03 1389.28,1337.67 1388.01,1343.91"/>
<poly id="208903542" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1236.51,1622.66 1233.04,1625.01 1240.39,1635.83 1243.87,1633.48 1236.51,1622.66"/>
<poly id="208903543" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1476.23,1691.37 1483.52,1684.55 1470.45,1670.66 1463.16,1677.48 1476.23,1691.37"/>
<poly id="208903544" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2501.65,1805.57 2520.55,1805.48 2520.49,1794.28 2501.60,1794.37 2501.65,1805.57"/>
<poly id="208903545" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1233.45,1660.09 1242.90,1656.49 1240.41,1649.98 1230.95,1653.58 1233.45,1660.09"/>
<poly id="208903546" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1465.34,1333.91 1467.42,1321.12 1457.95,1319.59 1455.88,1332.38 1465.34,1333.91"/>
<poly id="208903547" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1583.38,1628.14 1598.93,1634.10 1603.35,1622.64 1587.80,1616.67 1583.38,1628.14"/>
<poly id="208903548" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1763.01,1716.26 1772.60,1712.46 1767.97,1700.87 1758.38,1704.68 1763.01,1716.26"/>
<poly id="208903549" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1508.73,1687.00 1517.97,1690.40 1520.69,1683.09 1511.43,1679.68 1508.73,1687.00"/>
<poly id="208903550" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1683.02,1675.14 1697.99,1668.50 1693.88,1659.28 1678.90,1665.92 1683.02,1675.14"/>
<poly id="208903551" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1237.92,1561.95 1242.21,1564.37 1246.06,1557.59 1241.76,1555.17 1237.92,1561.95"/>
<poly id="208903552" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1531.42,1499.91 1537.75,1501.97 1541.99,1489.07 1535.66,1487.00 1531.42,1499.91"/>
<poly id="208903553" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2477.50,1794.69 2488.90,1795.00 2489.36,1777.79 2477.98,1777.48 2477.50,1794.69"/>
<poly id="208903554" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1599.92,1761.14 1608.92,1765.58 1616.23,1750.82 1607.23,1746.39 1599.92,1761.14"/>
<poly id="208903555" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1435.74,1535.11 1438.59,1536.00 1440.39,1530.35 1437.54,1529.45 1435.74,1535.11"/>
<poly id="208903556" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2354.74,1788.17 2366.55,1787.34 2365.95,1778.82 2354.13,1779.65 2354.74,1788.17"/>
<poly id="208903557" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1627.39,1556.35 1634.94,1559.38 1639.03,1549.23 1631.48,1546.20 1627.39,1556.35"/>
<poly id="208903558" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1725.38,1634.21 1737.49,1628.99 1731.30,1614.70 1719.19,1619.92 1725.38,1634.21"/>
<poly id="208903559" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1550.82,1768.28 1559.24,1771.86 1562.35,1764.62 1553.93,1761.02 1550.82,1768.28"/>
<poly id="208903560" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2259.25,1808.41 2278.50,1804.56 2277.10,1797.63 2257.85,1801.47 2259.25,1808.41"/>
<poly id="208903561" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1592.78,1493.82 1602.43,1498.22 1606.54,1489.26 1596.89,1484.86 1592.78,1493.82"/>
<poly id="208903562" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1497.20,1530.77 1493.63,1529.57 1490.87,1537.69 1494.44,1538.89 1497.20,1530.77"/>
<poly id="208903563" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1385.73,1686.39 1400.54,1676.38 1393.20,1665.58 1378.38,1675.59 1385.73,1686.39"/>
<poly id="208903564" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1484.64,1694.96 1491.05,1689.57 1486.46,1684.15 1480.06,1689.54 1484.64,1694.96"/>
<poly id="208903565" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1544.69,1696.85 1550.52,1699.94 1552.51,1696.22 1546.68,1693.13 1544.69,1696.85"/>
<poly id="208903566" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1574.00,1387.07 1576.56,1390.97 1593.24,1380.06 1590.68,1376.17 1574.00,1387.07"/>
<poly id="208903567" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1244.24,1592.00 1255.18,1581.37 1240.61,1566.46 1229.66,1577.11 1244.24,1592.00"/>
<poly id="208903568" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1653.52,1714.65 1662.46,1713.54 1661.76,1707.95 1652.82,1709.07 1653.52,1714.65"/>
<poly id="208903569" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1667.04,1601.49 1672.35,1603.41 1674.63,1597.16 1669.32,1595.24 1667.04,1601.49"/>
<poly id="208903570" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1299.65,1579.70 1311.29,1586.73 1317.21,1576.96 1305.58,1569.93 1299.65,1579.70"/>
<poly id="208903571" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2332.51,1761.36 2336.52,1760.90 2335.26,1749.87 2331.26,1750.33 2332.51,1761.36"/>
<poly id="208903572" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1532.06,1669.40 1537.59,1672.06 1540.06,1666.96 1534.53,1664.30 1532.06,1669.40"/>
<poly id="208903573" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1607.64,1548.69 1611.53,1549.86 1612.85,1545.50 1608.95,1544.32 1607.64,1548.69"/>
<poly id="208903574" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1180.00,1519.81 1189.24,1523.91 1193.28,1514.84 1184.04,1510.73 1180.00,1519.81"/>
<poly id="208903575" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1604.07,1709.23 1606.90,1702.37 1601.85,1700.31 1599.04,1707.17 1604.07,1709.23"/>
<poly id="208903576" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1382.07,1550.76 1393.91,1557.44 1400.46,1545.91 1388.61,1539.23 1382.07,1550.76"/>
<poly id="208903577" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2520.65,1574.88 2532.39,1575.26 2532.57,1569.70 2520.82,1569.32 2520.65,1574.88"/>
<poly id="208903578" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1534.31,1771.06 1544.37,1775.12 1551.17,1758.33 1541.11,1754.28 1534.31,1771.06"/>
<poly id="208903579" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1554.35,1459.01 1565.53,1462.81 1569.10,1452.38 1557.92,1448.57 1554.35,1459.01"/>
<poly id="208903580" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2428.58,1823.69 2433.70,1823.66 2433.67,1817.36 2428.55,1817.38 2428.58,1823.69"/>
<poly id="208903582" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1565.20,1598.53 1577.10,1603.25 1581.06,1593.32 1569.15,1588.60 1565.20,1598.53"/>
<poly id="208903583" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1579.16,1469.33 1594.37,1475.43 1598.04,1466.31 1582.83,1460.22 1579.16,1469.33"/>
<poly id="208903584" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1410.60,1518.54 1416.13,1520.18 1416.98,1517.35 1411.44,1515.70 1410.60,1518.54"/>
<poly id="208903585" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1534.25,1282.91 1543.80,1277.35 1539.46,1269.95 1529.91,1275.52 1534.25,1282.91"/>
<poly id="208903586" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1466.49,1395.31 1470.61,1397.47 1473.93,1391.15 1469.82,1388.99 1466.49,1395.31"/>
<poly id="208903587" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1647.97,1713.45 1651.64,1712.85 1650.41,1705.34 1646.74,1705.93 1647.97,1713.45"/>
<poly id="208903588" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1516.02,1722.18 1524.51,1725.99 1529.76,1714.34 1521.28,1710.52 1516.02,1722.18"/>
<poly id="208903589" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1321.14,1506.74 1330.47,1509.08 1333.71,1496.28 1324.38,1493.93 1321.14,1506.74"/>
<poly id="208903590" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1658.61,1633.97 1656.50,1628.62 1653.12,1629.95 1655.24,1635.30 1658.61,1633.97"/>
<poly id="208903591" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1327.57,1590.76 1332.31,1585.87 1325.85,1579.65 1321.12,1584.53 1327.57,1590.76"/>
<poly id="208903592" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1537.65,1673.30 1533.89,1671.55 1531.44,1676.75 1535.20,1678.51 1537.65,1673.30"/>
<poly id="208903593" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1434.58,1426.21 1445.96,1429.21 1447.60,1422.99 1436.24,1419.99 1434.58,1426.21"/>
<poly id="208903594" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1509.32,1409.63 1476.58,1509.23 1488.51,1513.12 1521.25,1413.53 1509.32,1409.63"/>
<poly id="208903595" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2354.29,1770.28 2370.53,1770.22 2370.48,1756.86 2354.24,1756.91 2354.29,1770.28"/>
<poly id="208903596" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1332.21,1166.76 1348.23,1168.60 1349.33,1159.08 1333.31,1157.23 1332.21,1166.76"/>
<poly id="208903597" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1299.37,1354.30 1312.77,1353.32 1312.04,1343.55 1298.65,1344.53 1299.37,1354.30"/>
<poly id="208903598" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1540.10,1467.65 1545.32,1469.86 1548.59,1462.21 1543.37,1460.00 1540.10,1467.65"/>
<poly id="208903599" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1341.06,1435.53 1346.50,1435.71 1346.73,1428.38 1341.30,1428.21 1341.06,1435.53"/>
<poly id="208903600" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1412.34,1543.42 1422.98,1546.72 1428.87,1527.85 1418.24,1524.55 1412.34,1543.42"/>
<poly id="208903601" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1598.09,1654.59 1611.97,1658.75 1614.76,1649.48 1600.90,1645.31 1598.09,1654.59"/>
<poly id="208903602" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1662.75,1779.75 1676.46,1776.56 1672.45,1759.43 1658.75,1762.62 1662.75,1779.75"/>
<poly id="208903603" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1493.69,1331.91 1504.44,1335.17 1507.69,1324.49 1496.94,1321.23 1493.69,1331.91"/>
<poly id="208903604" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1553.44,1637.75 1565.20,1641.84 1568.17,1633.34 1556.42,1629.25 1553.44,1637.75"/>
<poly id="208903605" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1614.97,1475.91 1621.68,1477.85 1623.49,1471.60 1616.78,1469.66 1614.97,1475.91"/>
<poly id="208903606" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1417.43,1516.56 1418.29,1513.99 1412.47,1512.04 1411.60,1514.62 1417.43,1516.56"/>
<poly id="208903607" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1401.67,1643.16 1410.97,1634.86 1398.33,1620.77 1389.02,1629.07 1401.67,1643.16"/>
<poly id="208903608" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1497.18,1641.31 1501.76,1631.16 1489.44,1625.64 1484.86,1635.78 1497.18,1641.31"/>
<poly id="208903609" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1498.85,1297.12 1511.83,1300.15 1514.00,1290.88 1501.02,1287.86 1498.85,1297.12"/>
<poly id="208903610" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2354.82,1433.75 2362.85,1431.75 2359.77,1419.49 2351.74,1421.49 2354.82,1433.75"/>
<poly id="208903611" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1466.69,1408.59 1489.30,1416.79 1492.94,1406.80 1470.32,1398.61 1466.69,1408.59"/>
<poly id="208903612" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2411.37,1755.25 2425.31,1755.21 2425.27,1745.81 2411.34,1745.86 2411.37,1755.25"/>
<poly id="208903613" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1514.41,1594.51 1523.62,1597.07 1525.45,1590.53 1516.24,1587.97 1514.41,1594.51"/>
<poly id="208903614" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1394.75,1202.39 1403.40,1205.15 1408.86,1188.16 1400.22,1185.40 1394.75,1202.39"/>
<poly id="208903615" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1507.87,1720.25 1514.02,1722.94 1516.42,1717.47 1510.26,1714.78 1507.87,1720.25"/>
<poly id="208903616" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1377.56,1503.56 1385.26,1506.30 1386.66,1502.37 1378.96,1499.63 1377.56,1503.56"/>
<poly id="208903617" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1573.67,1401.87 1584.65,1405.06 1587.79,1394.31 1576.81,1391.12 1573.67,1401.87"/>
<poly id="208903618" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1636.60,1701.50 1644.63,1703.98 1646.43,1698.18 1638.40,1695.70 1636.60,1701.50"/>
<poly id="208903619" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1531.54,1399.93 1538.03,1402.92 1541.04,1396.41 1534.54,1393.42 1531.54,1399.93"/>
<poly id="208903620" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1352.16,1615.39 1359.82,1607.19 1354.97,1602.68 1347.31,1610.87 1352.16,1615.39"/>
<poly id="208903621" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2391.47,1770.44 2401.08,1770.42 2401.06,1764.42 2391.45,1764.44 2391.47,1770.44"/>
<poly id="208903622" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1566.88,1503.69 1577.17,1507.32 1580.73,1497.32 1570.43,1493.69 1566.88,1503.69"/>
<poly id="208903623" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1356.25,1231.72 1369.12,1235.94 1373.52,1222.59 1360.65,1218.38 1356.25,1231.72"/>
<poly id="208903624" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1514.10,1337.34 1525.40,1341.42 1528.82,1331.99 1517.52,1327.91 1514.10,1337.34"/>
<poly id="208903625" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1683.00,1776.59 1700.66,1773.40 1699.54,1767.21 1681.88,1770.39 1683.00,1776.59"/>
<poly id="208903626" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1528.25,1628.97 1538.12,1632.06 1544.84,1610.83 1534.96,1607.72 1528.25,1628.97"/>
<poly id="208903627" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1649.83,1475.42 1660.83,1470.20 1656.28,1460.67 1645.28,1465.88 1649.83,1475.42"/>
<poly id="208903628" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1454.97,1559.32 1461.66,1561.45 1465.63,1548.97 1458.94,1546.86 1454.97,1559.32"/>
<poly id="208903629" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1431.07,1471.41 1432.26,1466.46 1427.29,1465.27 1426.11,1470.21 1431.07,1471.41"/>
<poly id="208903630" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1226.26,1204.23 1237.39,1205.81 1239.56,1190.51 1228.43,1188.93 1226.26,1204.23"/>
<poly id="208903631" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1289.09,1558.84 1298.94,1563.09 1305.40,1548.22 1295.55,1543.97 1289.09,1558.84"/>
<poly id="208903632" type="building.school" color="255,230,230" fill="1" layer="-1.00" shape="1468.09,1295.74 1471.39,1276.22 1463.32,1274.86 1462.92,1277.25 1425.74,1271.00 1422.85,1288.14 1468.09,1295.74"/>
<poly id="208903633" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1260.78,1598.97 1269.98,1607.30 1277.31,1599.25 1268.10,1590.92 1260.78,1598.97"/>
<poly id="208903634" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1395.29,1391.37 1409.37,1394.73 1411.28,1386.70 1397.21,1383.35 1395.29,1391.37"/>
<poly id="208903635" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2616.18,1675.65 2647.62,1677.56 2649.41,1648.30 2617.97,1646.39 2617.78,1649.49 2616.30,1673.69 2616.18,1675.65"/>
<poly id="208903636" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1636.17,1691.96 1640.98,1693.00 1641.76,1689.41 1636.94,1688.37 1636.17,1691.96"/>
<poly id="208903637" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1388.33,1589.36 1394.37,1583.14 1380.68,1569.95 1374.64,1576.18 1388.33,1589.36"/>
<poly id="208903638" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2503.71,1832.17 2519.53,1832.42 2519.73,1819.98 2503.90,1819.74 2503.71,1832.17"/>
<poly id="208903639" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1719.57,1681.45 1725.09,1679.13 1718.52,1663.59 1713.00,1665.90 1719.57,1681.45"/>
<poly id="208903640" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1578.19,1751.33 1588.22,1755.93 1591.79,1748.16 1581.77,1743.56 1578.19,1751.33"/>
<poly id="208903641" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1620.78,1583.72 1630.96,1586.95 1634.31,1576.46 1624.12,1573.23 1620.78,1583.72"/>
<poly id="208903642" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1707.34,1764.76 1719.58,1758.98 1714.35,1747.97 1702.11,1753.74 1707.34,1764.76"/>
<poly id="208903643" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1461.05,1363.83 1472.23,1367.69 1475.43,1358.47 1464.26,1354.61 1461.05,1363.83"/>
<poly id="208903644" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1568.65,1725.51 1581.73,1731.94 1586.29,1722.70 1573.21,1716.28 1568.65,1725.51"/>
<poly id="208903645" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1679.99,1557.45 1688.79,1553.34 1685.78,1546.92 1676.97,1551.04 1679.99,1557.45"/>
<poly id="208903646" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1384.79,1447.49 1392.17,1449.63 1393.66,1444.55 1386.28,1442.41 1384.79,1447.49"/>
<poly id="208903647" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1734.80,1638.66 1736.13,1642.37 1744.13,1639.51 1742.80,1635.81 1734.80,1638.66"/>
<poly id="208903648" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2268.64,1795.22 2277.68,1793.17 2276.01,1785.89 2266.98,1787.95 2268.64,1795.22"/>
<poly id="208903649" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1293.14,1568.71 1298.27,1570.95 1300.80,1565.16 1295.68,1562.93 1293.14,1568.71"/>
<poly id="208903650" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1586.43,1588.23 1596.09,1590.99 1599.02,1580.82 1589.36,1578.05 1586.43,1588.23"/>
<poly id="208903651" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1482.83,1278.16 1494.89,1281.64 1497.93,1271.15 1485.87,1267.67 1482.83,1278.16"/>
<poly id="208903652" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1262.87,1611.48 1265.62,1609.55 1262.04,1604.47 1259.29,1606.39 1262.87,1611.48"/>
<poly id="208903653" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1546.72,1672.77 1551.73,1675.21 1555.06,1668.40 1550.05,1665.96 1546.72,1672.77"/>
<poly id="208903654" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1516.53,1546.93 1534.29,1551.75 1536.79,1542.60 1519.03,1537.78 1516.53,1546.93"/>
<poly id="208903655" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1386.59,1565.71 1392.33,1570.29 1396.28,1565.38 1390.54,1560.80 1386.59,1565.71"/>
<poly id="208903656" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1439.43,1645.03 1448.05,1636.79 1441.51,1629.98 1432.88,1638.22 1439.43,1645.03"/>
<poly id="208903657" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1507.53,1675.65 1514.10,1678.26 1515.20,1675.49 1508.63,1672.90 1507.53,1675.65"/>
<poly id="208903658" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1698.22,1664.05 1712.60,1657.57 1708.62,1648.79 1694.24,1655.28 1698.22,1664.05"/>
<poly id="208903659" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1481.09,1387.49 1494.56,1393.68 1498.80,1384.48 1485.34,1378.30 1481.09,1387.49"/>
<poly id="208903660" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2463.64,1772.00 2476.73,1772.42 2477.06,1762.27 2463.97,1761.85 2463.64,1772.00"/>
<poly id="208903661" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1443.06,1526.99 1467.48,1535.98 1471.02,1526.42 1446.61,1517.42 1443.06,1526.99"/>
<poly id="208903662" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2342.02,1794.80 2348.68,1794.69 2348.58,1788.67 2341.92,1788.78 2342.02,1794.80"/>
<poly id="208903663" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1618.83,1574.18 1617.60,1579.07 1621.44,1580.03 1622.67,1575.15 1618.83,1574.18"/>
<poly id="208903664" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1191.45,1526.25 1203.75,1532.69 1211.06,1518.83 1198.75,1512.39 1191.45,1526.25"/>
<poly id="208903665" type="building.garage" color="255,230,230" fill="1" layer="-1.00" shape="1454.74,1378.97 1463.48,1381.90 1465.56,1375.75 1456.82,1372.82 1454.74,1378.97"/>
<poly id="208903666" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1622.13,1555.31 1626.50,1557.02 1629.07,1550.50 1624.69,1548.79 1622.13,1555.31"/>
<poly id="208903667" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1559.94,1795.11 1566.93,1797.61 1571.34,1785.38 1564.35,1782.87 1559.94,1795.11"/>
<poly id="208903668" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1734.25,1655.85 1746.78,1652.12 1743.40,1640.82 1730.87,1644.55 1734.25,1655.85"/>
<poly id="208903669" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="1510.09,1748.10 1515.83,1750.78 1518.63,1744.78 1512.90,1742.12 1510.09,1748.10"/>
<poly id="208903670" type="building.yes" color="255,230,230" fill="1" layer="-1.00" shape="2280.38,1805.28 2284.52,1804.38 2282.79,1796.39 2278.64,1797.28 2280.38,1805.28"/>