aboutsummaryrefslogtreecommitdiff
path: root/contrib/businesscards/gnunet-logo.svg
blob: 8aff362c64f9be4707960d552568509ec5907de2 (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   inkscape:export-ydpi="22.790001"
   inkscape:export-xdpi="22.790001"
   inkscape:export-filename="/home/grothoff/gnunet-logo-color.png"
   sodipodi:docname="gnunet-logo.svg"
   sodipodi:docbase="/home/grothoff"
   inkscape:version="0.41"
   sodipodi:version="0.32"
   id="svg2067"
   height="297mm"
   width="210mm">
  <defs
     id="defs3" />
  <sodipodi:namedview
     inkscape:window-y="12"
     inkscape:window-x="152"
     inkscape:window-height="536"
     inkscape:window-width="640"
     inkscape:current-layer="layer1"
     inkscape:cy="852.34079"
     inkscape:cx="-115.52307"
     inkscape:zoom="0.35000000"
     inkscape:pageshadow="0"
     inkscape:pageopacity="0.0"
     borderopacity="0.0"
     bordercolor="#ffffff"
     pagecolor="#ffffff"
     id="base" />
  <metadata
     id="metadata4">
    <rdf:RDF
       id="RDF5">
      <cc:Work
         id="Work6"
         rdf:about="">
        <dc:format
           id="format7">image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage"
           id="type9" />
        <dc:creator
           id="creator2764">
          <cc:Agent
             id="Agent2766">
            <dc:title
               id="title2768">Nicklas Larsson</dc:title>
          </cc:Agent>
        </dc:creator>
        <dc:title
           id="title2770">GNUnet logo</dc:title>
        <dc:date
           id="date2772">14.7.2005</dc:date>
        <dc:publisher
           id="publisher2774">
          <cc:Agent
             id="Agent2776">
            <dc:title
               id="title2778">The GNU Project</dc:title>
          </cc:Agent>
        </dc:publisher>
        <dc:subject
           id="subject2780">
          <rdf:Bag
             id="Bag2782">
            <rdf:li
               id="li2816">GNUnet</rdf:li>
            <rdf:li
               id="li2818">logo</rdf:li>
          </rdf:Bag>
        </dc:subject>
        <dc:relation
           id="relation2820">http://gnunet.org/</dc:relation>
        <dc:description
           id="description2822">Official logo of the GNUnet project.  Combines the GNU logo with a spider-net.</dc:description>
        <dc:contributor
           id="contributor2824">
          <cc:Agent
             id="Agent2826">
            <dc:title
               id="title2828">Concept: Christian Muellner
GNU head: GNU</dc:title>
          </cc:Agent>
        </dc:contributor>
        <cc:license
           rdf:resource="http://creativecommons.org/licenses/GPL/2.0/"
           id="license2830" />
      </cc:Work>
      <cc:License
         id="License2832"
         rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
        <cc:permits
           id="permits2834"
           rdf:resource="http://web.resource.org/cc/Reproduction" />
        <cc:permits
           id="permits2836"
           rdf:resource="http://web.resource.org/cc/Distribution" />
        <cc:requires
           id="requires2838"
           rdf:resource="http://web.resource.org/cc/Notice" />
        <cc:permits
           id="permits2840"
           rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
        <cc:requires
           id="requires2842"
           rdf:resource="http://web.resource.org/cc/ShareAlike" />
        <cc:requires
           id="requires2844"
           rdf:resource="http://web.resource.org/cc/SourceCode" />
      </cc:License>
    </rdf:RDF>
  </metadata>
  <g
     id="layer1"
     inkscape:groupmode="layer"
     inkscape:label="Layer 1">
    <path
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.5741405;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       d="M -381.25674,-127.44623 L -381.25674,17.571574"
       id="path2065"
       sodipodi:nodetypes="cs"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       d="M -282.64454,-81.040538 L -381.25674,17.571574"
       id="path2067"
       sodipodi:nodetypes="cc"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       d="M -242.03964,17.571574 L -381.25674,17.571574"
       id="path2069"
       sodipodi:nodetypes="cs"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       d="M -281.67794,117.15046 L -381.25674,17.571574"
       id="path2071"
       sodipodi:nodetypes="cc"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       d="M -382.22354,17.571574 L -521.44064,17.571574"
       id="path2073"
       sodipodi:nodetypes="cs"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       d="M -479.86894,116.18368 L -381.25674,17.571574"
       id="path2075"
       sodipodi:nodetypes="cc"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       d="M -479.86894,-82.007328 L -381.25674,17.571574"
       id="path2077"
       sodipodi:nodetypes="cc"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       d="M -381.25674,17.571574 L -381.25674,163.55617"
       id="path2079"
       sodipodi:nodetypes="cs"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.5741405;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       d="M -381.35404,-127.30303 C -352.25324,-104.24339 -317.44894,-90.115748 -282.64454,-81.040538 C -273.72464,-42.977966 -259.44184,-14.722236 -242.03964,17.571574 C -265.24254,49.288544 -276.84404,81.379414 -282.64454,116.18368 C -323.24954,121.98440 -352.25324,139.38653 -381.25674,162.58939 C -410.26034,133.58583 -433.46314,121.98440 -479.86894,116.18368 C -482.44324,81.379414 -494.24764,49.865404 -520.47384,17.571574 C -494.96354,-26.259726 -488.55394,-37.551166 -479.86894,-81.040538 C -439.26394,-94.730728 -410.26034,-104.24339 -381.35404,-127.30303 z "
       id="path2081"
       sodipodi:nodetypes="ccccccccc"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2083"
       d="M -381.29664,-92.553728 C -358.05394,-75.239826 -332.72784,-63.638396 -305.84754,-57.837676"
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       id="path2085"
       d="M -381.00044,-60.052286 C -363.85464,-46.236256 -346.45254,-37.915446 -329.05034,-34.634836"
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       sodipodi:nodetypes="cc"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2087"
       d="M -352.25324,-11.431986 L -381.25674,-28.834126"
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       id="path2089"
       d="M -381.25674,-92.553728 C -404.45964,-75.239826 -430.40244,-66.554726 -456.70584,-57.837676"
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       sodipodi:nodetypes="cc"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       id="path2091"
       d="M -381.55294,-60.052286 C -395.40834,-48.695436 -413.30194,-40.435546 -433.50304,-34.634836"
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       sodipodi:nodetypes="cc"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       id="path2093"
       d="M -410.42664,-11.411176 L -381.29664,-28.834126"
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2095"
       d="M -381.25674,127.78511 C -358.05394,106.95372 -332.71464,95.929144 -305.84754,92.980834"
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2097"
       d="M -381.25674,92.980834 C -363.85464,78.900944 -352.25324,72.085494 -329.05034,69.777994"
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2099"
       d="M -352.25324,46.575134 L -381.25674,63.977274"
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2101"
       d="M -381.25674,127.78511 C -410.26034,102.33870 -419.41524,98.781564 -456.66604,92.980834"
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2103"
       d="M -381.25674,92.980834 C -395.77454,75.578704 -413.75354,69.777994 -433.46314,69.777994"
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2105"
       d="M -410.26034,46.575134 L -381.25674,63.977274"
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2107"
       d="M -456.66604,92.980834 C -462.46674,61.498804 -471.79264,40.774434 -491.47034,17.571574"
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2109"
       d="M -433.46314,69.777994 C -436.00564,48.914604 -445.06464,34.973714 -456.66604,17.571574"
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2111"
       d="M -427.66244,17.571574 L -410.26034,46.575134"
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2113"
       d="M -305.84754,92.980834 C -300.04684,63.977274 -288.44534,40.774434 -271.04324,17.571574"
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2115"
       d="M -329.05034,69.777994 C -323.24954,46.575134 -317.44894,34.973714 -305.84754,17.571574"
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2117"
       d="M -334.85114,17.571574 C -342.95924,26.085694 -348.76004,34.973714 -352.25324,46.575134"
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2119"
       d="M -305.84754,-57.837676 C -296.72764,-23.033396 -286.23964,-5.6312755 -271.04324,17.571574"
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2121"
       d="M -329.05034,-34.634836 C -325.35424,-14.925186 -317.44894,0.16943447 -305.84754,17.571574"
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2123"
       d="M -334.85114,17.571574 L -352.25324,-11.431986"
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2125"
       d="M -456.66604,-57.837676 C -462.46674,-31.547516 -474.06814,-5.6312755 -491.47034,17.571574"
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2127"
       d="M -433.46314,-34.634836 C -439.26394,-17.232696 -445.06464,0.16943447 -456.66604,17.571574"
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2129"
       d="M -427.66244,17.571574 L -410.26034,-11.431986"
       style="opacity:0.19909503;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.6601200;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker-start:none;marker-mid:none;marker-end:none"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.8671417;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       d="M -384.86194,-128.55622 L -384.86194,16.461594"
       id="path2131"
       sodipodi:nodetypes="cs"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       d="M -286.24984,-82.150518 L -384.86194,16.461594"
       id="path2133"
       sodipodi:nodetypes="cc"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       d="M -245.64484,16.461594 L -384.86194,16.461594"
       id="path2135"
       sodipodi:nodetypes="cs"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       d="M -285.28304,116.04048 L -384.86194,16.461594"
       id="path2137"
       sodipodi:nodetypes="cc"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       d="M -385.82874,16.461594 L -525.04584,16.461594"
       id="path2139"
       sodipodi:nodetypes="cs"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       d="M -483.47404,115.07370 L -384.86194,16.461594"
       id="path2141"
       sodipodi:nodetypes="cc"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       d="M -483.47404,-83.117318 L -384.86194,16.461594"
       id="path2143"
       sodipodi:nodetypes="cc"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       d="M -384.86194,16.461594 L -384.86194,162.44619"
       id="path2145"
       sodipodi:nodetypes="cs"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.8671417;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       d="M -384.95924,-128.41302 C -355.85834,-105.35337 -321.05404,-91.225728 -286.24984,-82.150518 C -277.32984,-44.087956 -263.04704,-15.832236 -245.64484,16.461594 C -268.84764,48.178564 -280.44904,80.269434 -286.24984,115.07370 C -326.85484,120.87442 -355.85834,138.27655 -384.86194,161.47940 C -413.86544,132.47584 -437.06834,120.87442 -483.47404,115.07370 C -486.04844,80.269434 -497.85284,48.755414 -524.07904,16.461594 C -498.56864,-27.369716 -492.15914,-38.661146 -483.47404,-82.150518 C -442.86904,-95.840728 -413.86544,-105.35337 -384.95924,-128.41302 z "
       id="path2147"
       sodipodi:nodetypes="ccccccccc"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2149"
       d="M -384.90174,-93.663718 C -361.65904,-76.349808 -336.33294,-64.748386 -309.45264,-58.947666"
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       id="path2151"
       d="M -384.60564,-61.162266 C -367.45974,-47.346246 -350.05764,-39.025426 -332.65554,-35.744826"
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       sodipodi:nodetypes="cc"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2153"
       d="M -355.85834,-12.541966 L -384.86194,-29.944116"
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       id="path2155"
       d="M -384.86194,-93.663718 C -408.06474,-76.349808 -434.00754,-67.664706 -460.31104,-58.947666"
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       sodipodi:nodetypes="cc"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       id="path2157"
       d="M -385.15804,-61.162266 C -399.01354,-49.805416 -416.90704,-41.545526 -437.10814,-35.744826"
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       sodipodi:nodetypes="cc"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       id="path2159"
       d="M -414.03174,-12.521166 L -384.90174,-29.944116"
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2161"
       d="M -384.86194,126.67512 C -361.65904,105.84373 -336.31974,94.819164 -309.45264,91.870844"
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2163"
       d="M -384.86194,91.870844 C -367.45974,77.790954 -355.85834,70.975494 -332.65554,68.668004"
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2165"
       d="M -355.85834,45.465154 L -384.86194,62.867284"
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2167"
       d="M -384.86194,126.67512 C -413.86544,101.22871 -423.02044,97.671574 -460.27114,91.870844"
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2169"
       d="M -384.86194,91.870844 C -399.37974,74.468724 -417.35874,68.668004 -437.06834,68.668004"
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2171"
       d="M -413.86544,45.465154 L -384.86194,62.867284"
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2173"
       d="M -460.27114,91.870844 C -466.07194,60.388824 -475.39784,39.664444 -495.07544,16.461594"
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2175"
       d="M -437.06834,68.668004 C -439.61074,47.804624 -448.66974,33.863734 -460.27114,16.461594"
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2177"
       d="M -431.26764,16.461594 L -413.86544,45.465154"
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2179"
       d="M -309.45264,91.870844 C -303.65194,62.867284 -292.05064,39.664444 -274.64834,16.461594"
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2181"
       d="M -332.65554,68.668004 C -326.85484,45.465154 -321.05404,33.863734 -309.45264,16.461594"
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2183"
       d="M -338.45624,16.461594 C -346.56444,24.975704 -352.36514,33.863734 -355.85834,45.465154"
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2185"
       d="M -309.45264,-58.947666 C -300.33274,-24.143396 -289.84464,-6.7412655 -274.64834,16.461594"
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2187"
       d="M -332.65554,-35.744826 C -328.95944,-16.035176 -321.05404,-0.94055553 -309.45264,16.461594"
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2189"
       d="M -338.45624,16.461594 L -355.85834,-12.541966"
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2191"
       d="M -460.27114,-58.947666 C -466.07194,-32.657496 -477.67334,-6.7412655 -495.07544,16.461594"
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2193"
       d="M -437.06834,-35.744826 C -442.86904,-18.342676 -448.66974,-0.94055553 -460.27114,16.461594"
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <path
       sodipodi:nodetypes="cc"
       id="path2195"
       d="M -431.26764,16.461594 L -413.86544,-12.541966"
       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.9177170;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
       inkscape:export-filename="gnunet-logo.png"
       inkscape:export-xdpi="319.67001"
       inkscape:export-ydpi="319.67001" />
    <g
       inkscape:export-ydpi="319.67001"
       inkscape:export-xdpi="319.67001"
       inkscape:export-filename="gnunet-logo.png"
       id="g6772"
       transform="matrix(0.504299,0.000000,0.000000,0.504299,-501.0803,-262.6646)">
      <path
         sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsscssscc"
         id="path4624"
         d="M 212.71398,653.08099 C 212.71398,653.08099 213.43455,652.91802 212.98145,654.89174 C 212.22965,658.06313 208.77444,659.27114 206.62949,661.42337 C 203.70621,663.38772 203.19272,666.87111 205.96085,668.79569 C 202.97339,667.85821 198.83859,664.99828 201.28044,661.42337 C 203.95174,658.00103 210.17322,656.57829 209.50458,651.27025 C 207.61555,645.44223 199.43234,648.17129 197.40239,641.50516 C 195.35449,640.92572 192.48127,640.68437 192.12019,638.07768 C 191.97390,636.26487 192.69097,634.74332 193.52434,633.22747 C 203.11514,626.91573 192.46628,620.13579 186.03570,617.57746 C 185.28067,616.72874 185.40798,615.63376 185.43391,614.53800 C 184.56470,610.77941 191.92762,609.23252 189.37882,606.06630 C 186.93751,608.65825 180.37104,612.28750 181.62271,616.67209 C 185.76019,619.73742 190.43791,622.84931 193.92551,626.37251 L 181.22153,617.31879 C 179.07068,614.22500 182.25951,611.72358 184.29723,609.68779 L 179.61683,611.11052 C 186.54383,608.12537 180.98432,603.42520 175.87249,603.09150 C 175.04820,602.38945 175.30281,601.27533 175.27075,600.31072 C 180.61980,594.95350 169.48042,599.63764 167.84897,595.07249 C 165.79062,592.05890 169.27877,589.86014 170.18917,587.37683 C 164.83208,585.15841 159.38942,579.87259 165.37500,574.70162 C 164.43468,570.39463 160.35497,566.36702 163.70344,561.83240 C 158.67269,567.18444 150.46726,566.20146 145.11553,570.88612 L 143.71139,573.14955 C 140.23719,593.17121 145.17221,614.04651 156.81654,630.57602 C 160.38435,637.80348 172.38494,641.08610 171.45955,649.65351 C 170.83691,650.34521 170.16586,651.03382 169.11935,650.75289 L 171.05837,649.00682 C 171.45151,648.20285 171.38093,647.00749 170.79090,646.29070 L 169.11935,643.76859 L 167.58150,642.66921 C 164.73579,640.13132 171.36058,648.33943 166.97971,647.64876 L 167.78206,646.35537 L 167.24717,644.28595 L 164.90697,641.11714 C 146.10510,623.69778 138.72878,597.86622 142.30730,573.21422 C 140.42014,573.54688 139.61407,571.79770 138.42925,570.88612 C 134.52444,574.04975 129.97507,579.99934 124.52174,577.09439 C 121.83387,578.71061 116.78435,580.13126 115.36149,576.25369 C 114.89855,567.72249 128.60840,565.57546 125.79212,556.59417 L 126.66133,554.33074 C 131.55039,551.58876 133.11494,546.53419 132.14414,541.39685 C 109.49091,540.13787 91.357681,521.18894 84.056256,501.48287 C 75.714444,470.49326 92.384720,432.64870 125.77878,423.87953 C 132.07455,421.90245 138.74481,419.85190 145.57021,420.51670 C 153.36910,420.80642 161.49695,420.07023 168.63791,422.52146 L 184.81877,430.66982 C 188.67007,433.05353 193.73294,431.66909 197.65645,430.66982 L 197.72331,431.89854 C 195.08921,438.19734 187.80891,440.23572 181.67622,441.46961 L 169.90835,441.21094 C 165.73340,440.10095 161.47824,440.37644 157.07061,440.43490 C 153.55631,440.35935 150.15701,440.66262 146.90745,441.46961 C 119.54712,443.24984 102.18949,485.62592 127.38348,500.96551 C 132.07193,501.54365 135.68787,498.64698 139.48567,496.63265 C 143.69268,493.91395 147.53063,490.61840 151.11982,486.93224 L 159.14340,477.87852 C 161.03532,475.20896 162.95192,472.47733 165.56221,470.37686 C 179.30658,450.67337 211.13603,446.95358 226.94246,465.46198 L 232.96010,462.09917 C 254.91257,445.30063 281.34215,468.30485 293.27053,486.67356 L 299.68935,493.65786 C 302.16331,495.28598 304.93943,496.57058 307.91354,496.82667 C 310.05739,497.40921 312.45487,497.01871 314.53297,496.50332 C 330.17353,487.58411 328.36558,465.59132 320.68437,452.14007 C 313.80814,443.88825 302.47624,440.82809 292.12046,441.98697 L 280.08512,441.21094 C 276.24991,440.19226 272.47345,438.08094 270.25628,434.67932 C 269.98083,433.03387 268.89656,431.29064 269.72140,429.63511 C 276.22047,432.84012 284.20657,433.28246 290.71637,429.50577 C 310.12802,415.86568 342.04036,418.24293 352.49774,441.53428 C 357.63014,453.04027 359.45417,466.11644 357.91364,478.99083 C 359.54510,504.54561 337.59268,530.46771 310.09323,528.99325 L 316.51210,541.02177 C 317.83894,543.46886 321.98150,550.36521 323.73332,544.77259 C 324.00478,544.51969 324.36903,543.95078 324.66938,544.51392 C 325.76431,547.28953 323.93120,550.14533 321.99485,552.14491 C 306.69393,555.39132 286.85166,552.50706 277.73157,539.08168 L 277.99904,556.28376 C 282.67408,563.53450 290.27504,553.32707 294.98219,558.48252 C 297.65672,564.02599 299.77765,569.96522 297.65672,576.20195 L 284.95279,589.78253 C 283.98593,594.07658 292.24886,595.05956 292.10711,599.54762 C 288.94048,603.52091 284.28951,606.44914 279.87116,608.66601 C 283.92039,612.65482 283.49246,620.00128 279.20257,623.79866 L 276.59490,624.63936 C 269.39244,621.94653 256.60552,629.68100 263.42289,637.37925 L 264.29209,639.90136 C 264.26567,641.48343 264.51361,643.11931 263.69036,644.49289 C 262.39640,648.32391 259.03402,650.73479 255.66678,652.77058 C 245.84861,656.42828 240.47019,667.68593 245.90480,676.82764 L 248.44556,676.95697 C 242.06685,679.21029 251.24581,680.48275 253.79461,680.19045 C 250.34717,681.79575 244.37762,681.51225 244.16633,676.69825 C 236.42631,670.70468 240.32548,674.80217 242.09360,676.12917 L 242.56163,677.61658 C 241.54695,677.29479 240.31372,676.76445 238.93310,676.07094 C 237.55254,675.37743 233.66836,669.59135 232.06431,668.61685 C 230.46021,667.64235 229.99245,666.26541 230.69660,662.46217 C 230.01275,669.98456 230.01275,670.66841 229.70047,672.03612 C 229.24240,674.04229 225.22577,666.56529 224.87509,664.51373 C 224.55379,662.63412 222.54824,658.18245 221.47508,656.99134 C 220.40187,655.80022 215.65182,646.73353 212.61649,648.41024 C 212.63209,650.15280 212.66683,653.83601 212.71398,653.08099 z "
         style="fill:#ffffff;fill-opacity:1.0000000;stroke:none;stroke-opacity:1.0000000" />
      <g
         transform="matrix(0.267452,0.000000,0.000000,0.258678,54.91812,390.1992)"
         id="g3386">
        <path
           id="path3388"
           d="M 826.00000,767.00000 L 827.00000,766.00000 C 828.88500,766.13980 826.86030,764.11500 827.00000,766.00000 L 826.00000,767.00000 L 808.25000,780.75000 L 807.25000,779.25000 C 817.87000,768.65000 831.65000,755.30000 844.75000,751.25000 L 838.75000,759.75000 C 852.72000,748.95000 867.95000,739.63000 883.25000,731.25000 C 896.62000,731.28827 906.68000,715.94000 907.00000,703.00000 C 903.75300,686.41000 902.07500,669.57000 894.75000,654.25000 C 880.27000,637.28000 860.50000,666.05000 843.25000,653.75000 L 828.25000,641.75000 C 810.00000,598.33000 786.54000,556.06000 757.25000,518.75000 L 749.00000,502.00000 C 745.79900,475.32000 750.74000,444.68000 770.25000,424.25000 C 775.26500,421.37000 780.67000,418.27000 786.75000,419.25000 L 776.00000,425.00000 L 782.25000,437.25000 L 757.25000,476.75000 C 765.25400,464.06000 790.07000,454.65000 799.75000,468.25000 C 800.46920,470.18200 800.28560,474.64300 797.25000,473.75000 L 794.75000,467.25000 C 773.97000,459.64200 749.86000,482.36000 754.25000,502.75000 C 767.94000,499.03900 786.57000,489.11000 802.75000,496.25000 L 810.75000,499.75000 C 813.76500,496.88500 815.50200,482.10000 809.25000,486.75000 L 808.25000,485.25000 C 820.13000,473.24000 820.31000,454.16000 813.75000,439.25000 L 776.25000,394.25000 L 798.75000,411.25000 C 807.58000,420.74000 815.79000,430.77000 820.25000,442.75000 C 824.20600,454.93000 824.96500,471.28000 817.00000,482.00000 C 817.89140,488.26500 817.68520,495.01000 815.00000,501.00000 C 826.79000,499.52000 833.26000,522.94000 818.25000,521.75000 L 816.75000,516.25000 L 812.25000,512.75000 L 807.25000,512.25000 C 815.53200,527.96000 798.22800,545.88000 782.00000,539.00000 L 781.00000,542.00000 C 788.47600,551.03500 810.10000,553.09000 815.25000,538.25000 C 820.95400,538.84320 813.77500,545.40000 812.25000,547.75000 L 827.75000,536.25000 L 826.75000,543.75000 C 808.72000,552.67200 826.62810,573.52000 828.75000,586.75000 L 829.00000,573.00000 C 828.33220,569.99000 829.27160,559.29000 832.75000,565.25000 C 850.81000,606.92000 902.51000,626.10000 943.75000,615.25000 L 930.00000,623.00000 L 928.25000,623.75000 C 940.60000,629.64900 955.21000,623.55270 968.00000,623.00000 C 975.80500,630.46000 994.83000,625.70300 1001.7500,614.75000 L 990.25000,611.75000 L 983.25000,604.75000 L 892.75000,439.25000 C 877.12000,421.13000 857.73000,407.99000 836.75000,397.25000 L 828.25000,397.75000 L 819.00000,391.00000 L 805.00000,394.00000 L 802.00000,387.00000 C 798.44800,390.55000 795.85700,396.54800 790.00000,397.00000 L 793.75000,386.25000 L 785.75000,392.25000 C 783.72300,389.73800 782.43300,387.19500 783.75000,384.25000 C 765.08000,378.78900 741.08000,385.17360 727.75000,401.75000 L 722.25000,404.25000 C 728.75100,412.82600 734.06000,426.96000 725.75000,436.75000 C 720.43900,445.87500 710.12000,448.14000 700.00000,447.00000 C 698.01900,445.89900 691.58100,445.79000 695.25000,442.25000 C 697.93700,442.45300 699.00300,441.36160 700.25000,439.25000 C 717.41000,437.11900 709.40100,411.71000 704.75000,401.25000 C 687.49000,393.88900 674.49000,375.84000 674.00000,357.00000 L 668.75000,348.25000 C 668.41150,363.50000 672.66100,381.37000 682.75000,394.25000 C 690.44700,401.52000 706.50000,413.29000 698.75000,425.75000 L 691.75000,408.25000 C 665.48000,406.41800 646.68000,382.67000 644.75000,357.25000 C 640.39500,368.18000 645.27200,383.01000 652.25000,392.75000 C 661.81000,406.22000 685.18000,405.02000 694.75000,419.75000 L 692.00000,421.00000 C 680.53000,411.90800 666.81000,406.46000 653.25000,401.75000 C 645.04700,390.99000 639.57000,378.79000 638.75000,365.25000 C 634.93700,367.85100 630.52600,368.36300 626.25000,367.25000 C 622.64000,370.25900 615.04000,374.95200 612.25000,369.25000 L 585.75000,384.75000 L 575.75000,392.75000 L 574.75000,386.25000 C 569.13700,386.83260 565.68800,382.70100 562.75000,379.25000 L 558.00000,389.00000 L 548.75000,382.25000 C 542.97900,384.81000 540.89700,382.18063 542.75000,376.25000 L 530.25000,382.75000 C 534.36000,374.26100 531.07000,368.07000 526.25000,361.25000 L 523.25000,372.75000 C 526.81200,372.54980 530.74500,373.10950 528.75000,377.75000 L 525.75000,380.75000 C 520.69000,378.87200 516.15700,379.70200 513.75000,385.75000 C 505.81100,387.65000 504.98300,384.82980 507.00000,379.00000 C 504.44300,380.72900 501.16900,385.46600 499.00000,381.00000 C 495.74600,383.32400 490.32200,384.76300 487.25000,382.25000 L 473.75000,394.75000 C 430.41000,402.36600 378.65000,416.04000 349.75000,456.75000 L 340.25000,465.25000 C 331.08600,484.62000 325.77000,505.86000 312.25000,523.25000 L 297.75000,590.75000 C 291.17300,591.26150 300.00200,577.00000 292.00000,582.00000 C 292.92020,599.79000 296.21400,623.40000 276.25000,632.25000 L 270.25000,639.25000 L 269.00000,649.00000 C 275.84700,676.12000 244.24000,686.78000 232.25000,706.25000 C 229.21300,711.65100 230.32200,717.23000 232.25000,722.75000 C 235.30000,727.06400 239.60600,724.60600 244.00000,725.00000 C 259.49000,721.74000 266.96000,702.80000 284.75000,704.75000 C 290.41500,695.85600 299.83000,689.31000 310.75000,690.75000 C 322.63000,674.81000 343.92000,679.09000 360.75000,677.75000 L 374.75000,663.25000 L 369.75000,676.75000 L 386.00000,671.00000 C 387.88500,671.13980 385.86030,669.11500 386.00000,671.00000 L 385.25000,666.25000 L 398.25000,655.25000 C 403.77900,653.61400 407.74700,647.59500 411.25000,643.25000 C 420.14600,636.26000 427.36000,626.72000 433.25000,617.25000 L 435.00000,619.00000 C 433.85600,622.35700 426.43700,627.65100 431.75000,628.75000 L 427.25000,636.75000 L 435.75000,632.75000 L 452.75000,612.75000 L 462.25000,590.25000 L 464.75000,587.75000 L 477.00000,550.00000 L 480.00000,526.00000 C 482.79300,520.85200 482.95100,514.94000 483.00000,509.00000 L 488.00000,492.00000 L 489.00000,472.00000 L 495.25000,455.25000 L 523.75000,429.75000 L 523.75000,428.25000 L 520.00000,427.00000 C 506.63000,431.34500 495.25000,442.75000 489.75000,455.75000 L 463.75000,486.75000 L 451.25000,494.75000 L 451.25000,493.25000 L 469.25000,477.25000 L 471.75000,474.75000 L 478.00000,463.00000 L 479.00000,462.00000 C 480.88500,462.13970 478.86030,460.11500 479.00000,462.00000 L 478.00000,463.00000 L 475.00000,465.00000 L 474.25000,464.75000 L 481.25000,454.25000 L 483.00000,452.00000 L 484.00000,451.00000 L 485.00000,450.00000 C 486.88500,450.13970 484.86030,448.11500 485.00000,450.00000 L 484.00000,451.00000 L 483.00000,452.00000 L 465.25000,466.75000 L 503.25000,421.25000 C 524.18000,420.08100 543.35000,422.63200 554.75000,403.25000 C 558.52400,407.06600 552.54100,410.75700 551.25000,414.25000 L 556.00000,419.00000 C 549.63000,439.56000 531.95000,455.86000 517.75000,472.75000 C 515.84600,474.69500 513.34900,480.51900 510.25000,477.75000 C 526.31000,466.06000 514.54600,452.66000 517.75000,440.25000 L 498.25000,459.25000 C 482.44000,530.56000 478.16000,614.55000 411.25000,661.25000 C 408.20900,668.19200 405.85800,675.19000 406.00000,683.00000 L 416.00000,706.00000 C 415.91327,727.44000 413.49800,751.95000 436.75000,760.25000 L 440.00000,768.00000 C 431.99400,802.38000 488.14000,804.47000 497.25000,832.75000 C 500.78300,830.92300 506.22600,832.09920 508.00000,836.00000 C 506.78600,850.95000 481.40000,859.83000 492.25000,877.75000 L 501.25000,883.75000 C 532.03000,886.54100 552.09000,923.41000 520.25000,941.25000 L 516.00000,950.00000 C 515.87080,955.23000 515.38450,960.83000 519.25000,964.75000 L 530.75000,967.75000 C 530.75623,952.96000 541.51000,943.33000 551.75000,933.75000 C 555.16800,924.64100 559.20500,928.51100 553.25000,935.25000 C 544.09500,944.08200 533.80000,952.99000 533.00000,966.00000 C 538.89500,978.99000 549.97000,991.98000 565.75000,990.75000 C 558.99900,981.02800 543.41000,970.99000 549.75000,957.75000 C 551.36300,950.17300 558.93700,946.41000 553.00000,956.00000 C 550.43100,959.89300 548.97100,964.37200 551.25000,968.75000 L 580.00000,1008.0000 C 582.83700,1025.1100 567.07000,1036.1100 554.25000,1043.2500 L 547.25000,1053.2500 C 545.27000,1059.3950 548.51500,1064.1600 553.25000,1067.7500 C 554.00260,1045.2700 588.59000,1039.3500 590.00000,1016.0000 L 589.25000,998.25000 C 593.04800,1004.4990 592.69400,1015.3700 591.00000,1023.0000 C 588.18900,1035.2600 575.27000,1039.9300 567.25000,1048.2500 C 556.32000,1055.8440 554.40000,1069.3100 564.75000,1076.7500 C 553.58000,1073.1260 538.12000,1062.0700 547.25000,1048.2500 C 557.23800,1035.0200 580.50000,1029.5200 578.00000,1009.0000 C 570.93700,986.47000 540.34000,997.02000 532.75000,971.25000 C 525.09300,969.01000 514.35000,968.07700 513.00000,958.00000 C 512.45300,950.99200 515.13400,945.11000 518.25000,939.25000 C 554.11000,914.85000 514.29400,888.64000 490.25000,878.75000 C 487.42700,875.46900 487.90300,871.23600 488.00000,867.00000 C 484.75000,852.47000 512.28000,846.49000 502.75000,834.25000 C 493.62200,844.27000 469.07000,858.30000 473.75000,875.25000 C 489.22000,887.10000 506.71000,899.13000 519.75000,912.75000 L 472.25000,877.75000 C 464.20800,865.79000 476.13100,856.12000 483.75000,848.25000 L 466.25000,853.75000 C 492.15000,842.21000 471.36300,824.04000 452.25000,822.75000 C 449.16800,820.03600 450.12000,815.72900 450.00000,812.00000 C 470.00000,791.29000 428.35000,809.39800 422.25000,791.75000 C 414.55400,780.10000 427.59600,771.60000 431.00000,762.00000 C 410.97000,753.42400 390.62000,732.99000 413.00000,713.00000 C 409.48400,696.35000 394.23000,680.78000 406.75000,663.25000 C 387.94000,683.94000 357.26000,680.14000 337.25000,698.25000 L 332.00000,707.00000 C 319.01000,784.40000 337.46200,865.10000 381.00000,929.00000 C 394.34000,956.94000 439.21000,969.63000 435.75000,1002.7500 C 433.42200,1005.4240 430.91300,1008.0860 427.00000,1007.0000 L 434.25000,1000.2500 C 435.72000,997.14200 435.45600,992.52100 433.25000,989.75000 L 427.00000,980.00000 L 421.25000,975.75000 C 410.61000,965.93900 435.38000,997.67000 419.00000,995.00000 L 422.00000,990.00000 L 420.00000,982.00000 L 411.25000,969.75000 C 340.95000,902.41000 313.37000,802.55000 326.75000,707.25000 C 319.69400,708.53600 316.68000,701.77400 312.25000,698.25000 C 297.65000,710.48000 280.64000,733.48000 260.25000,722.25000 C 250.20000,728.49800 231.32000,733.99000 226.00000,719.00000 C 224.26900,686.02000 275.53000,677.72000 265.00000,643.00000 L 268.25000,634.25000 C 286.53000,623.65000 292.38000,604.11000 288.75000,584.25000 C 204.05000,579.38300 136.25000,506.13000 108.95000,429.95000 C 77.760000,310.15000 140.09000,163.85000 264.95000,129.95000 C 288.49000,122.30700 313.43000,114.38000 338.95000,116.95000 C 368.11000,118.07000 398.50000,115.22400 425.20000,124.70000 L 485.70000,156.20000 C 500.10000,165.41500 519.03000,160.06300 533.70000,156.20000 L 533.95000,160.95000 C 524.10100,185.30000 496.88000,193.18000 473.95000,197.95000 L 429.95000,196.95000 C 414.34000,192.65900 398.43000,193.72400 381.95000,193.95000 C 368.81000,193.65790 356.10000,194.83030 343.95000,197.95000 C 241.65000,204.83200 176.75000,368.65000 270.95000,427.95000 C 288.48000,430.18500 302.00000,418.98700 316.20000,411.20000 C 331.93000,400.69000 346.28000,387.95000 359.70000,373.70000 L 389.70000,338.70000 C 396.77400,328.38000 403.94000,317.82000 413.70000,309.70000 C 465.09000,233.53000 584.10000,219.15000 643.20000,290.70000 L 665.70000,277.70000 C 747.78000,212.76000 846.60000,301.69000 891.20000,372.70000 L 915.20000,399.70000 C 924.45000,405.99400 934.83000,410.96000 945.95000,411.95000 C 953.96600,414.20200 962.93000,412.69240 970.70000,410.70000 C 1029.1800,376.22000 1022.4200,291.20000 993.70000,239.20000 C 967.99000,207.30000 925.62000,195.47000 886.90000,199.95000 L 841.90000,196.95000 C 827.56000,193.01200 813.44000,184.85000 805.15000,171.70000 C 804.12000,165.33900 800.06600,158.60000 803.15000,152.20000 C 827.45000,164.59000 857.31000,166.30000 881.65000,151.70000 C 954.23000,98.970000 1073.5500,108.16000 1112.6500,198.20000 C 1131.8400,242.68000 1138.6600,293.23000 1132.9000,343.00000 C 1139.0000,441.79000 1056.9200,542.00000 954.10000,536.30000 L 978.10000,582.80000 C 983.06100,592.26000 998.55000,618.92000 1005.1000,597.30000 C 1006.1150,596.32230 1007.4770,594.12300 1008.6000,596.30000 C 1012.6940,607.03000 1005.8400,618.07000 998.60000,625.80000 C 941.39000,638.35000 867.20000,627.20000 833.10000,575.30000 L 834.10000,641.80000 C 851.58000,669.83000 880.00000,630.37000 897.60000,650.30000 C 907.60000,671.73000 915.53000,694.69000 907.60000,718.80000 L 860.10000,771.30000 C 856.48500,787.90000 887.38000,791.70000 886.85000,809.05000 C 875.01000,824.41000 857.62000,835.73000 841.10000,844.30000 C 856.24000,859.72000 854.64000,888.12000 838.60000,902.80000 L 828.85000,906.05000 C 801.92000,895.64000 754.11000,925.54000 779.60000,955.30000 L 782.85000,965.05000 C 782.75112,971.16600 783.67810,977.49000 780.60000,982.80000 C 775.76200,997.61000 763.19000,1006.9300 750.60000,1014.8000 C 713.89000,1028.9400 693.78000,1072.4600 714.10000,1107.8000 L 723.60000,1108.3000 C 699.75000,1117.0110 734.07000,1121.9300 743.60000,1120.8000 C 730.71000,1127.0060 708.39000,1125.9100 707.60000,1107.3000 C 678.66000,1084.1300 694.81000,1036.1700 725.60000,1021.8000 L 746.60000,1001.8000 C 753.06400,993.66900 756.63000,984.16000 757.85000,974.05000 L 758.85000,959.05000 C 773.83000,1010.2900 700.24000,1021.9900 697.10000,1065.8500 L 722.10000,1030.3500 C 753.59000,1011.8600 803.60000,976.45000 762.10000,939.85000 L 758.60000,928.35000 L 755.85000,922.10000 C 734.25000,927.50500 723.39000,957.72000 740.85000,973.10000 L 741.85000,989.10000 C 735.65300,1003.8400 721.68000,1015.4600 708.60000,1024.8500 C 688.86000,1038.7500 681.79000,1063.0600 685.85000,1086.1000 C 687.48600,1094.3570 693.23900,1099.9700 699.85000,1105.1000 L 701.60000,1110.8500 C 671.25000,1100.8980 647.80000,1066.4400 673.10000,1038.3500 C 684.02000,1026.4200 697.45000,1018.5800 712.60000,1014.8500 C 729.04000,997.86000 747.60000,973.36000 721.10000,955.85000 L 719.85000,945.10000 L 723.60000,928.35000 C 711.63000,924.66600 710.12000,943.58000 711.10000,954.85000 L 716.60000,960.85000 C 701.08000,955.62800 709.51400,923.60000 723.60000,917.35000 L 719.10000,919.35000 L 715.10000,921.35000 L 702.60000,929.85000 C 701.64550,931.22300 698.79600,933.57600 697.85000,931.10000 L 707.10000,923.35000 L 715.10000,918.35000 L 717.60000,916.35000 L 688.10000,932.85000 L 692.85000,927.10000 L 700.60000,920.85000 C 712.24000,912.06200 696.28400,919.00100 691.10000,921.35000 L 680.10000,927.85000 L 687.85000,916.10000 C 680.68500,922.07700 662.24000,927.44000 678.60000,917.85000 C 692.11000,911.02100 707.98000,901.47000 722.85000,906.10000 C 757.96000,884.81000 799.50000,899.95000 838.65000,895.85000 C 860.91000,868.57000 836.89600,834.30000 804.65000,837.35000 L 767.90000,838.10000 L 744.90000,845.10000 C 673.25000,877.49000 625.20000,788.32000 596.60000,735.30000 C 591.47900,728.39800 583.85000,724.21000 576.10000,724.30000 C 592.90000,718.47800 603.30000,741.09000 610.60000,753.30000 L 623.60000,773.80000 C 627.03000,755.86000 632.46800,734.63000 647.60000,723.30000 L 645.85000,727.05000 C 635.34000,741.20000 628.51000,757.99000 628.85000,776.05000 C 641.82000,816.19000 690.27000,856.38000 731.85000,831.05000 C 735.70000,831.50420 745.77000,828.19900 743.85000,834.05000 C 726.54000,838.04200 709.04000,844.40000 691.10000,844.80000 C 699.38900,847.79300 707.65000,850.40400 716.85000,850.05000 C 763.55000,831.74000 811.97000,816.05000 863.85000,825.05000 L 881.60000,809.80000 C 882.56380,793.24000 853.59000,790.50000 856.60000,773.30000 C 848.35100,779.83100 850.77600,770.29600 854.60000,765.30000 L 837.10000,780.80000 L 843.60000,771.80000 C 858.91000,752.30000 825.98000,786.87000 829.10000,777.30000 L 834.10000,771.30000 C 835.43600,769.76100 841.46700,765.21300 836.10000,766.30000 L 818.10000,782.80000 L 825.85000,767.05000 L 826.00000,767.00000 z "
           style="fill:#1c1c1c;stroke:#1c1c1c" />
        <path
           id="path3390"
           d="M 186.00000,312.00000 L 143.00000,303.00000 L 179.25000,314.75000 L 212.75000,327.75000 L 215.00000,325.00000 L 218.75000,327.25000 C 214.83400,359.72000 221.57900,396.61000 247.00000,419.00000 L 230.00000,441.00000 L 237.00000,427.00000 C 236.05200,418.35900 231.78200,424.45100 228.25000,427.75000 C 221.55800,425.09500 231.18200,408.18000 220.75000,417.75000 L 218.25000,416.75000 L 224.75000,401.25000 L 209.25000,411.75000 C 213.95300,404.40900 220.25000,397.62000 214.75000,389.25000 L 201.25000,395.75000 L 208.75000,381.25000 L 207.00000,380.00000 C 198.85200,386.37200 202.60800,370.47100 203.75000,366.25000 L 189.25000,368.75000 L 198.00000,361.00000 L 195.00000,361.00000 L 149.00000,373.00000 C 140.56500,374.11000 128.01000,371.53300 123.00000,378.00000 C 126.31500,379.99200 132.05600,377.76830 136.00000,377.00000 L 150.75000,376.25000 L 138.75000,380.75000 L 128.00000,385.00000 L 183.75000,373.25000 L 175.00000,378.00000 L 138.25000,393.25000 L 139.25000,399.75000 L 181.75000,386.25000 L 134.00000,407.00000 L 166.75000,399.75000 L 187.75000,391.25000 L 186.75000,394.75000 C 166.93000,404.64400 144.10000,412.55000 125.00000,419.00000 C 130.42500,422.85900 138.81000,417.64700 145.00000,416.00000 L 169.75000,406.75000 L 196.75000,394.25000 C 175.52000,413.75000 146.41000,420.06000 121.25000,432.25000 L 121.25000,435.75000 L 147.75000,426.25000 L 156.75000,426.25000 L 130.00000,444.00000 C 142.73000,447.24500 157.41000,434.14300 170.00000,429.00000 L 181.75000,421.75000 L 193.75000,415.25000 L 155.25000,441.75000 C 159.11500,444.42800 163.93500,439.24300 168.00000,438.00000 L 191.75000,424.25000 L 154.25000,448.25000 L 134.25000,458.75000 L 177.75000,441.25000 C 176.80540,442.53900 176.49400,445.50500 178.75000,445.75000 L 187.75000,443.25000 C 185.46700,449.80900 177.76100,452.18800 172.25000,456.25000 L 143.25000,473.75000 C 160.19000,470.30900 175.34000,458.65000 190.00000,449.00000 L 193.75000,447.25000 C 181.66000,462.07000 167.13000,473.96000 149.25000,482.25000 L 149.25000,484.75000 C 151.94200,485.60870 154.83500,484.68246 156.75000,482.75000 L 171.75000,473.75000 L 183.75000,466.25000 C 184.77500,472.81600 191.80500,465.69780 194.75000,464.25000 L 153.25000,491.25000 L 153.25000,494.75000 L 165.00000,489.00000 L 179.00000,481.00000 L 199.00000,469.00000 C 207.81400,462.44300 205.24700,470.43100 198.25000,473.25000 L 160.25000,497.75000 C 181.12000,489.85500 203.98000,477.64000 218.75000,460.25000 C 216.62300,457.72000 221.97500,455.43600 223.75000,455.25000 C 213.67000,481.02000 182.80000,492.17000 160.25000,505.75000 C 150.32200,495.59000 144.72000,483.16000 137.75000,471.25000 C 128.10600,459.11000 122.29000,444.45000 116.25000,430.75000 C 86.420000,325.65000 131.37000,196.25000 235.75000,149.75000 C 245.70100,142.93500 256.87000,138.90000 268.00000,135.00000 C 299.07000,124.79000 333.74000,117.99000 367.00000,124.00000 C 403.17000,123.49480 440.80000,130.10300 469.30000,154.75000 L 491.05000,166.00000 C 502.12000,168.35600 512.87000,166.84290 523.80000,164.25000 C 512.98000,190.46000 475.67000,191.40000 451.30000,190.75000 L 455.80000,187.75000 C 462.66700,182.97700 459.45100,170.70000 459.80000,162.25000 L 454.30000,162.75000 C 451.71800,151.92000 442.08000,157.58800 435.30000,155.25000 C 435.45790,166.16000 434.75000,179.18000 429.80000,189.75000 L 426.05000,190.00000 C 423.20300,190.80310 418.91200,189.36110 422.80000,186.75000 C 422.59000,179.57600 426.05700,173.94000 429.05000,168.00000 L 428.80000,152.25000 L 424.05000,145.00000 L 418.80000,188.75000 L 400.05000,188.00000 L 399.05000,173.00000 L 399.05000,166.00000 C 400.15200,161.88100 400.31200,157.59200 404.80000,157.25000 L 405.05000,169.00000 C 403.24000,172.37900 402.71400,184.75000 407.05000,177.00000 L 408.05000,173.00000 C 410.41500,159.37000 414.82000,176.01200 409.05000,181.00000 L 410.80000,183.75000 C 422.06000,170.94000 425.23000,150.97000 413.80000,136.25000 L 410.30000,137.25000 L 410.80000,150.75000 L 404.30000,136.25000 C 398.06100,136.55560 403.96700,154.38000 399.30000,146.75000 C 402.99200,136.34000 391.04800,134.03000 392.05000,145.00000 L 389.30000,169.75000 L 395.80000,160.25000 C 395.32870,169.66100 395.63500,180.35000 388.80000,187.75000 L 377.30000,187.75000 L 391.05000,141.00000 C 391.66620,137.32200 388.97500,135.78000 386.05000,135.00000 L 373.80000,187.75000 L 367.05000,188.00000 L 354.30000,187.75000 L 356.05000,156.00000 C 353.76300,148.30100 355.59360,136.61000 348.30000,132.25000 C 351.00500,147.78000 354.40000,168.15000 350.80000,185.75000 L 303.30000,201.25000 L 258.05000,238.00000 L 252.30000,229.75000 L 255.05000,225.00000 L 218.30000,192.75000 C 216.36100,189.75500 206.37000,184.86800 210.30000,191.75000 L 214.30000,194.75000 L 207.30000,196.25000 L 206.30000,199.75000 C 216.85000,212.99000 230.76000,225.93000 243.80000,235.75000 C 245.06300,233.24500 242.09700,231.87200 240.80000,230.25000 L 228.30000,216.75000 C 222.95200,211.52000 214.50000,207.36200 212.30000,200.25000 L 232.80000,209.25000 L 245.30000,228.25000 L 246.30000,230.75000 C 256.50000,236.25100 256.57000,244.65000 247.80000,251.75000 C 236.79000,269.35000 227.51000,287.78000 222.80000,307.75000 L 212.30000,301.75000 C 203.12200,287.31000 179.62000,287.94000 164.30000,282.25000 L 164.30000,284.75000 C 184.02000,292.03300 205.13000,297.22000 221.05000,312.00000 L 218.80000,322.75000 C 197.11000,308.51000 175.09000,293.62000 151.05000,284.00000 L 147.05000,286.00000 L 170.05000,297.00000 C 179.86400,300.74000 182.81000,305.82500 186.05000,312.00000 L 186.00000,312.00000 z "
           style="fill:#cfcfcf;stroke:#cfcfcf" />
        <path
           id="path3392"
           d="M 1052.0000,303.00000 C 1071.3100,295.74700 1093.0600,287.54000 1115.0000,291.00000 L 1118.7500,289.75000 L 1104.7500,283.25000 L 1102.2500,282.25000 L 1118.7500,280.75000 L 1118.7500,278.25000 L 1100.2500,275.75000 L 1100.7500,274.75000 C 1098.3900,270.81900 1100.5422,270.58700 1105.0000,271.00000 L 1120.7500,269.75000 L 1077.2500,268.75000 L 1080.7500,267.75000 C 1082.1440,263.59700 1086.1290,263.62000 1090.0000,264.00000 C 1098.3310,263.07970 1107.8200,261.18400 1116.0000,263.00000 L 1117.7500,261.75000 L 1102.2500,257.75000 C 1103.4740,256.83640 1110.6950,256.89360 1106.7500,253.25000 L 1096.2500,251.75000 C 1092.3470,247.43000 1100.2220,248.42400 1102.2500,247.25000 L 1108.7500,245.75000 L 1105.0000,243.00000 L 1070.0000,247.00000 L 1066.2500,246.75000 L 1092.0000,235.00000 L 1090.0000,233.00000 L 1061.2500,243.75000 C 1071.0870,235.96900 1083.8200,231.12000 1095.7500,227.75000 L 1087.0000,224.00000 L 1093.7500,219.75000 L 1091.2500,212.25000 L 1095.7500,209.25000 L 1076.2500,209.75000 C 1079.0840,207.33100 1093.0300,206.36000 1085.0000,201.00000 C 1087.6290,199.50200 1089.0260,197.19900 1085.2500,195.75000 C 1086.6100,193.91400 1086.1012,191.29700 1083.2500,191.75000 L 1084.0000,184.00000 L 1082.7500,182.25000 L 1069.0000,185.00000 L 1054.2500,182.75000 L 1072.7500,178.75000 L 1072.7500,176.25000 L 1066.2500,175.25000 C 1069.3110,173.74200 1076.9500,175.65150 1075.7500,170.25000 L 1058.0000,173.00000 L 1054.0000,173.00000 L 1053.2500,172.25000 L 1069.7500,166.75000 L 1070.0000,165.00000 L 1058.0000,166.00000 L 1044.2500,164.75000 L 1044.2500,163.25000 C 1051.4860,164.36900 1047.6620,158.90100 1044.2500,157.25000 L 1046.7500,155.75000 L 1045.7500,152.25000 C 1040.6200,154.39400 1033.5600,158.55200 1029.7500,152.25000 L 1027.2500,151.75000 C 1030.7560,151.24790 1036.1200,149.50500 1034.7500,144.25000 L 1001.2500,145.75000 L 1007.7500,142.25000 C 1004.0010,138.99500 999.03100,142.62710 995.00000,143.00000 L 997.75000,139.25000 L 977.00000,145.00000 L 983.75000,140.75000 L 988.75000,136.75000 L 987.00000,135.00000 L 960.25000,150.75000 L 965.00000,144.00000 L 969.75000,138.25000 C 966.68100,137.28070 963.03000,137.19200 960.25000,139.25000 L 956.75000,140.75000 L 949.75000,145.75000 C 944.56600,143.47300 940.06000,142.58900 935.00000,147.00000 L 932.00000,144.00000 L 906.25000,155.25000 C 904.51600,154.70050 901.87200,148.81700 905.25000,146.25000 L 935.00000,135.00000 C 952.65000,128.08300 971.57000,122.20000 991.00000,127.00000 C 1009.2300,124.36700 1026.4200,134.71100 1042.2500,142.75000 C 1063.8100,150.04400 1080.2300,165.83000 1093.7500,184.25000 C 1127.1200,235.43000 1129.1900,295.65000 1128.0000,357.05000 L 1123.0000,388.05000 L 1108.7500,428.80000 L 1098.7500,412.30000 L 1090.7500,405.30000 C 1085.5700,403.69200 1085.3030,399.25500 1085.2500,395.30000 C 1093.9120,398.01700 1102.4000,403.28400 1110.0000,409.05000 L 1112.7500,407.80000 L 1106.2500,401.80000 L 1093.7500,394.30000 L 1078.2500,384.30000 L 1093.2500,387.30000 L 1095.7500,388.30000 L 1115.7500,399.80000 C 1116.3369,394.88300 1109.8900,392.97700 1107.0000,390.05000 C 1101.2540,385.99500 1088.7900,383.56400 1090.7500,375.30000 L 1087.2500,372.30000 L 1108.0000,381.05000 L 1116.0000,387.05000 L 1120.7500,388.80000 L 1120.7500,386.30000 C 1112.6270,380.16100 1102.7100,375.07000 1096.2500,366.30000 L 1102.7500,367.30000 C 1104.2710,368.70900 1106.9350,372.21000 1108.7500,369.80000 L 1098.0000,360.05000 L 1084.2500,352.30000 C 1097.2700,354.81100 1110.1300,363.08000 1116.0000,375.05000 C 1118.6530,373.49400 1115.8235,370.03300 1115.0000,368.05000 L 1112.2500,353.80000 L 1106.2500,349.30000 L 1125.7500,357.80000 C 1126.8980,354.49000 1122.1060,353.57400 1120.0000,352.05000 L 1113.7500,348.30000 C 1108.6190,347.45550 1103.4400,343.65200 1098.2500,345.80000 L 1083.2500,337.30000 L 1105.0000,342.05000 C 1110.8870,339.71300 1117.0500,340.60400 1120.2500,347.80000 L 1123.7500,348.80000 C 1122.5070,340.18600 1111.6900,338.19000 1106.2500,334.30000 L 1117.7500,336.80000 C 1116.8827,333.43100 1116.1250,328.87100 1112.2500,327.30000 L 1119.7500,327.30000 C 1121.2170,328.38300 1125.0920,328.79700 1126.0000,327.05000 C 1113.0100,322.57700 1098.7700,318.01900 1084.0000,318.05000 L 1079.0000,315.05000 L 1034.2500,318.30000 L 1033.7500,322.80000 L 1021.2500,326.80000 L 1021.2500,317.30000 L 1051.7500,307.80000 L 1089.0000,303.05000 C 1098.9290,303.31530 1109.4400,302.86000 1118.0000,300.05000 L 1112.0000,297.05000 L 1052.0000,303.05000 L 1052.0000,303.00000 z "
           style="fill:#e9e9e9;stroke:#e9e9e9" />
        <path
           id="path3394"
           d="M 374.00000,133.00000 C 372.11500,133.13980 374.13970,131.11500 374.00000,133.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3396"
           d="M 361.00000,133.00000 L 362.75000,136.25000 L 362.75000,136.75000 C 360.30400,137.86200 361.10400,134.30000 361.00000,133.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3398"
           d="M 374.00000,133.00000 L 374.75000,133.25000 L 376.75000,141.75000 L 375.25000,141.75000 L 374.00000,133.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path3400"
           d="M 320.00000,135.00000 C 318.11500,135.13980 320.13970,133.11500 320.00000,135.00000 z "
           style="fill:#141414;stroke:#141414" />
        <path
           id="path3402"
           d="M 331.00000,134.00000 C 332.83400,133.33470 333.55900,135.43100 332.75000,136.75000 L 331.00000,134.00000 z "
           style="fill:#0b0b0b;stroke:#0b0b0b" />
        <path
           id="path3404"
           d="M 339.00000,134.00000 C 341.02800,133.49780 342.81700,135.95800 341.75000,137.75000 L 341.25000,137.75000 L 339.00000,134.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path3406"
           d="M 322.00000,138.00000 L 320.00000,135.00000 L 322.00000,138.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3408"
           d="M 315.00000,137.00000 C 313.11500,137.13980 315.13970,135.11500 315.00000,137.00000 z "
           style="fill:#050505;stroke:#050505" />
        <path
           id="path3410"
           d="M 317.00000,140.00000 L 315.00000,137.00000 L 317.00000,140.00000 z "
           style="fill:#0b0b0b;stroke:#0b0b0b" />
        <path
           id="path3412"
           d="M 371.00000,137.00000 L 371.75000,137.25000 L 371.75000,147.75000 L 371.25000,147.75000 L 370.25000,138.25000 L 371.00000,137.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path3414"
           d="M 322.00000,138.00000 L 323.75000,140.75000 L 322.00000,138.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path3416"
           d="M 333.00000,138.00000 L 334.75000,142.75000 L 334.25000,142.75000 L 333.00000,138.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path3418"
           d="M 307.00000,139.00000 C 308.83400,138.33470 309.55900,140.43100 308.75000,141.75000 L 307.00000,139.00000 z "
           style="fill:#0a0a0a;stroke:#0a0a0a" />
        <path
           id="path3420"
           d="M 282.00000,142.00000 L 281.25000,140.25000 L 282.00000,142.00000 z "
           style="fill:#0b0b0b;stroke:#0b0b0b" />
        <path
           id="path3422"
           d="M 318.00000,142.00000 L 317.00000,140.00000 L 318.00000,142.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3424"
           d="M 345.00000,147.00000 L 342.00000,141.00000 L 342.25000,140.25000 L 344.00000,143.00000 L 345.00000,147.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3426"
           d="M 362.00000,140.00000 L 362.75000,140.25000 L 363.75000,148.75000 L 362.25000,148.75000 L 362.00000,140.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path3428"
           d="M 292.00000,147.00000 L 289.00000,146.00000 L 290.00000,151.00000 L 290.25000,156.75000 L 287.25000,143.25000 L 290.00000,141.00000 L 291.00000,142.00000 L 292.00000,147.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path3430"
           d="M 282.00000,142.00000 L 283.75000,145.25000 L 283.75000,145.75000 C 281.30400,146.86200 282.10400,143.30000 282.00000,142.00000 z "
           style="fill:#121212;stroke:#121212" />
        <path
           id="path3432"
           d="M 302.00000,156.00000 L 300.25000,148.75000 L 298.25000,142.25000 L 299.75000,142.25000 L 301.25000,146.75000 L 302.75000,147.25000 L 306.00000,160.00000 L 307.00000,162.00000 L 305.25000,179.25000 L 305.75000,180.75000 L 305.00000,181.00000 L 304.00000,180.00000 L 304.00000,167.00000 L 302.75000,156.25000 L 302.00000,156.00000 z "
           style="fill:#080808;stroke:#080808" />
        <path
           id="path3434"
           d="M 320.00000,146.00000 L 318.00000,142.00000 L 320.00000,146.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path3436"
           d="M 326.00000,146.00000 L 324.25000,142.25000 L 326.00000,146.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3438"
           d="M 310.00000,148.00000 L 309.25000,143.25000 L 310.00000,148.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path3440"
           d="M 375.00000,143.00000 L 376.75000,143.75000 L 375.00000,143.00000 z "
           style="fill:#141414;stroke:#141414" />
        <path
           id="path3442"
           d="M 336.00000,147.00000 L 335.25000,144.25000 L 336.00000,147.00000 z "
           style="fill:#0b0b0b;stroke:#0b0b0b" />
        <path
           id="path3444"
           d="M 977.00000,145.00000 L 974.25000,147.25000 L 968.75000,151.75000 L 967.25000,151.75000 L 971.75000,147.75000 L 977.00000,145.00000 z "
           style="fill:#989898;stroke:#989898" />
        <path
           id="path3446"
           d="M 322.00000,151.00000 L 320.00000,146.00000 L 322.00000,151.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3448"
           d="M 327.00000,148.00000 L 326.00000,146.00000 L 327.00000,148.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3450"
           d="M 376.00000,146.00000 C 377.88500,145.86020 375.86030,147.88500 376.00000,146.00000 z "
           style="fill:#141414;stroke:#141414" />
        <path
           id="path3452"
           d="M 282.00000,147.00000 L 284.75000,152.25000 L 284.75000,152.75000 L 282.25000,147.75000 L 282.00000,147.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3454"
           d="M 293.00000,149.00000 L 292.00000,147.00000 L 293.00000,149.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3456"
           d="M 336.00000,147.00000 L 336.75000,150.75000 L 336.00000,147.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path3458"
           d="M 346.00000,151.00000 L 345.00000,147.00000 L 346.00000,151.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path3460"
           d="M 311.00000,153.00000 L 310.00000,148.00000 L 311.00000,153.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path3462"
           d="M 327.00000,148.00000 L 328.75000,152.75000 L 328.25000,152.75000 L 327.00000,148.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3464"
           d="M 376.00000,148.00000 L 376.75000,153.75000 L 376.25000,153.75000 L 376.00000,148.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path3466"
           d="M 295.00000,155.00000 L 294.25000,154.75000 L 293.00000,149.00000 L 295.00000,155.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3468"
           d="M 371.00000,149.00000 L 372.75000,149.25000 L 372.75000,157.75000 L 372.25000,157.75000 L 371.00000,150.00000 L 371.00000,149.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path3470"
           d="M 993.00000,187.00000 L 1004.7500,185.25000 C 1002.5000,189.78800 998.67300,194.46200 993.75000,197.75000 L 987.75000,205.75000 C 985.77100,208.05200 982.63000,210.56500 983.25000,213.75000 L 999.25000,198.25000 L 1012.7500,194.25000 L 1009.2500,199.25000 L 1002.2500,209.25000 C 998.59500,213.82700 991.70000,219.41000 995.25000,224.75000 C 1008.5800,211.13000 1023.1300,194.99000 1042.7500,190.75000 L 1058.7500,187.25000 C 1035.7000,196.90900 1012.4700,212.58000 998.00000,234.00000 C 979.38000,212.34000 951.32000,199.78000 924.00000,194.00000 C 890.23000,190.79400 854.62000,199.53500 824.25000,183.75000 C 816.21300,177.82300 809.22000,169.81000 807.25000,160.25000 L 814.75000,162.25000 C 831.68000,174.48000 852.03000,167.85600 869.75000,162.25000 L 872.00000,166.00000 L 865.75000,169.75000 C 853.97000,172.68000 843.19000,178.34700 830.25000,177.25000 L 828.00000,180.00000 C 840.72000,183.28600 853.39000,178.15300 865.75000,175.25000 L 860.75000,178.75000 L 848.00000,185.00000 L 864.25000,184.75000 L 866.00000,185.00000 L 890.25000,172.25000 L 893.00000,174.00000 L 912.25000,164.25000 L 915.00000,166.00000 L 896.75000,174.75000 L 884.25000,181.75000 C 896.46000,180.08600 908.54000,174.86900 919.25000,168.25000 L 925.00000,170.00000 L 953.75000,154.25000 L 946.75000,179.75000 L 943.75000,185.75000 C 944.23500,189.35000 949.42300,181.99000 950.75000,179.75000 L 956.25000,171.25000 C 965.09800,161.79600 975.55000,152.94000 988.75000,152.25000 C 979.18800,159.32300 967.11000,165.57000 960.75000,176.75000 C 957.44700,181.94300 953.83900,187.73000 953.25000,193.75000 L 955.00000,194.00000 C 963.02800,169.30000 989.72000,152.61000 1014.7500,149.25000 L 995.25000,156.25000 L 977.25000,168.25000 C 969.64100,177.38900 964.26000,190.75000 967.00000,202.00000 L 969.00000,198.00000 C 967.60300,179.04000 982.91000,165.60000 999.00000,159.00000 L 1008.7500,157.25000 L 994.75000,165.75000 L 979.25000,180.25000 C 973.14000,188.02200 971.75100,199.19000 974.25000,208.75000 L 989.75000,192.75000 L 993.00000,187.00000 z "
           style="fill:#dedede;stroke:#dedede" />
        <path
           id="path3472"
           d="M 257.00000,150.00000 C 258.88500,149.86020 256.86030,151.88500 257.00000,150.00000 z "
           style="fill:#141414;stroke:#141414" />
        <path
           id="path3474"
           d="M 270.00000,153.00000 L 268.25000,150.25000 L 270.00000,153.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path3476"
           d="M 363.00000,150.00000 L 363.75000,150.25000 L 363.75000,162.75000 L 363.25000,162.75000 L 363.00000,150.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path3478"
           d="M 322.00000,151.00000 L 323.75000,153.75000 L 322.00000,151.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path3480"
           d="M 346.00000,151.00000 L 346.75000,151.25000 L 348.00000,157.00000 L 348.75000,163.75000 L 348.00000,164.00000 L 347.25000,163.75000 L 347.00000,158.00000 L 346.00000,151.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3482"
           d="M 257.00000,152.00000 C 258.44900,151.58270 260.61200,153.21300 259.75000,154.75000 L 257.00000,152.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3484"
           d="M 337.00000,152.00000 L 337.75000,152.25000 L 339.00000,160.00000 C 340.49300,162.27900 340.49300,165.72100 339.00000,168.00000 L 338.00000,174.00000 L 336.75000,180.75000 L 336.25000,180.75000 L 337.00000,176.00000 L 338.00000,171.00000 L 337.75000,166.25000 L 337.00000,162.00000 C 338.43900,159.99200 338.43900,157.00800 337.00000,155.00000 L 337.00000,152.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path3486"
           d="M 270.00000,153.00000 L 271.75000,156.75000 L 270.00000,153.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3488"
           d="M 311.00000,153.00000 L 311.75000,157.75000 L 311.00000,153.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3490"
           d="M 960.00000,153.00000 L 963.75000,154.25000 L 960.75000,158.75000 C 958.97700,159.76100 958.97700,161.23900 960.75000,162.25000 L 960.75000,163.75000 L 948.75000,176.75000 L 947.25000,176.75000 C 949.71500,168.24800 954.09200,159.91000 960.00000,153.00000 z "
           style="fill:#d7d7d7;stroke:#d7d7d7" />
        <path
           id="path3492"
           d="M 245.00000,154.00000 C 246.88500,153.86020 244.86020,155.88500 245.00000,154.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3494"
           d="M 283.00000,154.00000 L 284.75000,154.75000 L 283.00000,154.00000 z "
           style="fill:#141414;stroke:#141414" />
        <path
           id="path3496"
           d="M 329.00000,154.00000 L 331.75000,161.75000 L 330.25000,161.75000 L 329.00000,154.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3498"
           d="M 295.00000,155.00000 L 295.75000,157.75000 L 295.00000,155.00000 z "
           style="fill:#0b0b0b;stroke:#0b0b0b" />
        <path
           id="path3500"
           d="M 302.00000,156.00000 L 301.00000,164.00000 L 300.25000,167.75000 L 300.00000,160.00000 C 298.96100,158.59900 298.34500,156.35700 300.25000,155.25000 L 302.00000,156.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path3502"
           d="M 325.00000,157.00000 L 324.25000,155.25000 L 325.00000,157.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path3504"
           d="M 247.00000,157.00000 C 245.11500,157.13980 247.13980,155.11500 247.00000,157.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3506"
           d="M 261.00000,157.00000 C 259.11500,157.13980 261.13970,155.11500 261.00000,157.00000 z "
           style="fill:#141414;stroke:#141414" />
        <path
           id="path3508"
           d="M 248.00000,158.00000 L 247.00000,157.00000 L 248.00000,158.00000 z "
           style="fill:#121212;stroke:#121212" />
        <path
           id="path3510"
           d="M 263.00000,161.00000 L 261.00000,157.00000 L 263.00000,161.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path3512"
           d="M 278.00000,161.00000 L 277.25000,160.75000 L 275.25000,157.25000 C 277.38700,156.32930 278.49500,159.32800 278.00000,161.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3514"
           d="M 284.00000,157.00000 L 284.75000,157.25000 L 286.00000,167.00000 L 285.00000,168.00000 L 284.25000,167.75000 L 284.00000,157.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3516"
           d="M 325.00000,157.00000 L 326.75000,161.25000 L 327.00000,162.00000 L 326.75000,162.75000 C 323.65900,163.59840 325.48800,158.71300 325.00000,157.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3518"
           d="M 249.00000,159.00000 L 248.00000,158.00000 L 249.00000,159.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path3520"
           d="M 274.00000,162.00000 C 272.38700,161.70250 271.40500,159.71200 272.25000,158.25000 L 272.75000,158.25000 L 274.00000,162.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3522"
           d="M 1028.0000,158.00000 L 1030.7500,158.25000 L 1030.7500,159.75000 L 1029.0000,160.00000 L 1021.2500,161.75000 C 1018.9880,160.72800 1021.3422,158.44200 1023.0000,159.00000 L 1028.0000,158.00000 z "
           style="fill:#afafaf;stroke:#afafaf" />
        <path
           id="path3524"
           d="M 245.00000,161.00000 L 241.25000,159.75000 L 241.25000,159.25000 C 242.71200,158.40530 244.70200,159.38730 245.00000,161.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path3526"
           d="M 254.00000,164.00000 L 249.00000,159.00000 C 251.33900,159.02673 253.97300,161.66100 254.00000,164.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3528"
           d="M 291.00000,159.00000 L 291.75000,163.75000 L 291.00000,159.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path3530"
           d="M 296.00000,159.00000 L 297.75000,163.25000 L 297.75000,163.75000 C 294.93200,164.76300 296.32000,160.48800 296.00000,159.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3532"
           d="M 312.00000,159.00000 L 312.75000,163.75000 L 312.00000,159.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3534"
           d="M 372.00000,159.00000 C 373.88500,158.86020 371.86030,160.88500 372.00000,159.00000 z "
           style="fill:#131313;stroke:#131313" />
        <path
           id="path3536"
           d="M 246.00000,162.00000 L 245.00000,161.00000 L 246.00000,162.00000 z "
           style="fill:#000000;stroke:#000000" />
        <path
           id="path3538"
           d="M 266.00000,168.00000 L 265.25000,167.75000 L 263.00000,161.00000 L 263.75000,161.25000 L 266.00000,168.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3540"
           d="M 278.00000,161.00000 L 278.75000,163.75000 L 278.00000,161.00000 z "
           style="fill:#0b0b0b;stroke:#0b0b0b" />
        <path
           id="path3542"
           d="M 247.00000,163.00000 L 246.00000,162.00000 L 247.00000,163.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3544"
           d="M 274.00000,162.00000 L 276.00000,166.00000 L 276.75000,169.75000 L 274.00000,163.00000 L 274.00000,162.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3546"
           d="M 1000.0000,167.00000 L 1000.2500,166.25000 L 1010.0000,162.00000 L 1011.7500,162.25000 L 1011.7500,162.75000 L 1000.0000,167.00000 z "
           style="fill:#b2b2b2;stroke:#b2b2b2" />
        <path
           id="path3548"
           d="M 248.00000,164.00000 L 247.00000,163.00000 L 248.00000,164.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3550"
           d="M 250.00000,166.00000 L 248.00000,164.00000 L 250.00000,166.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3552"
           d="M 255.00000,165.00000 L 254.00000,164.00000 L 255.00000,165.00000 z "
           style="fill:#000000;stroke:#000000" />
        <path
           id="path3554"
           d="M 327.00000,171.00000 L 326.25000,170.75000 L 326.25000,164.25000 L 326.75000,164.25000 L 327.00000,171.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path3556"
           d="M 362.00000,164.00000 C 363.88500,163.86020 361.86030,165.88500 362.00000,164.00000 z "
           style="fill:#141414;stroke:#141414" />
        <path
           id="path3558"
           d="M 372.00000,164.00000 L 373.75000,164.75000 L 372.00000,164.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3560"
           d="M 467.00000,164.00000 L 468.75000,164.25000 L 470.00000,167.00000 L 469.00000,181.00000 L 468.75000,183.75000 L 465.25000,183.75000 L 465.00000,181.00000 L 467.00000,164.00000 z "
           style="fill:#3b3b3b;stroke:#3b3b3b" />
        <path
           id="path3562"
           d="M 256.00000,166.00000 L 255.00000,165.00000 L 256.00000,166.00000 z "
           style="fill:#0a0a0a;stroke:#0a0a0a" />
        <path
           id="path3564"
           d="M 291.00000,165.00000 L 292.75000,165.25000 L 292.75000,176.75000 L 292.25000,176.75000 L 291.00000,165.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path3566"
           d="M 252.00000,168.00000 L 250.00000,166.00000 L 252.00000,168.00000 z "
           style="fill:#0a0a0a;stroke:#0a0a0a" />
        <path
           id="path3568"
           d="M 257.00000,167.00000 L 256.00000,166.00000 L 257.00000,167.00000 z "
           style="fill:#141414;stroke:#141414" />
        <path
           id="path3570"
           d="M 278.00000,166.00000 L 279.75000,166.25000 L 281.00000,178.00000 L 282.00000,189.00000 L 283.00000,191.00000 L 282.00000,193.00000 L 282.75000,203.75000 L 282.00000,196.00000 L 280.00000,188.00000 L 279.00000,186.00000 L 277.00000,172.00000 L 279.00000,170.00000 L 278.00000,166.00000 z "
           style="fill:#080808;stroke:#080808" />
        <path
           id="path3572"
           d="M 297.00000,166.00000 L 298.75000,173.25000 L 298.75000,173.75000 L 297.25000,173.75000 L 297.00000,166.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3574"
           d="M 312.00000,166.00000 L 313.75000,166.75000 L 312.00000,166.00000 z "
           style="fill:#121212;stroke:#121212" />
        <path
           id="path3576"
           d="M 372.00000,166.00000 L 373.75000,166.75000 L 372.00000,166.00000 z "
           style="fill:#141414;stroke:#141414" />
        <path
           id="path3578"
           d="M 942.00000,166.00000 C 943.88500,165.86020 941.86030,167.88500 942.00000,166.00000 z "
           style="fill:#121212;stroke:#121212" />
        <path
           id="path3580"
           d="M 235.00000,169.00000 L 232.25000,167.25000 L 235.00000,169.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path3582"
           d="M 264.00000,176.00000 L 262.25000,174.75000 L 257.00000,167.00000 C 259.96200,169.19600 263.64100,172.11700 264.00000,176.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path3584"
           d="M 1000.0000,167.00000 L 999.75000,172.75000 L 992.25000,180.25000 L 991.75000,181.75000 L 990.25000,182.25000 L 976.25000,199.75000 L 979.25000,184.25000 L 1000.0000,167.00000 z "
           style="fill:#e1e1e1;stroke:#e1e1e1" />
        <path
           id="path3586"
           d="M 252.00000,168.00000 C 253.88500,167.86020 251.86020,169.88500 252.00000,168.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path3588"
           d="M 265.00000,186.00000 L 269.75000,191.75000 L 265.00000,178.00000 L 267.25000,180.75000 L 269.25000,184.75000 L 269.75000,184.75000 L 267.75000,175.25000 C 265.76600,173.45100 263.92600,170.36900 266.00000,168.00000 L 273.25000,182.75000 L 273.75000,182.75000 L 274.75000,178.25000 L 276.00000,188.00000 C 277.59500,191.46700 277.59500,196.53300 276.00000,200.00000 L 275.00000,205.00000 L 274.75000,207.75000 L 274.25000,207.75000 L 265.25000,187.75000 L 265.00000,186.00000 z "
           style="fill:#080808;stroke:#080808" />
        <path
           id="path3590"
           d="M 312.00000,168.00000 L 313.75000,168.75000 L 312.00000,168.00000 z "
           style="fill:#121212;stroke:#121212" />
        <path
           id="path3592"
           d="M 347.00000,168.00000 L 348.75000,168.75000 L 347.00000,168.00000 z "
           style="fill:#131313;stroke:#131313" />
        <path
           id="path3594"
           d="M 478.00000,169.00000 C 476.11500,169.13980 478.13970,167.11500 478.00000,169.00000 z "
           style="fill:#121212;stroke:#121212" />
        <path
           id="path3596"
           d="M 938.00000,170.00000 L 940.75000,168.25000 L 938.00000,170.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3598"
           d="M 993.00000,187.00000 L 993.25000,185.25000 C 998.91500,178.81200 1004.6500,170.62000 1013.0000,168.00000 L 1015.7500,168.25000 L 1010.2500,172.25000 L 1005.2500,178.25000 L 1003.7500,180.75000 L 993.00000,187.00000 z "
           style="fill:#cfcfcf;stroke:#cfcfcf" />
        <path
           id="path3600"
           d="M 213.00000,169.00000 L 215.75000,170.25000 L 233.25000,183.75000 L 234.75000,184.25000 L 240.75000,190.25000 L 251.75000,201.25000 L 255.00000,210.00000 L 253.75000,211.75000 L 251.25000,210.75000 C 244.87900,198.02000 232.81000,187.97000 221.75000,179.25000 L 218.25000,177.75000 L 212.25000,172.75000 L 213.00000,169.00000 z "
           style="fill:#343434;stroke:#343434" />
        <path
           id="path3602"
           d="M 237.00000,170.00000 L 235.00000,169.00000 L 237.00000,170.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3604"
           d="M 300.00000,169.00000 L 301.75000,169.25000 L 301.75000,183.75000 L 301.25000,183.75000 L 300.00000,169.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path3606"
           d="M 372.00000,169.00000 L 372.75000,173.75000 L 372.00000,169.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path3608"
           d="M 479.00000,172.00000 L 478.00000,169.00000 L 479.00000,172.00000 z "
           style="fill:#121212;stroke:#121212" />
        <path
           id="path3610"
           d="M 239.00000,172.00000 L 237.00000,170.00000 L 239.00000,172.00000 z "
           style="fill:#0b0b0b;stroke:#0b0b0b" />
        <path
           id="path3612"
           d="M 255.00000,188.00000 L 258.75000,188.75000 L 257.00000,185.00000 L 251.25000,176.75000 L 249.25000,170.25000 L 251.75000,170.25000 L 266.00000,196.00000 L 265.75000,198.75000 L 262.25000,197.75000 L 257.75000,190.25000 L 255.00000,188.00000 z "
           style="fill:#070707;stroke:#070707" />
        <path
           id="path3614"
           d="M 256.00000,173.00000 L 253.25000,170.25000 C 254.78700,169.38780 256.41700,171.55100 256.00000,173.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3616"
           d="M 270.00000,170.00000 C 271.88500,169.86020 269.86030,171.88500 270.00000,170.00000 z "
           style="fill:#131313;stroke:#131313" />
        <path
           id="path3618"
           d="M 285.00000,170.00000 L 286.00000,171.00000 L 286.00000,201.00000 L 285.25000,201.75000 L 284.25000,199.75000 L 285.00000,198.00000 L 285.00000,170.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path3620"
           d="M 347.00000,170.00000 C 349.01700,169.54750 348.93100,170.83620 348.00000,172.00000 C 348.64570,174.16400 346.35400,174.16400 347.00000,172.00000 L 347.00000,170.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3622"
           d="M 445.00000,170.00000 L 447.00000,172.00000 C 445.05300,174.54000 445.95300,177.90800 448.00000,180.00000 L 446.75000,191.75000 L 433.25000,190.75000 L 437.25000,178.25000 L 439.75000,176.25000 L 440.75000,184.75000 L 444.00000,174.00000 L 445.00000,170.00000 z "
           style="fill:#d3d3d3;stroke:#d3d3d3" />
        <path
           id="path3624"
           d="M 938.00000,170.00000 L 935.00000,171.00000 L 938.00000,170.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path3626"
           d="M 327.00000,171.00000 L 327.75000,174.75000 L 327.00000,171.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path3628"
           d="M 491.00000,171.00000 L 492.75000,172.75000 L 491.00000,171.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path3630"
           d="M 873.00000,171.00000 L 875.00000,171.00000 C 880.47500,171.04140 869.49300,175.31400 873.00000,171.00000 z "
           style="fill:#9b9b9b;stroke:#9b9b9b" />
        <path
           id="path3632"
           d="M 935.00000,171.00000 C 935.13980,172.88500 933.11500,170.86020 935.00000,171.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path3634"
           d="M 240.00000,173.00000 L 239.00000,172.00000 L 240.00000,173.00000 z "
           style="fill:#0a0a0a;stroke:#0a0a0a" />
        <path
           id="path3636"
           d="M 271.00000,172.00000 C 272.68100,172.73120 274.84900,174.68400 273.75000,176.75000 L 273.25000,176.75000 L 271.00000,172.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3638"
           d="M 313.00000,172.00000 L 313.75000,172.25000 L 313.75000,180.75000 L 312.25000,180.75000 L 313.00000,172.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path3640"
           d="M 479.00000,172.00000 L 480.75000,178.25000 L 480.75000,178.75000 L 479.00000,172.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3642"
           d="M 929.00000,174.00000 L 931.75000,172.25000 C 932.85900,174.18000 930.16200,174.16400 929.00000,174.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3644"
           d="M 1037.0000,172.00000 L 1041.7500,172.25000 C 1041.1259,176.28000 1036.5010,177.06900 1033.0000,177.00000 L 1023.2500,177.75000 L 1023.2500,177.25000 L 1026.0000,176.00000 L 1030.7500,174.75000 L 1037.0000,172.00000 z "
           style="fill:#c9c9c9;stroke:#c9c9c9" />
        <path
           id="path3646"
           d="M 242.00000,174.00000 L 240.00000,173.00000 L 242.00000,174.00000 z "
           style="fill:#121212;stroke:#121212" />
        <path
           id="path3648"
           d="M 258.00000,176.00000 L 256.00000,173.00000 L 258.00000,176.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3650"
           d="M 242.00000,174.00000 C 243.88500,173.86020 241.86020,175.88500 242.00000,174.00000 z "
           style="fill:#070707;stroke:#070707" />
        <path
           id="path3652"
           d="M 491.00000,174.00000 C 494.68200,173.58180 491.56360,176.97800 491.75000,178.75000 L 491.00000,177.00000 L 491.00000,174.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3654"
           d="M 929.00000,174.00000 C 929.13980,175.88500 927.11500,173.86020 929.00000,174.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path3656"
           d="M 297.00000,175.00000 L 298.75000,176.75000 L 297.00000,175.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3658"
           d="M 371.00000,178.00000 L 371.75000,175.25000 L 371.00000,178.00000 z "
           style="fill:#0b0b0b;stroke:#0b0b0b" />
        <path
           id="path3660"
           d="M 924.00000,176.00000 L 925.75000,175.25000 L 924.00000,176.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3662"
           d="M 246.00000,178.00000 L 244.25000,176.25000 L 246.00000,178.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3664"
           d="M 258.00000,176.00000 L 259.75000,178.75000 L 258.00000,176.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3666"
           d="M 265.00000,178.00000 L 264.00000,176.00000 L 265.00000,178.00000 z "
           style="fill:#0b0b0b;stroke:#0b0b0b" />
        <path
           id="path3668"
           d="M 326.00000,176.00000 L 326.75000,178.75000 L 326.00000,176.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path3670"
           d="M 924.00000,176.00000 L 922.25000,176.75000 L 924.00000,176.00000 z "
           style="fill:#090909;stroke:#090909" />
        <path
           id="path3672"
           d="M 915.00000,179.00000 L 915.25000,178.25000 L 919.75000,177.25000 L 915.00000,179.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path3674"
           d="M 247.00000,179.00000 L 246.00000,178.00000 L 247.00000,179.00000 z "
           style="fill:#0b0b0b;stroke:#0b0b0b" />
        <path
           id="path3676"
           d="M 371.00000,178.00000 L 369.75000,183.75000 L 369.25000,183.75000 L 370.25000,178.25000 L 371.00000,178.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path3678"
           d="M 248.00000,180.00000 L 247.00000,179.00000 L 248.00000,180.00000 z "
           style="fill:#060606;stroke:#060606" />
        <path
           id="path3680"
           d="M 297.00000,179.00000 L 297.75000,180.75000 L 297.00000,179.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3682"
           d="M 915.00000,179.00000 L 913.00000,180.00000 L 915.00000,179.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3684"
           d="M 250.00000,182.00000 L 248.00000,180.00000 L 250.00000,182.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3686"
           d="M 260.00000,180.00000 L 261.75000,181.75000 L 260.00000,180.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3688"
           d="M 479.00000,180.00000 L 480.75000,180.75000 L 479.00000,180.00000 z "
           style="fill:#141414;stroke:#141414" />
        <path
           id="path3690"
           d="M 913.00000,180.00000 L 911.00000,181.00000 L 913.00000,180.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path3692"
           d="M 911.00000,181.00000 L 909.00000,182.00000 L 911.00000,181.00000 z "
           style="fill:#0b0b0b;stroke:#0b0b0b" />
        <path
           id="path3694"
           d="M 933.00000,182.00000 L 934.75000,181.25000 L 933.00000,182.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3696"
           d="M 1040.0000,182.00000 L 1042.7500,181.25000 L 1040.0000,182.00000 z "
           style="fill:#969696;stroke:#969696" />
        <path
           id="path3698"
           d="M 251.00000,183.00000 L 250.00000,182.00000 L 251.00000,183.00000 z "
           style="fill:#141414;stroke:#141414" />
        <path
           id="path3700"
           d="M 312.00000,182.00000 L 313.75000,182.75000 L 312.00000,182.00000 z "
           style="fill:#141414;stroke:#141414" />
        <path
           id="path3702"
           d="M 909.00000,182.00000 L 907.00000,183.00000 L 909.00000,182.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path3704"
           d="M 933.00000,182.00000 L 931.25000,182.75000 L 933.00000,182.00000 z "
           style="fill:#0b0b0b;stroke:#0b0b0b" />
        <path
           id="path3706"
           d="M 1040.0000,182.00000 L 1039.7500,182.75000 L 1031.0000,187.00000 L 1030.2500,186.75000 C 1032.3180,183.91400 1036.3320,182.10900 1040.0000,182.00000 z "
           style="fill:#949494;stroke:#949494" />
        <path
           id="path3708"
           d="M 252.00000,184.00000 L 251.00000,183.00000 L 252.00000,184.00000 z "
           style="fill:#0b0b0b;stroke:#0b0b0b" />
        <path
           id="path3710"
           d="M 265.00000,186.00000 L 263.25000,183.25000 L 265.00000,186.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3712"
           d="M 479.00000,186.00000 L 479.75000,183.25000 L 479.00000,186.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3714"
           d="M 907.00000,183.00000 L 905.00000,184.00000 L 907.00000,183.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3716"
           d="M 929.00000,183.00000 C 930.88500,182.86020 928.86030,184.88500 929.00000,183.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path3718"
           d="M 215.00000,185.00000 L 213.25000,184.25000 L 215.00000,185.00000 z "
           style="fill:#080808;stroke:#080808" />
        <path
           id="path3720"
           d="M 255.00000,188.00000 L 252.00000,184.00000 L 255.00000,188.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path3722"
           d="M 301.00000,192.00000 C 300.58490,188.72400 300.75890,184.61500 304.75000,184.25000 C 305.46920,186.50700 305.28560,190.00500 302.25000,190.25000 L 301.00000,192.00000 z "
           style="fill:#090909;stroke:#090909" />
        <path
           id="path3724"
           d="M 312.00000,184.00000 C 314.36200,185.03200 312.37060,188.09700 311.75000,189.75000 L 311.25000,189.75000 L 312.00000,184.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3726"
           d="M 905.00000,184.00000 C 905.13980,185.88500 903.11500,183.86020 905.00000,184.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path3728"
           d="M 927.00000,184.00000 C 928.88500,183.86020 926.86030,185.88500 927.00000,184.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path3730"
           d="M 1046.0000,184.00000 C 1050.9140,183.88000 1043.0280,188.04700 1046.0000,184.00000 z "
           style="fill:#999999;stroke:#999999" />
        <path
           id="path3732"
           d="M 219.00000,187.00000 L 215.00000,185.00000 L 219.00000,187.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3734"
           d="M 923.00000,186.00000 L 924.75000,185.25000 L 923.00000,186.00000 z "
           style="fill:#0b0b0b;stroke:#0b0b0b" />
        <path
           id="path3736"
           d="M 479.00000,186.00000 C 479.13970,187.88500 477.11500,185.86020 479.00000,186.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3738"
           d="M 900.00000,186.00000 C 901.88500,185.86020 899.86030,187.88500 900.00000,186.00000 z "
           style="fill:#121212;stroke:#121212" />
        <path
           id="path3740"
           d="M 923.00000,186.00000 L 920.25000,186.75000 L 923.00000,186.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3742"
           d="M 221.00000,188.00000 L 219.00000,187.00000 L 221.00000,188.00000 z "
           style="fill:#0b0b0b;stroke:#0b0b0b" />
        <path
           id="path3744"
           d="M 223.00000,189.00000 L 221.00000,188.00000 L 223.00000,189.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path3746"
           d="M 916.00000,188.00000 L 917.75000,188.75000 L 916.00000,188.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3748"
           d="M 224.00000,190.00000 L 223.00000,189.00000 L 224.00000,190.00000 z "
           style="fill:#0b0b0b;stroke:#0b0b0b" />
        <path
           id="path3750"
           d="M 226.00000,192.00000 L 224.00000,190.00000 L 226.00000,192.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3752"
           d="M 228.00000,194.00000 L 226.00000,192.00000 L 228.00000,194.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3754"
           d="M 301.00000,192.00000 C 301.13970,193.88500 299.11500,191.86020 301.00000,192.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3756"
           d="M 229.00000,195.00000 L 228.00000,194.00000 L 229.00000,195.00000 z "
           style="fill:#060606;stroke:#060606" />
        <path
           id="path3758"
           d="M 230.00000,196.00000 L 229.00000,195.00000 L 230.00000,196.00000 z "
           style="fill:#0b0b0b;stroke:#0b0b0b" />
        <path
           id="path3760"
           d="M 231.00000,197.00000 L 230.00000,196.00000 L 231.00000,197.00000 z "
           style="fill:#131313;stroke:#131313" />
        <path
           id="path3762"
           d="M 232.00000,198.00000 L 231.00000,197.00000 L 232.00000,198.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path3764"
           d="M 233.00000,199.00000 L 232.00000,198.00000 L 233.00000,199.00000 z "
           style="fill:#121212;stroke:#121212" />
        <path
           id="path3766"
           d="M 234.00000,200.00000 L 233.00000,199.00000 L 234.00000,200.00000 z "
           style="fill:#0b0b0b;stroke:#0b0b0b" />
        <path
           id="path3768"
           d="M 235.00000,201.00000 L 234.00000,200.00000 L 235.00000,201.00000 z "
           style="fill:#0b0b0b;stroke:#0b0b0b" />
        <path
           id="path3770"
           d="M 1013.0000,200.00000 L 1016.7500,200.25000 L 1010.7500,205.75000 L 1009.2500,205.75000 L 1011.2500,203.25000 L 1013.0000,200.00000 z "
           style="fill:#b2b2b2;stroke:#b2b2b2" />
        <path
           id="path3772"
           d="M 196.00000,201.00000 C 197.88500,200.86020 195.86020,202.88500 196.00000,201.00000 z "
           style="fill:#141414;stroke:#141414" />
        <path
           id="path3774"
           d="M 235.00000,201.00000 C 236.88500,200.86020 234.86020,202.88500 235.00000,201.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3776"
           d="M 201.00000,204.00000 L 198.25000,202.25000 L 201.00000,204.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path3778"
           d="M 204.00000,206.00000 L 201.00000,204.00000 L 204.00000,206.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3780"
           d="M 204.00000,206.00000 C 205.44900,205.58270 207.61200,207.21300 206.75000,208.75000 L 204.00000,206.00000 z "
           style="fill:#121212;stroke:#121212" />
        <path
           id="path3782"
           d="M 209.00000,210.00000 C 207.11500,210.13980 209.13980,208.11500 209.00000,210.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3784"
           d="M 275.00000,209.00000 C 276.88500,208.86020 274.86030,210.88500 275.00000,209.00000 z "
           style="fill:#131313;stroke:#131313" />
        <path
           id="path3786"
           d="M 1033.0000,209.00000 L 1036.2500,212.75000 L 1043.7500,210.25000 L 1021.7500,227.75000 C 1015.4790,231.03400 1010.6700,236.78400 1006.2500,242.25000 L 1006.2500,244.75000 L 1007.2500,245.75000 L 1013.2500,246.25000 L 1024.7500,236.75000 L 1043.7500,226.25000 L 1045.7500,227.75000 L 1041.7500,233.75000 C 1030.5500,239.25700 1023.0900,250.34000 1016.2500,260.25000 L 1015.2500,264.75000 L 1017.7500,266.75000 L 1017.0000,272.00000 L 1016.2500,271.75000 L 1009.7500,255.25000 L 1000.0000,239.00000 L 1006.7500,231.75000 L 1031.7500,210.75000 L 1033.0000,209.00000 z "
           style="fill:#e2e2e2;stroke:#e2e2e2" />
        <path
           id="path3788"
           d="M 210.00000,211.00000 L 209.00000,210.00000 L 210.00000,211.00000 z "
           style="fill:#0b0b0b;stroke:#0b0b0b" />
        <path
           id="path3790"
           d="M 198.00000,212.00000 L 194.25000,211.25000 L 198.00000,212.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3792"
           d="M 211.00000,212.00000 L 210.00000,211.00000 L 211.00000,212.00000 z "
           style="fill:#060606;stroke:#060606" />
        <path
           id="path3794"
           d="M 200.00000,213.00000 L 198.00000,212.00000 L 200.00000,213.00000 z "
           style="fill:#0a0a0a;stroke:#0a0a0a" />
        <path
           id="path3796"
           d="M 211.00000,212.00000 L 212.75000,213.75000 L 211.00000,212.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3798"
           d="M 202.00000,214.00000 L 200.00000,213.00000 L 202.00000,214.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path3800"
           d="M 202.00000,214.00000 L 203.75000,214.75000 L 202.00000,214.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3802"
           d="M 1045.0000,214.00000 C 1048.0350,214.78120 1043.5190,217.54600 1043.2500,215.25000 L 1044.0000,215.00000 L 1045.0000,214.00000 z "
           style="fill:#949494;stroke:#949494" />
        <path
           id="path3804"
           d="M 215.00000,216.00000 C 213.11500,216.13980 215.13980,214.11500 215.00000,216.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path3806"
           d="M 209.00000,218.00000 L 206.25000,216.25000 L 209.00000,218.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path3808"
           d="M 216.00000,217.00000 L 215.00000,216.00000 L 216.00000,217.00000 z "
           style="fill:#060606;stroke:#060606" />
        <path
           id="path3810"
           d="M 218.00000,219.00000 L 216.00000,217.00000 L 218.00000,219.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3812"
           d="M 193.00000,218.00000 C 194.88500,217.86020 192.86020,219.88500 193.00000,218.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3814"
           d="M 209.00000,218.00000 C 210.88500,217.86020 208.86020,219.88500 209.00000,218.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3816"
           d="M 198.00000,220.00000 L 195.25000,219.25000 L 198.00000,220.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path3818"
           d="M 211.00000,219.00000 L 212.75000,220.75000 L 211.00000,219.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path3820"
           d="M 219.00000,220.00000 L 218.00000,219.00000 L 219.00000,220.00000 z "
           style="fill:#141414;stroke:#141414" />
        <path
           id="path3822"
           d="M 203.00000,222.00000 L 198.00000,220.00000 L 203.00000,222.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3824"
           d="M 225.00000,226.00000 C 221.50900,226.75590 219.26400,222.85100 219.00000,220.00000 C 221.86400,220.91140 224.08900,223.13600 225.00000,226.00000 z "
           style="fill:#0a0a0a;stroke:#0a0a0a" />
        <path
           id="path3826"
           d="M 217.00000,224.00000 C 215.55100,224.41730 213.38800,222.78700 214.25000,221.25000 L 217.00000,224.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3828"
           d="M 205.00000,223.00000 L 203.00000,222.00000 L 205.00000,223.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3830"
           d="M 207.00000,224.00000 L 205.00000,223.00000 L 207.00000,224.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3832"
           d="M 1016.0000,238.00000 L 1022.7500,231.75000 C 1026.6060,227.34500 1031.7610,224.83200 1037.0000,223.00000 L 1038.7500,223.25000 L 1038.7500,223.75000 L 1017.7500,237.75000 L 1016.0000,238.00000 z "
           style="fill:#b0b0b0;stroke:#b0b0b0" />
        <path
           id="path3834"
           d="M 182.00000,224.00000 L 190.75000,228.75000 L 190.00000,229.00000 L 182.00000,224.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3836"
           d="M 207.00000,224.00000 C 208.88500,223.86020 206.86020,225.88500 207.00000,224.00000 z "
           style="fill:#070707;stroke:#070707" />
        <path
           id="path3838"
           d="M 217.00000,224.00000 C 218.88500,223.86020 216.86020,225.88500 217.00000,224.00000 z "
           style="fill:#121212;stroke:#121212" />
        <path
           id="path3840"
           d="M 213.00000,229.00000 L 209.25000,226.25000 L 213.00000,229.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3842"
           d="M 226.00000,227.00000 L 225.00000,226.00000 L 226.00000,227.00000 z "
           style="fill:#060606;stroke:#060606" />
        <path
           id="path3844"
           d="M 229.00000,229.00000 L 226.00000,227.00000 L 229.00000,229.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path3846"
           d="M 193.00000,230.00000 C 191.11500,230.13980 193.13980,228.11500 193.00000,230.00000 z "
           style="fill:#141414;stroke:#141414" />
        <path
           id="path3848"
           d="M 213.00000,229.00000 L 214.75000,230.75000 L 213.00000,229.00000 z "
           style="fill:#131313;stroke:#131313" />
        <path
           id="path3850"
           d="M 230.00000,230.00000 L 229.00000,229.00000 L 230.00000,230.00000 z "
           style="fill:#060606;stroke:#060606" />
        <path
           id="path3852"
           d="M 195.00000,231.00000 L 193.00000,230.00000 L 195.00000,231.00000 z "
           style="fill:#0b0b0b;stroke:#0b0b0b" />
        <path
           id="path3854"
           d="M 232.00000,233.00000 L 230.00000,230.00000 L 232.00000,233.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3856"
           d="M 195.00000,231.00000 C 196.16200,230.83550 198.85900,230.81980 197.75000,232.75000 L 195.00000,231.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3858"
           d="M 217.00000,232.00000 C 215.11500,232.13980 217.13980,230.11500 217.00000,232.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path3860"
           d="M 220.00000,234.00000 L 217.00000,232.00000 L 220.00000,234.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3862"
           d="M 202.00000,235.00000 L 199.25000,233.25000 L 202.00000,235.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3864"
           d="M 233.00000,234.00000 L 232.00000,233.00000 L 233.00000,234.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3866"
           d="M 220.00000,234.00000 L 221.75000,235.75000 L 220.00000,234.00000 z "
           style="fill:#131313;stroke:#131313" />
        <path
           id="path3868"
           d="M 234.00000,235.00000 L 233.00000,234.00000 L 234.00000,235.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3870"
           d="M 179.00000,236.00000 L 177.25000,235.25000 L 179.00000,236.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3872"
           d="M 204.00000,236.00000 L 202.00000,235.00000 L 204.00000,236.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3874"
           d="M 236.00000,237.00000 L 234.00000,235.00000 L 236.00000,237.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3876"
           d="M 1040.0000,240.00000 L 1041.2500,238.25000 L 1050.7500,235.25000 L 1041.7500,239.75000 L 1040.0000,240.00000 z "
           style="fill:#a1a1a1;stroke:#a1a1a1" />
        <path
           id="path3878"
           d="M 1064.0000,235.00000 L 1066.7500,235.75000 C 1061.2670,238.19900 1056.3100,241.50000 1052.2500,246.25000 L 1052.7500,247.75000 L 1050.7500,249.75000 L 1044.7500,252.75000 L 1029.7500,260.75000 L 1028.2500,260.75000 L 1054.2500,239.25000 L 1064.0000,235.00000 z "
           style="fill:#cacaca;stroke:#cacaca" />
        <path
           id="path3880"
           d="M 183.00000,238.00000 L 179.00000,236.00000 L 183.00000,238.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path3882"
           d="M 205.00000,237.00000 L 204.00000,236.00000 L 205.00000,237.00000 z "
           style="fill:#0a0a0a;stroke:#0a0a0a" />
        <path
           id="path3884"
           d="M 224.00000,237.00000 C 222.11500,237.13980 224.13980,235.11500 224.00000,237.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path3886"
           d="M 208.00000,239.00000 L 205.00000,237.00000 L 208.00000,239.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path3888"
           d="M 225.00000,238.00000 L 224.00000,237.00000 L 225.00000,238.00000 z "
           style="fill:#121212;stroke:#121212" />
        <path
           id="path3890"
           d="M 237.00000,238.00000 L 236.00000,237.00000 L 237.00000,238.00000 z "
           style="fill:#0b0b0b;stroke:#0b0b0b" />
        <path
           id="path3892"
           d="M 183.00000,238.00000 C 184.88500,237.86020 182.86020,239.88500 183.00000,238.00000 z "
           style="fill:#141414;stroke:#141414" />
        <path
           id="path3894"
           d="M 226.00000,239.00000 L 225.00000,238.00000 L 226.00000,239.00000 z "
           style="fill:#0b0b0b;stroke:#0b0b0b" />
        <path
           id="path3896"
           d="M 237.00000,238.00000 C 238.88500,237.86020 236.86020,239.88500 237.00000,238.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3898"
           d="M 1016.0000,238.00000 C 1016.1398,239.88500 1014.1150,237.86020 1016.0000,238.00000 z "
           style="fill:#959595;stroke:#959595" />
        <path
           id="path3900"
           d="M 186.00000,240.00000 C 184.11500,240.13980 186.13980,238.11500 186.00000,240.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path3902"
           d="M 208.00000,239.00000 C 209.88500,238.86020 207.86020,240.88500 208.00000,239.00000 z "
           style="fill:#0a0a0a;stroke:#0a0a0a" />
        <path
           id="path3904"
           d="M 227.00000,240.00000 L 226.00000,239.00000 L 227.00000,240.00000 z "
           style="fill:#0b0b0b;stroke:#0b0b0b" />
        <path
           id="path3906"
           d="M 186.00000,240.00000 L 187.75000,240.75000 L 186.00000,240.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3908"
           d="M 229.00000,242.00000 L 227.00000,240.00000 L 229.00000,242.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3910"
           d="M 1013.0000,240.00000 C 1014.8850,239.86020 1012.8603,241.88500 1013.0000,240.00000 z "
           style="fill:#919191;stroke:#919191" />
        <path
           id="path3912"
           d="M 1040.0000,240.00000 L 1037.0000,242.00000 L 1040.0000,240.00000 z "
           style="fill:#939393;stroke:#939393" />
        <path
           id="path3914"
           d="M 191.00000,243.00000 L 189.25000,241.25000 L 191.00000,243.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path3916"
           d="M 214.00000,244.00000 L 210.25000,241.25000 L 214.00000,244.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3918"
           d="M 229.00000,242.00000 L 230.75000,244.75000 L 229.00000,242.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3920"
           d="M 1037.0000,242.00000 C 1037.1398,243.88500 1035.1150,241.86020 1037.0000,242.00000 z "
           style="fill:#929292;stroke:#929292" />
        <path
           id="path3922"
           d="M 193.00000,244.00000 L 191.00000,243.00000 L 193.00000,244.00000 z "
           style="fill:#121212;stroke:#121212" />
        <path
           id="path3924"
           d="M 162.00000,244.00000 L 165.75000,245.25000 L 165.75000,245.75000 C 164.28800,246.59470 162.29800,245.61270 162.00000,244.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path3926"
           d="M 194.00000,245.00000 L 193.00000,244.00000 L 194.00000,245.00000 z "
           style="fill:#060606;stroke:#060606" />
        <path
           id="path3928"
           d="M 216.00000,246.00000 L 214.00000,244.00000 L 216.00000,246.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3930"
           d="M 197.00000,247.00000 L 194.00000,245.00000 L 197.00000,247.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path3932"
           d="M 168.00000,247.00000 C 166.11500,247.13980 168.13980,245.11500 168.00000,247.00000 z "
           style="fill:#141414;stroke:#141414" />
        <path
           id="path3934"
           d="M 217.00000,247.00000 L 216.00000,246.00000 L 217.00000,247.00000 z "
           style="fill:#000000;stroke:#000000" />
        <path
           id="path3936"
           d="M 232.00000,246.00000 L 232.75000,247.75000 L 232.00000,246.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3938"
           d="M 171.00000,248.00000 L 168.00000,247.00000 L 171.00000,248.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path3940"
           d="M 171.00000,248.00000 L 175.00000,247.00000 L 182.25000,250.75000 C 189.18900,251.78700 196.24000,254.39100 201.25000,259.75000 L 211.75000,266.25000 L 216.75000,271.25000 L 223.75000,279.25000 L 222.75000,282.75000 L 218.25000,278.75000 L 213.75000,271.25000 L 199.75000,260.25000 L 173.25000,249.75000 L 171.00000,248.00000 z "
           style="fill:#070707;stroke:#070707" />
        <path
           id="path3942"
           d="M 199.00000,248.00000 L 197.00000,247.00000 L 199.00000,248.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path3944"
           d="M 218.00000,248.00000 L 217.00000,247.00000 L 218.00000,248.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3946"
           d="M 201.00000,249.00000 L 199.00000,248.00000 L 201.00000,249.00000 z "
           style="fill:#0b0b0b;stroke:#0b0b0b" />
        <path
           id="path3948"
           d="M 219.00000,249.00000 L 218.00000,248.00000 L 219.00000,249.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3950"
           d="M 204.00000,251.00000 L 201.00000,249.00000 L 204.00000,251.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3952"
           d="M 225.00000,255.00000 L 219.00000,249.00000 C 221.66600,249.30680 224.69300,252.33400 225.00000,255.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3954"
           d="M 206.00000,252.00000 L 204.00000,251.00000 L 206.00000,252.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3956"
           d="M 475.00000,310.00000 L 461.00000,297.00000 C 456.87400,300.63600 464.36600,306.80200 466.00000,311.00000 L 470.75000,324.75000 L 466.75000,319.25000 L 461.75000,310.25000 C 460.03100,307.16500 458.97800,302.32200 455.25000,301.25000 L 454.00000,304.00000 C 459.40000,313.31900 465.74000,322.82000 465.75000,333.75000 L 460.25000,323.75000 C 456.11400,317.79600 454.68200,306.43000 446.25000,305.25000 L 458.25000,330.75000 L 459.75000,335.75000 L 444.00000,309.00000 L 442.25000,310.25000 L 444.00000,314.00000 C 446.95400,318.03900 450.57900,322.73400 450.75000,327.75000 L 449.75000,326.25000 L 444.75000,317.25000 C 442.61500,315.59000 441.90500,310.83000 438.25000,312.25000 L 437.25000,313.75000 C 444.15600,323.90000 452.72000,335.83000 451.25000,347.75000 L 449.00000,339.00000 L 444.25000,328.75000 L 436.75000,315.25000 C 430.30500,314.08800 435.91770,320.09300 435.75000,322.75000 L 433.25000,320.75000 L 430.25000,317.25000 L 429.00000,321.00000 C 436.00800,331.94000 441.84000,345.73000 442.25000,357.75000 C 436.61500,346.71000 435.61300,331.10000 424.25000,324.25000 L 431.75000,343.75000 L 426.75000,334.25000 C 424.24500,331.60500 419.67000,322.49000 416.00000,328.00000 C 425.28600,335.62300 430.23000,348.27000 431.75000,359.75000 L 424.75000,348.25000 L 413.25000,336.75000 C 409.46000,333.81700 409.44800,339.54400 411.75000,341.25000 L 423.00000,359.00000 C 424.85900,362.21400 422.06760,362.54900 419.25000,361.75000 C 416.03700,357.06500 413.24900,344.75000 407.25000,347.25000 L 416.75000,366.75000 L 404.25000,347.75000 C 403.04600,346.84040 401.59000,343.83300 400.25000,346.25000 L 414.00000,378.00000 L 408.25000,367.75000 L 402.25000,355.75000 C 403.14110,351.96400 396.85900,351.96400 397.75000,355.75000 C 395.96200,355.43360 393.74000,352.64300 392.25000,355.25000 L 398.75000,369.75000 L 396.00000,368.00000 L 393.00000,369.00000 C 396.04900,373.67100 398.53200,379.01000 398.75000,384.75000 C 395.54500,377.14600 390.73100,371.37000 383.25000,369.25000 L 385.75000,378.75000 L 374.25000,373.25000 L 379.75000,384.75000 L 371.25000,380.25000 L 379.75000,397.75000 L 367.25000,384.25000 L 368.75000,389.25000 L 357.25000,388.25000 L 362.75000,401.75000 L 357.75000,397.25000 L 353.00000,391.00000 L 383.75000,355.75000 C 414.48000,311.86000 454.81000,268.88000 507.05000,253.95000 C 518.72000,252.35000 530.29000,250.23600 542.05000,252.95000 C 573.72000,249.92000 604.62000,264.88000 627.80000,285.20000 L 641.80000,297.20000 C 645.45600,305.38600 645.98400,316.30000 644.30000,324.70000 C 641.49300,317.63600 643.00000,304.58000 635.30000,302.20000 L 634.30000,304.70000 C 632.19300,299.51300 629.78500,293.16000 623.30000,295.20000 C 624.44000,297.78000 625.75100,307.74000 622.05000,302.95000 L 620.05000,288.95000 L 618.05000,304.95000 L 616.80000,312.70000 L 610.80000,276.20000 C 609.36300,275.64470 606.32200,275.52340 607.05000,277.95000 L 605.30000,291.70000 C 606.36500,295.33100 609.53400,300.67600 607.05000,303.95000 L 601.80000,293.20000 L 598.80000,277.20000 L 588.30000,263.20000 L 586.05000,286.95000 L 588.05000,296.95000 L 587.05000,299.95000 L 574.80000,261.20000 L 571.30000,262.20000 C 572.86800,265.82000 576.13700,269.25300 574.80000,273.70000 C 574.30660,271.98000 571.92300,263.50000 569.05000,268.95000 L 571.80000,284.70000 L 565.05000,272.95000 L 563.05000,274.95000 C 566.52100,285.00000 574.48000,294.95000 571.80000,305.70000 L 559.05000,278.95000 L 554.30000,268.70000 L 551.05000,263.95000 C 545.65600,266.37500 557.85800,276.83000 549.30000,276.20000 L 548.30000,277.70000 C 550.94600,282.43000 555.72900,286.84300 554.80000,292.70000 L 550.05000,285.95000 L 544.80000,276.20000 L 540.30000,275.20000 L 551.80000,302.70000 L 530.80000,272.20000 L 528.80000,273.70000 L 534.05000,283.95000 L 539.05000,294.95000 L 538.80000,299.70000 L 520.30000,271.20000 L 520.05000,273.95000 C 523.01500,276.80100 523.03600,280.16100 522.30000,283.70000 L 525.05000,294.95000 L 524.80000,300.70000 C 516.94700,297.07700 521.11200,280.72000 511.30000,279.20000 L 516.80000,299.70000 C 502.43000,300.29780 505.42000,274.70000 494.30000,270.20000 L 503.80000,295.70000 L 490.80000,287.20000 L 486.30000,282.70000 C 485.13300,279.99000 479.41400,280.30900 480.30000,283.70000 C 485.59100,285.21700 495.25000,295.78000 490.30000,298.20000 C 488.93800,300.29300 488.07400,299.63800 487.30000,297.70000 C 485.94000,295.68000 485.11900,289.52100 481.80000,291.70000 C 467.12000,278.69000 486.47300,307.73000 475.30000,307.20000 L 475.05000,309.95000 L 475.00000,310.00000 z "
           style="fill:#e8e8e8;stroke:#e8e8e8" />
        <path
           id="path3958"
           d="M 209.00000,254.00000 L 206.00000,252.00000 L 209.00000,254.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path3960"
           d="M 1052.0000,253.00000 L 1059.7500,253.25000 L 1054.0000,256.00000 L 1045.2500,259.25000 L 1042.7500,262.75000 C 1035.2180,266.13600 1027.7500,270.79000 1022.2500,276.75000 L 1024.2500,278.75000 L 1043.2500,266.25000 L 1057.0000,260.00000 L 1068.7500,257.25000 L 1059.2500,261.25000 L 1058.7500,265.75000 L 1023.2500,282.25000 L 1023.2500,284.75000 L 1038.2500,278.25000 L 1054.0000,272.00000 C 1057.2700,269.88400 1060.1660,270.32800 1063.7500,271.25000 C 1060.0990,272.71000 1054.5410,273.41900 1051.7500,277.75000 C 1044.9010,277.85760 1039.2000,281.79000 1034.2500,286.25000 L 1042.7500,286.25000 L 1023.2500,300.25000 L 1031.7500,299.25000 L 1031.7500,301.75000 L 1021.2500,307.75000 L 1019.2500,276.25000 C 1027.6500,265.58000 1040.1700,257.94000 1052.0000,253.00000 z "
           style="fill:#d2d2d2;stroke:#d2d2d2" />
        <path
           id="path3962"
           d="M 211.00000,256.00000 L 209.00000,254.00000 L 211.00000,256.00000 z "
           style="fill:#0a0a0a;stroke:#0a0a0a" />
        <path
           id="path3964"
           d="M 228.00000,258.00000 C 226.30900,258.41220 224.58800,256.69100 225.00000,255.00000 L 228.00000,258.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3966"
           d="M 213.00000,257.00000 L 211.00000,256.00000 L 213.00000,257.00000 z "
           style="fill:#121212;stroke:#121212" />
        <path
           id="path3968"
           d="M 214.00000,258.00000 L 213.00000,257.00000 L 214.00000,258.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path3970"
           d="M 214.00000,258.00000 C 215.88500,257.86030 213.86020,259.88500 214.00000,258.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3972"
           d="M 231.00000,262.00000 L 228.00000,258.00000 L 231.00000,262.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3974"
           d="M 218.00000,262.00000 L 216.25000,259.25000 L 218.00000,262.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3976"
           d="M 720.00000,259.00000 L 722.75000,260.25000 L 723.00000,264.00000 L 724.00000,278.00000 L 722.75000,284.75000 L 721.25000,285.75000 L 721.00000,262.00000 L 720.00000,259.00000 z "
           style="fill:#bfbfbf;stroke:#bfbfbf" />
        <path
           id="path3978"
           d="M 727.00000,259.00000 L 729.75000,259.25000 L 732.00000,265.00000 L 733.00000,271.00000 L 732.00000,273.00000 C 733.60700,276.78000 733.60700,282.22000 732.00000,286.00000 L 731.75000,291.75000 L 729.75000,295.75000 L 729.25000,295.75000 L 729.00000,276.00000 L 728.00000,269.00000 L 727.00000,259.00000 z "
           style="fill:#cecece;stroke:#cecece" />
        <path
           id="path3980"
           d="M 734.00000,259.00000 C 735.86400,258.66790 739.66700,258.99954 738.75000,261.75000 L 738.25000,261.75000 L 734.00000,259.00000 z "
           style="fill:#a0a0a0;stroke:#a0a0a0" />
        <path
           id="path3982"
           d="M 165.00000,264.00000 L 157.25000,261.75000 L 157.25000,261.25000 L 162.00000,262.00000 L 165.00000,264.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path3984"
           d="M 220.00000,264.00000 L 218.00000,262.00000 L 220.00000,264.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path3986"
           d="M 232.00000,263.00000 L 231.00000,262.00000 L 232.00000,263.00000 z "
           style="fill:#121212;stroke:#121212" />
        <path
           id="path3988"
           d="M 707.00000,262.00000 C 710.20000,261.45100 708.87600,265.94600 708.75000,267.75000 C 704.95600,269.45300 705.52200,263.73800 707.00000,262.00000 z "
           style="fill:#b2b2b2;stroke:#b2b2b2" />
        <path
           id="path3990"
           d="M 1068.0000,262.00000 L 1070.7500,262.75000 L 1068.0000,262.00000 z "
           style="fill:#959595;stroke:#959595" />
        <path
           id="path3992"
           d="M 233.00000,264.00000 L 232.00000,263.00000 L 233.00000,264.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path3994"
           d="M 168.00000,265.00000 L 165.00000,264.00000 L 168.00000,265.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path3996"
           d="M 221.00000,265.00000 L 220.00000,264.00000 L 221.00000,265.00000 z "
           style="fill:#141414;stroke:#141414" />
        <path
           id="path3998"
           d="M 234.00000,265.00000 L 233.00000,264.00000 L 234.00000,265.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path4000"
           d="M 169.00000,266.00000 L 168.00000,265.00000 L 169.00000,266.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path4002"
           d="M 186.00000,266.00000 L 182.25000,265.25000 L 186.00000,266.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path4004"
           d="M 224.00000,269.00000 L 221.00000,265.00000 L 224.00000,269.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path4006"
           d="M 235.00000,266.00000 L 234.00000,265.00000 L 235.00000,266.00000 z "
           style="fill:#131313;stroke:#131313" />
        <path
           id="path4008"
           d="M 745.00000,265.00000 L 750.25000,267.75000 L 758.25000,271.75000 L 762.75000,271.25000 L 766.00000,278.00000 L 764.75000,287.75000 L 763.00000,289.00000 L 761.75000,285.25000 C 759.44600,284.08200 757.74300,281.60800 758.75000,279.25000 L 756.00000,275.00000 L 754.00000,271.00000 C 751.51800,271.50570 751.64200,274.48500 753.00000,276.00000 L 752.00000,284.00000 L 750.75000,275.25000 C 747.71700,275.32651 744.81300,274.89960 746.00000,271.00000 C 744.61000,269.22600 742.97700,267.09800 745.00000,265.00000 z "
           style="fill:#d0d0d0;stroke:#d0d0d0" />
        <path
           id="path4010"
           d="M 173.00000,268.00000 L 169.00000,266.00000 L 173.00000,268.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path4012"
           d="M 188.00000,267.00000 L 186.00000,266.00000 L 188.00000,267.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path4014"
           d="M 235.00000,266.00000 C 236.88500,265.86030 234.86020,267.88500 235.00000,266.00000 z "
           style="fill:#141414;stroke:#141414" />
        <path
           id="path4016"
           d="M 759.00000,266.00000 L 761.75000,267.75000 L 759.00000,266.00000 z "
           style="fill:#979797;stroke:#979797" />
        <path
           id="path4018"
           d="M 190.00000,268.00000 L 188.00000,267.00000 L 190.00000,268.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path4020"
           d="M 175.00000,269.00000 L 173.00000,268.00000 L 175.00000,269.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path4022"
           d="M 190.00000,268.00000 L 191.75000,268.75000 L 190.00000,268.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path4024"
           d="M 177.00000,270.00000 L 175.00000,269.00000 L 177.00000,270.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path4026"
           d="M 224.00000,269.00000 L 226.75000,272.75000 L 224.00000,269.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path4028"
           d="M 691.00000,269.00000 C 696.30700,269.48830 693.38000,277.17600 693.75000,280.75000 L 690.25000,280.75000 C 687.85800,277.03700 689.23700,272.53600 691.00000,269.00000 z "
           style="fill:#cecece;stroke:#cecece" />
        <path
           id="path4030"
           d="M 178.00000,271.00000 L 177.00000,270.00000 L 178.00000,271.00000 z "
           style="fill:#060606;stroke:#060606" />
        <path
           id="path4032"
           d="M 196.00000,271.00000 L 194.25000,270.25000 L 196.00000,271.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path4034"
           d="M 182.00000,273.00000 L 178.00000,271.00000 L 182.00000,273.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path4036"
           d="M 199.00000,273.00000 L 196.00000,271.00000 L 199.00000,273.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path4038"
           d="M 702.00000,271.00000 L 704.00000,272.00000 L 711.75000,272.25000 L 711.00000,279.00000 C 711.10450,281.06100 711.53890,285.60500 708.25000,284.75000 L 707.75000,280.25000 L 705.25000,280.25000 L 702.75000,288.75000 L 702.25000,288.75000 L 702.00000,281.00000 C 700.44100,278.14300 700.44100,273.85700 702.00000,271.00000 z "
           style="fill:#d0d0d0;stroke:#d0d0d0" />
        <path
           id="path4040"
           d="M 185.00000,275.00000 L 182.00000,273.00000 L 185.00000,275.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path4042"
           d="M 203.00000,275.00000 L 199.00000,273.00000 L 203.00000,275.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path4044"
           d="M 681.00000,273.00000 L 682.00000,275.00000 L 677.00000,290.00000 L 675.75000,299.75000 L 675.25000,299.75000 L 675.00000,294.00000 L 676.00000,292.00000 L 677.00000,283.00000 C 676.56450,279.01900 678.57600,275.84500 681.00000,273.00000 z "
           style="fill:#a9a9a9;stroke:#a9a9a9" />
        <path
           id="path4046"
           d="M 229.00000,275.00000 C 227.11500,275.13970 229.13980,273.11500 229.00000,275.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path4048"
           d="M 775.00000,274.00000 C 782.05800,275.33000 777.88000,284.91000 779.00000,290.00000 L 778.25000,290.75000 L 777.75000,281.25000 C 774.00700,280.83850 775.12300,276.60600 775.00000,274.00000 z "
           style="fill:#aeaeae;stroke:#aeaeae" />
        <path
           id="path4050"
           d="M 187.00000,276.00000 L 185.00000,275.00000 L 187.00000,276.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path4052"
           d="M 206.00000,277.00000 L 203.00000,275.00000 L 206.00000,277.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path4054"
           d="M 229.00000,275.00000 C 230.88500,274.86030 228.86020,276.88500 229.00000,275.00000 z "
           style="fill:#090909;stroke:#090909" />
        <path
           id="path4056"
           d="M 189.00000,277.00000 L 187.00000,276.00000 L 189.00000,277.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path4058"
           d="M 190.00000,278.00000 L 189.00000,277.00000 L 190.00000,278.00000 z "
           style="fill:#0b0b0b;stroke:#0b0b0b" />
        <path
           id="path4060"
           d="M 209.00000,279.00000 L 206.00000,277.00000 L 209.00000,279.00000 z "
           style="fill:#121212;stroke:#121212" />
        <path
           id="path4062"
           d="M 192.00000,279.00000 L 190.00000,278.00000 L 192.00000,279.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path4064"
           d="M 746.00000,278.00000 L 746.75000,278.25000 L 744.75000,294.75000 L 743.25000,296.75000 L 743.00000,295.00000 L 745.00000,285.00000 L 746.00000,278.00000 z "
           style="fill:#969696;stroke:#969696" />
        <path
           id="path4066"
           d="M 1066.0000,278.00000 L 1069.7500,278.75000 L 1056.0000,284.00000 L 1054.2500,283.75000 L 1055.7500,282.75000 L 1060.2500,280.25000 L 1066.0000,278.00000 z "
           style="fill:#9a9a9a;stroke:#9a9a9a" />
        <path
           id="path4068"
           d="M 194.00000,280.00000 L 192.00000,279.00000 L 194.00000,280.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path4070"
           d="M 210.00000,280.00000 L 209.00000,279.00000 L 210.00000,280.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path4072"
           d="M 672.00000,279.00000 L 672.75000,283.75000 L 672.00000,284.00000 C 669.39000,281.26300 666.59400,285.52900 668.75000,287.75000 L 667.75000,288.75000 L 662.25000,285.25000 L 671.75000,279.75000 L 672.00000,279.00000 z "
           style="fill:#c1c1c1;stroke:#c1c1c1" />
        <path
           id="path4074"
           d="M 783.00000,279.00000 L 786.75000,279.25000 C 786.67474,283.43500 789.08200,290.84000 783.25000,291.75000 L 783.00000,279.00000 z "
           style="fill:#c8c8c8;stroke:#c8c8c8" />
        <path
           id="path4076"
           d="M 197.00000,282.00000 L 194.00000,280.00000 L 197.00000,282.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path4078"
           d="M 213.00000,282.00000 L 210.00000,280.00000 L 213.00000,282.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path4080"
           d="M 199.00000,283.00000 L 197.00000,282.00000 L 199.00000,283.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path4082"
           d="M 214.00000,283.00000 L 213.00000,282.00000 L 214.00000,283.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path4084"
           d="M 199.00000,283.00000 C 200.88500,282.86030 198.86020,284.88500 199.00000,283.00000 z "
           style="fill:#0b0b0b;stroke:#0b0b0b" />
        <path
           id="path4086"
           d="M 217.00000,285.00000 L 214.00000,283.00000 L 217.00000,285.00000 z "
           style="fill:#131313;stroke:#131313" />
        <path
           id="path4088"
           d="M 793.00000,283.00000 C 794.92100,282.38660 796.98500,283.63060 795.75000,285.75000 C 794.21300,286.61220 792.58300,284.44900 793.00000,283.00000 z "
           style="fill:#adadad;stroke:#adadad" />
        <path
           id="path4090"
           d="M 202.00000,285.00000 C 200.11500,285.13970 202.13980,283.11500 202.00000,285.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path4092"
           d="M 593.00000,284.00000 L 593.75000,284.25000 L 594.75000,297.75000 L 593.25000,296.75000 L 593.00000,284.00000 z "
           style="fill:#b9b9b9;stroke:#b9b9b9" />
        <path
           id="path4094"
           d="M 203.00000,286.00000 L 202.00000,285.00000 L 203.00000,286.00000 z "
           style="fill:#0a0a0a;stroke:#0a0a0a" />
        <path
           id="path4096"
           d="M 217.00000,285.00000 L 218.75000,285.75000 L 217.00000,285.00000 z "
           style="fill:#131313;stroke:#131313" />
        <path
           id="path4098"
           d="M 205.00000,287.00000 L 203.00000,286.00000 L 205.00000,287.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path4100"
           d="M 208.00000,289.00000 L 205.00000,287.00000 L 208.00000,289.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path4102"
           d="M 800.00000,288.00000 L 804.75000,289.25000 L 813.75000,295.25000 L 812.00000,301.00000 L 812.75000,310.75000 L 809.25000,311.75000 C 809.62800,307.89300 806.39300,302.81000 802.25000,305.75000 L 801.00000,296.00000 L 800.75000,291.25000 L 800.00000,288.00000 z "
           style="fill:#e4e4e4;stroke:#e4e4e4" />
        <path
           id="path4104"
           d="M 1047.0000,288.00000 L 1049.7500,289.75000 L 1037.0000,296.00000 L 1036.2500,295.75000 L 1037.2500,294.25000 L 1041.0000,292.00000 L 1046.7500,288.75000 L 1047.0000,288.00000 z "
           style="fill:#a1a1a1;stroke:#a1a1a1" />
        <path
           id="path4106"
           d="M 209.00000,290.00000 L 208.00000,289.00000 L 209.00000,290.00000 z "
           style="fill:#000000;stroke:#000000" />
        <path
           id="path4108"
           d="M 212.00000,292.00000 L 209.00000,290.00000 L 212.00000,292.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path4110"
           d="M 646.00000,290.00000 C 647.42500,289.78790 649.67100,289.88650 649.00000,292.00000 L 649.75000,296.75000 L 646.00000,290.00000 z "
           style="fill:#a2a2a2;stroke:#a2a2a2" />
        <path
           id="path4112"
           d="M 1052.0000,303.00000 L 1051.7500,303.75000 L 1028.2500,311.25000 L 1023.2500,312.75000 L 1024.2500,310.25000 C 1037.3200,301.80400 1051.8000,296.58000 1066.0000,291.00000 L 1077.7500,290.25000 L 1077.7500,290.75000 L 1058.0000,297.00000 L 1055.0000,298.00000 C 1051.4370,296.68400 1045.9950,302.68000 1052.0000,303.00000 z "
           style="fill:#c6c6c6;stroke:#c6c6c6" />
        <path
           id="path4114"
           d="M 212.00000,292.00000 C 213.88500,291.86030 211.86020,293.88500 212.00000,292.00000 z "
           style="fill:#121212;stroke:#121212" />
        <path
           id="path4116"
           d="M 640.00000,292.00000 C 641.83400,291.33470 642.55900,293.43100 641.75000,294.75000 L 640.00000,292.00000 z "
           style="fill:#999999;stroke:#999999" />
        <path
           id="path4118"
           d="M 498.00000,296.00000 L 499.75000,297.25000 L 506.75000,309.75000 L 505.75000,310.75000 L 503.25000,308.75000 L 498.00000,296.00000 z "
           style="fill:#ababab;stroke:#ababab" />
        <path
           id="path4120"
           d="M 783.00000,296.00000 L 783.75000,298.75000 L 783.00000,296.00000 z "
           style="fill:#a0a0a0;stroke:#a0a0a0" />
        <path
           id="path4122"
           d="M 188.00000,297.00000 L 190.00000,297.00000 L 190.75000,297.25000 L 199.75000,303.75000 L 194.25000,303.75000 C 194.52740,300.34300 190.94300,299.13800 188.25000,298.75000 L 188.00000,297.00000 z "
           style="fill:#090909;stroke:#090909" />
        <path
           id="path4124"
           d="M 651.00000,299.00000 L 651.75000,299.25000 C 652.68010,301.75400 656.13300,306.22300 652.25000,307.75000 L 651.00000,299.00000 z "
           style="fill:#acacac;stroke:#acacac" />
        <path
           id="path4126"
           d="M 714.00000,299.00000 C 715.16200,298.83550 717.85900,298.81970 716.75000,300.75000 C 715.43100,301.55890 713.33500,300.83368 714.00000,299.00000 z "
           style="fill:#999999;stroke:#999999" />
        <path
           id="path4128"
           d="M 544.00000,300.00000 L 544.75000,300.25000 L 548.00000,310.00000 L 548.75000,316.75000 L 547.25000,315.75000 L 545.00000,305.00000 L 544.00000,300.00000 z "
           style="fill:#b0b0b0;stroke:#b0b0b0" />
        <path
           id="path4130"
           d="M 599.00000,300.00000 L 600.75000,300.25000 C 603.94500,306.05200 603.07500,313.17000 602.75000,319.75000 L 602.25000,319.75000 L 599.00000,310.00000 L 599.00000,300.00000 z "
           style="fill:#c2c2c2;stroke:#c2c2c2" />
        <path
           id="path4132"
           d="M 818.00000,302.00000 L 824.75000,306.25000 L 824.75000,306.75000 L 822.75000,313.75000 L 819.25000,311.75000 L 818.00000,304.00000 L 818.00000,302.00000 z "
           style="fill:#c8c8c8;stroke:#c8c8c8" />
        <path
           id="path4134"
           d="M 658.00000,303.00000 C 659.31600,303.55180 662.08800,305.55400 659.75000,306.75000 L 658.00000,303.00000 z "
           style="fill:#9a9a9a;stroke:#9a9a9a" />
        <path
           id="path4136"
           d="M 204.00000,306.00000 L 201.25000,304.25000 L 204.00000,306.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path4138"
           d="M 591.00000,305.00000 L 592.75000,305.25000 L 592.75000,314.75000 L 592.25000,314.75000 L 591.00000,305.00000 z "
           style="fill:#adadad;stroke:#adadad" />
        <path
           id="path4140"
           d="M 207.00000,308.00000 L 204.00000,306.00000 L 207.00000,308.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path4142"
           d="M 1074.0000,307.00000 L 1096.0000,307.00000 C 1103.8030,307.19190 1111.9700,306.11470 1119.0000,309.00000 L 1122.7500,309.25000 L 1122.7500,311.75000 L 1120.0000,312.00000 L 1118.0000,311.00000 L 1073.0000,311.00000 L 1071.0000,312.00000 L 1061.0000,312.00000 L 1054.0000,314.00000 L 1051.2500,313.75000 L 1051.2500,310.25000 L 1073.0000,308.00000 L 1074.0000,307.00000 z "
           style="fill:#393939;stroke:#393939" />
        <path
           id="path4144"
           d="M 208.00000,309.00000 L 207.00000,308.00000 L 208.00000,309.00000 z "
           style="fill:#111111;stroke:#111111" />
        <path
           id="path4146"
           d="M 209.00000,310.00000 L 208.00000,309.00000 L 209.00000,310.00000 z "
           style="fill:#121212;stroke:#121212" />
        <path
           id="path4148"
           d="M 523.00000,309.00000 L 526.00000,315.00000 C 525.35270,317.67500 526.70610,319.70300 528.75000,321.25000 L 527.75000,323.75000 L 525.00000,318.00000 L 523.00000,309.00000 z "
           style="fill:#adadad;stroke:#adadad" />
        <path
           id="path4150"
           d="M 827.00000,309.00000 L 827.75000,309.25000 L 827.75000,316.75000 L 827.25000,316.75000 L 827.00000,309.00000 z "
           style="fill:#939393;stroke:#939393" />
        <path
           id="path4152"
           d="M 213.00000,313.00000 L 209.00000,310.00000 L 213.00000,313.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path4154"
           d="M 475.00000,310.00000 L 475.75000,310.25000 L 478.00000,319.00000 L 479.75000,330.75000 L 477.25000,328.75000 L 476.00000,317.00000 L 475.00000,310.00000 z "
           style="fill:#b2b2b2;stroke:#b2b2b2" />
        <path
           id="path4156"
           d="M 186.00000,312.00000 C 189.02100,312.37720 193.16500,312.99350 194.75000,315.75000 L 186.25000,312.75000 L 186.00000,312.00000 z "
           style="fill:#9e9e9e;stroke:#9e9e9e" />
        <path
           id="path4158"
           d="M 659.00000,312.00000 L 660.75000,312.25000 L 661.75000,321.75000 L 661.25000,321.75000 L 660.75000,315.25000 C 658.96400,315.04620 657.41800,313.48800 659.00000,312.00000 z "
           style="fill:#959595;stroke:#959595" />
        <path
           id="path4160"
           d="M 214.00000,314.00000 L 213.00000,313.00000 L 214.00000,314.00000 z "
           style="fill:#070707;stroke:#070707" />
        <path
           id="path4162"
           d="M 688.00000,313.00000 L 688.75000,313.25000 L 690.75000,319.75000 L 688.75000,317.25000 C 687.02000,316.18700 686.65000,314.48600 688.00000,313.00000 z "
           style="fill:#acacac;stroke:#acacac" />
        <path
           id="path4164"
           d="M 215.00000,315.00000 L 214.00000,314.00000 L 215.00000,315.00000 z "
           style="fill:#141414;stroke:#141414" />
        <path
           id="path4166"
           d="M 830.00000,338.00000 L 834.00000,323.00000 C 830.47300,320.90900 830.75900,316.90000 833.00000,314.00000 L 838.75000,317.25000 C 855.48000,333.20000 868.80000,351.25000 881.00000,370.00000 L 875.75000,382.75000 L 874.25000,381.25000 C 876.81700,377.11500 880.44500,370.35000 874.25000,367.75000 L 872.00000,364.00000 L 869.75000,371.75000 C 866.18800,370.10100 864.04800,371.92720 861.25000,373.75000 L 859.25000,360.75000 L 856.25000,353.25000 C 855.87960,355.09600 855.93710,359.39400 853.25000,358.75000 L 854.75000,339.25000 L 848.25000,345.75000 L 848.00000,343.00000 L 847.75000,338.25000 L 841.25000,348.75000 L 840.75000,335.25000 C 839.43100,334.44110 837.33500,335.16632 838.00000,337.00000 L 837.75000,338.75000 L 836.00000,329.00000 L 830.00000,338.00000 z "
           style="fill:#e2e2e2;stroke:#e2e2e2" />
        <path
           id="path4168"
           d="M 216.00000,316.00000 L 215.00000,315.00000 L 216.00000,316.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path4170"
           d="M 216.00000,316.00000 L 217.75000,316.75000 L 216.00000,316.00000 z "
           style="fill:#121212;stroke:#121212" />
        <path
           id="path4172"
           d="M 666.00000,316.00000 L 667.75000,316.25000 L 675.25000,338.75000 L 683.00000,353.00000 C 682.05440,360.64900 684.11400,369.18000 690.75000,373.25000 C 694.56600,381.65300 704.50000,382.94300 712.75000,381.75000 C 714.61900,380.66900 718.03600,379.08400 716.75000,376.25000 L 715.00000,376.00000 C 709.03700,379.48300 699.05000,379.27600 695.00000,373.00000 L 695.75000,371.75000 L 693.75000,351.25000 C 695.76200,357.79800 696.00700,367.31000 705.00000,368.00000 L 727.75000,375.25000 C 723.90900,385.54000 711.54000,389.53000 701.25000,389.25000 L 699.75000,392.75000 L 697.25000,392.75000 C 684.76000,383.44200 677.89000,368.09000 677.00000,353.00000 L 668.00000,331.00000 L 668.00000,323.00000 L 666.00000,316.00000 z "
           style="fill:#e0e0e0;stroke:#e0e0e0" />
        <path
           id="path4174"
           d="M 670.00000,316.00000 L 676.75000,316.25000 L 678.75000,318.25000 L 687.25000,335.75000 L 688.25000,336.75000 L 690.75000,337.25000 L 688.75000,347.75000 L 685.25000,347.75000 L 678.25000,335.75000 L 670.00000,316.00000 z "
           style="fill:#e4e4e4;stroke:#e4e4e4" />
        <path
           id="path4176"
           d="M 489.00000,317.00000 L 489.75000,317.25000 L 493.75000,327.75000 L 491.25000,327.75000 L 490.00000,323.00000 L 489.00000,317.00000 z "
           style="fill:#adadad;stroke:#adadad" />
        <path
           id="path4178"
           d="M 148.00000,322.00000 L 159.75000,322.25000 L 159.75000,322.75000 L 148.25000,322.75000 L 148.00000,322.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path4180"
           d="M 162.00000,322.00000 L 162.75000,323.75000 L 162.00000,322.00000 z "
           style="fill:#131313;stroke:#131313" />
        <path
           id="path4182"
           d="M 696.00000,322.00000 L 698.00000,325.00000 L 698.00000,340.00000 L 694.25000,346.75000 L 696.00000,336.00000 L 696.00000,322.00000 z "
           style="fill:#b2b2b2;stroke:#b2b2b2" />
        <path
           id="path4184"
           d="M 141.00000,323.00000 L 145.75000,323.75000 L 141.00000,323.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path4186"
           d="M 164.00000,323.00000 L 171.75000,323.25000 L 171.75000,323.75000 L 164.25000,323.75000 L 164.00000,323.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path4188"
           d="M 702.00000,323.00000 L 704.75000,323.25000 C 704.40590,329.29200 709.08400,337.70000 703.00000,342.00000 L 702.25000,341.75000 L 701.25000,324.25000 L 702.00000,323.00000 z "
           style="fill:#cacaca;stroke:#cacaca" />
        <path
           id="path4190"
           d="M 174.00000,324.00000 C 175.88500,323.86030 173.86020,325.88500 174.00000,324.00000 z "
           style="fill:#141414;stroke:#141414" />
        <path
           id="path4192"
           d="M 203.00000,330.00000 C 205.83600,329.07020 206.54500,332.11200 207.75000,333.75000 L 193.00000,333.00000 L 191.00000,332.00000 C 182.96800,331.64800 175.12000,332.24940 168.25000,335.75000 L 168.00000,330.00000 L 168.25000,329.25000 L 180.00000,326.00000 L 176.25000,324.25000 C 182.87700,323.81430 191.14000,323.05300 195.75000,327.75000 L 183.25000,328.25000 L 184.00000,329.00000 L 192.00000,330.00000 L 201.00000,332.00000 L 203.75000,331.75000 L 203.00000,330.00000 z "
           style="fill:#080808;stroke:#080808" />
        <path
           id="path4194"
           d="M 437.00000,325.00000 L 438.75000,326.25000 L 444.00000,338.00000 L 442.75000,339.75000 L 442.25000,339.75000 L 438.75000,330.25000 L 437.00000,325.00000 z "
           style="fill:#acacac;stroke:#acacac" />
        <path
           id="path4196"
           d="M 203.00000,330.00000 L 198.25000,328.75000 L 198.25000,328.25000 L 203.00000,330.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path4198"
           d="M 1027.0000,328.00000 C 1030.4190,326.76800 1030.7620,329.76600 1033.0000,331.00000 C 1039.8880,330.63710 1048.2100,325.77100 1054.0000,331.00000 L 1059.7500,332.25000 L 1059.2500,334.75000 L 1062.2500,336.75000 C 1071.5920,339.29700 1081.7600,341.57600 1089.7500,346.75000 L 1063.0000,342.00000 L 1061.0000,341.00000 L 1057.2500,342.25000 L 1055.0000,345.00000 L 1045.2500,345.25000 L 1055.7500,351.25000 L 1055.0000,352.00000 L 1037.2500,350.25000 L 1036.7500,352.75000 C 1029.6250,356.65500 1039.2530,357.87800 1041.7500,359.75000 L 1029.7500,363.75000 C 1027.5910,363.92450 1026.8060,365.89700 1026.7500,367.75000 L 1019.0000,370.00000 L 1021.7500,372.25000 C 1020.9028,380.25200 1033.2200,370.41000 1030.7500,378.75000 L 1022.0000,381.00000 L 1032.0000,382.00000 L 1032.7500,382.75000 C 1027.8610,381.75490 1028.6000,386.72200 1031.7500,387.75000 C 1028.0100,387.68921 1023.1270,385.39400 1020.0000,389.00000 C 1017.5800,388.97440 1014.3440,385.26000 1013.7500,389.75000 C 1009.5040,389.07190 1009.9340,392.06500 1010.7500,394.75000 C 1006.3130,394.74033 1005.5300,398.50100 1008.7500,400.75000 C 1002.8580,400.59440 1007.4120,404.80700 1006.7500,407.75000 L 1004.7500,406.25000 C 1001.3880,399.18000 992.49000,410.10300 1000.7500,410.25000 L 1002.0000,413.00000 L 1001.0000,414.00000 C 998.70500,414.12730 996.14300,412.10300 995.75000,415.75000 L 992.00000,421.00000 L 982.25000,412.75000 L 982.25000,410.25000 L 994.25000,398.25000 C 1012.5200,381.23000 1018.4000,356.86000 1020.2500,333.25000 L 1027.0000,328.00000 z "
           style="fill:#ececec;stroke:#ececec" />
        <path
           id="path4200"
           d="M 161.00000,329.00000 C 164.03500,329.78120 159.51900,332.54600 159.25000,330.25000 L 160.00000,330.00000 L 161.00000,329.00000 z "
           style="fill:#131313;stroke:#131313" />
        <path
           id="path4202"
           d="M 165.00000,329.00000 L 166.75000,330.75000 L 165.00000,329.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path4204"
           d="M 710.00000,329.00000 L 717.75000,331.25000 L 719.25000,334.75000 L 721.75000,335.25000 L 725.75000,340.75000 L 723.25000,340.25000 C 719.37400,345.39900 713.80900,348.66800 707.25000,346.75000 L 707.00000,344.00000 L 709.00000,339.00000 L 710.00000,329.00000 z "
           style="fill:#e6e6e6;stroke:#e6e6e6" />
        <path
           id="path4206"
           d="M 758.00000,332.00000 C 759.44900,331.58270 761.61200,333.21300 760.75000,334.75000 L 758.00000,332.00000 z "
           style="fill:#959595;stroke:#959595" />
        <path
           id="path4208"
           d="M 182.00000,335.00000 L 195.00000,335.00000 L 204.75000,336.25000 L 203.75000,339.75000 L 199.75000,339.25000 L 185.75000,340.75000 L 179.00000,340.00000 L 158.00000,341.00000 L 156.25000,341.75000 L 156.00000,341.00000 L 156.25000,340.25000 L 168.00000,340.00000 L 178.00000,339.00000 L 186.75000,337.75000 L 182.00000,335.00000 z "
           style="fill:#090909;stroke:#090909" />
        <path
           id="path4210"
           d="M 179.00000,336.00000 C 180.88500,335.86030 178.86020,337.88500 179.00000,336.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path4212"
           d="M 733.00000,336.00000 L 734.25000,337.75000 C 738.71400,338.31150 735.77700,342.28700 736.25000,344.75000 C 737.60700,347.27600 739.34400,344.88060 740.75000,344.25000 L 741.25000,350.75000 L 745.75000,352.25000 L 745.00000,357.00000 C 745.66720,361.78100 739.91400,363.32700 736.25000,363.25000 C 731.11100,366.21300 723.45000,369.32900 718.25000,364.75000 L 718.25000,364.25000 C 725.68600,362.41000 729.27000,355.38900 732.00000,349.00000 L 732.00000,344.00000 L 733.00000,336.00000 z "
           style="fill:#e9e9e9;stroke:#e9e9e9" />
        <path
           id="path4214"
           d="M 830.00000,338.00000 L 826.75000,350.75000 L 826.25000,350.75000 L 829.25000,338.25000 L 830.00000,338.00000 z "
           style="fill:#afafaf;stroke:#afafaf" />
        <path
           id="path4216"
           d="M 151.00000,341.00000 L 154.75000,341.75000 L 151.00000,341.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path4218"
           d="M 194.00000,344.00000 L 199.75000,344.25000 L 199.75000,344.75000 L 197.00000,345.00000 L 182.25000,346.25000 L 181.25000,347.75000 L 184.00000,348.00000 L 195.00000,347.00000 L 196.00000,348.00000 L 195.00000,349.00000 L 164.25000,348.75000 L 164.25000,348.25000 L 177.00000,348.00000 L 177.75000,347.75000 L 177.25000,346.25000 L 178.25000,345.25000 L 179.75000,345.75000 L 193.75000,344.75000 L 194.00000,344.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path4220"
           d="M 797.00000,346.00000 L 797.75000,347.75000 C 795.87200,348.64250 796.19500,346.94100 797.00000,346.00000 z "
           style="fill:#9e9e9e;stroke:#9e9e9e" />
        <path
           id="path4222"
           d="M 198.00000,347.00000 L 202.75000,347.75000 L 198.00000,347.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path4224"
           d="M 159.00000,348.00000 L 159.75000,349.75000 L 137.00000,350.00000 L 136.25000,349.25000 L 158.00000,349.00000 L 159.00000,348.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path4226"
           d="M 161.00000,348.00000 L 161.75000,349.75000 L 161.00000,348.00000 z "
           style="fill:#141414;stroke:#141414" />
        <path
           id="path4228"
           d="M 663.00000,348.00000 L 664.00000,349.00000 L 665.00000,354.00000 L 669.25000,377.75000 L 670.75000,379.25000 C 671.69420,385.75900 675.83800,391.31000 679.25000,396.75000 L 685.75000,401.75000 L 675.25000,399.75000 L 672.75000,396.25000 L 669.25000,392.75000 L 667.75000,388.25000 L 660.00000,364.00000 L 660.00000,353.00000 L 663.00000,348.00000 z "
           style="fill:#dbdbdb;stroke:#dbdbdb" />
        <path
           id="path4230"
           d="M 130.00000,349.00000 L 131.75000,350.75000 L 130.00000,349.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path4232"
           d="M 133.00000,349.00000 L 133.75000,350.75000 L 133.00000,349.00000 z "
           style="fill:#141414;stroke:#141414" />
        <path
           id="path4234"
           d="M 618.00000,349.00000 L 623.75000,353.25000 L 621.75000,356.75000 C 619.91400,355.94670 617.29700,356.19820 617.75000,353.25000 L 614.25000,352.25000 L 618.00000,349.00000 z "
           style="fill:#c7c7c7;stroke:#c7c7c7" />
        <path
           id="path4236"
           d="M 653.00000,349.00000 L 655.00000,350.00000 L 654.00000,359.00000 L 663.75000,389.25000 L 663.75000,390.75000 C 656.00800,383.74700 651.62000,373.15000 650.00000,363.00000 L 649.00000,361.00000 L 649.00000,354.00000 L 649.25000,353.25000 C 651.76100,353.52830 652.91900,351.18000 653.00000,349.00000 z "
           style="fill:#d7d7d7;stroke:#d7d7d7" />
        <path
           id="path4238"
           d="M 124.00000,350.00000 L 128.75000,350.75000 L 124.00000,350.00000 z "
           style="fill:#0e0e0e;stroke:#0e0e0e" />
        <path
           id="path4240"
           d="M 703.00000,350.00000 L 708.75000,352.25000 C 710.13700,357.09100 717.75100,355.36400 720.25000,352.25000 L 723.00000,351.00000 L 724.75000,351.25000 L 721.75000,356.75000 C 720.86660,358.63300 719.60300,360.80400 717.00000,360.00000 C 712.45800,362.68500 704.41000,359.77910 703.75000,354.25000 L 703.00000,350.00000 z "
           style="fill:#d6d6d6;stroke:#d6d6d6" />
        <path
           id="path4242"
           d="M 192.00000,353.00000 L 196.00000,353.00000 L 197.75000,353.75000 L 192.00000,355.00000 L 187.25000,355.75000 L 192.00000,353.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path4244"
           d="M 435.00000,353.00000 L 437.75000,358.75000 L 436.00000,357.00000 L 435.00000,353.00000 z "
           style="fill:#959595;stroke:#959595" />
        <path
           id="path4246"
           d="M 758.00000,354.00000 L 761.00000,355.00000 L 759.75000,357.75000 C 757.30400,358.86200 758.10400,355.30000 758.00000,354.00000 z "
           style="fill:#a8a8a8;stroke:#a8a8a8" />
        <path
           id="path4248"
           d="M 178.00000,355.00000 L 185.75000,355.25000 L 185.75000,355.75000 L 178.25000,355.75000 L 178.00000,355.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path4250"
           d="M 1044.0000,355.00000 L 1049.0000,356.00000 L 1056.7500,358.25000 L 1056.7500,358.75000 C 1055.2120,361.20700 1052.4140,359.40010 1050.7500,358.25000 L 1044.2500,355.75000 L 1044.0000,355.00000 z "
           style="fill:#aaaaaa;stroke:#aaaaaa" />
        <path
           id="path4252"
           d="M 160.00000,358.00000 L 161.00000,357.00000 L 169.00000,356.00000 L 176.75000,356.25000 L 176.00000,357.00000 L 168.00000,358.00000 L 160.00000,358.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path4254"
           d="M 203.00000,356.00000 L 206.75000,356.75000 L 203.00000,356.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path4256"
           d="M 192.00000,357.00000 L 192.75000,358.75000 L 185.00000,359.00000 L 180.25000,359.75000 L 180.25000,359.25000 L 182.00000,359.00000 L 191.75000,357.75000 L 192.00000,357.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path4258"
           d="M 197.00000,357.00000 L 200.75000,357.75000 L 197.00000,357.00000 z "
           style="fill:#0c0c0c;stroke:#0c0c0c" />
        <path
           id="path4260"
           d="M 404.00000,369.00000 L 403.25000,368.75000 L 399.75000,362.25000 L 398.25000,357.25000 L 398.75000,357.25000 L 404.00000,369.00000 z "
           style="fill:#979797;stroke:#979797" />
        <path
           id="path4262"
           d="M 555.00000,357.00000 C 556.88500,356.86030 554.86030,358.88500 555.00000,357.00000 z "
           style="fill:#929292;stroke:#929292" />
        <path
           id="path4264"
           d="M 160.00000,358.00000 L 158.25000,358.75000 L 160.00000,358.00000 z "
           style="fill:#141414;stroke:#141414" />
        <path
           id="path4266"
           d="M 178.00000,359.00000 L 178.75000,359.25000 L 171.75000,361.75000 L 171.25000,361.75000 C 170.14100,359.82000 172.83800,359.83600 174.00000,360.00000 L 178.00000,359.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path4268"
           d="M 129.00000,361.00000 L 147.75000,361.25000 L 147.00000,362.00000 L 130.00000,362.00000 L 129.00000,361.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path4270"
           d="M 152.00000,361.00000 L 152.75000,362.75000 L 152.00000,361.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path4272"
           d="M 154.00000,361.00000 L 154.75000,362.75000 L 154.00000,361.00000 z "
           style="fill:#141414;stroke:#141414" />
        <path
           id="path4274"
           d="M 157.00000,361.00000 C 158.88500,360.86030 156.86020,362.88500 157.00000,361.00000 z "
           style="fill:#141414;stroke:#141414" />
        <path
           id="path4276"
           d="M 159.00000,361.00000 L 167.75000,361.25000 L 167.75000,361.75000 L 159.25000,362.75000 L 159.00000,361.00000 z "
           style="fill:#0d0d0d;stroke:#0d0d0d" />
        <path
           id="path4278"
           d="M 791.00000,361.00000 L 793.75000,361.25000 L 794.00000,362.00000 C 791.66900,367.87000 786.55500,371.87800 781.75000,375.75000 L 779.25000,376.25000 L 777.25000,377.75000 L 776.25000,374.25000 C 782.00100,372.30700 785.48200,366.58200 789.25000,362.25000 L 790.75000,361.75000 L 791.00000,361.00000 z "
           style="fill:#cdcdcd;stroke:#cdcdcd" />
        <path
           id="path4280"
           d="M 764.00000,365.00000 L 764.75000,367.75000 C 763.06700,367.68756 763.03800,365.98100 764.00000,365.00000 z "
           style="fill:#919191;stroke:#919191" />
        <path
           id="path4282"
           d="M 493.00000,367.00000 L 493.75000,369.75000 L 493.00000,367.00000 z "
           style="fill:#999999;stroke:#999999" />
        <path
           id="path4284"
           d="M 745.00000,367.00000 L 747.75000,367.25000 L 744.75000,375.75000 L 741.25000,377.75000 L 740.00000,376.00000 L 736.25000,375.75000 C 735.57940,373.83700 738.12900,372.18100 739.75000,371.75000 L 745.00000,367.00000 z "
           style="fill:#cdcdcd;stroke:#cdcdcd" />
        <path
           id="path4286"
           d="M 857.00000,367.00000 L 857.75000,368.75000 L 857.00000,367.00000 z "
           style="fill:#ababab;stroke:#ababab" />
        <path
           id="path4288"
           d="M 478.00000,368.00000 C 480.56600,368.57450 480.22900,371.81300 479.75000,373.75000 L 479.25000,373.75000 L 478.00000,368.00000 z "
           style="fill:#969696;stroke:#969696" />
        <path
           id="path4290"
           d="M 405.00000,371.00000 L 404.00000,369.00000 L 405.00000,371.00000 z "
           style="fill:#949494;stroke:#949494" />
        <path
           id="path4292"
           d="M 442.00000,369.00000 L 442.75000,369.25000 L 444.75000,375.75000 L 443.00000,373.00000 L 442.00000,369.00000 z "
           style="fill:#9b9b9b;stroke:#9b9b9b" />
        <path
           id="path4294"
           d="M 451.00000,369.00000 C 453.85600,368.54390 457.66600,368.97623 457.25000,372.75000 L 461.75000,381.75000 C 460.43100,382.55890 458.33500,381.83368 459.00000,380.00000 L 457.75000,375.25000 L 452.25000,374.75000 L 451.00000,369.00000 z "
           style="fill:#bdbdbd;stroke:#bdbdbd" />
        <path
           id="path4296"
           d="M 405.00000,371.00000 L 405.75000,372.75000 L 405.00000,371.00000 z "
           style="fill:#959595;stroke:#959595" />
        <path
           id="path4298"
           d="M 882.00000,372.00000 L 885.75000,375.25000 C 892.70300,387.59000 905.03000,396.62000 914.75000,407.25000 C 913.33000,419.31000 911.60000,432.33000 902.75000,441.75000 L 901.25000,441.75000 L 900.00000,440.00000 L 901.75000,437.75000 L 902.25000,434.25000 C 907.89200,427.29700 912.71000,419.08000 913.00000,410.00000 L 912.00000,409.00000 L 907.00000,413.00000 C 908.07600,409.95700 909.62700,403.48000 904.25000,403.75000 L 902.75000,399.25000 L 895.00000,394.00000 L 877.25000,410.75000 L 892.75000,392.75000 L 892.25000,391.75000 L 885.25000,395.75000 L 885.25000,393.25000 C 888.53600,391.65400 888.97300,384.13600 884.25000,386.75000 C 884.41560,384.63300 886.59100,380.26800 882.25000,380.75000 L 882.00000,372.00000 z "
           style="fill:#c8c8c8;stroke:#c8c8c8" />
        <path
           id="path4300"
           d="M 731.00000,373.00000 C 733.30300,373.58430 735.41100,377.24200 732.00000,378.00000 L 731.00000,373.00000 z "
           style="fill:#989898;stroke:#989898" />
        <path
           id="path4302"
           d="M 167.00000,387.00000 C 168.45500,384.64900 172.00600,382.85800 174.75000,383.25000 L 167.00000,387.00000 z "
           style="fill:#a3a3a3;stroke:#a3a3a3" />
        <path
           id="path4304"
           d="M 476.00000,384.00000 C 479.41800,383.50600 477.32500,386.87200 475.75000,387.75000 L 476.00000,384.00000 z "
           style="fill:#acacac;stroke:#acacac" />
        <path
           id="path4306"
           d="M 167.00000,387.00000 L 166.75000,387.75000 L 157.25000,390.75000 L 157.25000,390.25000 L 167.00000,387.00000 z "
           style="fill:#959595;stroke:#959595" />
        <path
           id="path4308"
           d="M 383.00000,390.00000 L 387.75000,396.25000 L 387.75000,397.75000 C 385.59100,398.68210 384.80600,395.79600 384.75000,394.25000 L 383.00000,390.00000 z "
           style="fill:#969696;stroke:#969696" />
        <path
           id="path4310"
           d="M 459.00000,390.00000 C 460.55100,389.57560 463.07500,390.34000 460.75000,391.75000 C 459.97960,392.43770 457.04200,391.95910 458.75000,390.75000 L 459.00000,390.00000 z "
           style="fill:#9e9e9e;stroke:#9e9e9e" />
        <path
           id="path4312"
           d="M 730.00000,390.00000 L 731.75000,390.25000 L 723.25000,398.25000 C 721.50200,400.12300 718.87100,401.68600 716.25000,400.75000 L 716.25000,399.25000 L 728.75000,391.75000 L 730.00000,390.00000 z "
           style="fill:#b8b8b8;stroke:#b8b8b8" />
        <path
           id="path4314"
           d="M 452.00000,391.00000 L 454.75000,392.75000 L 451.25000,393.75000 L 452.00000,391.00000 z "
           style="fill:#a4a4a4;stroke:#a4a4a4" />
        <path
           id="path4316"
           d="M 363.00000,392.00000 L 364.75000,394.75000 L 363.00000,392.00000 z "
           style="fill:#939393;stroke:#939393" />
        <path
           id="path4318"
           d="M 710.00000,392.00000 L 712.75000,392.25000 L 709.00000,395.00000 L 704.25000,395.75000 L 707.25000,393.25000 L 710.00000,392.00000 z "
           style="fill:#aaaaaa;stroke:#aaaaaa" />
        <path
           id="path4320"
           d="M 351.00000,393.00000 L 351.75000,393.25000 L 356.75000,405.75000 L 351.75000,398.25000 L 349.25000,398.25000 C 348.95210,399.56900 349.13130,401.66500 347.00000,401.00000 C 345.56800,402.65100 343.55000,400.90683 344.00000,399.00000 L 351.00000,393.00000 z "
           style="fill:#bababa;stroke:#bababa" />
        <path
           id="path4322"
           d="M 421.00000,393.00000 C 423.01000,393.83570 424.40100,396.66200 423.75000,398.75000 C 419.80700,400.41200 421.21500,395.16100 421.00000,393.00000 z "
           style="fill:#9b9b9b;stroke:#9b9b9b" />
        <path
           id="path4324"
           d="M 439.00000,393.00000 L 441.75000,394.75000 C 440.90240,395.23310 436.96400,395.37400 438.75000,393.75000 L 439.00000,393.00000 z "
           style="fill:#a3a3a3;stroke:#a3a3a3" />
        <path
           id="path4326"
           d="M 398.00000,398.00000 C 399.99700,399.22900 400.46000,402.44400 399.75000,404.75000 L 399.25000,404.75000 L 398.00000,398.00000 z "
           style="fill:#969696;stroke:#969696" />
        <path
           id="path4328"
           d="M 695.00000,399.00000 L 698.75000,399.25000 C 705.16000,404.66100 709.15000,412.33000 707.75000,420.75000 L 706.00000,422.00000 L 704.25000,420.75000 L 701.75000,408.25000 L 694.25000,401.75000 L 695.00000,399.00000 z "
           style="fill:#3a3a3a;stroke:#3a3a3a" />
        <path
           id="path4330"
           d="M 203.00000,401.00000 C 204.88500,400.86030 202.86020,402.88500 203.00000,401.00000 z "
           style="fill:#959595;stroke:#959595" />
        <path
           id="path4332"
           d="M 711.00000,401.00000 L 713.25000,405.75000 C 724.31000,406.86100 727.34000,420.36000 725.75000,429.75000 L 722.25000,434.25000 L 719.25000,437.75000 L 719.25000,436.25000 L 723.00000,425.00000 L 721.75000,417.25000 L 719.75000,411.25000 L 717.25000,412.25000 L 717.00000,414.00000 L 718.00000,420.00000 C 719.53100,422.56300 719.53100,426.43700 718.00000,429.00000 C 717.92816,431.92500 716.53200,435.46600 714.00000,437.00000 L 713.00000,435.00000 L 714.00000,427.00000 L 713.25000,417.75000 L 710.00000,403.00000 L 711.00000,401.00000 z "
           style="fill:#c9c9c9;stroke:#c9c9c9" />
        <path
           id="path4334"
           d="M 871.00000,401.00000 C 873.55100,401.77560 869.85600,405.67800 868.25000,404.75000 L 871.00000,401.00000 z "
           style="fill:#999999;stroke:#999999" />
        <path
           id="path4336"
           d="M 1072.0000,404.00000 L 1067.2500,401.25000 C 1069.3160,400.15100 1071.2690,402.31900 1072.0000,404.00000 z "
           style="fill:#a2a2a2;stroke:#a2a2a2" />
        <path
           id="path4338"
           d="M 340.00000,402.00000 C 342.01000,402.83570 343.40100,405.66200 342.75000,407.75000 L 340.00000,402.00000 z "
           style="fill:#969696;stroke:#969696" />
        <path
           id="path4340"
           d="M 392.00000,402.00000 L 395.00000,411.00000 L 394.75000,411.75000 L 392.25000,412.75000 L 391.25000,411.75000 L 391.00000,404.00000 L 392.00000,402.00000 z "
           style="fill:#adadad;stroke:#adadad" />
        <path
           id="path4342"
           d="M 383.00000,404.00000 L 386.00000,410.00000 C 385.11510,412.54100 382.91200,415.45900 385.00000,418.00000 L 384.75000,418.75000 L 382.25000,419.75000 L 383.00000,404.00000 z "
           style="fill:#a4a4a4;stroke:#a4a4a4" />
        <path
           id="path4344"
           d="M 1072.0000,404.00000 C 1080.5410,405.87700 1086.6600,413.29100 1093.7500,418.25000 L 1101.2500,428.75000 L 1105.7500,429.25000 L 1107.0000,432.00000 L 1100.0000,445.00000 L 1098.2500,443.75000 L 1079.0000,419.00000 L 1080.2500,417.25000 L 1081.7500,417.25000 L 1096.2500,435.75000 L 1099.7500,434.75000 L 1098.7500,432.25000 L 1094.7500,426.25000 L 1083.7500,413.25000 L 1082.2500,412.75000 C 1080.8540,408.95300 1076.5660,407.44100 1073.2500,405.75000 L 1072.0000,404.00000 z "
           style="fill:#cfcfcf;stroke:#cfcfcf" />
        <path
           id="path4346"
           d="M 335.00000,405.00000 L 342.25000,415.75000 L 347.00000,424.00000 L 346.75000,425.75000 L 345.25000,424.75000 L 334.25000,406.75000 L 335.00000,405.00000 z "
           style="fill:#adadad;stroke:#adadad" />
        <path
           id="path4348"
           d="M 1009.0000,409.00000 L 1010.7500,410.75000 L 1009.0000,409.00000 z "
           style="fill:#929292;stroke:#929292" />
        <path
           id="path4350"
           d="M 199.00000,411.00000 C 203.91400,410.88000 196.02800,415.04700 199.00000,411.00000 z "
           style="fill:#949494;stroke:#949494" />
        <path
           id="path4352"
           d="M 375.00000,411.00000 C 376.61300,411.29750 377.59500,413.28800 376.75000,414.75000 C 375.26200,414.31120 373.33100,412.46000 375.00000,411.00000 z "
           style="fill:#999999;stroke:#999999" />
        <path
           id="path4354"
           d="M 1074.0000,411.00000 L 1077.7500,413.75000 L 1074.0000,411.00000 z "
           style="fill:#979797;stroke:#979797" />
        <path
           id="path4356"
           d="M 920.00000,412.00000 L 944.00000,417.00000 L 949.75000,418.25000 L 950.00000,422.00000 L 955.00000,460.00000 L 954.75000,463.75000 L 952.00000,459.00000 L 950.00000,461.00000 C 950.85060,467.57600 949.48830,474.93000 946.00000,481.00000 L 947.00000,485.00000 L 937.25000,502.75000 L 932.25000,493.25000 L 937.75000,485.75000 C 939.13500,480.85300 941.51800,475.55000 945.75000,472.75000 C 948.97400,459.29000 948.05400,444.48000 947.75000,430.25000 L 946.75000,429.25000 L 940.75000,421.25000 L 939.00000,421.00000 L 929.25000,420.75000 L 926.25000,416.25000 L 925.00000,418.00000 C 923.83600,431.81000 920.06700,446.05000 911.25000,456.75000 L 908.00000,453.00000 L 909.25000,448.25000 C 916.89700,440.07300 921.49000,429.80000 923.00000,419.00000 L 920.25000,415.75000 L 920.00000,412.00000 z "
           style="fill:#dbdbdb;stroke:#dbdbdb" />
        <path
           id="path4358"
           d="M 323.00000,414.00000 C 324.86400,413.66790 328.66700,413.99954 327.75000,416.75000 L 324.25000,419.25000 C 325.96300,423.92900 329.93200,428.36800 328.75000,433.75000 L 324.00000,426.00000 L 322.00000,430.00000 L 324.75000,442.75000 C 323.03600,439.99000 319.02100,425.91000 317.75000,435.75000 L 315.75000,435.25000 C 313.23600,435.48170 312.74800,437.47200 312.75000,439.75000 L 310.25000,438.25000 L 312.75000,462.75000 L 309.00000,448.00000 C 307.28100,445.20700 308.61410,437.96000 303.25000,439.25000 C 305.36400,449.11500 306.82800,459.96000 305.75000,470.75000 L 304.00000,468.00000 C 302.59700,458.78700 302.77500,447.96000 296.00000,441.00000 L 293.25000,442.25000 L 298.00000,454.00000 L 302.00000,484.00000 L 302.25000,489.75000 C 303.01370,491.09700 303.73400,492.93400 305.75000,491.75000 L 305.25000,477.25000 C 310.20300,475.12900 308.94200,481.06500 309.00000,484.00000 C 309.15360,487.04200 308.18690,491.21600 311.00000,493.00000 L 314.25000,473.25000 L 318.75000,495.75000 C 314.72700,503.55100 315.17600,514.65000 306.25000,519.25000 L 295.75000,573.75000 C 270.66000,572.57900 245.91000,570.92500 224.25000,558.75000 L 246.25000,518.25000 C 248.26300,515.54600 249.74500,512.44100 246.00000,511.00000 C 245.20180,506.72400 247.24100,502.34600 250.75000,500.25000 L 250.00000,508.00000 L 258.75000,496.75000 L 264.75000,487.25000 C 261.71300,512.31000 250.17000,535.35000 237.25000,557.25000 L 237.25000,560.75000 L 247.00000,547.00000 L 257.00000,528.00000 L 263.00000,513.00000 L 266.25000,502.25000 C 266.94240,519.48000 258.59100,537.33000 253.00000,554.00000 L 254.25000,556.75000 L 260.00000,550.00000 L 259.75000,552.75000 L 257.25000,565.75000 L 260.75000,564.75000 L 267.00000,534.00000 C 267.97880,527.22700 268.63400,520.10000 272.25000,514.25000 L 274.75000,514.75000 L 276.75000,512.75000 L 279.00000,494.00000 L 281.75000,472.25000 L 285.00000,514.00000 L 288.75000,514.25000 L 292.00000,527.00000 C 291.68950,529.06100 289.47300,532.89000 292.75000,533.75000 L 294.75000,531.75000 C 301.04000,506.41000 298.86400,478.95000 296.00000,453.00000 L 290.25000,440.75000 C 282.88800,438.10400 290.86810,452.13000 284.25000,453.25000 L 283.75000,455.75000 L 280.25000,454.75000 C 282.12400,446.44900 268.53000,447.72200 272.00000,456.00000 L 271.75000,470.75000 L 270.00000,448.00000 L 266.25000,445.75000 C 267.25100,440.22700 261.90100,437.42100 260.00000,434.00000 L 256.25000,435.75000 L 256.75000,432.75000 L 256.25000,429.25000 C 278.26000,442.55000 304.55000,428.58720 323.00000,414.00000 z "
           style="fill:#e8e8e8;stroke:#e8e8e8" />
        <path
           id="path4360"
           d="M 1037.0000,436.00000 L 1057.7500,463.25000 L 1063.2500,485.75000 L 1065.0000,484.00000 L 1060.0000,462.00000 L 1059.7500,457.25000 L 1063.2500,465.75000 L 1065.2500,472.75000 L 1067.7500,473.75000 L 1061.2500,452.25000 C 1063.5690,451.62450 1065.2770,454.73900 1065.2500,456.75000 L 1068.7500,462.25000 L 1073.2500,471.75000 C 1076.9320,473.29600 1075.8300,469.24200 1074.2500,467.75000 L 1061.2500,442.25000 C 1069.4540,448.56700 1075.7800,457.26000 1079.2500,466.75000 L 1081.7500,467.75000 L 1082.7500,466.25000 C 1079.7140,454.39000 1071.0200,445.18000 1062.2500,437.75000 L 1044.2500,414.25000 L 1058.7500,422.25000 L 1058.0000,425.00000 L 1075.2500,442.75000 L 1086.7500,465.75000 L 1074.2500,478.25000 L 1050.7500,499.75000 L 1048.2500,499.75000 L 1049.0000,483.00000 L 1047.2500,479.75000 L 1041.0000,466.00000 L 1038.2500,459.25000 L 1056.2500,488.75000 L 1058.7500,488.75000 C 1057.0960,478.54000 1049.0780,469.96000 1044.2500,460.75000 L 1044.2500,459.25000 L 1045.7500,458.75000 L 1036.2500,441.75000 C 1038.8150,440.75250 1037.5760,438.23400 1037.0000,436.00000 z "
           style="fill:#dcdcdc;stroke:#dcdcdc" />
        <path
           id="path4362"
           d="M 203.00000,415.00000 L 202.75000,418.75000 C 201.37600,419.53450 197.55500,418.96110 200.25000,417.25000 L 203.00000,415.00000 z "
           style="fill:#acacac;stroke:#acacac" />
        <path
           id="path4364"
           d="M 977.00000,415.00000 C 978.88500,414.86030 976.86030,416.88500 977.00000,415.00000 z "
           style="fill:#939393;stroke:#939393" />
        <path
           id="path4366"
           d="M 973.00000,416.00000 L 974.75000,418.75000 L 973.00000,416.00000 z "
           style="fill:#969696;stroke:#969696" />
        <path
           id="path4368"
           d="M 1057.0000,416.00000 C 1058.8850,415.86030 1056.8602,417.88500 1057.0000,416.00000 z "
           style="fill:#939393;stroke:#939393" />
        <path
           id="path4370"
           d="M 1059.0000,417.00000 C 1060.8850,416.86030 1058.8602,418.88500 1059.0000,417.00000 z "
           style="fill:#969696;stroke:#969696" />
        <path
           id="path4372"
           d="M 633.00000,418.00000 L 637.00000,420.00000 L 635.75000,421.75000 L 622.25000,423.75000 L 623.25000,421.25000 L 628.00000,420.00000 L 633.00000,418.00000 z "
           style="fill:#202020;stroke:#202020" />
        <path
           id="path4374"
           d="M 650.00000,418.00000 L 652.75000,418.25000 L 652.75000,420.75000 L 636.00000,428.00000 L 633.25000,427.75000 C 632.53470,424.62600 637.06000,424.72400 639.00000,424.00000 L 650.00000,418.00000 z "
           style="fill:#2a2a2a;stroke:#2a2a2a" />
        <path
           id="path4376"
           d="M 953.00000,418.00000 L 954.75000,423.75000 L 953.00000,421.00000 L 953.00000,418.00000 z "
           style="fill:#a9a9a9;stroke:#a9a9a9" />
        <path
           id="path4378"
           d="M 962.00000,418.00000 L 970.75000,418.25000 L 971.75000,420.75000 L 970.25000,421.25000 L 967.25000,423.75000 L 963.75000,424.75000 L 962.25000,424.75000 L 962.00000,418.00000 z "
           style="fill:#d5d5d5;stroke:#d5d5d5" />
        <path
           id="path4380"
           d="M 377.00000,421.00000 L 378.75000,422.75000 L 377.00000,421.00000 z "
           style="fill:#9c9c9c;stroke:#9c9c9c" />
        <path
           id="path4382"
           d="M 249.00000,422.00000 C 251.22400,421.41690 253.22600,423.07400 254.00000,425.00000 L 250.75000,429.75000 L 242.75000,438.75000 L 228.25000,454.75000 L 228.25000,449.25000 L 229.25000,447.25000 C 235.71500,441.28300 241.20000,434.71000 245.25000,427.25000 L 248.75000,423.75000 L 249.00000,422.00000 z "
           style="fill:#d5d5d5;stroke:#d5d5d5" />
        <path
           id="path4384"
           d="M 1067.0000,422.00000 L 1077.0000,428.00000 L 1079.0000,427.00000 L 1080.7500,427.25000 L 1096.2500,447.75000 L 1097.7500,449.25000 L 1096.7500,450.75000 C 1088.3650,442.02000 1080.5200,430.47000 1069.2500,424.75000 L 1067.0000,422.00000 z "
           style="fill:#bdbdbd;stroke:#bdbdbd" />
        <path
           id="path4386"
           d="M 208.00000,423.00000 C 211.17000,423.67260 209.93500,428.00100 208.00000,429.00000 L 208.00000,423.00000 z "
           style="fill:#9e9e9e;stroke:#9e9e9e" />
        <path
           id="path4388"
           d="M 938.00000,426.00000 L 938.75000,426.25000 C 942.75700,434.05400 942.04600,443.08000 942.00000,452.00000 L 939.00000,462.00000 L 940.00000,466.00000 L 930.75000,485.75000 L 929.25000,486.75000 L 928.25000,483.25000 L 930.75000,480.75000 C 937.51000,467.50000 939.82700,453.10000 940.00000,438.00000 L 938.00000,434.00000 L 938.00000,426.00000 z "
           style="fill:#bcbcbc;stroke:#bcbcbc" />
        <path
           id="path4390"
           d="M 1030.0000,427.00000 C 1028.1150,427.13970 1030.1398,425.11500 1030.0000,427.00000 z "
           style="fill:#979797;stroke:#979797" />
        <path
           id="path4392"
           d="M 1064.0000,426.00000 C 1076.0100,431.46800 1084.1000,442.47000 1092.7500,452.25000 L 1094.0000,456.00000 L 1087.2500,463.75000 C 1086.3759,455.52600 1081.6130,448.41000 1077.7500,441.25000 L 1064.2500,427.75000 L 1064.0000,426.00000 z "
           style="fill:#dedede;stroke:#dedede" />
        <path
           id="path4394"
           d="M 1030.0000,427.00000 L 1032.7500,430.75000 L 1030.0000,427.00000 z "
           style="fill:#919191;stroke:#919191" />
        <path
           id="path4396"
           d="M 647.00000,428.00000 C 648.86400,427.66790 652.66700,427.99954 651.75000,430.75000 L 647.25000,432.75000 L 652.75000,434.25000 L 647.00000,436.00000 C 645.78400,437.58200 643.37400,436.03613 644.25000,434.25000 L 645.75000,433.75000 L 645.00000,433.00000 L 638.25000,433.75000 L 640.25000,429.25000 L 646.00000,429.00000 L 647.00000,428.00000 z "
           style="fill:#2b2b2b;stroke:#2b2b2b" />
        <path
           id="path4398"
           d="M 914.00000,430.00000 L 916.00000,431.00000 L 905.75000,446.75000 L 904.25000,446.75000 L 904.25000,445.25000 C 908.12800,440.59800 912.50700,435.88700 914.00000,430.00000 z "
           style="fill:#a5a5a5;stroke:#a5a5a5" />
        <path
           id="path4400"
           d="M 1012.0000,435.00000 C 1010.1150,435.13970 1012.1397,433.11500 1012.0000,435.00000 z "
           style="fill:#9f9f9f;stroke:#9f9f9f" />
        <path
           id="path4402"
           d="M 356.00000,435.00000 L 356.75000,435.25000 L 358.75000,439.75000 C 355.28500,441.38700 355.95400,437.03900 356.00000,435.00000 z "
           style="fill:#979797;stroke:#979797" />
        <path
           id="path4404"
           d="M 1014.0000,438.00000 L 1012.0000,435.00000 L 1014.0000,438.00000 z "
           style="fill:#939393;stroke:#939393" />
        <path
           id="path4406"
           d="M 1037.0000,436.00000 C 1035.1150,436.13970 1037.1398,434.11500 1037.0000,436.00000 z "
           style="fill:#a1a1a1;stroke:#a1a1a1" />
        <path
           id="path4408"
           d="M 659.00000,438.00000 C 660.48400,438.20000 661.50700,439.98600 659.75000,440.75000 C 658.06700,440.68756 658.03800,438.98100 659.00000,438.00000 z "
           style="fill:#454545;stroke:#454545" />
        <path
           id="path4410"
           d="M 1014.0000,438.00000 C 1015.8850,437.86030 1013.8603,439.88500 1014.0000,438.00000 z "
           style="fill:#949494;stroke:#949494" />
        <path
           id="path4412"
           d="M 251.00000,439.00000 L 252.75000,439.25000 C 253.93800,442.59500 252.52830,446.49700 249.25000,447.75000 L 251.00000,439.00000 z "
           style="fill:#bebebe;stroke:#bebebe" />
        <path
           id="path4414"
           d="M 667.00000,445.00000 L 670.00000,445.00000 L 670.75000,446.75000 L 663.25000,447.75000 L 663.25000,446.25000 L 665.00000,446.00000 L 667.00000,445.00000 z "
           style="fill:#363636;stroke:#363636" />
        <path
           id="path4416"
           d="M 922.00000,446.00000 L 925.75000,446.25000 L 922.25000,461.75000 L 923.75000,462.25000 L 924.00000,464.00000 C 922.44400,465.88000 921.19200,468.14900 922.25000,470.75000 L 924.25000,473.75000 L 931.75000,461.25000 L 926.75000,478.75000 L 925.75000,479.75000 L 917.25000,468.75000 L 914.00000,462.00000 L 922.00000,446.00000 z "
           style="fill:#d5d5d5;stroke:#d5d5d5" />
        <path
           id="path4418"
           d="M 261.00000,447.00000 L 261.75000,447.25000 L 258.75000,454.75000 L 258.25000,454.75000 L 261.00000,447.00000 z "
           style="fill:#969696;stroke:#969696" />
        <path
           id="path4420"
           d="M 1030.0000,447.00000 C 1031.8850,446.86030 1029.8602,448.88500 1030.0000,447.00000 z "
           style="fill:#939393;stroke:#939393" />
        <path
           id="path4422"
           d="M 206.00000,449.00000 C 205.86020,447.11500 207.88500,449.13970 206.00000,449.00000 z "
           style="fill:#a9a9a9;stroke:#a9a9a9" />
        <path
           id="path4424"
           d="M 244.00000,448.00000 C 246.28700,449.30500 244.62590,452.85700 243.75000,454.75000 L 243.25000,454.75000 L 244.00000,448.00000 z "
           style="fill:#a5a5a5;stroke:#a5a5a5" />
        <path
           id="path4426"
           d="M 206.00000,449.00000 L 204.25000,450.75000 L 206.00000,449.00000 z "
           style="fill:#959595;stroke:#959595" />
        <path
           id="path4428"
           d="M 485.00000,450.00000 C 484.86030,448.11500 486.88500,450.13970 485.00000,450.00000 z "
           style="fill:#9a9a9a;stroke:#9a9a9a" />
        <path
           id="path4430"
           d="M 485.00000,450.00000 L 484.00000,451.00000 L 485.00000,450.00000 z "
           style="fill:#9d9d9d;stroke:#9d9d9d" />
        <path
           id="path4432"
           d="M 484.00000,451.00000 L 483.00000,452.00000 L 484.00000,451.00000 z "
           style="fill:#aaaaaa;stroke:#aaaaaa" />
        <path
           id="path4434"
           d="M 974.00000,451.00000 C 976.13400,451.41240 976.43100,454.05400 975.75000,455.75000 L 975.25000,455.75000 L 974.00000,451.00000 z "
           style="fill:#a9a9a9;stroke:#a9a9a9" />
        <path
           id="path4436"
           d="M 1035.0000,464.00000 L 1044.0000,481.00000 L 1043.0000,483.00000 L 1045.7500,502.75000 L 1042.2500,504.75000 L 1041.0000,499.00000 L 1040.0000,492.00000 C 1040.8357,485.27100 1036.9080,479.84000 1033.2500,474.75000 L 1021.2500,451.25000 C 1026.1980,449.28100 1026.6280,455.59900 1028.7500,458.25000 L 1034.2500,469.75000 L 1035.7500,469.75000 L 1035.0000,464.00000 z "
           style="fill:#d5d5d5;stroke:#d5d5d5" />
        <path
           id="path4438"
           d="M 965.00000,452.00000 L 966.75000,452.25000 L 968.00000,457.00000 L 968.00000,459.00000 L 967.00000,474.00000 L 966.00000,475.00000 L 965.25000,474.75000 L 966.00000,467.00000 L 965.00000,455.00000 L 965.00000,452.00000 z "
           style="fill:#b2b2b2;stroke:#b2b2b2" />
        <path
           id="path4440"
           d="M 959.00000,453.00000 L 960.25000,457.75000 L 962.75000,458.25000 L 962.75000,469.75000 L 962.25000,469.75000 L 961.75000,461.25000 L 960.75000,460.25000 C 957.06300,462.00800 957.37100,454.89500 959.00000,453.00000 z "
           style="fill:#b5b5b5;stroke:#b5b5b5" />
        <path
           id="path4442"
           d="M 1016.0000,453.00000 L 1033.7500,485.25000 L 1040.7500,506.75000 L 1033.7500,511.75000 C 1017.0400,518.44100 1000.3500,525.71000 982.25000,526.75000 C 984.55400,517.29000 987.85700,506.18000 985.00000,496.00000 L 986.00000,475.00000 L 984.25000,463.25000 L 986.00000,468.00000 L 987.25000,470.75000 L 989.75000,464.25000 L 995.75000,478.25000 L 995.00000,489.00000 L 994.00000,503.00000 L 990.25000,514.75000 L 991.75000,515.75000 C 998.46100,506.60700 998.31400,494.53000 998.00000,483.00000 L 1000.0000,481.00000 L 999.25000,471.25000 L 1005.7500,471.25000 L 1007.0000,477.00000 L 1008.7500,477.75000 L 1008.2500,463.25000 L 1009.7500,462.25000 L 1010.7500,467.25000 L 1012.0000,473.00000 L 1014.0000,471.00000 C 1009.9610,467.68800 1016.8140,459.05000 1017.2500,466.75000 L 1025.0000,499.00000 L 1024.0000,507.00000 L 1026.0000,513.00000 L 1028.0000,509.00000 C 1027.9736,489.19000 1021.4250,471.26000 1016.0000,453.00000 z "
           style="fill:#dedede;stroke:#dedede" />
        <path
           id="path4444"
           d="M 220.00000,474.00000 L 228.00000,466.00000 L 227.75000,465.25000 C 223.96100,463.08400 230.34400,456.07900 233.25000,458.75000 L 234.75000,458.75000 L 238.75000,456.25000 C 238.07990,459.99900 236.72900,463.78600 233.25000,466.25000 L 227.00000,473.00000 L 224.00000,472.00000 L 220.00000,474.00000 z "
           style="fill:#d1d1d1;stroke:#d1d1d1" />
        <path
           id="path4446"
           d="M 670.00000,456.00000 L 674.75000,456.25000 L 673.75000,457.75000 L 662.25000,459.75000 L 663.25000,458.25000 L 666.00000,458.00000 L 670.00000,456.00000 z "
           style="fill:#363636;stroke:#363636" />
        <path
           id="path4448"
           d="M 252.00000,458.00000 L 252.75000,458.25000 L 253.00000,460.00000 C 251.46900,462.28400 250.74100,467.10900 247.25000,466.75000 L 247.75000,465.75000 L 252.00000,458.00000 z "
           style="fill:#b2b2b2;stroke:#b2b2b2" />
        <path
           id="path4450"
           d="M 616.00000,459.00000 C 621.14900,458.68440 622.67400,465.03800 619.00000,468.00000 L 626.00000,473.00000 L 629.00000,477.00000 L 630.00000,482.00000 C 630.51850,484.69300 625.27000,487.38300 624.00000,485.00000 L 624.75000,480.25000 L 613.25000,474.75000 L 611.25000,468.25000 L 614.75000,464.25000 L 613.00000,463.00000 C 591.02000,463.60570 569.34000,468.15600 551.75000,481.75000 L 550.25000,480.75000 L 555.25000,476.25000 L 578.00000,466.00000 L 587.00000,464.00000 C 595.40200,459.44000 605.23000,459.80700 615.00000,460.00000 L 616.00000,459.00000 z "
           style="fill:#242424;stroke:#242424" />
        <path
           id="path4452"
           d="M 1035.0000,464.00000 L 1033.2500,460.25000 L 1035.0000,464.00000 z "
           style="fill:#939393;stroke:#939393" />
        <path
           id="path4454"
           d="M 211.00000,461.00000 C 215.23700,460.06210 209.86300,465.80400 209.25000,463.25000 L 209.75000,462.75000 L 211.00000,461.00000 z "
           style="fill:#949494;stroke:#949494" />
        <path
           id="path4456"
           d="M 479.00000,462.00000 C 478.86030,460.11500 480.88500,462.13970 479.00000,462.00000 z "
           style="fill:#949494;stroke:#949494" />
        <path
           id="path4458"
           d="M 479.00000,462.00000 L 478.00000,463.00000 L 479.00000,462.00000 z "
           style="fill:#979797;stroke:#979797" />
        <path
           id="path4460"
           d="M 676.00000,464.00000 C 678.55300,464.97900 674.77100,468.53600 673.00000,468.00000 L 670.25000,467.75000 L 676.00000,464.00000 z "
           style="fill:#3e3e3e;stroke:#3e3e3e" />
        <path
           id="path4462"
           d="M 679.00000,467.00000 L 681.75000,467.25000 L 681.75000,468.75000 L 680.75000,469.75000 L 669.25000,473.75000 L 671.00000,472.00000 L 674.25000,470.25000 L 679.00000,467.00000 z "
           style="fill:#3c3c3c;stroke:#3c3c3c" />
        <path
           id="path4464"
           d="M 220.00000,474.00000 L 194.00000,495.00000 L 177.75000,504.75000 L 169.00000,509.00000 C 168.29310,511.68200 171.44900,510.93500 173.00000,511.00000 C 190.70000,502.88600 207.43000,491.62000 221.25000,478.25000 L 224.75000,477.25000 L 214.75000,486.75000 L 183.25000,512.25000 L 183.25000,513.75000 C 191.56400,513.08470 198.13000,505.73700 204.75000,500.75000 L 209.75000,497.25000 L 189.00000,519.00000 L 190.25000,521.75000 L 194.75000,518.75000 L 200.75000,513.75000 L 207.25000,507.25000 L 224.75000,487.75000 C 228.41300,484.09600 233.64700,480.45100 231.00000,475.00000 L 232.75000,473.25000 C 232.95680,477.10600 237.13700,478.10400 239.00000,475.00000 L 242.75000,470.25000 L 241.75000,474.75000 C 228.95000,493.75000 212.64000,512.15000 194.25000,526.25000 L 194.25000,527.75000 L 197.00000,529.00000 L 213.75000,513.75000 L 220.75000,506.75000 L 224.75000,502.75000 L 240.75000,486.25000 C 240.01980,494.49600 232.54700,500.46000 228.25000,507.25000 L 215.75000,521.75000 L 203.25000,537.75000 L 205.75000,537.75000 C 218.83000,524.38000 230.45000,511.14000 241.25000,496.25000 L 244.75000,499.25000 L 233.75000,512.75000 L 217.25000,533.25000 L 211.25000,544.75000 C 213.58200,545.87900 215.74900,543.27800 216.25000,541.25000 L 238.25000,513.25000 L 239.75000,513.25000 C 234.97200,528.05000 225.25000,541.73000 214.75000,553.75000 C 200.80000,544.80800 187.17000,534.86000 174.75000,523.25000 L 163.00000,509.00000 C 181.94000,497.93000 202.51000,487.55000 220.00000,474.00000 z "
           style="fill:#dddddd;stroke:#dddddd" />
        <path
           id="path4466"
           d="M 995.00000,472.00000 C 996.61300,472.29750 997.59500,474.28800 996.75000,475.75000 L 995.00000,472.00000 z "
           style="fill:#9e9e9e;stroke:#9e9e9e" />
        <path
           id="path4468"
           d="M 319.00000,475.00000 C 321.32400,476.46200 321.33200,480.15200 320.75000,482.75000 C 317.63800,481.82060 319.50600,477.44100 319.00000,475.00000 z "
           style="fill:#959595;stroke:#959595" />
        <path
           id="path4470"
           d="M 679.00000,475.00000 C 681.24100,474.27880 682.38900,475.94160 682.75000,477.75000 L 672.25000,481.75000 L 671.25000,480.25000 L 672.75000,478.75000 L 679.00000,475.00000 z "
           style="fill:#202020;stroke:#202020" />
        <path
           id="path4472"
           d="M 266.00000,477.00000 L 266.75000,479.75000 L 266.00000,477.00000 z "
           style="fill:#929292;stroke:#929292" />
        <path
           id="path4474"
           d="M 1010.0000,479.00000 C 1014.2260,483.41800 1017.5730,489.68000 1018.0000,496.00000 L 1019.7500,509.75000 L 1019.0000,509.00000 L 1019.0000,505.00000 L 1012.2500,485.25000 L 1012.0000,498.00000 L 1009.7500,510.75000 L 1008.2500,511.75000 L 1009.0000,504.00000 L 1010.0000,502.00000 L 1010.0000,479.00000 z "
           style="fill:#1d1d1d;stroke:#1d1d1d" />
        <path
           id="path4476"
           d="M 267.00000,481.00000 C 268.97800,481.11940 267.53780,483.95200 266.25000,483.75000 L 267.00000,481.00000 z "
           style="fill:#949494;stroke:#949494" />
        <path
           id="path4478"
           d="M 287.00000,481.00000 L 288.75000,481.25000 L 288.75000,491.75000 L 288.25000,491.75000 L 287.00000,481.00000 z "
           style="fill:#969696;stroke:#969696" />
        <path
           id="path4480"
           d="M 949.00000,508.00000 L 946.25000,513.75000 L 948.75000,513.75000 C 956.32500,504.79200 960.81000,494.15000 964.25000,483.25000 L 965.75000,485.25000 L 968.00000,484.00000 L 969.75000,481.25000 L 960.00000,509.00000 L 963.00000,511.00000 L 961.25000,516.75000 L 964.00000,515.00000 L 974.25000,489.25000 L 976.25000,491.75000 L 979.75000,491.25000 L 977.75000,506.75000 C 974.24000,511.08200 981.35700,512.28900 980.00000,507.00000 L 981.00000,505.00000 L 982.75000,499.25000 C 983.79600,509.22800 982.10590,518.80000 978.75000,527.75000 L 950.25000,527.75000 L 941.25000,513.75000 C 940.31260,511.78200 938.84800,508.88400 941.25000,507.25000 L 943.25000,505.25000 L 945.75000,504.25000 L 942.00000,509.00000 C 941.55450,512.13700 944.64600,512.19600 945.75000,509.75000 L 949.00000,508.00000 z "
           style="fill:#eaeaea;stroke:#eaeaea" />
        <path
           id="path4482"
           d="M 682.00000,484.00000 L 684.75000,484.25000 L 683.75000,486.75000 L 675.25000,488.75000 L 678.75000,485.75000 L 682.00000,484.00000 z "
           style="fill:#2f2f2f;stroke:#2f2f2f" />
        <path
           id="path4484"
           d="M 1002.0000,484.00000 L 1003.0000,485.00000 L 1003.7500,491.25000 L 1003.0000,493.00000 L 1003.7500,496.25000 L 1003.0000,498.00000 L 999.75000,517.75000 L 999.25000,517.75000 L 999.00000,514.00000 L 1001.0000,503.00000 L 1002.0000,501.00000 L 1002.0000,484.00000 z "
           style="fill:#1a1a1a;stroke:#1a1a1a" />
        <path
           id="path4486"
           d="M 248.00000,485.00000 C 250.54300,485.92160 247.96722,489.48100 246.25000,489.75000 L 248.00000,485.00000 z "
           style="fill:#a5a5a5;stroke:#a5a5a5" />
        <path
           id="path4488"
           d="M 293.00000,485.00000 L 293.75000,485.25000 C 296.32300,489.75500 294.62810,495.12100 293.75000,499.75000 L 293.25000,499.75000 L 292.00000,491.00000 L 293.00000,485.00000 z "
           style="fill:#b0b0b0;stroke:#b0b0b0" />
        <path
           id="path4490"
           d="M 952.00000,485.00000 L 952.75000,486.75000 L 952.00000,485.00000 z "
           style="fill:#9e9e9e;stroke:#9e9e9e" />
        <path
           id="path4492"
           d="M 686.00000,488.00000 C 687.16200,487.83550 689.85900,487.81970 688.75000,489.75000 L 680.25000,491.75000 L 681.25000,490.25000 L 686.00000,488.00000 z "
           style="fill:#414141;stroke:#414141" />
        <path
           id="path4494"
           d="M 553.00000,491.00000 L 559.25000,501.75000 C 561.52000,501.38130 563.79000,500.33000 565.00000,503.00000 L 582.00000,498.00000 C 589.46900,494.76700 598.52000,492.79300 606.00000,495.00000 L 609.00000,494.00000 L 611.00000,495.00000 L 628.75000,492.25000 L 640.00000,513.00000 L 637.25000,513.75000 L 635.25000,511.75000 C 632.66000,504.82800 623.12000,507.33300 618.25000,506.25000 L 617.25000,507.75000 C 634.37000,522.41000 612.10400,547.03000 594.00000,543.00000 C 587.90900,540.72700 581.31000,537.66400 579.00000,531.00000 C 578.29830,523.68200 581.75600,517.18000 586.75000,512.25000 L 582.00000,513.00000 C 571.10000,515.53400 562.30000,522.77300 553.25000,529.25000 L 554.00000,534.00000 C 558.54400,540.40600 564.52000,546.39000 571.75000,549.25000 L 573.75000,551.75000 L 572.00000,553.00000 C 561.32000,550.01600 553.42000,541.47000 547.75000,532.25000 L 544.25000,531.75000 C 543.90480,528.69000 542.21300,526.31900 545.00000,524.00000 L 552.00000,510.00000 L 544.25000,510.75000 L 553.00000,491.00000 z "
           style="fill:#0f0f0f;stroke:#0f0f0f" />
        <path
           id="path4496"
           d="M 969.00000,492.00000 L 969.75000,493.75000 L 969.00000,492.00000 z "
           style="fill:#979797;stroke:#979797" />
        <path
           id="path4498"
           d="M 690.00000,496.00000 C 691.16200,495.83550 693.85900,495.81970 692.75000,497.75000 C 691.02900,498.57710 686.76500,499.50300 689.00000,502.00000 L 688.75000,502.75000 L 687.75000,504.75000 C 685.03100,503.81350 683.53200,498.09100 687.75000,497.75000 L 689.75000,496.75000 L 690.00000,496.00000 z "
           style="fill:#373737;stroke:#373737" />
        <path
           id="path4500"
           d="M 967.00000,498.00000 L 967.75000,499.75000 L 967.00000,498.00000 z "
           style="fill:#9e9e9e;stroke:#9e9e9e" />
        <path
           id="path4502"
           d="M 767.00000,503.00000 L 781.00000,505.00000 L 780.75000,505.75000 C 777.85600,506.74680 774.72300,508.62500 773.75000,511.75000 L 768.75000,519.75000 C 764.74100,516.83200 760.73100,512.76200 759.00000,508.00000 L 766.75000,503.75000 L 767.00000,503.00000 z "
           style="fill:#efefef;stroke:#efefef" />
        <path
           id="path4504"
           d="M 965.00000,503.00000 L 965.75000,504.75000 L 965.00000,503.00000 z "
           style="fill:#929292;stroke:#929292" />
        <path
           id="path4506"
           d="M 949.00000,508.00000 C 948.86020,506.11500 950.88500,508.13970 949.00000,508.00000 z "
           style="fill:#9a9a9a;stroke:#9a9a9a" />
        <path
           id="path4508"
           d="M 690.00000,511.00000 C 692.61200,510.57500 695.17800,514.94800 692.25000,516.25000 C 692.21832,519.48800 688.97300,521.88700 686.25000,522.75000 L 686.25000,520.25000 L 689.00000,517.00000 L 690.00000,511.00000 z "
           style="fill:#343434;stroke:#343434" />
        <path
           id="path4510"
           d="M 789.00000,514.00000 L 792.75000,514.25000 L 792.75000,519.75000 L 788.25000,519.75000 L 789.00000,514.00000 z "
           style="fill:#e4e4e4;stroke:#e4e4e4" />
        <path
           id="path4512"
           d="M 601.00000,515.00000 L 606.75000,515.25000 C 607.48740,517.94300 609.08400,520.93700 605.75000,522.75000 L 600.25000,521.75000 L 601.00000,515.00000 z "
           style="fill:#fbfbfb;stroke:#fbfbfb" />
        <path
           id="path4514"
           d="M 633.00000,525.00000 L 635.75000,525.25000 L 636.00000,531.00000 L 637.00000,533.00000 C 637.73140,540.79900 635.95700,549.87000 628.00000,553.00000 L 627.25000,552.75000 L 627.25000,550.25000 C 630.18400,548.50400 633.50400,545.92300 633.00000,542.00000 C 634.60700,538.22000 634.60700,532.78000 633.00000,529.00000 L 633.00000,525.00000 z "
           style="fill:#3d3d3d;stroke:#3d3d3d" />
        <path
           id="path4516"
           d="M 275.00000,530.00000 L 277.75000,531.25000 L 278.00000,555.00000 L 276.00000,558.00000 L 274.00000,555.00000 L 275.00000,553.00000 L 275.00000,530.00000 z "
           style="fill:#252525;stroke:#252525" />
        <path
           id="path4518"
           d="M 564.00000,533.00000 L 565.75000,534.25000 L 566.25000,536.75000 C 572.53800,544.54100 581.55000,548.28000 591.00000,549.00000 L 593.00000,550.00000 L 616.00000,551.00000 L 619.00000,550.00000 L 620.75000,551.25000 L 617.75000,554.75000 L 612.00000,555.00000 L 580.25000,551.75000 L 578.75000,549.25000 C 572.60200,546.79700 566.68000,542.61400 563.25000,536.75000 L 564.00000,533.00000 z "
           style="fill:#2f2f2f;stroke:#2f2f2f" />
        <path
           id="path4520"
           d="M 226.00000,546.00000 L 227.00000,547.00000 L 220.75000,556.75000 L 220.25000,556.75000 L 219.00000,555.00000 L 226.00000,546.00000 z "
           style="fill:#a1a1a1;stroke:#a1a1a1" />
        <path
           id="path4522"
           d="M 650.00000,549.00000 L 652.75000,549.25000 L 652.75000,550.75000 C 648.37700,557.43800 644.78200,565.12000 638.00000,570.00000 L 636.25000,568.75000 L 649.75000,550.75000 L 650.00000,549.00000 z "
           style="fill:#3f3f3f;stroke:#3f3f3f" />
        <path
           id="path4524"
           d="M 788.00000,551.00000 L 799.00000,557.00000 L 814.75000,555.25000 L 827.00000,601.00000 L 830.00000,606.00000 L 830.75000,635.75000 L 829.25000,634.75000 L 821.25000,616.75000 L 797.75000,567.25000 L 792.25000,560.75000 L 788.00000,551.00000 z "
           style="fill:#f6f6f6;stroke:#f6f6f6" />
        <path
           id="path4526"
           d="M 482.00000,569.00000 L 484.00000,571.00000 L 480.00000,580.00000 L 484.00000,588.00000 C 483.53080,591.82000 479.04000,595.75100 483.00000,599.00000 L 483.00000,601.00000 L 484.75000,623.75000 L 484.00000,624.00000 L 483.25000,623.75000 C 482.54430,618.42700 481.87400,612.99000 478.00000,609.00000 L 476.25000,602.75000 L 474.00000,595.00000 L 474.75000,593.25000 L 471.00000,594.00000 L 482.00000,569.00000 z "
           style="fill:#212121;stroke:#212121" />
        <path
           id="path4528"
           d="M 490.00000,619.00000 L 490.75000,619.25000 L 491.00000,622.00000 L 491.00000,627.00000 C 490.79400,630.10400 487.95100,634.35800 484.25000,632.75000 L 490.00000,619.00000 z "
           style="fill:#2d2d2d;stroke:#2d2d2d" />
        <path
           id="path4530"
           d="M 683.00000,624.00000 L 698.00000,624.00000 L 702.00000,626.00000 C 718.95000,629.10300 734.55000,638.78000 748.25000,649.75000 C 756.91400,654.56200 767.10000,655.35900 773.25000,664.75000 L 776.75000,664.25000 L 785.75000,670.25000 L 800.25000,683.75000 C 804.22200,684.63340 808.66100,689.16800 809.75000,692.75000 L 798.25000,689.75000 L 785.75000,677.25000 L 779.75000,678.75000 L 774.75000,675.25000 L 773.00000,676.00000 L 765.25000,669.75000 C 763.58600,666.85300 761.83600,667.75400 759.25000,667.75000 C 746.32000,650.78000 727.69000,639.02000 708.00000,632.00000 C 694.39000,630.77400 679.01000,629.25500 666.25000,634.25000 C 646.04000,644.70000 631.35000,673.75000 646.75000,693.25000 L 650.25000,700.75000 C 651.61000,701.52200 653.18200,704.37300 651.00000,705.00000 C 646.00200,700.47800 642.95800,693.58000 640.75000,687.25000 L 635.00000,676.00000 C 634.15790,653.87000 651.48000,632.66000 672.75000,627.75000 L 683.00000,624.00000 z "
           style="fill:#1b1b1b;stroke:#1b1b1b" />
        <path
           id="path4532"
           d="M 499.00000,631.00000 L 500.75000,632.25000 L 498.75000,637.75000 L 493.75000,644.75000 L 492.25000,644.75000 L 492.00000,644.00000 L 496.75000,636.75000 L 499.00000,631.00000 z "
           style="fill:#3b3b3b;stroke:#3b3b3b" />
        <path
           id="path4534"
           d="M 420.00000,643.00000 L 420.75000,645.75000 L 416.75000,648.75000 C 414.89700,648.80646 412.92500,649.59090 412.75000,651.75000 L 405.25000,657.25000 L 404.00000,658.00000 L 402.25000,656.75000 L 412.25000,647.25000 C 415.41900,649.61800 418.36100,645.37800 420.00000,643.00000 z "
           style="fill:#d7d7d7;stroke:#d7d7d7" />
        <path
           id="path4536"
           d="M 671.00000,653.00000 C 679.16900,652.24100 686.85000,654.92600 692.75000,660.25000 L 693.25000,662.75000 L 695.00000,665.00000 L 693.75000,666.75000 L 690.25000,665.75000 C 687.33200,657.20700 676.02000,658.03700 669.25000,661.25000 L 659.25000,682.25000 L 657.00000,689.00000 L 654.25000,688.75000 L 651.00000,679.00000 L 651.00000,672.00000 C 651.90460,662.48900 660.57900,654.79000 670.00000,654.00000 L 671.00000,653.00000 z "
           style="fill:#101010;stroke:#101010" />
        <path
           id="path4538"
           d="M 387.00000,658.00000 C 388.30000,658.10380 391.86200,657.30360 390.75000,659.75000 L 386.00000,663.00000 C 383.30600,661.90400 386.31800,659.40000 387.00000,658.00000 z "
           style="fill:#2f2f2f;stroke:#2f2f2f" />
        <path
           id="path4540"
           d="M 395.00000,663.00000 C 394.86030,661.11500 396.88500,663.13970 395.00000,663.00000 z "
           style="fill:#969696;stroke:#969696" />
        <path
           id="path4542"
           d="M 395.00000,663.00000 L 394.00000,664.00000 L 395.00000,663.00000 z "
           style="fill:#9d9d9d;stroke:#9d9d9d" />
        <path
           id="path4544"
           d="M 394.00000,664.00000 L 393.00000,665.00000 L 394.00000,664.00000 z "
           style="fill:#a6a6a6;stroke:#a6a6a6" />
        <path
           id="path4546"
           d="M 393.00000,665.00000 C 393.13970,666.88500 391.11500,664.86030 393.00000,665.00000 z "
           style="fill:#949494;stroke:#949494" />
        <path
           id="path4548"
           d="M 386.00000,671.00000 C 385.86030,669.11500 387.88500,671.13980 386.00000,671.00000 z "
           style="fill:#9c9c9c;stroke:#9c9c9c" />
        <path
           id="path4550"
           d="M 702.00000,678.00000 C 718.45000,676.72300 724.42000,694.80000 729.00000,707.00000 L 730.00000,724.00000 L 725.25000,736.75000 L 726.00000,731.00000 L 728.00000,726.00000 L 727.00000,712.00000 L 716.25000,689.75000 L 715.75000,687.25000 L 710.75000,683.25000 L 702.25000,683.25000 C 701.85450,685.61200 701.31950,688.76500 703.75000,690.25000 L 716.00000,701.00000 C 714.76900,708.19500 704.75000,706.27600 699.75000,705.25000 C 692.39300,703.56800 683.20000,698.64800 683.00000,690.00000 C 684.91400,682.20100 693.36000,678.16000 701.00000,679.00000 L 702.00000,678.00000 z "
           style="fill:#131313;stroke:#131313" />
        <path
           id="path4552"
           d="M 341.00000,681.00000 L 345.75000,682.25000 L 344.75000,683.75000 L 337.25000,689.25000 L 326.75000,701.75000 L 323.00000,702.00000 L 318.75000,698.25000 L 316.25000,692.25000 L 326.75000,685.75000 C 330.52200,682.77000 334.98100,681.38200 340.00000,682.00000 L 341.00000,681.00000 z "
           style="fill:#efefef;stroke:#efefef" />
        <path
           id="path4554"
           d="M 728.00000,690.00000 C 733.67700,691.77700 736.80600,698.41500 738.25000,703.75000 L 741.75000,703.25000 L 743.00000,706.00000 L 743.00000,709.00000 L 753.00000,734.00000 L 753.00000,737.00000 L 755.00000,746.00000 L 753.75000,747.75000 L 752.25000,746.75000 L 751.00000,742.00000 L 744.75000,719.25000 L 744.00000,719.00000 L 739.25000,723.75000 L 731.25000,697.75000 L 728.25000,692.75000 L 728.00000,690.00000 z "
           style="fill:#2b2b2b;stroke:#2b2b2b" />
        <path
           id="path4556"
           d="M 303.00000,696.00000 L 305.75000,696.25000 C 305.94220,701.83000 298.89000,702.46900 295.00000,704.00000 L 293.25000,703.75000 L 297.25000,699.25000 L 302.75000,696.75000 L 303.00000,696.00000 z "
           style="fill:#d9d9d9;stroke:#d9d9d9" />
        <path
           id="path4558"
           d="M 563.00000,700.00000 L 573.75000,700.25000 L 573.75000,701.75000 C 565.01600,700.91500 559.20000,708.00600 553.00000,713.00000 L 551.00000,709.00000 L 553.75000,705.75000 L 563.00000,700.00000 z "
           style="fill:#202020;stroke:#202020" />
        <path
           id="path4560"
           d="M 276.00000,709.00000 L 287.00000,709.00000 L 292.75000,710.25000 L 280.00000,719.00000 L 277.00000,719.00000 L 275.75000,719.75000 L 274.25000,719.25000 L 273.00000,720.00000 L 271.00000,719.00000 L 267.25000,718.75000 L 267.25000,717.25000 L 275.75000,709.75000 L 276.00000,709.00000 z "
           style="fill:#eaeaea;stroke:#eaeaea" />
        <path
           id="path4562"
           d="M 413.00000,721.00000 L 413.75000,721.25000 L 413.00000,729.00000 C 413.57790,733.69000 411.42000,739.37000 415.00000,743.00000 L 415.75000,746.75000 C 411.55400,746.31540 407.95200,742.73200 406.00000,739.00000 C 405.32300,733.11400 408.01200,727.97000 411.75000,723.75000 L 413.00000,721.00000 z "
           style="fill:#eeeeee;stroke:#eeeeee" />
        <path
           id="path4564"
           d="M 883.00000,735.00000 C 882.86020,733.11500 884.88500,735.13970 883.00000,735.00000 z "
           style="fill:#b7b7b7;stroke:#b7b7b7" />
        <path
           id="path4566"
           d="M 883.00000,735.00000 L 881.00000,736.00000 L 883.00000,735.00000 z "
           style="fill:#b7b7b7;stroke:#b7b7b7" />
        <path
           id="path4568"
           d="M 881.00000,736.00000 C 881.13980,737.88500 879.11500,735.86030 881.00000,736.00000 z "
           style="fill:#999999;stroke:#999999" />
        <path
           id="path4570"
           d="M 873.00000,741.00000 C 874.88500,740.86020 872.86030,742.88500 873.00000,741.00000 z "
           style="fill:#999999;stroke:#999999" />
        <path
           id="path4572"
           d="M 869.00000,744.00000 L 869.75000,746.75000 L 862.25000,749.75000 L 869.00000,744.00000 z "
           style="fill:#cdcdcd;stroke:#cdcdcd" />
        <path
           id="path4574"
           d="M 434.00000,765.00000 L 436.00000,767.00000 L 434.00000,775.00000 L 438.75000,785.25000 C 440.73100,789.12300 443.61600,793.32900 447.75000,795.25000 L 447.75000,796.75000 L 442.00000,797.00000 L 440.00000,798.00000 L 437.00000,797.00000 C 430.48400,796.58700 425.67000,789.67800 424.00000,784.00000 L 430.75000,770.75000 L 432.75000,768.75000 L 434.00000,765.00000 z "
           style="fill:#f1f1f1;stroke:#f1f1f1" />
        <path
           id="path4576"
           d="M 827.00000,766.00000 C 826.86030,764.11500 828.88500,766.13980 827.00000,766.00000 z "
           style="fill:#919191;stroke:#919191" />
        <path
           id="path4578"
           d="M 827.00000,766.00000 L 826.00000,767.00000 L 827.00000,766.00000 z "
           style="fill:#9f9f9f;stroke:#9f9f9f" />
        <path
           id="path4580"
           d="M 460.00000,805.00000 L 465.75000,806.25000 L 466.25000,807.75000 L 474.25000,815.75000 L 475.75000,816.25000 L 480.25000,821.75000 L 486.25000,824.75000 C 489.79600,824.91980 492.12600,828.52600 493.75000,831.25000 C 495.11100,839.06600 486.61500,841.70000 482.00000,846.00000 L 481.25000,845.25000 C 487.74900,834.34000 474.13700,823.77000 464.00000,824.00000 L 457.00000,823.00000 L 454.25000,821.75000 C 448.96800,816.16300 455.49200,808.53000 460.00000,805.00000 z "
           style="fill:#f4f4f4;stroke:#f4f4f4" />
        <path
           id="path4582"
           d="M 640.00000,887.00000 L 638.75000,892.75000 L 638.00000,893.00000 C 634.89500,891.27400 639.33500,888.84600 640.00000,887.00000 z "
           style="fill:#313131;stroke:#313131" />
        <path
           id="path4584"
           d="M 736.00000,889.00000 L 739.75000,889.25000 L 737.75000,891.75000 L 735.25000,892.25000 L 732.00000,894.00000 L 711.00000,894.00000 L 709.25000,892.25000 C 710.35700,890.34500 712.59900,890.96100 714.00000,892.00000 L 722.00000,892.00000 C 726.83700,891.96973 732.76000,892.86170 736.00000,889.00000 z "
           style="fill:#373737;stroke:#373737" />
        <path
           id="path4586"
           d="M 658.00000,896.00000 L 659.75000,896.25000 C 662.86700,899.44700 666.36300,902.47500 670.75000,903.25000 L 671.00000,904.00000 L 669.00000,906.00000 L 659.25000,907.25000 L 653.25000,912.75000 L 653.00000,911.00000 C 655.50500,907.43800 659.06100,903.58600 663.75000,903.75000 L 663.75000,902.25000 C 661.31000,901.17800 658.23800,898.80100 658.00000,896.00000 z "
           style="fill:#303030;stroke:#303030" />
        <path
           id="path4588"
           d="M 735.00000,916.00000 L 736.75000,917.75000 L 733.75000,917.75000 L 735.00000,916.00000 z "
           style="fill:#b5b5b5;stroke:#b5b5b5" />
        <path
           id="path4590"
           d="M 771.00000,923.00000 L 772.00000,924.00000 C 769.06400,928.82000 767.84200,934.06000 767.75000,939.75000 L 766.25000,938.75000 C 764.11700,934.54300 761.82400,930.24600 763.25000,925.25000 L 766.75000,927.75000 L 771.00000,923.00000 z "
           style="fill:#dbdbdb;stroke:#dbdbdb" />
        <path
           id="path4592"
           d="M 590.00000,925.00000 L 591.75000,926.75000 C 577.94000,941.45000 574.40000,966.62000 588.75000,981.75000 C 590.47000,969.94000 588.87970,955.14000 600.00000,947.00000 L 600.75000,948.75000 C 591.32600,957.67400 592.13200,971.04000 591.00000,983.00000 L 624.75000,1030.7500 C 625.09840,1021.8530 620.79800,1013.4300 615.75000,1006.2500 L 610.25000,997.25000 L 611.75000,997.25000 L 622.75000,1013.2500 C 625.86700,1021.2540 629.00500,1030.2800 627.25000,1038.7500 L 629.75000,1039.7500 L 616.25000,1052.2500 L 610.25000,1057.7500 L 615.25000,1050.2500 L 623.75000,1041.7500 L 622.75000,1032.2500 C 608.28000,1010.9900 591.26000,990.76000 573.25000,972.75000 L 570.25000,966.75000 C 566.74900,955.51000 570.68670,943.91000 573.25000,933.25000 L 574.75000,932.25000 L 575.00000,937.00000 C 571.30000,944.98200 573.44200,954.94000 573.25000,963.75000 L 576.75000,969.75000 C 573.53200,954.26000 577.21030,936.26000 590.00000,925.00000 z "
           style="fill:#2a2a2a;stroke:#2a2a2a" />
        <path
           id="path4594"
           d="M 728.00000,930.00000 C 730.50000,931.73500 733.53600,932.80500 735.75000,930.25000 L 735.75000,931.75000 L 733.75000,935.75000 C 728.79800,941.59100 727.99100,949.24000 727.75000,956.75000 C 724.61800,954.81900 721.52100,949.56000 724.00000,946.00000 L 724.00000,945.00000 C 723.52380,939.47600 725.76200,934.74000 728.00000,930.00000 z "
           style="fill:#e7e7e7;stroke:#e7e7e7" />
        <path
           id="path4596"
           d="M 620.00000,947.00000 C 622.19900,946.27260 625.76000,947.65090 622.75000,949.75000 C 604.14000,961.32000 607.96000,988.47000 624.75000,1000.2500 C 628.54200,1007.5570 635.88000,1012.1500 642.75000,1016.2500 L 646.75000,1020.2500 L 652.75000,1034.2500 L 651.75000,1037.7500 C 642.92500,1046.5720 639.32000,1058.8700 639.00000,1071.0000 C 641.63400,1078.4470 647.44200,1085.4100 654.75000,1088.7500 C 653.34600,1076.7600 653.53400,1063.1700 658.25000,1052.2500 L 658.00000,1061.0000 L 656.25000,1068.2500 C 651.15400,1094.4400 674.14000,1113.1400 694.75000,1123.2500 L 694.75000,1125.7500 C 679.88000,1118.7580 665.38000,1107.9800 656.75000,1093.2500 C 639.74000,1090.2350 620.81000,1075.0900 625.75000,1055.7500 L 619.75000,1060.7500 C 613.39500,1068.5740 611.91100,1078.6500 613.25000,1088.7500 C 617.90200,1096.5510 627.32000,1106.1600 637.00000,1103.0000 L 638.75000,1104.7500 C 627.62000,1109.3600 615.92000,1098.5190 611.00000,1089.0000 C 609.45100,1075.5000 612.65100,1062.8200 622.75000,1053.7500 L 628.25000,1045.2500 C 630.47200,1047.1500 632.15600,1044.2030 633.75000,1042.7500 C 633.36240,1036.9160 634.95300,1031.7900 638.00000,1027.0000 L 634.75000,1017.2500 C 622.51000,1006.0400 610.19000,993.12000 605.00000,977.00000 L 606.00000,973.00000 C 605.08700,962.27000 613.85700,954.71000 620.00000,947.00000 z "
           style="fill:#353535;stroke:#353535" />
        <path
           id="path4598"
           d="M 443.00000,974.00000 L 451.25000,978.75000 C 458.39100,982.38300 463.59000,990.31000 461.75000,998.75000 L 459.75000,1000.7500 L 455.25000,1000.7500 L 456.25000,999.25000 L 458.75000,998.75000 C 463.28500,988.91300 452.00800,980.62000 444.25000,976.75000 L 443.00000,974.00000 z "
           style="fill:#353535;stroke:#353535" />
        <path
           id="path4600"
           d="M 724.00000,1007.0000 L 724.25000,1005.2500 L 734.25000,991.25000 L 738.25000,985.25000 L 739.75000,985.25000 C 740.26100,993.20300 733.52700,999.95000 727.25000,1004.2500 L 726.75000,1005.7500 L 724.00000,1007.0000 z "
           style="fill:#d9d9d9;stroke:#d9d9d9" />
        <path
           id="path4602"
           d="M 724.00000,1007.0000 L 723.00000,1008.0000 L 724.00000,1007.0000 z "
           style="fill:#bebebe;stroke:#bebebe" />
        <path
           id="path4604"
           d="M 723.00000,1008.0000 C 723.13980,1009.8850 721.11500,1007.8603 723.00000,1008.0000 z "
           style="fill:#9b9b9b;stroke:#9b9b9b" />
        <path
           id="path4606"
           d="M 426.00000,1014.0000 L 427.75000,1014.2500 C 429.57100,1017.4000 431.50000,1022.0020 435.75000,1022.2500 L 438.00000,1023.0000 L 438.75000,1023.7500 L 437.00000,1025.0000 C 431.81800,1024.4138 426.09000,1019.5800 426.00000,1014.0000 z "
           style="fill:#3b3b3b;stroke:#3b3b3b" />
        <path
           id="path4608"
           d="M 638.00000,1017.0000 C 636.11500,1017.1398 638.13970,1015.1150 638.00000,1017.0000 z "
           style="fill:#d8d8d8;stroke:#d8d8d8" />
        <path
           id="path4610"
           d="M 638.00000,1017.0000 L 643.75000,1020.2500 L 646.00000,1025.0000 L 645.00000,1029.0000 L 643.25000,1033.2500 L 637.25000,1038.7500 L 637.00000,1035.0000 L 640.00000,1026.0000 L 640.75000,1024.2500 L 638.25000,1018.7500 L 638.00000,1017.0000 z "
           style="fill:#f3f3f3;stroke:#f3f3f3" />
        <path
           id="path4612"
           d="M 705.00000,1019.0000 C 708.83100,1018.7223 704.70360,1021.6240 703.75000,1022.7500 L 698.25000,1024.2500 C 689.86500,1032.1620 678.03000,1038.7600 675.75000,1050.7500 L 674.00000,1058.0000 C 670.69300,1062.1540 671.57100,1069.2300 673.00000,1074.0000 L 672.75000,1085.7500 L 665.25000,1076.7500 C 663.58900,1063.0200 669.20400,1050.8100 675.25000,1039.2500 C 683.64700,1031.8150 691.68000,1023.1700 702.75000,1020.7500 L 705.00000,1019.0000 z "
           style="fill:#e9e9e9;stroke:#e9e9e9" />
        <path
           id="path4614"
           d="M 699.00000,1028.0000 C 698.86020,1026.1150 700.88500,1028.1398 699.00000,1028.0000 z "
           style="fill:#a7a7a7;stroke:#a7a7a7" />
        <path
           id="path4616"
           d="M 699.00000,1028.0000 L 698.00000,1029.0000 L 699.00000,1028.0000 z "
           style="fill:#949494;stroke:#949494" />
        <path
           id="path4618"
           d="M 698.00000,1029.0000 L 694.75000,1034.7500 L 686.25000,1048.2500 L 686.00000,1052.0000 L 684.00000,1056.0000 L 682.00000,1075.0000 L 686.75000,1095.2500 L 686.75000,1096.7500 L 681.25000,1092.7500 L 675.25000,1084.7500 L 674.25000,1063.2500 C 676.68800,1051.7500 681.72100,1039.4200 692.75000,1032.7500 L 696.25000,1029.2500 L 698.00000,1029.0000 z "
           style="fill:#eeeeee;stroke:#eeeeee" />
        <path
           id="path4620"
           d="M 647.00000,1033.0000 L 648.00000,1035.0000 L 646.75000,1038.7500 C 641.91200,1044.9200 639.91500,1052.5000 637.75000,1059.7500 L 637.25000,1059.7500 L 637.25000,1043.2500 L 643.75000,1038.7500 L 647.00000,1033.0000 z "
           style="fill:#f6f6f6;stroke:#f6f6f6" />
        <path
           id="path4622"
           d="M 633.00000,1047.0000 L 634.00000,1048.0000 L 634.00000,1066.0000 L 641.75000,1082.2500 L 641.75000,1083.7500 C 634.06600,1081.6800 630.89000,1073.3800 628.00000,1067.0000 L 629.25000,1050.2500 L 633.00000,1047.0000 z "
           style="fill:#f8f8f8;stroke:#f8f8f8" />
      </g>
    </g>
  </g>
</svg>